styles.css 218 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1907px;
  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. #u19873_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. #u19873 {
  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. #u19873 .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. #u19873_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u19874_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. #u19874 {
  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. #u19874 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u19874_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u19875 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u19876_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u19876 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u19876 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u19876_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u19877_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. #u19877 {
  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. #u19877 .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. #u19877_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u19878_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. #u19878 {
  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. #u19878 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u19878_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u19879_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. #u19879 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u19879 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19879_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19880 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19881_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. #u19881 {
  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. #u19881 .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. #u19881_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u19882_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u19882 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u19882 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u19882_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u19883 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u19884_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. #u19884 {
  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. #u19884 .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. #u19884_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u19885_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u19885 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u19885 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u19885_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u19886 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u19887_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. #u19887 {
  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. #u19887 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u19887_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u19888_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u19888 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u19888 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u19888_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u19889 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u19890_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. #u19890 {
  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. #u19890 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u19890_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u19891_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u19891 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u19891 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u19891_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u19892 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u19893_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. #u19893 {
  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. #u19893 .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. #u19893_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u19894_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u19894 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u19894 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u19894_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u19895 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u19896_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. #u19896 {
  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. #u19896 .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. #u19896_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u19897_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u19897 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u19897 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u19897_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u19898 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u19899_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. #u19899 {
  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. #u19899 .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. #u19899_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u19900_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u19900 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u19900 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u19900_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u19901 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u19902_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. #u19902 {
  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. #u19902 .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. #u19902_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u19903_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u19903 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u19903 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u19903_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u19904 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u19905_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. #u19905 {
  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. #u19905 .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. #u19905_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u19906_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u19906 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u19906 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u19906_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u19907_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. #u19907_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. #u19907_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. #u19907 {
  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. #u19907 .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. #u19907_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. #u19907.disabled {
  1100. }
  1101. .u19907_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u19908_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u19908 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u19908 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u19908_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u19909_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. #u19909 {
  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. #u19909 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u19909_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u19910_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u19910 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u19910 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u19910_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u19911 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u19912_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. #u19912 {
  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. #u19912 .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. #u19912_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u19913_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u19913 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u19913 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u19913_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u19914 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u19915_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. #u19915 {
  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. #u19915 .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. #u19915_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u19916_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u19916 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u19916 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u19916_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u19917 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u19918_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. #u19918 {
  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. #u19918 .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. #u19918_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u19919_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u19919 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u19919 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u19919_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u19920 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u19921_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. #u19921 {
  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. #u19921 .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. #u19921_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u19922_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u19922 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u19922 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u19922_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u19923 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u19924_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. #u19924 {
  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. #u19924 .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. #u19924_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u19925_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u19925 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u19925 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u19925_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u19926_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. #u19926 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1259px;
  1651. height:160px;
  1652. display:flex;
  1653. }
  1654. #u19926 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u19926_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u19927_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. #u19927 {
  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. #u19927 .text {
  1705. position:absolute;
  1706. align-self:center;
  1707. padding:0px 0px 0px 0px;
  1708. box-sizing:border-box;
  1709. width:100%;
  1710. }
  1711. #u19927_text {
  1712. border-width:0px;
  1713. white-space:nowrap;
  1714. text-transform:none;
  1715. }
  1716. #u19928_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. #u19928 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:330px;
  1735. top:220px;
  1736. width:1259px;
  1737. height:1010px;
  1738. display:flex;
  1739. }
  1740. #u19928 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u19928_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. visibility:hidden;
  1752. }
  1753. #u19929 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:0px;
  1759. height:0px;
  1760. }
  1761. #u19930_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. #u19930 {
  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. #u19930 .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. #u19930_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u19931_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. #u19931 {
  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. #u19931 .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. #u19931_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u19932 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:0px;
  1855. height:0px;
  1856. }
  1857. #u19933_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. #u19933 {
  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. #u19933 .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. #u19933_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u19934_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. #u19934 {
  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. #u19934 .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. #u19934_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. }
  1945. #u19935 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:0px;
  1951. height:0px;
  1952. }
  1953. #u19936_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. #u19936 {
  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. #u19936 .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. #u19936_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u19937_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. #u19937 {
  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. #u19937 .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. #u19937_text {
  2037. border-width:0px;
  2038. word-wrap:break-word;
  2039. text-transform:none;
  2040. }
  2041. #u19938 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:0px;
  2047. height:0px;
  2048. }
  2049. #u19939_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. #u19939 {
  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. #u19939 .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. #u19939_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u19940_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. #u19940 {
  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. #u19940 .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. #u19940_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. }
  2137. #u19941 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u19942_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. #u19942 {
  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. #u19942 .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. #u19942_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. }
  2189. #u19943_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. #u19943 {
  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. #u19943 .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. #u19943_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. }
  2233. #u19944 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:0px;
  2239. height:0px;
  2240. }
  2241. #u19945_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. #u19945 {
  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. #u19945 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u19945_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u19946_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. #u19946 {
  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. #u19946 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u19946_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u19947_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. #u19947 {
  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. #u19947 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u19947_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u19948_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. #u19948 {
  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. #u19948 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 2px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u19948_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. }
  2428. #u19949_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. #u19949 {
  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. #u19949 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u19949_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. }
  2475. #u19950 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:350px;
  2479. top:370px;
  2480. width:1557px;
  2481. height:292px;
  2482. }
  2483. #u19951_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:30px;
  2489. height:38px;
  2490. }
  2491. #u19951 {
  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. #u19951 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u19951_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. }
  2517. #u19952_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:58px;
  2523. height:38px;
  2524. }
  2525. #u19952 {
  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. #u19952 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u19952_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u19953_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:60px;
  2557. height:38px;
  2558. }
  2559. #u19953 {
  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. #u19953 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u19953_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. }
  2585. #u19954_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:60px;
  2591. height:38px;
  2592. }
  2593. #u19954 {
  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. #u19954 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u19954_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. }
  2619. #u19955_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:60px;
  2625. height:38px;
  2626. }
  2627. #u19955 {
  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. #u19955 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u19955_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. }
  2653. #u19956_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:60px;
  2659. height:38px;
  2660. }
  2661. #u19956 {
  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. #u19956 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u19956_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. }
  2687. #u19957_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:58px;
  2693. height:38px;
  2694. }
  2695. #u19957 {
  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. #u19957 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u19957_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. }
  2721. #u19958_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:58px;
  2727. height:38px;
  2728. }
  2729. #u19958 {
  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. #u19958 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u19958_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. }
  2755. #u19959_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:58px;
  2761. height:38px;
  2762. }
  2763. #u19959 {
  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. #u19959 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u19959_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u19960_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:58px;
  2795. height:38px;
  2796. }
  2797. #u19960 {
  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. #u19960 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u19960_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. }
  2823. #u19961_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:58px;
  2829. height:38px;
  2830. }
  2831. #u19961 {
  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. #u19961 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u19961_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. }
  2857. #u19962_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:58px;
  2863. height:38px;
  2864. }
  2865. #u19962 {
  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. #u19962 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u19962_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. }
  2891. #u19963_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:58px;
  2897. height:38px;
  2898. }
  2899. #u19963 {
  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. #u19963 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u19963_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. }
  2925. #u19964_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:58px;
  2931. height:38px;
  2932. }
  2933. #u19964 {
  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. #u19964 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u19964_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. }
  2959. #u19965_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:58px;
  2965. height:38px;
  2966. }
  2967. #u19965 {
  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. #u19965 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 0px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u19965_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u19966_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:58px;
  2999. height:38px;
  3000. }
  3001. #u19966 {
  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. #u19966 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u19966_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. }
  3027. #u19967_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:58px;
  3033. height:38px;
  3034. }
  3035. #u19967 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:908px;
  3039. top:0px;
  3040. width:58px;
  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. #u19967 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u19967_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. }
  3061. #u19968_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:58px;
  3067. height:38px;
  3068. }
  3069. #u19968 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:966px;
  3073. top:0px;
  3074. width:58px;
  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. #u19968 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 0px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u19968_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. }
  3095. #u19969_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:60px;
  3101. height:38px;
  3102. }
  3103. #u19969 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:1024px;
  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. #u19969 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 0px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u19969_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. }
  3129. #u19970_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:60px;
  3135. height:38px;
  3136. }
  3137. #u19970 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:1084px;
  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. #u19970 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 0px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u19970_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. }
  3163. #u19971_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:60px;
  3169. height:38px;
  3170. }
  3171. #u19971 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:1144px;
  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. #u19971 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u19971_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. }
  3197. #u19972_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:60px;
  3203. height:38px;
  3204. }
  3205. #u19972 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:1204px;
  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. #u19972 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:2px 2px 2px 0px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u19972_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. }
  3231. #u19973_img {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:60px;
  3237. height:38px;
  3238. }
  3239. #u19973 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:1264px;
  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. #u19973 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 0px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u19973_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. }
  3265. #u19974_img {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:60px;
  3271. height:38px;
  3272. }
  3273. #u19974 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:1324px;
  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. #u19974 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:2px 2px 2px 0px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u19974_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. }
  3299. #u19975_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:60px;
  3305. height:38px;
  3306. }
  3307. #u19975 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:1384px;
  3311. top:0px;
  3312. width:60px;
  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. #u19975 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 0px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u19975_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. }
  3333. #u19976_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:60px;
  3339. height:38px;
  3340. }
  3341. #u19976 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:1444px;
  3345. top:0px;
  3346. width:60px;
  3347. height:38px;
  3348. display:flex;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. color:#FFFFFF;
  3354. }
  3355. #u19976 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 0px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u19976_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. }
  3367. #u19977_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:53px;
  3373. height:38px;
  3374. }
  3375. #u19977 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:1504px;
  3379. top:0px;
  3380. width:53px;
  3381. height:38px;
  3382. display:flex;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:12px;
  3387. color:#FFFFFF;
  3388. }
  3389. #u19977 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 0px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u19977_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. }
  3401. #u19978_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:30px;
  3407. height:38px;
  3408. }
  3409. #u19978 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:38px;
  3414. width:30px;
  3415. height:38px;
  3416. display:flex;
  3417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. }
  3422. #u19978 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 0px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u19978_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. }
  3434. #u19979_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:58px;
  3440. height:38px;
  3441. }
  3442. #u19979 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:30px;
  3446. top:38px;
  3447. width:58px;
  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. #u19979 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u19979_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u19980_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:60px;
  3474. height:38px;
  3475. }
  3476. #u19980 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:88px;
  3480. top:38px;
  3481. width:60px;
  3482. height:38px;
  3483. display:flex;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. }
  3489. #u19980 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u19980_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u19981_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:60px;
  3508. height:38px;
  3509. }
  3510. #u19981 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:148px;
  3514. top:38px;
  3515. width:60px;
  3516. height:38px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. }
  3523. #u19981 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u19981_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u19982_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:60px;
  3542. height:38px;
  3543. }
  3544. #u19982 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:208px;
  3548. top:38px;
  3549. width:60px;
  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. #u19982 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u19982_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u19983_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:60px;
  3576. height:38px;
  3577. }
  3578. #u19983 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:268px;
  3582. top:38px;
  3583. width:60px;
  3584. height:38px;
  3585. display:flex;
  3586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:12px;
  3590. }
  3591. #u19983 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u19983_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u19984_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:58px;
  3610. height:38px;
  3611. }
  3612. #u19984 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:328px;
  3616. top:38px;
  3617. width:58px;
  3618. height:38px;
  3619. display:flex;
  3620. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. }
  3625. #u19984 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 0px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u19984_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. }
  3637. #u19985_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:58px;
  3643. height:38px;
  3644. }
  3645. #u19985 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:386px;
  3649. top:38px;
  3650. width:58px;
  3651. height:38px;
  3652. display:flex;
  3653. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:12px;
  3657. }
  3658. #u19985 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 0px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u19985_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. }
  3670. #u19986_img {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:58px;
  3676. height:38px;
  3677. }
  3678. #u19986 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:444px;
  3682. top:38px;
  3683. width:58px;
  3684. height:38px;
  3685. display:flex;
  3686. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:12px;
  3690. }
  3691. #u19986 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 0px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u19986_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. }
  3703. #u19987_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:58px;
  3709. height:38px;
  3710. }
  3711. #u19987 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:502px;
  3715. top:38px;
  3716. width:58px;
  3717. height:38px;
  3718. display:flex;
  3719. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. }
  3724. #u19987 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u19987_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u19988_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:58px;
  3743. height:38px;
  3744. }
  3745. #u19988 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:560px;
  3749. top:38px;
  3750. width:58px;
  3751. height:38px;
  3752. display:flex;
  3753. font-family:'ArialMT', 'Arial', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. }
  3758. #u19988 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 0px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u19988_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u19989_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:58px;
  3777. height:38px;
  3778. }
  3779. #u19989 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:618px;
  3783. top:38px;
  3784. width:58px;
  3785. height:38px;
  3786. display:flex;
  3787. font-family:'ArialMT', 'Arial', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. }
  3792. #u19989 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u19989_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u19990_img {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:58px;
  3811. height:38px;
  3812. }
  3813. #u19990 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:676px;
  3817. top:38px;
  3818. width:58px;
  3819. height:38px;
  3820. display:flex;
  3821. font-family:'ArialMT', 'Arial', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. }
  3826. #u19990 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 0px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u19990_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u19991_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:58px;
  3845. height:38px;
  3846. }
  3847. #u19991 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:734px;
  3851. top:38px;
  3852. width:58px;
  3853. height:38px;
  3854. display:flex;
  3855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:12px;
  3859. }
  3860. #u19991 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u19991_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u19992_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:58px;
  3879. height:38px;
  3880. }
  3881. #u19992 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:792px;
  3885. top:38px;
  3886. width:58px;
  3887. height:38px;
  3888. display:flex;
  3889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. }
  3894. #u19992 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u19992_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u19993_img {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:58px;
  3913. height:38px;
  3914. }
  3915. #u19993 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:850px;
  3919. top:38px;
  3920. width:58px;
  3921. height:38px;
  3922. display:flex;
  3923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. }
  3928. #u19993 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u19993_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u19994_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:58px;
  3947. height:38px;
  3948. }
  3949. #u19994 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:908px;
  3953. top:38px;
  3954. width:58px;
  3955. height:38px;
  3956. display:flex;
  3957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. }
  3962. #u19994 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 2px 2px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u19994_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u19995_img {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:58px;
  3981. height:38px;
  3982. }
  3983. #u19995 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:966px;
  3987. top:38px;
  3988. width:58px;
  3989. height:38px;
  3990. display:flex;
  3991. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:12px;
  3995. }
  3996. #u19995 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u19995_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u19996_img {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:60px;
  4015. height:38px;
  4016. }
  4017. #u19996 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:1024px;
  4021. top:38px;
  4022. width:60px;
  4023. height:38px;
  4024. display:flex;
  4025. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. }
  4030. #u19996 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u19996_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. visibility:hidden;
  4042. }
  4043. #u19997_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:60px;
  4049. height:38px;
  4050. }
  4051. #u19997 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:1084px;
  4055. top:38px;
  4056. width:60px;
  4057. height:38px;
  4058. display:flex;
  4059. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. }
  4064. #u19997 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 0px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u19997_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. visibility:hidden;
  4076. }
  4077. #u19998_img {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:60px;
  4083. height:38px;
  4084. }
  4085. #u19998 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:1144px;
  4089. top:38px;
  4090. width:60px;
  4091. height:38px;
  4092. display:flex;
  4093. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:12px;
  4097. }
  4098. #u19998 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u19998_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u19999_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:60px;
  4117. height:38px;
  4118. }
  4119. #u19999 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:1204px;
  4123. top:38px;
  4124. width:60px;
  4125. height:38px;
  4126. display:flex;
  4127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. }
  4132. #u19999 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 0px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u19999_text {
  4140. border-width:0px;
  4141. word-wrap:break-word;
  4142. text-transform:none;
  4143. visibility:hidden;
  4144. }
  4145. #u20000_img {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:60px;
  4151. height:38px;
  4152. }
  4153. #u20000 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:1264px;
  4157. top:38px;
  4158. width:60px;
  4159. height:38px;
  4160. display:flex;
  4161. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:12px;
  4165. }
  4166. #u20000 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u20000_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u20001_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:60px;
  4185. height:38px;
  4186. }
  4187. #u20001 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:1324px;
  4191. top:38px;
  4192. width:60px;
  4193. height:38px;
  4194. display:flex;
  4195. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. }
  4200. #u20001 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u20001_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u20002_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:60px;
  4219. height:38px;
  4220. }
  4221. #u20002 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:1384px;
  4225. top:38px;
  4226. width:60px;
  4227. height:38px;
  4228. display:flex;
  4229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. }
  4234. #u20002 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 0px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u20002_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. visibility:hidden;
  4246. }
  4247. #u20003_img {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:60px;
  4253. height:38px;
  4254. }
  4255. #u20003 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:1444px;
  4259. top:38px;
  4260. width:60px;
  4261. height:38px;
  4262. display:flex;
  4263. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:12px;
  4267. }
  4268. #u20003 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:2px 2px 2px 0px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u20003_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u20004_img {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:53px;
  4287. height:38px;
  4288. }
  4289. #u20004 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:1504px;
  4293. top:38px;
  4294. width:53px;
  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:#1890FF;
  4302. }
  4303. #u20004 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 0px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u20004_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. }
  4315. #u20005_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:30px;
  4321. height:38px;
  4322. }
  4323. #u20005 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:76px;
  4328. width:30px;
  4329. height:38px;
  4330. display:flex;
  4331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:12px;
  4335. color:#606266;
  4336. }
  4337. #u20005 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 0px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u20005_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. }
  4349. #u20006_img {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:58px;
  4355. height:38px;
  4356. }
  4357. #u20006 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:30px;
  4361. top:76px;
  4362. width:58px;
  4363. height:38px;
  4364. display:flex;
  4365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. font-size:12px;
  4369. color:#606266;
  4370. }
  4371. #u20006 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 0px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u20006_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u20007_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:60px;
  4390. height:38px;
  4391. }
  4392. #u20007 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:88px;
  4396. top:76px;
  4397. width:60px;
  4398. height:38px;
  4399. display:flex;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:12px;
  4404. color:#606266;
  4405. }
  4406. #u20007 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:2px 2px 2px 0px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u20007_text {
  4414. border-width:0px;
  4415. word-wrap:break-word;
  4416. text-transform:none;
  4417. visibility:hidden;
  4418. }
  4419. #u20008_img {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:60px;
  4425. height:38px;
  4426. }
  4427. #u20008 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:148px;
  4431. top:76px;
  4432. width:60px;
  4433. height:38px;
  4434. display:flex;
  4435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4436. font-weight:400;
  4437. font-style:normal;
  4438. font-size:12px;
  4439. color:#606266;
  4440. }
  4441. #u20008 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 0px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u20008_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u20009_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:60px;
  4460. height:38px;
  4461. }
  4462. #u20009 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:208px;
  4466. top:76px;
  4467. width:60px;
  4468. height:38px;
  4469. display:flex;
  4470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4471. font-weight:400;
  4472. font-style:normal;
  4473. font-size:12px;
  4474. color:#606266;
  4475. }
  4476. #u20009 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 0px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u20009_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. visibility:hidden;
  4488. }
  4489. #u20010_img {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:60px;
  4495. height:38px;
  4496. }
  4497. #u20010 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:268px;
  4501. top:76px;
  4502. width:60px;
  4503. height:38px;
  4504. display:flex;
  4505. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. font-size:12px;
  4509. color:#606266;
  4510. }
  4511. #u20010 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:2px 2px 2px 0px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u20010_text {
  4519. border-width:0px;
  4520. word-wrap:break-word;
  4521. text-transform:none;
  4522. visibility:hidden;
  4523. }
  4524. #u20011_img {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:58px;
  4530. height:38px;
  4531. }
  4532. #u20011 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:328px;
  4536. top:76px;
  4537. width:58px;
  4538. height:38px;
  4539. display:flex;
  4540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:12px;
  4544. color:#606266;
  4545. }
  4546. #u20011 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 0px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u20011_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u20012_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:58px;
  4565. height:38px;
  4566. }
  4567. #u20012 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:386px;
  4571. top:76px;
  4572. width:58px;
  4573. height:38px;
  4574. display:flex;
  4575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:12px;
  4579. color:#606266;
  4580. }
  4581. #u20012 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 0px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u20012_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. }
  4593. #u20013_img {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:58px;
  4599. height:38px;
  4600. }
  4601. #u20013 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:444px;
  4605. top:76px;
  4606. width:58px;
  4607. height:38px;
  4608. display:flex;
  4609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:12px;
  4613. color:#606266;
  4614. }
  4615. #u20013 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 0px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u20013_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. }
  4627. #u20014_img {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:58px;
  4633. height:38px;
  4634. }
  4635. #u20014 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:502px;
  4639. top:76px;
  4640. width:58px;
  4641. height:38px;
  4642. display:flex;
  4643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:12px;
  4647. color:#606266;
  4648. }
  4649. #u20014 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 0px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u20014_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. visibility:hidden;
  4661. }
  4662. #u20015_img {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:58px;
  4668. height:38px;
  4669. }
  4670. #u20015 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:560px;
  4674. top:76px;
  4675. width:58px;
  4676. height:38px;
  4677. display:flex;
  4678. font-family:'ArialMT', 'Arial', sans-serif;
  4679. font-weight:400;
  4680. font-style:normal;
  4681. font-size:12px;
  4682. color:#606266;
  4683. }
  4684. #u20015 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:2px 2px 2px 0px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u20015_text {
  4692. border-width:0px;
  4693. word-wrap:break-word;
  4694. text-transform:none;
  4695. visibility:hidden;
  4696. }
  4697. #u20016_img {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:58px;
  4703. height:38px;
  4704. }
  4705. #u20016 {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:618px;
  4709. top:76px;
  4710. width:58px;
  4711. height:38px;
  4712. display:flex;
  4713. font-family:'ArialMT', 'Arial', sans-serif;
  4714. font-weight:400;
  4715. font-style:normal;
  4716. font-size:12px;
  4717. color:#606266;
  4718. }
  4719. #u20016 .text {
  4720. position:absolute;
  4721. align-self:center;
  4722. padding:2px 2px 2px 0px;
  4723. box-sizing:border-box;
  4724. width:100%;
  4725. }
  4726. #u20016_text {
  4727. border-width:0px;
  4728. word-wrap:break-word;
  4729. text-transform:none;
  4730. visibility:hidden;
  4731. }
  4732. #u20017_img {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:58px;
  4738. height:38px;
  4739. }
  4740. #u20017 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:676px;
  4744. top:76px;
  4745. width:58px;
  4746. height:38px;
  4747. display:flex;
  4748. font-family:'ArialMT', 'Arial', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:12px;
  4752. color:#606266;
  4753. }
  4754. #u20017 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:2px 2px 2px 0px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u20017_text {
  4762. border-width:0px;
  4763. word-wrap:break-word;
  4764. text-transform:none;
  4765. visibility:hidden;
  4766. }
  4767. #u20018_img {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:58px;
  4773. height:38px;
  4774. }
  4775. #u20018 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:734px;
  4779. top:76px;
  4780. width:58px;
  4781. height:38px;
  4782. display:flex;
  4783. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4784. font-weight:400;
  4785. font-style:normal;
  4786. font-size:12px;
  4787. color:#606266;
  4788. }
  4789. #u20018 .text {
  4790. position:absolute;
  4791. align-self:center;
  4792. padding:2px 2px 2px 0px;
  4793. box-sizing:border-box;
  4794. width:100%;
  4795. }
  4796. #u20018_text {
  4797. border-width:0px;
  4798. word-wrap:break-word;
  4799. text-transform:none;
  4800. visibility:hidden;
  4801. }
  4802. #u20019_img {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:58px;
  4808. height:38px;
  4809. }
  4810. #u20019 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:792px;
  4814. top:76px;
  4815. width:58px;
  4816. height:38px;
  4817. display:flex;
  4818. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. font-size:12px;
  4822. color:#606266;
  4823. }
  4824. #u20019 .text {
  4825. position:absolute;
  4826. align-self:center;
  4827. padding:2px 2px 2px 0px;
  4828. box-sizing:border-box;
  4829. width:100%;
  4830. }
  4831. #u20019_text {
  4832. border-width:0px;
  4833. word-wrap:break-word;
  4834. text-transform:none;
  4835. visibility:hidden;
  4836. }
  4837. #u20020_img {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:58px;
  4843. height:38px;
  4844. }
  4845. #u20020 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:850px;
  4849. top:76px;
  4850. width:58px;
  4851. height:38px;
  4852. display:flex;
  4853. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:12px;
  4857. color:#606266;
  4858. }
  4859. #u20020 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 0px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u20020_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u20021_img {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:58px;
  4878. height:38px;
  4879. }
  4880. #u20021 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:908px;
  4884. top:76px;
  4885. width:58px;
  4886. height:38px;
  4887. display:flex;
  4888. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:12px;
  4892. color:#606266;
  4893. }
  4894. #u20021 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 0px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u20021_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u20022_img {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:58px;
  4913. height:38px;
  4914. }
  4915. #u20022 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:966px;
  4919. top:76px;
  4920. width:58px;
  4921. height:38px;
  4922. display:flex;
  4923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:12px;
  4927. color:#606266;
  4928. }
  4929. #u20022 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:2px 2px 2px 0px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u20022_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. visibility:hidden;
  4941. }
  4942. #u20023_img {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:60px;
  4948. height:38px;
  4949. }
  4950. #u20023 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:1024px;
  4954. top:76px;
  4955. width:60px;
  4956. height:38px;
  4957. display:flex;
  4958. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. color:#606266;
  4963. }
  4964. #u20023 .text {
  4965. position:absolute;
  4966. align-self:center;
  4967. padding:2px 2px 2px 0px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u20023_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. visibility:hidden;
  4976. }
  4977. #u20024_img {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:60px;
  4983. height:38px;
  4984. }
  4985. #u20024 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:1084px;
  4989. top:76px;
  4990. width:60px;
  4991. height:38px;
  4992. display:flex;
  4993. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:12px;
  4997. color:#606266;
  4998. }
  4999. #u20024 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:2px 2px 2px 0px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u20024_text {
  5007. border-width:0px;
  5008. word-wrap:break-word;
  5009. text-transform:none;
  5010. visibility:hidden;
  5011. }
  5012. #u20025_img {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:60px;
  5018. height:38px;
  5019. }
  5020. #u20025 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:1144px;
  5024. top:76px;
  5025. width:60px;
  5026. height:38px;
  5027. display:flex;
  5028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:12px;
  5032. color:#606266;
  5033. }
  5034. #u20025 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:2px 2px 2px 0px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u20025_text {
  5042. border-width:0px;
  5043. word-wrap:break-word;
  5044. text-transform:none;
  5045. visibility:hidden;
  5046. }
  5047. #u20026_img {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:60px;
  5053. height:38px;
  5054. }
  5055. #u20026 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:1204px;
  5059. top:76px;
  5060. width:60px;
  5061. height:38px;
  5062. display:flex;
  5063. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:12px;
  5067. color:#606266;
  5068. }
  5069. #u20026 .text {
  5070. position:absolute;
  5071. align-self:center;
  5072. padding:2px 2px 2px 0px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u20026_text {
  5077. border-width:0px;
  5078. word-wrap:break-word;
  5079. text-transform:none;
  5080. visibility:hidden;
  5081. }
  5082. #u20027_img {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:60px;
  5088. height:38px;
  5089. }
  5090. #u20027 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:1264px;
  5094. top:76px;
  5095. width:60px;
  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. #u20027 .text {
  5105. position:absolute;
  5106. align-self:center;
  5107. padding:2px 2px 2px 0px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u20027_text {
  5112. border-width:0px;
  5113. word-wrap:break-word;
  5114. text-transform:none;
  5115. visibility:hidden;
  5116. }
  5117. #u20028_img {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:60px;
  5123. height:38px;
  5124. }
  5125. #u20028 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:1324px;
  5129. top:76px;
  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. #u20028 .text {
  5140. position:absolute;
  5141. align-self:center;
  5142. padding:2px 2px 2px 0px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u20028_text {
  5147. border-width:0px;
  5148. word-wrap:break-word;
  5149. text-transform:none;
  5150. visibility:hidden;
  5151. }
  5152. #u20029_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:60px;
  5158. height:38px;
  5159. }
  5160. #u20029 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:1384px;
  5164. top:76px;
  5165. width:60px;
  5166. height:38px;
  5167. display:flex;
  5168. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5169. font-weight:400;
  5170. font-style:normal;
  5171. font-size:12px;
  5172. color:#606266;
  5173. }
  5174. #u20029 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:2px 2px 2px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u20029_text {
  5182. border-width:0px;
  5183. word-wrap:break-word;
  5184. text-transform:none;
  5185. visibility:hidden;
  5186. }
  5187. #u20030_img {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:60px;
  5193. height:38px;
  5194. }
  5195. #u20030 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:1444px;
  5199. top:76px;
  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. #u20030 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:2px 2px 2px 0px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u20030_text {
  5217. border-width:0px;
  5218. word-wrap:break-word;
  5219. text-transform:none;
  5220. visibility:hidden;
  5221. }
  5222. #u20031_img {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:53px;
  5228. height:38px;
  5229. }
  5230. #u20031 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:1504px;
  5234. top:76px;
  5235. width:53px;
  5236. height:38px;
  5237. display:flex;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:12px;
  5242. color:#1890FF;
  5243. }
  5244. #u20031 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 2px 2px 0px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u20031_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. }
  5256. #u20032_img {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:30px;
  5262. height:38px;
  5263. }
  5264. #u20032 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:114px;
  5269. width:30px;
  5270. height:38px;
  5271. display:flex;
  5272. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:12px;
  5276. color:#606266;
  5277. }
  5278. #u20032 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 0px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u20032_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. }
  5290. #u20033_img {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:58px;
  5296. height:38px;
  5297. }
  5298. #u20033 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:30px;
  5302. top:114px;
  5303. width:58px;
  5304. height:38px;
  5305. display:flex;
  5306. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:12px;
  5310. color:#606266;
  5311. }
  5312. #u20033 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 0px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u20033_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. visibility:hidden;
  5324. }
  5325. #u20034_img {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:60px;
  5331. height:38px;
  5332. }
  5333. #u20034 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:88px;
  5337. top:114px;
  5338. width:60px;
  5339. height:38px;
  5340. display:flex;
  5341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:12px;
  5345. color:#606266;
  5346. }
  5347. #u20034 .text {
  5348. position:absolute;
  5349. align-self:center;
  5350. padding:2px 2px 2px 0px;
  5351. box-sizing:border-box;
  5352. width:100%;
  5353. }
  5354. #u20034_text {
  5355. border-width:0px;
  5356. word-wrap:break-word;
  5357. text-transform:none;
  5358. visibility:hidden;
  5359. }
  5360. #u20035_img {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:60px;
  5366. height:38px;
  5367. }
  5368. #u20035 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:148px;
  5372. top:114px;
  5373. width:60px;
  5374. height:38px;
  5375. display:flex;
  5376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5377. font-weight:400;
  5378. font-style:normal;
  5379. font-size:12px;
  5380. color:#606266;
  5381. }
  5382. #u20035 .text {
  5383. position:absolute;
  5384. align-self:center;
  5385. padding:2px 2px 2px 0px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u20035_text {
  5390. border-width:0px;
  5391. word-wrap:break-word;
  5392. text-transform:none;
  5393. visibility:hidden;
  5394. }
  5395. #u20036_img {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:60px;
  5401. height:38px;
  5402. }
  5403. #u20036 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:208px;
  5407. top:114px;
  5408. width:60px;
  5409. height:38px;
  5410. display:flex;
  5411. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:12px;
  5415. color:#606266;
  5416. }
  5417. #u20036 .text {
  5418. position:absolute;
  5419. align-self:center;
  5420. padding:2px 2px 2px 0px;
  5421. box-sizing:border-box;
  5422. width:100%;
  5423. }
  5424. #u20036_text {
  5425. border-width:0px;
  5426. word-wrap:break-word;
  5427. text-transform:none;
  5428. visibility:hidden;
  5429. }
  5430. #u20037_img {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:60px;
  5436. height:38px;
  5437. }
  5438. #u20037 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:268px;
  5442. top:114px;
  5443. width:60px;
  5444. height:38px;
  5445. display:flex;
  5446. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:12px;
  5450. color:#606266;
  5451. }
  5452. #u20037 .text {
  5453. position:absolute;
  5454. align-self:center;
  5455. padding:2px 2px 2px 0px;
  5456. box-sizing:border-box;
  5457. width:100%;
  5458. }
  5459. #u20037_text {
  5460. border-width:0px;
  5461. word-wrap:break-word;
  5462. text-transform:none;
  5463. visibility:hidden;
  5464. }
  5465. #u20038_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:58px;
  5471. height:38px;
  5472. }
  5473. #u20038 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:328px;
  5477. top:114px;
  5478. width:58px;
  5479. height:38px;
  5480. display:flex;
  5481. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:12px;
  5485. color:#606266;
  5486. }
  5487. #u20038 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 0px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u20038_text {
  5495. border-width:0px;
  5496. word-wrap:break-word;
  5497. text-transform:none;
  5498. visibility:hidden;
  5499. }
  5500. #u20039_img {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:58px;
  5506. height:38px;
  5507. }
  5508. #u20039 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:386px;
  5512. top:114px;
  5513. width:58px;
  5514. height:38px;
  5515. display:flex;
  5516. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:12px;
  5520. color:#606266;
  5521. }
  5522. #u20039 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:2px 2px 2px 0px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u20039_text {
  5530. border-width:0px;
  5531. word-wrap:break-word;
  5532. text-transform:none;
  5533. visibility:hidden;
  5534. }
  5535. #u20040_img {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:58px;
  5541. height:38px;
  5542. }
  5543. #u20040 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:444px;
  5547. top:114px;
  5548. width:58px;
  5549. height:38px;
  5550. display:flex;
  5551. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. font-size:12px;
  5555. color:#606266;
  5556. }
  5557. #u20040 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:2px 2px 2px 0px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u20040_text {
  5565. border-width:0px;
  5566. word-wrap:break-word;
  5567. text-transform:none;
  5568. visibility:hidden;
  5569. }
  5570. #u20041_img {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:58px;
  5576. height:38px;
  5577. }
  5578. #u20041 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:502px;
  5582. top:114px;
  5583. width:58px;
  5584. height:38px;
  5585. display:flex;
  5586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:12px;
  5590. color:#606266;
  5591. }
  5592. #u20041 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 0px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u20041_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. visibility:hidden;
  5604. }
  5605. #u20042_img {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:58px;
  5611. height:38px;
  5612. }
  5613. #u20042 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:560px;
  5617. top:114px;
  5618. width:58px;
  5619. height:38px;
  5620. display:flex;
  5621. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:12px;
  5625. color:#606266;
  5626. }
  5627. #u20042 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:2px 2px 2px 0px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u20042_text {
  5635. border-width:0px;
  5636. word-wrap:break-word;
  5637. text-transform:none;
  5638. visibility:hidden;
  5639. }
  5640. #u20043_img {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:58px;
  5646. height:38px;
  5647. }
  5648. #u20043 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:618px;
  5652. top:114px;
  5653. width:58px;
  5654. height:38px;
  5655. display:flex;
  5656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:12px;
  5660. color:#606266;
  5661. }
  5662. #u20043 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:2px 2px 2px 0px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u20043_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. visibility:hidden;
  5674. }
  5675. #u20044_img {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:58px;
  5681. height:38px;
  5682. }
  5683. #u20044 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:676px;
  5687. top:114px;
  5688. width:58px;
  5689. height:38px;
  5690. display:flex;
  5691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:12px;
  5695. color:#606266;
  5696. }
  5697. #u20044 .text {
  5698. position:absolute;
  5699. align-self:center;
  5700. padding:2px 2px 2px 0px;
  5701. box-sizing:border-box;
  5702. width:100%;
  5703. }
  5704. #u20044_text {
  5705. border-width:0px;
  5706. word-wrap:break-word;
  5707. text-transform:none;
  5708. visibility:hidden;
  5709. }
  5710. #u20045_img {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:58px;
  5716. height:38px;
  5717. }
  5718. #u20045 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:734px;
  5722. top:114px;
  5723. width:58px;
  5724. height:38px;
  5725. display:flex;
  5726. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:12px;
  5730. color:#606266;
  5731. }
  5732. #u20045 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 0px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u20045_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. visibility:hidden;
  5744. }
  5745. #u20046_img {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:58px;
  5751. height:38px;
  5752. }
  5753. #u20046 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:792px;
  5757. top:114px;
  5758. width:58px;
  5759. height:38px;
  5760. display:flex;
  5761. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:12px;
  5765. color:#606266;
  5766. }
  5767. #u20046 .text {
  5768. position:absolute;
  5769. align-self:center;
  5770. padding:2px 2px 2px 0px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. #u20046_text {
  5775. border-width:0px;
  5776. word-wrap:break-word;
  5777. text-transform:none;
  5778. visibility:hidden;
  5779. }
  5780. #u20047_img {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:58px;
  5786. height:38px;
  5787. }
  5788. #u20047 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:850px;
  5792. top:114px;
  5793. width:58px;
  5794. height:38px;
  5795. display:flex;
  5796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:12px;
  5800. color:#606266;
  5801. }
  5802. #u20047 .text {
  5803. position:absolute;
  5804. align-self:center;
  5805. padding:2px 2px 2px 0px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u20047_text {
  5810. border-width:0px;
  5811. word-wrap:break-word;
  5812. text-transform:none;
  5813. visibility:hidden;
  5814. }
  5815. #u20048_img {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:58px;
  5821. height:38px;
  5822. }
  5823. #u20048 {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:908px;
  5827. top:114px;
  5828. width:58px;
  5829. height:38px;
  5830. display:flex;
  5831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:12px;
  5835. color:#606266;
  5836. }
  5837. #u20048 .text {
  5838. position:absolute;
  5839. align-self:center;
  5840. padding:2px 2px 2px 0px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u20048_text {
  5845. border-width:0px;
  5846. word-wrap:break-word;
  5847. text-transform:none;
  5848. visibility:hidden;
  5849. }
  5850. #u20049_img {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:58px;
  5856. height:38px;
  5857. }
  5858. #u20049 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:966px;
  5862. top:114px;
  5863. width:58px;
  5864. height:38px;
  5865. display:flex;
  5866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:12px;
  5870. color:#606266;
  5871. }
  5872. #u20049 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 2px 2px 0px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u20049_text {
  5880. border-width:0px;
  5881. word-wrap:break-word;
  5882. text-transform:none;
  5883. visibility:hidden;
  5884. }
  5885. #u20050_img {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:60px;
  5891. height:38px;
  5892. }
  5893. #u20050 {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:1024px;
  5897. top:114px;
  5898. width:60px;
  5899. height:38px;
  5900. display:flex;
  5901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5902. font-weight:400;
  5903. font-style:normal;
  5904. font-size:12px;
  5905. color:#606266;
  5906. }
  5907. #u20050 .text {
  5908. position:absolute;
  5909. align-self:center;
  5910. padding:2px 2px 2px 0px;
  5911. box-sizing:border-box;
  5912. width:100%;
  5913. }
  5914. #u20050_text {
  5915. border-width:0px;
  5916. word-wrap:break-word;
  5917. text-transform:none;
  5918. visibility:hidden;
  5919. }
  5920. #u20051_img {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:60px;
  5926. height:38px;
  5927. }
  5928. #u20051 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:1084px;
  5932. top:114px;
  5933. width:60px;
  5934. height:38px;
  5935. display:flex;
  5936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:12px;
  5940. color:#606266;
  5941. }
  5942. #u20051 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 0px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u20051_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u20052_img {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:60px;
  5961. height:38px;
  5962. }
  5963. #u20052 {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:1144px;
  5967. top:114px;
  5968. width:60px;
  5969. height:38px;
  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. #u20052 .text {
  5978. position:absolute;
  5979. align-self:center;
  5980. padding:2px 2px 2px 0px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u20052_text {
  5985. border-width:0px;
  5986. word-wrap:break-word;
  5987. text-transform:none;
  5988. visibility:hidden;
  5989. }
  5990. #u20053_img {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:60px;
  5996. height:38px;
  5997. }
  5998. #u20053 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1204px;
  6002. top:114px;
  6003. width:60px;
  6004. height:38px;
  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. #u20053 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 0px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u20053_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u20054_img {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:60px;
  6031. height:38px;
  6032. }
  6033. #u20054 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:1264px;
  6037. top:114px;
  6038. width:60px;
  6039. height:38px;
  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. #u20054 .text {
  6048. position:absolute;
  6049. align-self:center;
  6050. padding:2px 2px 2px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u20054_text {
  6055. border-width:0px;
  6056. word-wrap:break-word;
  6057. text-transform:none;
  6058. visibility:hidden;
  6059. }
  6060. #u20055_img {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:60px;
  6066. height:38px;
  6067. }
  6068. #u20055 {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:1324px;
  6072. top:114px;
  6073. width:60px;
  6074. height:38px;
  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. #u20055 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 0px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u20055_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. visibility:hidden;
  6094. }
  6095. #u20056_img {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:60px;
  6101. height:38px;
  6102. }
  6103. #u20056 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:1384px;
  6107. top:114px;
  6108. width:60px;
  6109. height:38px;
  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. #u20056 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:2px 2px 2px 0px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u20056_text {
  6125. border-width:0px;
  6126. word-wrap:break-word;
  6127. text-transform:none;
  6128. visibility:hidden;
  6129. }
  6130. #u20057_img {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:60px;
  6136. height:38px;
  6137. }
  6138. #u20057 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:1444px;
  6142. top:114px;
  6143. width:60px;
  6144. height:38px;
  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. #u20057 .text {
  6153. position:absolute;
  6154. align-self:center;
  6155. padding:2px 2px 2px 0px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u20057_text {
  6160. border-width:0px;
  6161. word-wrap:break-word;
  6162. text-transform:none;
  6163. visibility:hidden;
  6164. }
  6165. #u20058_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:53px;
  6171. height:38px;
  6172. }
  6173. #u20058 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:1504px;
  6177. top:114px;
  6178. width:53px;
  6179. height:38px;
  6180. display:flex;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:12px;
  6185. color:#1890FF;
  6186. }
  6187. #u20058 .text {
  6188. position:absolute;
  6189. align-self:center;
  6190. padding:2px 2px 2px 0px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u20058_text {
  6195. border-width:0px;
  6196. word-wrap:break-word;
  6197. text-transform:none;
  6198. }
  6199. #u20059_img {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:30px;
  6205. height:35px;
  6206. }
  6207. #u20059 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:152px;
  6212. width:30px;
  6213. height:35px;
  6214. display:flex;
  6215. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:12px;
  6219. color:#606266;
  6220. }
  6221. #u20059 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:2px 2px 2px 0px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u20059_text {
  6229. border-width:0px;
  6230. word-wrap:break-word;
  6231. text-transform:none;
  6232. }
  6233. #u20060_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:58px;
  6239. height:35px;
  6240. }
  6241. #u20060 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:30px;
  6245. top:152px;
  6246. width:58px;
  6247. height:35px;
  6248. display:flex;
  6249. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#606266;
  6254. }
  6255. #u20060 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u20060_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u20061_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:60px;
  6274. height:35px;
  6275. }
  6276. #u20061 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:88px;
  6280. top:152px;
  6281. width:60px;
  6282. height:35px;
  6283. display:flex;
  6284. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#606266;
  6289. }
  6290. #u20061 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u20061_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u20062_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:60px;
  6309. height:35px;
  6310. }
  6311. #u20062 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:148px;
  6315. top:152px;
  6316. width:60px;
  6317. height:35px;
  6318. display:flex;
  6319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#606266;
  6324. }
  6325. #u20062 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u20062_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u20063_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:60px;
  6344. height:35px;
  6345. }
  6346. #u20063 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:208px;
  6350. top:152px;
  6351. width:60px;
  6352. height:35px;
  6353. display:flex;
  6354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#606266;
  6359. }
  6360. #u20063 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 0px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u20063_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. visibility:hidden;
  6372. }
  6373. #u20064_img {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:60px;
  6379. height:35px;
  6380. }
  6381. #u20064 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:268px;
  6385. top:152px;
  6386. width:60px;
  6387. height:35px;
  6388. display:flex;
  6389. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:12px;
  6393. color:#606266;
  6394. }
  6395. #u20064 .text {
  6396. position:absolute;
  6397. align-self:center;
  6398. padding:2px 2px 2px 0px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u20064_text {
  6403. border-width:0px;
  6404. word-wrap:break-word;
  6405. text-transform:none;
  6406. visibility:hidden;
  6407. }
  6408. #u20065_img {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:58px;
  6414. height:35px;
  6415. }
  6416. #u20065 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:328px;
  6420. top:152px;
  6421. width:58px;
  6422. height:35px;
  6423. display:flex;
  6424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. color:#606266;
  6429. }
  6430. #u20065 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 0px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u20065_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. visibility:hidden;
  6442. }
  6443. #u20066_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:58px;
  6449. height:35px;
  6450. }
  6451. #u20066 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:386px;
  6455. top:152px;
  6456. width:58px;
  6457. height:35px;
  6458. display:flex;
  6459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:12px;
  6463. color:#606266;
  6464. }
  6465. #u20066 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:2px 2px 2px 0px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u20066_text {
  6473. border-width:0px;
  6474. word-wrap:break-word;
  6475. text-transform:none;
  6476. visibility:hidden;
  6477. }
  6478. #u20067_img {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:58px;
  6484. height:35px;
  6485. }
  6486. #u20067 {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:444px;
  6490. top:152px;
  6491. width:58px;
  6492. height:35px;
  6493. display:flex;
  6494. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:12px;
  6498. color:#606266;
  6499. }
  6500. #u20067 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 0px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u20067_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. visibility:hidden;
  6512. }
  6513. #u20068_img {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:58px;
  6519. height:35px;
  6520. }
  6521. #u20068 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:502px;
  6525. top:152px;
  6526. width:58px;
  6527. height:35px;
  6528. display:flex;
  6529. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:12px;
  6533. color:#606266;
  6534. }
  6535. #u20068 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 2px 2px 0px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u20068_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u20069_img {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:58px;
  6554. height:35px;
  6555. }
  6556. #u20069 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:560px;
  6560. top:152px;
  6561. width:58px;
  6562. height:35px;
  6563. display:flex;
  6564. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6565. font-weight:400;
  6566. font-style:normal;
  6567. font-size:12px;
  6568. color:#606266;
  6569. }
  6570. #u20069 .text {
  6571. position:absolute;
  6572. align-self:center;
  6573. padding:2px 2px 2px 0px;
  6574. box-sizing:border-box;
  6575. width:100%;
  6576. }
  6577. #u20069_text {
  6578. border-width:0px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. visibility:hidden;
  6582. }
  6583. #u20070_img {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:58px;
  6589. height:35px;
  6590. }
  6591. #u20070 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:618px;
  6595. top:152px;
  6596. width:58px;
  6597. height:35px;
  6598. display:flex;
  6599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. color:#606266;
  6604. }
  6605. #u20070 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:2px 2px 2px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u20070_text {
  6613. border-width:0px;
  6614. word-wrap:break-word;
  6615. text-transform:none;
  6616. visibility:hidden;
  6617. }
  6618. #u20071_img {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:58px;
  6624. height:35px;
  6625. }
  6626. #u20071 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:676px;
  6630. top:152px;
  6631. width:58px;
  6632. height:35px;
  6633. display:flex;
  6634. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:12px;
  6638. color:#606266;
  6639. }
  6640. #u20071 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 0px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u20071_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u20072_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:58px;
  6659. height:35px;
  6660. }
  6661. #u20072 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:734px;
  6665. top:152px;
  6666. width:58px;
  6667. height:35px;
  6668. display:flex;
  6669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:12px;
  6673. color:#606266;
  6674. }
  6675. #u20072 .text {
  6676. position:absolute;
  6677. align-self:center;
  6678. padding:2px 2px 2px 0px;
  6679. box-sizing:border-box;
  6680. width:100%;
  6681. }
  6682. #u20072_text {
  6683. border-width:0px;
  6684. word-wrap:break-word;
  6685. text-transform:none;
  6686. visibility:hidden;
  6687. }
  6688. #u20073_img {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:58px;
  6694. height:35px;
  6695. }
  6696. #u20073 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:792px;
  6700. top:152px;
  6701. width:58px;
  6702. height:35px;
  6703. display:flex;
  6704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#606266;
  6709. }
  6710. #u20073 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 0px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u20073_text {
  6718. border-width:0px;
  6719. word-wrap:break-word;
  6720. text-transform:none;
  6721. visibility:hidden;
  6722. }
  6723. #u20074_img {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:58px;
  6729. height:35px;
  6730. }
  6731. #u20074 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:850px;
  6735. top:152px;
  6736. width:58px;
  6737. height:35px;
  6738. display:flex;
  6739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#606266;
  6744. }
  6745. #u20074 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:2px 2px 2px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u20074_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. visibility:hidden;
  6757. }
  6758. #u20075_img {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:58px;
  6764. height:35px;
  6765. }
  6766. #u20075 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:908px;
  6770. top:152px;
  6771. width:58px;
  6772. height:35px;
  6773. display:flex;
  6774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#606266;
  6779. }
  6780. #u20075 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 0px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u20075_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. visibility:hidden;
  6792. }
  6793. #u20076_img {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:58px;
  6799. height:35px;
  6800. }
  6801. #u20076 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:966px;
  6805. top:152px;
  6806. width:58px;
  6807. height:35px;
  6808. display:flex;
  6809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:12px;
  6813. color:#606266;
  6814. }
  6815. #u20076 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:2px 2px 2px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u20076_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. visibility:hidden;
  6827. }
  6828. #u20077_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:60px;
  6834. height:35px;
  6835. }
  6836. #u20077 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:1024px;
  6840. top:152px;
  6841. width:60px;
  6842. height:35px;
  6843. display:flex;
  6844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:12px;
  6848. color:#606266;
  6849. }
  6850. #u20077 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 0px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u20077_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. visibility:hidden;
  6862. }
  6863. #u20078_img {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:60px;
  6869. height:35px;
  6870. }
  6871. #u20078 {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:1084px;
  6875. top:152px;
  6876. width:60px;
  6877. height:35px;
  6878. display:flex;
  6879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:12px;
  6883. color:#606266;
  6884. }
  6885. #u20078 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 0px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u20078_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. visibility:hidden;
  6897. }
  6898. #u20079_img {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:60px;
  6904. height:35px;
  6905. }
  6906. #u20079 {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:1144px;
  6910. top:152px;
  6911. width:60px;
  6912. height:35px;
  6913. display:flex;
  6914. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:12px;
  6918. color:#606266;
  6919. }
  6920. #u20079 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:2px 2px 2px 0px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u20079_text {
  6928. border-width:0px;
  6929. word-wrap:break-word;
  6930. text-transform:none;
  6931. visibility:hidden;
  6932. }
  6933. #u20080_img {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:60px;
  6939. height:35px;
  6940. }
  6941. #u20080 {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:1204px;
  6945. top:152px;
  6946. width:60px;
  6947. height:35px;
  6948. display:flex;
  6949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:12px;
  6953. color:#606266;
  6954. }
  6955. #u20080 .text {
  6956. position:absolute;
  6957. align-self:center;
  6958. padding:2px 2px 2px 0px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u20080_text {
  6963. border-width:0px;
  6964. word-wrap:break-word;
  6965. text-transform:none;
  6966. visibility:hidden;
  6967. }
  6968. #u20081_img {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:60px;
  6974. height:35px;
  6975. }
  6976. #u20081 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:1264px;
  6980. top:152px;
  6981. width:60px;
  6982. height:35px;
  6983. display:flex;
  6984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:12px;
  6988. color:#606266;
  6989. }
  6990. #u20081 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 0px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u20081_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. visibility:hidden;
  7002. }
  7003. #u20082_img {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:60px;
  7009. height:35px;
  7010. }
  7011. #u20082 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:1324px;
  7015. top:152px;
  7016. width:60px;
  7017. height:35px;
  7018. display:flex;
  7019. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:12px;
  7023. color:#606266;
  7024. }
  7025. #u20082 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 2px 2px 0px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u20082_text {
  7033. border-width:0px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. visibility:hidden;
  7037. }
  7038. #u20083_img {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:60px;
  7044. height:35px;
  7045. }
  7046. #u20083 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:1384px;
  7050. top:152px;
  7051. width:60px;
  7052. height:35px;
  7053. display:flex;
  7054. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:12px;
  7058. color:#606266;
  7059. }
  7060. #u20083 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:2px 2px 2px 0px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u20083_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. visibility:hidden;
  7072. }
  7073. #u20084_img {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:60px;
  7079. height:35px;
  7080. }
  7081. #u20084 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:1444px;
  7085. top:152px;
  7086. width:60px;
  7087. height:35px;
  7088. display:flex;
  7089. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#606266;
  7094. }
  7095. #u20084 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:2px 2px 2px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u20084_text {
  7103. border-width:0px;
  7104. word-wrap:break-word;
  7105. text-transform:none;
  7106. visibility:hidden;
  7107. }
  7108. #u20085_img {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:0px;
  7112. top:0px;
  7113. width:53px;
  7114. height:35px;
  7115. }
  7116. #u20085 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:1504px;
  7120. top:152px;
  7121. width:53px;
  7122. height:35px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#02A7F0;
  7129. }
  7130. #u20085 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:2px 2px 2px 0px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u20085_text {
  7138. border-width:0px;
  7139. word-wrap:break-word;
  7140. text-transform:none;
  7141. visibility:hidden;
  7142. }
  7143. #u20086_img {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:30px;
  7149. height:35px;
  7150. }
  7151. #u20086 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:187px;
  7156. width:30px;
  7157. height:35px;
  7158. display:flex;
  7159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. color:#606266;
  7164. }
  7165. #u20086 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 0px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u20086_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u20087_img {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:58px;
  7184. height:35px;
  7185. }
  7186. #u20087 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:30px;
  7190. top:187px;
  7191. width:58px;
  7192. height:35px;
  7193. display:flex;
  7194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:12px;
  7198. color:#606266;
  7199. }
  7200. #u20087 .text {
  7201. position:absolute;
  7202. align-self:center;
  7203. padding:2px 2px 2px 0px;
  7204. box-sizing:border-box;
  7205. width:100%;
  7206. }
  7207. #u20087_text {
  7208. border-width:0px;
  7209. word-wrap:break-word;
  7210. text-transform:none;
  7211. visibility:hidden;
  7212. }
  7213. #u20088_img {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:60px;
  7219. height:35px;
  7220. }
  7221. #u20088 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:88px;
  7225. top:187px;
  7226. width:60px;
  7227. height:35px;
  7228. display:flex;
  7229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:12px;
  7233. color:#606266;
  7234. }
  7235. #u20088 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u20088_text {
  7243. border-width:0px;
  7244. word-wrap:break-word;
  7245. text-transform:none;
  7246. visibility:hidden;
  7247. }
  7248. #u20089_img {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:60px;
  7254. height:35px;
  7255. }
  7256. #u20089 {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:148px;
  7260. top:187px;
  7261. width:60px;
  7262. height:35px;
  7263. display:flex;
  7264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:12px;
  7268. color:#606266;
  7269. }
  7270. #u20089 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u20089_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. visibility:hidden;
  7282. }
  7283. #u20090_img {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:60px;
  7289. height:35px;
  7290. }
  7291. #u20090 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:208px;
  7295. top:187px;
  7296. width:60px;
  7297. height:35px;
  7298. display:flex;
  7299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:12px;
  7303. color:#606266;
  7304. }
  7305. #u20090 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:2px 2px 2px 0px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u20090_text {
  7313. border-width:0px;
  7314. word-wrap:break-word;
  7315. text-transform:none;
  7316. visibility:hidden;
  7317. }
  7318. #u20091_img {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:0px;
  7322. top:0px;
  7323. width:60px;
  7324. height:35px;
  7325. }
  7326. #u20091 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:268px;
  7330. top:187px;
  7331. width:60px;
  7332. height:35px;
  7333. display:flex;
  7334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:12px;
  7338. color:#606266;
  7339. }
  7340. #u20091 .text {
  7341. position:absolute;
  7342. align-self:center;
  7343. padding:2px 2px 2px 0px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u20091_text {
  7348. border-width:0px;
  7349. word-wrap:break-word;
  7350. text-transform:none;
  7351. visibility:hidden;
  7352. }
  7353. #u20092_img {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:0px;
  7357. top:0px;
  7358. width:58px;
  7359. height:35px;
  7360. }
  7361. #u20092 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:328px;
  7365. top:187px;
  7366. width:58px;
  7367. height:35px;
  7368. display:flex;
  7369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:12px;
  7373. color:#606266;
  7374. }
  7375. #u20092 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 0px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u20092_text {
  7383. border-width:0px;
  7384. word-wrap:break-word;
  7385. text-transform:none;
  7386. visibility:hidden;
  7387. }
  7388. #u20093_img {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:58px;
  7394. height:35px;
  7395. }
  7396. #u20093 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:386px;
  7400. top:187px;
  7401. width:58px;
  7402. height:35px;
  7403. display:flex;
  7404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:12px;
  7408. color:#606266;
  7409. }
  7410. #u20093 .text {
  7411. position:absolute;
  7412. align-self:center;
  7413. padding:2px 2px 2px 0px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u20093_text {
  7418. border-width:0px;
  7419. word-wrap:break-word;
  7420. text-transform:none;
  7421. visibility:hidden;
  7422. }
  7423. #u20094_img {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:58px;
  7429. height:35px;
  7430. }
  7431. #u20094 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:444px;
  7435. top:187px;
  7436. width:58px;
  7437. height:35px;
  7438. display:flex;
  7439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:12px;
  7443. color:#606266;
  7444. }
  7445. #u20094 .text {
  7446. position:absolute;
  7447. align-self:center;
  7448. padding:2px 2px 2px 0px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u20094_text {
  7453. border-width:0px;
  7454. word-wrap:break-word;
  7455. text-transform:none;
  7456. visibility:hidden;
  7457. }
  7458. #u20095_img {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:58px;
  7464. height:35px;
  7465. }
  7466. #u20095 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:502px;
  7470. top:187px;
  7471. width:58px;
  7472. height:35px;
  7473. display:flex;
  7474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:12px;
  7478. color:#606266;
  7479. }
  7480. #u20095 .text {
  7481. position:absolute;
  7482. align-self:center;
  7483. padding:2px 2px 2px 0px;
  7484. box-sizing:border-box;
  7485. width:100%;
  7486. }
  7487. #u20095_text {
  7488. border-width:0px;
  7489. word-wrap:break-word;
  7490. text-transform:none;
  7491. visibility:hidden;
  7492. }
  7493. #u20096_img {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:58px;
  7499. height:35px;
  7500. }
  7501. #u20096 {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:560px;
  7505. top:187px;
  7506. width:58px;
  7507. height:35px;
  7508. display:flex;
  7509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. font-size:12px;
  7513. color:#606266;
  7514. }
  7515. #u20096 .text {
  7516. position:absolute;
  7517. align-self:center;
  7518. padding:2px 2px 2px 0px;
  7519. box-sizing:border-box;
  7520. width:100%;
  7521. }
  7522. #u20096_text {
  7523. border-width:0px;
  7524. word-wrap:break-word;
  7525. text-transform:none;
  7526. visibility:hidden;
  7527. }
  7528. #u20097_img {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:58px;
  7534. height:35px;
  7535. }
  7536. #u20097 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:618px;
  7540. top:187px;
  7541. width:58px;
  7542. height:35px;
  7543. display:flex;
  7544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:12px;
  7548. color:#606266;
  7549. }
  7550. #u20097 .text {
  7551. position:absolute;
  7552. align-self:center;
  7553. padding:2px 2px 2px 0px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u20097_text {
  7558. border-width:0px;
  7559. word-wrap:break-word;
  7560. text-transform:none;
  7561. visibility:hidden;
  7562. }
  7563. #u20098_img {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:58px;
  7569. height:35px;
  7570. }
  7571. #u20098 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:676px;
  7575. top:187px;
  7576. width:58px;
  7577. height:35px;
  7578. display:flex;
  7579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:12px;
  7583. color:#606266;
  7584. }
  7585. #u20098 .text {
  7586. position:absolute;
  7587. align-self:center;
  7588. padding:2px 2px 2px 0px;
  7589. box-sizing:border-box;
  7590. width:100%;
  7591. }
  7592. #u20098_text {
  7593. border-width:0px;
  7594. word-wrap:break-word;
  7595. text-transform:none;
  7596. visibility:hidden;
  7597. }
  7598. #u20099_img {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:58px;
  7604. height:35px;
  7605. }
  7606. #u20099 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:734px;
  7610. top:187px;
  7611. width:58px;
  7612. height:35px;
  7613. display:flex;
  7614. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:12px;
  7618. color:#606266;
  7619. }
  7620. #u20099 .text {
  7621. position:absolute;
  7622. align-self:center;
  7623. padding:2px 2px 2px 0px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u20099_text {
  7628. border-width:0px;
  7629. word-wrap:break-word;
  7630. text-transform:none;
  7631. visibility:hidden;
  7632. }
  7633. #u20100_img {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:0px;
  7637. top:0px;
  7638. width:58px;
  7639. height:35px;
  7640. }
  7641. #u20100 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:792px;
  7645. top:187px;
  7646. width:58px;
  7647. height:35px;
  7648. display:flex;
  7649. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:12px;
  7653. color:#606266;
  7654. }
  7655. #u20100 .text {
  7656. position:absolute;
  7657. align-self:center;
  7658. padding:2px 2px 2px 0px;
  7659. box-sizing:border-box;
  7660. width:100%;
  7661. }
  7662. #u20100_text {
  7663. border-width:0px;
  7664. word-wrap:break-word;
  7665. text-transform:none;
  7666. visibility:hidden;
  7667. }
  7668. #u20101_img {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:58px;
  7674. height:35px;
  7675. }
  7676. #u20101 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:850px;
  7680. top:187px;
  7681. width:58px;
  7682. height:35px;
  7683. display:flex;
  7684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:12px;
  7688. color:#606266;
  7689. }
  7690. #u20101 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:2px 2px 2px 0px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u20101_text {
  7698. border-width:0px;
  7699. word-wrap:break-word;
  7700. text-transform:none;
  7701. visibility:hidden;
  7702. }
  7703. #u20102_img {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:58px;
  7709. height:35px;
  7710. }
  7711. #u20102 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:908px;
  7715. top:187px;
  7716. width:58px;
  7717. height:35px;
  7718. display:flex;
  7719. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:12px;
  7723. color:#606266;
  7724. }
  7725. #u20102 .text {
  7726. position:absolute;
  7727. align-self:center;
  7728. padding:2px 2px 2px 0px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u20102_text {
  7733. border-width:0px;
  7734. word-wrap:break-word;
  7735. text-transform:none;
  7736. visibility:hidden;
  7737. }
  7738. #u20103_img {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:0px;
  7742. top:0px;
  7743. width:58px;
  7744. height:35px;
  7745. }
  7746. #u20103 {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:966px;
  7750. top:187px;
  7751. width:58px;
  7752. height:35px;
  7753. display:flex;
  7754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:12px;
  7758. color:#606266;
  7759. }
  7760. #u20103 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:2px 2px 2px 0px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u20103_text {
  7768. border-width:0px;
  7769. word-wrap:break-word;
  7770. text-transform:none;
  7771. visibility:hidden;
  7772. }
  7773. #u20104_img {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:0px;
  7777. top:0px;
  7778. width:60px;
  7779. height:35px;
  7780. }
  7781. #u20104 {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:1024px;
  7785. top:187px;
  7786. width:60px;
  7787. height:35px;
  7788. display:flex;
  7789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:12px;
  7793. color:#606266;
  7794. }
  7795. #u20104 .text {
  7796. position:absolute;
  7797. align-self:center;
  7798. padding:2px 2px 2px 0px;
  7799. box-sizing:border-box;
  7800. width:100%;
  7801. }
  7802. #u20104_text {
  7803. border-width:0px;
  7804. word-wrap:break-word;
  7805. text-transform:none;
  7806. visibility:hidden;
  7807. }
  7808. #u20105_img {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:60px;
  7814. height:35px;
  7815. }
  7816. #u20105 {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:1084px;
  7820. top:187px;
  7821. width:60px;
  7822. height:35px;
  7823. display:flex;
  7824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:12px;
  7828. color:#606266;
  7829. }
  7830. #u20105 .text {
  7831. position:absolute;
  7832. align-self:center;
  7833. padding:2px 2px 2px 0px;
  7834. box-sizing:border-box;
  7835. width:100%;
  7836. }
  7837. #u20105_text {
  7838. border-width:0px;
  7839. word-wrap:break-word;
  7840. text-transform:none;
  7841. visibility:hidden;
  7842. }
  7843. #u20106_img {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:0px;
  7847. top:0px;
  7848. width:60px;
  7849. height:35px;
  7850. }
  7851. #u20106 {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:1144px;
  7855. top:187px;
  7856. width:60px;
  7857. height:35px;
  7858. display:flex;
  7859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:12px;
  7863. color:#606266;
  7864. }
  7865. #u20106 .text {
  7866. position:absolute;
  7867. align-self:center;
  7868. padding:2px 2px 2px 0px;
  7869. box-sizing:border-box;
  7870. width:100%;
  7871. }
  7872. #u20106_text {
  7873. border-width:0px;
  7874. word-wrap:break-word;
  7875. text-transform:none;
  7876. visibility:hidden;
  7877. }
  7878. #u20107_img {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:60px;
  7884. height:35px;
  7885. }
  7886. #u20107 {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:1204px;
  7890. top:187px;
  7891. width:60px;
  7892. height:35px;
  7893. display:flex;
  7894. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:12px;
  7898. color:#606266;
  7899. }
  7900. #u20107 .text {
  7901. position:absolute;
  7902. align-self:center;
  7903. padding:2px 2px 2px 0px;
  7904. box-sizing:border-box;
  7905. width:100%;
  7906. }
  7907. #u20107_text {
  7908. border-width:0px;
  7909. word-wrap:break-word;
  7910. text-transform:none;
  7911. visibility:hidden;
  7912. }
  7913. #u20108_img {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:60px;
  7919. height:35px;
  7920. }
  7921. #u20108 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:1264px;
  7925. top:187px;
  7926. width:60px;
  7927. height:35px;
  7928. display:flex;
  7929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:12px;
  7933. color:#606266;
  7934. }
  7935. #u20108 .text {
  7936. position:absolute;
  7937. align-self:center;
  7938. padding:2px 2px 2px 0px;
  7939. box-sizing:border-box;
  7940. width:100%;
  7941. }
  7942. #u20108_text {
  7943. border-width:0px;
  7944. word-wrap:break-word;
  7945. text-transform:none;
  7946. visibility:hidden;
  7947. }
  7948. #u20109_img {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:0px;
  7952. top:0px;
  7953. width:60px;
  7954. height:35px;
  7955. }
  7956. #u20109 {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:1324px;
  7960. top:187px;
  7961. width:60px;
  7962. height:35px;
  7963. display:flex;
  7964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7965. font-weight:400;
  7966. font-style:normal;
  7967. font-size:12px;
  7968. color:#606266;
  7969. }
  7970. #u20109 .text {
  7971. position:absolute;
  7972. align-self:center;
  7973. padding:2px 2px 2px 0px;
  7974. box-sizing:border-box;
  7975. width:100%;
  7976. }
  7977. #u20109_text {
  7978. border-width:0px;
  7979. word-wrap:break-word;
  7980. text-transform:none;
  7981. visibility:hidden;
  7982. }
  7983. #u20110_img {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:60px;
  7989. height:35px;
  7990. }
  7991. #u20110 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:1384px;
  7995. top:187px;
  7996. width:60px;
  7997. height:35px;
  7998. display:flex;
  7999. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:12px;
  8003. color:#606266;
  8004. }
  8005. #u20110 .text {
  8006. position:absolute;
  8007. align-self:center;
  8008. padding:2px 2px 2px 0px;
  8009. box-sizing:border-box;
  8010. width:100%;
  8011. }
  8012. #u20110_text {
  8013. border-width:0px;
  8014. word-wrap:break-word;
  8015. text-transform:none;
  8016. visibility:hidden;
  8017. }
  8018. #u20111_img {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:0px;
  8023. width:60px;
  8024. height:35px;
  8025. }
  8026. #u20111 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:1444px;
  8030. top:187px;
  8031. width:60px;
  8032. height:35px;
  8033. display:flex;
  8034. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:12px;
  8038. color:#606266;
  8039. }
  8040. #u20111 .text {
  8041. position:absolute;
  8042. align-self:center;
  8043. padding:2px 2px 2px 0px;
  8044. box-sizing:border-box;
  8045. width:100%;
  8046. }
  8047. #u20111_text {
  8048. border-width:0px;
  8049. word-wrap:break-word;
  8050. text-transform:none;
  8051. visibility:hidden;
  8052. }
  8053. #u20112_img {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:53px;
  8059. height:35px;
  8060. }
  8061. #u20112 {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:1504px;
  8065. top:187px;
  8066. width:53px;
  8067. height:35px;
  8068. display:flex;
  8069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:12px;
  8073. color:#606266;
  8074. }
  8075. #u20112 .text {
  8076. position:absolute;
  8077. align-self:center;
  8078. padding:2px 2px 2px 0px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u20112_text {
  8083. border-width:0px;
  8084. word-wrap:break-word;
  8085. text-transform:none;
  8086. visibility:hidden;
  8087. }
  8088. #u20113_img {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:30px;
  8094. height:38px;
  8095. }
  8096. #u20113 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:222px;
  8101. width:30px;
  8102. height:38px;
  8103. display:flex;
  8104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:12px;
  8108. color:#606266;
  8109. }
  8110. #u20113 .text {
  8111. position:absolute;
  8112. align-self:center;
  8113. padding:2px 2px 2px 0px;
  8114. box-sizing:border-box;
  8115. width:100%;
  8116. }
  8117. #u20113_text {
  8118. border-width:0px;
  8119. word-wrap:break-word;
  8120. text-transform:none;
  8121. visibility:hidden;
  8122. }
  8123. #u20114_img {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:0px;
  8127. top:0px;
  8128. width:58px;
  8129. height:38px;
  8130. }
  8131. #u20114 {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:30px;
  8135. top:222px;
  8136. width:58px;
  8137. height:38px;
  8138. display:flex;
  8139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:12px;
  8143. color:#606266;
  8144. }
  8145. #u20114 .text {
  8146. position:absolute;
  8147. align-self:center;
  8148. padding:2px 2px 2px 0px;
  8149. box-sizing:border-box;
  8150. width:100%;
  8151. }
  8152. #u20114_text {
  8153. border-width:0px;
  8154. word-wrap:break-word;
  8155. text-transform:none;
  8156. visibility:hidden;
  8157. }
  8158. #u20115_img {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:60px;
  8164. height:38px;
  8165. }
  8166. #u20115 {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:88px;
  8170. top:222px;
  8171. width:60px;
  8172. height:38px;
  8173. display:flex;
  8174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8175. font-weight:400;
  8176. font-style:normal;
  8177. font-size:12px;
  8178. color:#606266;
  8179. }
  8180. #u20115 .text {
  8181. position:absolute;
  8182. align-self:center;
  8183. padding:2px 2px 2px 0px;
  8184. box-sizing:border-box;
  8185. width:100%;
  8186. }
  8187. #u20115_text {
  8188. border-width:0px;
  8189. word-wrap:break-word;
  8190. text-transform:none;
  8191. visibility:hidden;
  8192. }
  8193. #u20116_img {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:0px;
  8197. top:0px;
  8198. width:60px;
  8199. height:38px;
  8200. }
  8201. #u20116 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:148px;
  8205. top:222px;
  8206. width:60px;
  8207. height:38px;
  8208. display:flex;
  8209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. font-size:12px;
  8213. color:#606266;
  8214. }
  8215. #u20116 .text {
  8216. position:absolute;
  8217. align-self:center;
  8218. padding:2px 2px 2px 0px;
  8219. box-sizing:border-box;
  8220. width:100%;
  8221. }
  8222. #u20116_text {
  8223. border-width:0px;
  8224. word-wrap:break-word;
  8225. text-transform:none;
  8226. visibility:hidden;
  8227. }
  8228. #u20117_img {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:60px;
  8234. height:38px;
  8235. }
  8236. #u20117 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:208px;
  8240. top:222px;
  8241. width:60px;
  8242. height:38px;
  8243. display:flex;
  8244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:12px;
  8248. color:#606266;
  8249. }
  8250. #u20117 .text {
  8251. position:absolute;
  8252. align-self:center;
  8253. padding:2px 2px 2px 0px;
  8254. box-sizing:border-box;
  8255. width:100%;
  8256. }
  8257. #u20117_text {
  8258. border-width:0px;
  8259. word-wrap:break-word;
  8260. text-transform:none;
  8261. visibility:hidden;
  8262. }
  8263. #u20118_img {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:0px;
  8267. top:0px;
  8268. width:60px;
  8269. height:38px;
  8270. }
  8271. #u20118 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:268px;
  8275. top:222px;
  8276. width:60px;
  8277. height:38px;
  8278. display:flex;
  8279. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8280. font-weight:400;
  8281. font-style:normal;
  8282. font-size:12px;
  8283. color:#606266;
  8284. }
  8285. #u20118 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:2px 2px 2px 0px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u20118_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. visibility:hidden;
  8297. }
  8298. #u20119_img {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:58px;
  8304. height:38px;
  8305. }
  8306. #u20119 {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:328px;
  8310. top:222px;
  8311. width:58px;
  8312. height:38px;
  8313. display:flex;
  8314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8315. font-weight:400;
  8316. font-style:normal;
  8317. font-size:12px;
  8318. color:#606266;
  8319. }
  8320. #u20119 .text {
  8321. position:absolute;
  8322. align-self:center;
  8323. padding:2px 2px 2px 0px;
  8324. box-sizing:border-box;
  8325. width:100%;
  8326. }
  8327. #u20119_text {
  8328. border-width:0px;
  8329. word-wrap:break-word;
  8330. text-transform:none;
  8331. visibility:hidden;
  8332. }
  8333. #u20120_img {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:58px;
  8339. height:38px;
  8340. }
  8341. #u20120 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:386px;
  8345. top:222px;
  8346. width:58px;
  8347. height:38px;
  8348. display:flex;
  8349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:12px;
  8353. color:#606266;
  8354. }
  8355. #u20120 .text {
  8356. position:absolute;
  8357. align-self:center;
  8358. padding:2px 2px 2px 0px;
  8359. box-sizing:border-box;
  8360. width:100%;
  8361. }
  8362. #u20120_text {
  8363. border-width:0px;
  8364. word-wrap:break-word;
  8365. text-transform:none;
  8366. visibility:hidden;
  8367. }
  8368. #u20121_img {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:0px;
  8372. top:0px;
  8373. width:58px;
  8374. height:38px;
  8375. }
  8376. #u20121 {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:444px;
  8380. top:222px;
  8381. width:58px;
  8382. height:38px;
  8383. display:flex;
  8384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8385. font-weight:400;
  8386. font-style:normal;
  8387. font-size:12px;
  8388. color:#606266;
  8389. }
  8390. #u20121 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:2px 2px 2px 0px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u20121_text {
  8398. border-width:0px;
  8399. word-wrap:break-word;
  8400. text-transform:none;
  8401. visibility:hidden;
  8402. }
  8403. #u20122_img {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:58px;
  8409. height:38px;
  8410. }
  8411. #u20122 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:502px;
  8415. top:222px;
  8416. width:58px;
  8417. height:38px;
  8418. display:flex;
  8419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. font-size:12px;
  8423. color:#606266;
  8424. }
  8425. #u20122 .text {
  8426. position:absolute;
  8427. align-self:center;
  8428. padding:2px 2px 2px 0px;
  8429. box-sizing:border-box;
  8430. width:100%;
  8431. }
  8432. #u20122_text {
  8433. border-width:0px;
  8434. word-wrap:break-word;
  8435. text-transform:none;
  8436. visibility:hidden;
  8437. }
  8438. #u20123_img {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:0px;
  8442. top:0px;
  8443. width:58px;
  8444. height:38px;
  8445. }
  8446. #u20123 {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:560px;
  8450. top:222px;
  8451. width:58px;
  8452. height:38px;
  8453. display:flex;
  8454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8455. font-weight:400;
  8456. font-style:normal;
  8457. font-size:12px;
  8458. color:#606266;
  8459. }
  8460. #u20123 .text {
  8461. position:absolute;
  8462. align-self:center;
  8463. padding:2px 2px 2px 0px;
  8464. box-sizing:border-box;
  8465. width:100%;
  8466. }
  8467. #u20123_text {
  8468. border-width:0px;
  8469. word-wrap:break-word;
  8470. text-transform:none;
  8471. visibility:hidden;
  8472. }
  8473. #u20124_img {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:58px;
  8479. height:38px;
  8480. }
  8481. #u20124 {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:618px;
  8485. top:222px;
  8486. width:58px;
  8487. height:38px;
  8488. display:flex;
  8489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:12px;
  8493. color:#606266;
  8494. }
  8495. #u20124 .text {
  8496. position:absolute;
  8497. align-self:center;
  8498. padding:2px 2px 2px 0px;
  8499. box-sizing:border-box;
  8500. width:100%;
  8501. }
  8502. #u20124_text {
  8503. border-width:0px;
  8504. word-wrap:break-word;
  8505. text-transform:none;
  8506. visibility:hidden;
  8507. }
  8508. #u20125_img {
  8509. border-width:0px;
  8510. position:absolute;
  8511. left:0px;
  8512. top:0px;
  8513. width:58px;
  8514. height:38px;
  8515. }
  8516. #u20125 {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:676px;
  8520. top:222px;
  8521. width:58px;
  8522. height:38px;
  8523. display:flex;
  8524. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8525. font-weight:400;
  8526. font-style:normal;
  8527. font-size:12px;
  8528. color:#606266;
  8529. }
  8530. #u20125 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 0px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u20125_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. visibility:hidden;
  8542. }
  8543. #u20126_img {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:58px;
  8549. height:38px;
  8550. }
  8551. #u20126 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:734px;
  8555. top:222px;
  8556. width:58px;
  8557. height:38px;
  8558. display:flex;
  8559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8560. font-weight:400;
  8561. font-style:normal;
  8562. font-size:12px;
  8563. color:#606266;
  8564. }
  8565. #u20126 .text {
  8566. position:absolute;
  8567. align-self:center;
  8568. padding:2px 2px 2px 0px;
  8569. box-sizing:border-box;
  8570. width:100%;
  8571. }
  8572. #u20126_text {
  8573. border-width:0px;
  8574. word-wrap:break-word;
  8575. text-transform:none;
  8576. visibility:hidden;
  8577. }
  8578. #u20127_img {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:58px;
  8584. height:38px;
  8585. }
  8586. #u20127 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:792px;
  8590. top:222px;
  8591. width:58px;
  8592. height:38px;
  8593. display:flex;
  8594. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:12px;
  8598. color:#606266;
  8599. }
  8600. #u20127 .text {
  8601. position:absolute;
  8602. align-self:center;
  8603. padding:2px 2px 2px 0px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u20127_text {
  8608. border-width:0px;
  8609. word-wrap:break-word;
  8610. text-transform:none;
  8611. visibility:hidden;
  8612. }
  8613. #u20128_img {
  8614. border-width:0px;
  8615. position:absolute;
  8616. left:0px;
  8617. top:0px;
  8618. width:58px;
  8619. height:38px;
  8620. }
  8621. #u20128 {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:850px;
  8625. top:222px;
  8626. width:58px;
  8627. height:38px;
  8628. display:flex;
  8629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8630. font-weight:400;
  8631. font-style:normal;
  8632. font-size:12px;
  8633. color:#606266;
  8634. }
  8635. #u20128 .text {
  8636. position:absolute;
  8637. align-self:center;
  8638. padding:2px 2px 2px 0px;
  8639. box-sizing:border-box;
  8640. width:100%;
  8641. }
  8642. #u20128_text {
  8643. border-width:0px;
  8644. word-wrap:break-word;
  8645. text-transform:none;
  8646. visibility:hidden;
  8647. }
  8648. #u20129_img {
  8649. border-width:0px;
  8650. position:absolute;
  8651. left:0px;
  8652. top:0px;
  8653. width:58px;
  8654. height:38px;
  8655. }
  8656. #u20129 {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:908px;
  8660. top:222px;
  8661. width:58px;
  8662. height:38px;
  8663. display:flex;
  8664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8665. font-weight:400;
  8666. font-style:normal;
  8667. font-size:12px;
  8668. color:#606266;
  8669. }
  8670. #u20129 .text {
  8671. position:absolute;
  8672. align-self:center;
  8673. padding:2px 2px 2px 0px;
  8674. box-sizing:border-box;
  8675. width:100%;
  8676. }
  8677. #u20129_text {
  8678. border-width:0px;
  8679. word-wrap:break-word;
  8680. text-transform:none;
  8681. visibility:hidden;
  8682. }
  8683. #u20130_img {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:58px;
  8689. height:38px;
  8690. }
  8691. #u20130 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:966px;
  8695. top:222px;
  8696. width:58px;
  8697. height:38px;
  8698. display:flex;
  8699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8700. font-weight:400;
  8701. font-style:normal;
  8702. font-size:12px;
  8703. color:#606266;
  8704. }
  8705. #u20130 .text {
  8706. position:absolute;
  8707. align-self:center;
  8708. padding:2px 2px 2px 0px;
  8709. box-sizing:border-box;
  8710. width:100%;
  8711. }
  8712. #u20130_text {
  8713. border-width:0px;
  8714. word-wrap:break-word;
  8715. text-transform:none;
  8716. visibility:hidden;
  8717. }
  8718. #u20131_img {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:60px;
  8724. height:38px;
  8725. }
  8726. #u20131 {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:1024px;
  8730. top:222px;
  8731. width:60px;
  8732. height:38px;
  8733. display:flex;
  8734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:12px;
  8738. color:#606266;
  8739. }
  8740. #u20131 .text {
  8741. position:absolute;
  8742. align-self:center;
  8743. padding:2px 2px 2px 0px;
  8744. box-sizing:border-box;
  8745. width:100%;
  8746. }
  8747. #u20131_text {
  8748. border-width:0px;
  8749. word-wrap:break-word;
  8750. text-transform:none;
  8751. visibility:hidden;
  8752. }
  8753. #u20132_img {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:0px;
  8757. top:0px;
  8758. width:60px;
  8759. height:38px;
  8760. }
  8761. #u20132 {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:1084px;
  8765. top:222px;
  8766. width:60px;
  8767. height:38px;
  8768. display:flex;
  8769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8770. font-weight:400;
  8771. font-style:normal;
  8772. font-size:12px;
  8773. color:#606266;
  8774. }
  8775. #u20132 .text {
  8776. position:absolute;
  8777. align-self:center;
  8778. padding:2px 2px 2px 0px;
  8779. box-sizing:border-box;
  8780. width:100%;
  8781. }
  8782. #u20132_text {
  8783. border-width:0px;
  8784. word-wrap:break-word;
  8785. text-transform:none;
  8786. visibility:hidden;
  8787. }
  8788. #u20133_img {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:60px;
  8794. height:38px;
  8795. }
  8796. #u20133 {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:1144px;
  8800. top:222px;
  8801. width:60px;
  8802. height:38px;
  8803. display:flex;
  8804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8805. font-weight:400;
  8806. font-style:normal;
  8807. font-size:12px;
  8808. color:#606266;
  8809. }
  8810. #u20133 .text {
  8811. position:absolute;
  8812. align-self:center;
  8813. padding:2px 2px 2px 0px;
  8814. box-sizing:border-box;
  8815. width:100%;
  8816. }
  8817. #u20133_text {
  8818. border-width:0px;
  8819. word-wrap:break-word;
  8820. text-transform:none;
  8821. visibility:hidden;
  8822. }
  8823. #u20134_img {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:0px;
  8827. top:0px;
  8828. width:60px;
  8829. height:38px;
  8830. }
  8831. #u20134 {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:1204px;
  8835. top:222px;
  8836. width:60px;
  8837. height:38px;
  8838. display:flex;
  8839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:12px;
  8843. color:#606266;
  8844. }
  8845. #u20134 .text {
  8846. position:absolute;
  8847. align-self:center;
  8848. padding:2px 2px 2px 0px;
  8849. box-sizing:border-box;
  8850. width:100%;
  8851. }
  8852. #u20134_text {
  8853. border-width:0px;
  8854. word-wrap:break-word;
  8855. text-transform:none;
  8856. visibility:hidden;
  8857. }
  8858. #u20135_img {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:60px;
  8864. height:38px;
  8865. }
  8866. #u20135 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:1264px;
  8870. top:222px;
  8871. width:60px;
  8872. height:38px;
  8873. display:flex;
  8874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8875. font-weight:400;
  8876. font-style:normal;
  8877. font-size:12px;
  8878. color:#606266;
  8879. }
  8880. #u20135 .text {
  8881. position:absolute;
  8882. align-self:center;
  8883. padding:2px 2px 2px 0px;
  8884. box-sizing:border-box;
  8885. width:100%;
  8886. }
  8887. #u20135_text {
  8888. border-width:0px;
  8889. word-wrap:break-word;
  8890. text-transform:none;
  8891. visibility:hidden;
  8892. }
  8893. #u20136_img {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:60px;
  8899. height:38px;
  8900. }
  8901. #u20136 {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:1324px;
  8905. top:222px;
  8906. width:60px;
  8907. height:38px;
  8908. display:flex;
  8909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8910. font-weight:400;
  8911. font-style:normal;
  8912. font-size:12px;
  8913. color:#606266;
  8914. }
  8915. #u20136 .text {
  8916. position:absolute;
  8917. align-self:center;
  8918. padding:2px 2px 2px 0px;
  8919. box-sizing:border-box;
  8920. width:100%;
  8921. }
  8922. #u20136_text {
  8923. border-width:0px;
  8924. word-wrap:break-word;
  8925. text-transform:none;
  8926. visibility:hidden;
  8927. }
  8928. #u20137_img {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:0px;
  8932. top:0px;
  8933. width:60px;
  8934. height:38px;
  8935. }
  8936. #u20137 {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:1384px;
  8940. top:222px;
  8941. width:60px;
  8942. height:38px;
  8943. display:flex;
  8944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:12px;
  8948. color:#606266;
  8949. }
  8950. #u20137 .text {
  8951. position:absolute;
  8952. align-self:center;
  8953. padding:2px 2px 2px 0px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u20137_text {
  8958. border-width:0px;
  8959. word-wrap:break-word;
  8960. text-transform:none;
  8961. visibility:hidden;
  8962. }
  8963. #u20138_img {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:60px;
  8969. height:38px;
  8970. }
  8971. #u20138 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:1444px;
  8975. top:222px;
  8976. width:60px;
  8977. height:38px;
  8978. display:flex;
  8979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:12px;
  8983. color:#606266;
  8984. }
  8985. #u20138 .text {
  8986. position:absolute;
  8987. align-self:center;
  8988. padding:2px 2px 2px 0px;
  8989. box-sizing:border-box;
  8990. width:100%;
  8991. }
  8992. #u20138_text {
  8993. border-width:0px;
  8994. word-wrap:break-word;
  8995. text-transform:none;
  8996. visibility:hidden;
  8997. }
  8998. #u20139_img {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:53px;
  9004. height:38px;
  9005. }
  9006. #u20139 {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:1504px;
  9010. top:222px;
  9011. width:53px;
  9012. height:38px;
  9013. display:flex;
  9014. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9015. font-weight:400;
  9016. font-style:normal;
  9017. font-size:12px;
  9018. color:#606266;
  9019. }
  9020. #u20139 .text {
  9021. position:absolute;
  9022. align-self:center;
  9023. padding:2px 2px 2px 0px;
  9024. box-sizing:border-box;
  9025. width:100%;
  9026. }
  9027. #u20139_text {
  9028. border-width:0px;
  9029. word-wrap:break-word;
  9030. text-transform:none;
  9031. visibility:hidden;
  9032. }
  9033. #u20140_img {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:0px;
  9038. width:30px;
  9039. height:32px;
  9040. }
  9041. #u20140 {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:260px;
  9046. width:30px;
  9047. height:32px;
  9048. display:flex;
  9049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:12px;
  9053. color:#606266;
  9054. }
  9055. #u20140 .text {
  9056. position:absolute;
  9057. align-self:center;
  9058. padding:2px 2px 2px 0px;
  9059. box-sizing:border-box;
  9060. width:100%;
  9061. }
  9062. #u20140_text {
  9063. border-width:0px;
  9064. word-wrap:break-word;
  9065. text-transform:none;
  9066. visibility:hidden;
  9067. }
  9068. #u20141_img {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:0px;
  9072. top:0px;
  9073. width:58px;
  9074. height:32px;
  9075. }
  9076. #u20141 {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:30px;
  9080. top:260px;
  9081. width:58px;
  9082. height:32px;
  9083. display:flex;
  9084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9085. font-weight:400;
  9086. font-style:normal;
  9087. font-size:12px;
  9088. color:#606266;
  9089. }
  9090. #u20141 .text {
  9091. position:absolute;
  9092. align-self:center;
  9093. padding:2px 2px 2px 0px;
  9094. box-sizing:border-box;
  9095. width:100%;
  9096. }
  9097. #u20141_text {
  9098. border-width:0px;
  9099. word-wrap:break-word;
  9100. text-transform:none;
  9101. visibility:hidden;
  9102. }
  9103. #u20142_img {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:0px;
  9107. top:0px;
  9108. width:60px;
  9109. height:32px;
  9110. }
  9111. #u20142 {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:88px;
  9115. top:260px;
  9116. width:60px;
  9117. height:32px;
  9118. display:flex;
  9119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9120. font-weight:400;
  9121. font-style:normal;
  9122. font-size:12px;
  9123. color:#606266;
  9124. }
  9125. #u20142 .text {
  9126. position:absolute;
  9127. align-self:center;
  9128. padding:2px 2px 2px 0px;
  9129. box-sizing:border-box;
  9130. width:100%;
  9131. }
  9132. #u20142_text {
  9133. border-width:0px;
  9134. word-wrap:break-word;
  9135. text-transform:none;
  9136. visibility:hidden;
  9137. }
  9138. #u20143_img {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:0px;
  9142. top:0px;
  9143. width:60px;
  9144. height:32px;
  9145. }
  9146. #u20143 {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:148px;
  9150. top:260px;
  9151. width:60px;
  9152. height:32px;
  9153. display:flex;
  9154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9155. font-weight:400;
  9156. font-style:normal;
  9157. font-size:12px;
  9158. color:#606266;
  9159. }
  9160. #u20143 .text {
  9161. position:absolute;
  9162. align-self:center;
  9163. padding:2px 2px 2px 0px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u20143_text {
  9168. border-width:0px;
  9169. word-wrap:break-word;
  9170. text-transform:none;
  9171. visibility:hidden;
  9172. }
  9173. #u20144_img {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:60px;
  9179. height:32px;
  9180. }
  9181. #u20144 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:208px;
  9185. top:260px;
  9186. width:60px;
  9187. height:32px;
  9188. display:flex;
  9189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9190. font-weight:400;
  9191. font-style:normal;
  9192. font-size:12px;
  9193. color:#606266;
  9194. }
  9195. #u20144 .text {
  9196. position:absolute;
  9197. align-self:center;
  9198. padding:2px 2px 2px 0px;
  9199. box-sizing:border-box;
  9200. width:100%;
  9201. }
  9202. #u20144_text {
  9203. border-width:0px;
  9204. word-wrap:break-word;
  9205. text-transform:none;
  9206. visibility:hidden;
  9207. }
  9208. #u20145_img {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:60px;
  9214. height:32px;
  9215. }
  9216. #u20145 {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:268px;
  9220. top:260px;
  9221. width:60px;
  9222. height:32px;
  9223. display:flex;
  9224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9225. font-weight:400;
  9226. font-style:normal;
  9227. font-size:12px;
  9228. color:#606266;
  9229. }
  9230. #u20145 .text {
  9231. position:absolute;
  9232. align-self:center;
  9233. padding:2px 2px 2px 0px;
  9234. box-sizing:border-box;
  9235. width:100%;
  9236. }
  9237. #u20145_text {
  9238. border-width:0px;
  9239. word-wrap:break-word;
  9240. text-transform:none;
  9241. visibility:hidden;
  9242. }
  9243. #u20146_img {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:58px;
  9249. height:32px;
  9250. }
  9251. #u20146 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:328px;
  9255. top:260px;
  9256. width:58px;
  9257. height:32px;
  9258. display:flex;
  9259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9260. font-weight:400;
  9261. font-style:normal;
  9262. font-size:12px;
  9263. color:#606266;
  9264. }
  9265. #u20146 .text {
  9266. position:absolute;
  9267. align-self:center;
  9268. padding:2px 2px 2px 0px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u20146_text {
  9273. border-width:0px;
  9274. word-wrap:break-word;
  9275. text-transform:none;
  9276. visibility:hidden;
  9277. }
  9278. #u20147_img {
  9279. border-width:0px;
  9280. position:absolute;
  9281. left:0px;
  9282. top:0px;
  9283. width:58px;
  9284. height:32px;
  9285. }
  9286. #u20147 {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:386px;
  9290. top:260px;
  9291. width:58px;
  9292. height:32px;
  9293. display:flex;
  9294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9295. font-weight:400;
  9296. font-style:normal;
  9297. font-size:12px;
  9298. color:#606266;
  9299. }
  9300. #u20147 .text {
  9301. position:absolute;
  9302. align-self:center;
  9303. padding:2px 2px 2px 0px;
  9304. box-sizing:border-box;
  9305. width:100%;
  9306. }
  9307. #u20147_text {
  9308. border-width:0px;
  9309. word-wrap:break-word;
  9310. text-transform:none;
  9311. visibility:hidden;
  9312. }
  9313. #u20148_img {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:58px;
  9319. height:32px;
  9320. }
  9321. #u20148 {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:444px;
  9325. top:260px;
  9326. width:58px;
  9327. height:32px;
  9328. display:flex;
  9329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9330. font-weight:400;
  9331. font-style:normal;
  9332. font-size:12px;
  9333. color:#606266;
  9334. }
  9335. #u20148 .text {
  9336. position:absolute;
  9337. align-self:center;
  9338. padding:2px 2px 2px 0px;
  9339. box-sizing:border-box;
  9340. width:100%;
  9341. }
  9342. #u20148_text {
  9343. border-width:0px;
  9344. word-wrap:break-word;
  9345. text-transform:none;
  9346. visibility:hidden;
  9347. }
  9348. #u20149_img {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:58px;
  9354. height:32px;
  9355. }
  9356. #u20149 {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:502px;
  9360. top:260px;
  9361. width:58px;
  9362. height:32px;
  9363. display:flex;
  9364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9365. font-weight:400;
  9366. font-style:normal;
  9367. font-size:12px;
  9368. color:#606266;
  9369. }
  9370. #u20149 .text {
  9371. position:absolute;
  9372. align-self:center;
  9373. padding:2px 2px 2px 0px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u20149_text {
  9378. border-width:0px;
  9379. word-wrap:break-word;
  9380. text-transform:none;
  9381. visibility:hidden;
  9382. }
  9383. #u20150_img {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:58px;
  9389. height:32px;
  9390. }
  9391. #u20150 {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:560px;
  9395. top:260px;
  9396. width:58px;
  9397. height:32px;
  9398. display:flex;
  9399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9400. font-weight:400;
  9401. font-style:normal;
  9402. font-size:12px;
  9403. color:#606266;
  9404. }
  9405. #u20150 .text {
  9406. position:absolute;
  9407. align-self:center;
  9408. padding:2px 2px 2px 0px;
  9409. box-sizing:border-box;
  9410. width:100%;
  9411. }
  9412. #u20150_text {
  9413. border-width:0px;
  9414. word-wrap:break-word;
  9415. text-transform:none;
  9416. visibility:hidden;
  9417. }
  9418. #u20151_img {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:0px;
  9422. top:0px;
  9423. width:58px;
  9424. height:32px;
  9425. }
  9426. #u20151 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:618px;
  9430. top:260px;
  9431. width:58px;
  9432. height:32px;
  9433. display:flex;
  9434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:12px;
  9438. color:#606266;
  9439. }
  9440. #u20151 .text {
  9441. position:absolute;
  9442. align-self:center;
  9443. padding:2px 2px 2px 0px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u20151_text {
  9448. border-width:0px;
  9449. word-wrap:break-word;
  9450. text-transform:none;
  9451. visibility:hidden;
  9452. }
  9453. #u20152_img {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:58px;
  9459. height:32px;
  9460. }
  9461. #u20152 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:676px;
  9465. top:260px;
  9466. width:58px;
  9467. height:32px;
  9468. display:flex;
  9469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:12px;
  9473. color:#606266;
  9474. }
  9475. #u20152 .text {
  9476. position:absolute;
  9477. align-self:center;
  9478. padding:2px 2px 2px 0px;
  9479. box-sizing:border-box;
  9480. width:100%;
  9481. }
  9482. #u20152_text {
  9483. border-width:0px;
  9484. word-wrap:break-word;
  9485. text-transform:none;
  9486. visibility:hidden;
  9487. }
  9488. #u20153_img {
  9489. border-width:0px;
  9490. position:absolute;
  9491. left:0px;
  9492. top:0px;
  9493. width:58px;
  9494. height:32px;
  9495. }
  9496. #u20153 {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:734px;
  9500. top:260px;
  9501. width:58px;
  9502. height:32px;
  9503. display:flex;
  9504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9505. font-weight:400;
  9506. font-style:normal;
  9507. font-size:12px;
  9508. color:#606266;
  9509. }
  9510. #u20153 .text {
  9511. position:absolute;
  9512. align-self:center;
  9513. padding:2px 2px 2px 0px;
  9514. box-sizing:border-box;
  9515. width:100%;
  9516. }
  9517. #u20153_text {
  9518. border-width:0px;
  9519. word-wrap:break-word;
  9520. text-transform:none;
  9521. visibility:hidden;
  9522. }
  9523. #u20154_img {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:0px;
  9527. top:0px;
  9528. width:58px;
  9529. height:32px;
  9530. }
  9531. #u20154 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:792px;
  9535. top:260px;
  9536. width:58px;
  9537. height:32px;
  9538. display:flex;
  9539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9540. font-weight:400;
  9541. font-style:normal;
  9542. font-size:12px;
  9543. color:#606266;
  9544. }
  9545. #u20154 .text {
  9546. position:absolute;
  9547. align-self:center;
  9548. padding:2px 2px 2px 0px;
  9549. box-sizing:border-box;
  9550. width:100%;
  9551. }
  9552. #u20154_text {
  9553. border-width:0px;
  9554. word-wrap:break-word;
  9555. text-transform:none;
  9556. visibility:hidden;
  9557. }
  9558. #u20155_img {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:0px;
  9562. top:0px;
  9563. width:58px;
  9564. height:32px;
  9565. }
  9566. #u20155 {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:850px;
  9570. top:260px;
  9571. width:58px;
  9572. height:32px;
  9573. display:flex;
  9574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9575. font-weight:400;
  9576. font-style:normal;
  9577. font-size:12px;
  9578. color:#606266;
  9579. }
  9580. #u20155 .text {
  9581. position:absolute;
  9582. align-self:center;
  9583. padding:2px 2px 2px 0px;
  9584. box-sizing:border-box;
  9585. width:100%;
  9586. }
  9587. #u20155_text {
  9588. border-width:0px;
  9589. word-wrap:break-word;
  9590. text-transform:none;
  9591. visibility:hidden;
  9592. }
  9593. #u20156_img {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:0px;
  9597. top:0px;
  9598. width:58px;
  9599. height:32px;
  9600. }
  9601. #u20156 {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:908px;
  9605. top:260px;
  9606. width:58px;
  9607. height:32px;
  9608. display:flex;
  9609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9610. font-weight:400;
  9611. font-style:normal;
  9612. font-size:12px;
  9613. color:#606266;
  9614. }
  9615. #u20156 .text {
  9616. position:absolute;
  9617. align-self:center;
  9618. padding:2px 2px 2px 0px;
  9619. box-sizing:border-box;
  9620. width:100%;
  9621. }
  9622. #u20156_text {
  9623. border-width:0px;
  9624. word-wrap:break-word;
  9625. text-transform:none;
  9626. visibility:hidden;
  9627. }
  9628. #u20157_img {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:0px;
  9632. top:0px;
  9633. width:58px;
  9634. height:32px;
  9635. }
  9636. #u20157 {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:966px;
  9640. top:260px;
  9641. width:58px;
  9642. height:32px;
  9643. display:flex;
  9644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9645. font-weight:400;
  9646. font-style:normal;
  9647. font-size:12px;
  9648. color:#606266;
  9649. }
  9650. #u20157 .text {
  9651. position:absolute;
  9652. align-self:center;
  9653. padding:2px 2px 2px 0px;
  9654. box-sizing:border-box;
  9655. width:100%;
  9656. }
  9657. #u20157_text {
  9658. border-width:0px;
  9659. word-wrap:break-word;
  9660. text-transform:none;
  9661. visibility:hidden;
  9662. }
  9663. #u20158_img {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:0px;
  9667. top:0px;
  9668. width:60px;
  9669. height:32px;
  9670. }
  9671. #u20158 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:1024px;
  9675. top:260px;
  9676. width:60px;
  9677. height:32px;
  9678. display:flex;
  9679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9680. font-weight:400;
  9681. font-style:normal;
  9682. font-size:12px;
  9683. color:#606266;
  9684. }
  9685. #u20158 .text {
  9686. position:absolute;
  9687. align-self:center;
  9688. padding:2px 2px 2px 0px;
  9689. box-sizing:border-box;
  9690. width:100%;
  9691. }
  9692. #u20158_text {
  9693. border-width:0px;
  9694. word-wrap:break-word;
  9695. text-transform:none;
  9696. visibility:hidden;
  9697. }
  9698. #u20159_img {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:60px;
  9704. height:32px;
  9705. }
  9706. #u20159 {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:1084px;
  9710. top:260px;
  9711. width:60px;
  9712. height:32px;
  9713. display:flex;
  9714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:12px;
  9718. color:#606266;
  9719. }
  9720. #u20159 .text {
  9721. position:absolute;
  9722. align-self:center;
  9723. padding:2px 2px 2px 0px;
  9724. box-sizing:border-box;
  9725. width:100%;
  9726. }
  9727. #u20159_text {
  9728. border-width:0px;
  9729. word-wrap:break-word;
  9730. text-transform:none;
  9731. visibility:hidden;
  9732. }
  9733. #u20160_img {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:0px;
  9737. top:0px;
  9738. width:60px;
  9739. height:32px;
  9740. }
  9741. #u20160 {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:1144px;
  9745. top:260px;
  9746. width:60px;
  9747. height:32px;
  9748. display:flex;
  9749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:12px;
  9753. color:#606266;
  9754. }
  9755. #u20160 .text {
  9756. position:absolute;
  9757. align-self:center;
  9758. padding:2px 2px 2px 0px;
  9759. box-sizing:border-box;
  9760. width:100%;
  9761. }
  9762. #u20160_text {
  9763. border-width:0px;
  9764. word-wrap:break-word;
  9765. text-transform:none;
  9766. visibility:hidden;
  9767. }
  9768. #u20161_img {
  9769. border-width:0px;
  9770. position:absolute;
  9771. left:0px;
  9772. top:0px;
  9773. width:60px;
  9774. height:32px;
  9775. }
  9776. #u20161 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:1204px;
  9780. top:260px;
  9781. width:60px;
  9782. height:32px;
  9783. display:flex;
  9784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9785. font-weight:400;
  9786. font-style:normal;
  9787. font-size:12px;
  9788. color:#606266;
  9789. }
  9790. #u20161 .text {
  9791. position:absolute;
  9792. align-self:center;
  9793. padding:2px 2px 2px 0px;
  9794. box-sizing:border-box;
  9795. width:100%;
  9796. }
  9797. #u20161_text {
  9798. border-width:0px;
  9799. word-wrap:break-word;
  9800. text-transform:none;
  9801. visibility:hidden;
  9802. }
  9803. #u20162_img {
  9804. border-width:0px;
  9805. position:absolute;
  9806. left:0px;
  9807. top:0px;
  9808. width:60px;
  9809. height:32px;
  9810. }
  9811. #u20162 {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:1264px;
  9815. top:260px;
  9816. width:60px;
  9817. height:32px;
  9818. display:flex;
  9819. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9820. font-weight:400;
  9821. font-style:normal;
  9822. font-size:12px;
  9823. color:#606266;
  9824. }
  9825. #u20162 .text {
  9826. position:absolute;
  9827. align-self:center;
  9828. padding:2px 2px 2px 0px;
  9829. box-sizing:border-box;
  9830. width:100%;
  9831. }
  9832. #u20162_text {
  9833. border-width:0px;
  9834. word-wrap:break-word;
  9835. text-transform:none;
  9836. visibility:hidden;
  9837. }
  9838. #u20163_img {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:0px;
  9842. top:0px;
  9843. width:60px;
  9844. height:32px;
  9845. }
  9846. #u20163 {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:1324px;
  9850. top:260px;
  9851. width:60px;
  9852. height:32px;
  9853. display:flex;
  9854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9855. font-weight:400;
  9856. font-style:normal;
  9857. font-size:12px;
  9858. color:#606266;
  9859. }
  9860. #u20163 .text {
  9861. position:absolute;
  9862. align-self:center;
  9863. padding:2px 2px 2px 0px;
  9864. box-sizing:border-box;
  9865. width:100%;
  9866. }
  9867. #u20163_text {
  9868. border-width:0px;
  9869. word-wrap:break-word;
  9870. text-transform:none;
  9871. visibility:hidden;
  9872. }
  9873. #u20164_img {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:0px;
  9877. top:0px;
  9878. width:60px;
  9879. height:32px;
  9880. }
  9881. #u20164 {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:1384px;
  9885. top:260px;
  9886. width:60px;
  9887. height:32px;
  9888. display:flex;
  9889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9890. font-weight:400;
  9891. font-style:normal;
  9892. font-size:12px;
  9893. color:#606266;
  9894. }
  9895. #u20164 .text {
  9896. position:absolute;
  9897. align-self:center;
  9898. padding:2px 2px 2px 0px;
  9899. box-sizing:border-box;
  9900. width:100%;
  9901. }
  9902. #u20164_text {
  9903. border-width:0px;
  9904. word-wrap:break-word;
  9905. text-transform:none;
  9906. visibility:hidden;
  9907. }
  9908. #u20165_img {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:60px;
  9914. height:32px;
  9915. }
  9916. #u20165 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:1444px;
  9920. top:260px;
  9921. width:60px;
  9922. height:32px;
  9923. display:flex;
  9924. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9925. font-weight:400;
  9926. font-style:normal;
  9927. font-size:12px;
  9928. color:#606266;
  9929. }
  9930. #u20165 .text {
  9931. position:absolute;
  9932. align-self:center;
  9933. padding:2px 2px 2px 0px;
  9934. box-sizing:border-box;
  9935. width:100%;
  9936. }
  9937. #u20165_text {
  9938. border-width:0px;
  9939. word-wrap:break-word;
  9940. text-transform:none;
  9941. visibility:hidden;
  9942. }
  9943. #u20166_img {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:0px;
  9947. top:0px;
  9948. width:53px;
  9949. height:32px;
  9950. }
  9951. #u20166 {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:1504px;
  9955. top:260px;
  9956. width:53px;
  9957. height:32px;
  9958. display:flex;
  9959. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9960. font-weight:400;
  9961. font-style:normal;
  9962. font-size:12px;
  9963. color:#606266;
  9964. }
  9965. #u20166 .text {
  9966. position:absolute;
  9967. align-self:center;
  9968. padding:2px 2px 2px 0px;
  9969. box-sizing:border-box;
  9970. width:100%;
  9971. }
  9972. #u20166_text {
  9973. border-width:0px;
  9974. word-wrap:break-word;
  9975. text-transform:none;
  9976. visibility:hidden;
  9977. }
  9978. #u20167 {
  9979. border-width:0px;
  9980. position:absolute;
  9981. left:0px;
  9982. top:0px;
  9983. width:0px;
  9984. height:0px;
  9985. }
  9986. #u20168_div {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:0px;
  9990. top:0px;
  9991. width:59px;
  9992. height:30px;
  9993. background:inherit;
  9994. background-color:rgba(0, 153, 255, 1);
  9995. box-sizing:border-box;
  9996. border-width:1px;
  9997. border-style:solid;
  9998. border-color:rgba(0, 153, 255, 1);
  9999. border-radius:4px;
  10000. -moz-box-shadow:none;
  10001. -webkit-box-shadow:none;
  10002. box-shadow:none;
  10003. font-family:'Microsoft YaHei', sans-serif;
  10004. font-weight:400;
  10005. font-style:normal;
  10006. font-size:14px;
  10007. color:#FFFFFF;
  10008. }
  10009. #u20168 {
  10010. border-width:0px;
  10011. position:absolute;
  10012. left:649px;
  10013. top:279px;
  10014. width:59px;
  10015. height:30px;
  10016. display:flex;
  10017. font-family:'Microsoft YaHei', sans-serif;
  10018. font-weight:400;
  10019. font-style:normal;
  10020. font-size:14px;
  10021. color:#FFFFFF;
  10022. }
  10023. #u20168 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:5px 15px 5px 15px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u20168_text {
  10031. border-width:0px;
  10032. white-space:nowrap;
  10033. text-transform:none;
  10034. }
  10035. #u20169_div {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:0px;
  10039. top:0px;
  10040. width:55px;
  10041. height:30px;
  10042. background:inherit;
  10043. background-color:rgba(255, 255, 255, 1);
  10044. box-sizing:border-box;
  10045. border-width:1px;
  10046. border-style:solid;
  10047. border-color:rgba(170, 170, 170, 1);
  10048. border-radius:4px;
  10049. -moz-box-shadow:none;
  10050. -webkit-box-shadow:none;
  10051. box-shadow:none;
  10052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10053. font-weight:400;
  10054. font-style:normal;
  10055. font-size:12px;
  10056. color:#555555;
  10057. }
  10058. #u20169 {
  10059. border-width:0px;
  10060. position:absolute;
  10061. left:718px;
  10062. top:279px;
  10063. width:55px;
  10064. height:30px;
  10065. display:flex;
  10066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10067. font-weight:400;
  10068. font-style:normal;
  10069. font-size:12px;
  10070. color:#555555;
  10071. }
  10072. #u20169 .text {
  10073. position:absolute;
  10074. align-self:center;
  10075. padding:5px 15px 5px 15px;
  10076. box-sizing:border-box;
  10077. width:100%;
  10078. }
  10079. #u20169_text {
  10080. border-width:0px;
  10081. white-space:nowrap;
  10082. text-transform:none;
  10083. }
  10084. #u20170 {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:0px;
  10090. height:0px;
  10091. }
  10092. #u20171_div {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:0px;
  10096. top:0px;
  10097. width:140px;
  10098. height:30px;
  10099. background:inherit;
  10100. background-color:rgba(255, 255, 255, 1);
  10101. box-sizing:border-box;
  10102. border-width:1px;
  10103. border-style:solid;
  10104. border-color:rgba(215, 215, 215, 1);
  10105. border-radius:4px;
  10106. -moz-box-shadow:none;
  10107. -webkit-box-shadow:none;
  10108. box-shadow:none;
  10109. font-size:11px;
  10110. }
  10111. #u20171 {
  10112. border-width:0px;
  10113. position:absolute;
  10114. left:1247px;
  10115. top:240px;
  10116. width:140px;
  10117. height:30px;
  10118. display:flex;
  10119. font-size:11px;
  10120. }
  10121. #u20171 .text {
  10122. position:absolute;
  10123. align-self:center;
  10124. padding:2px 2px 2px 2px;
  10125. box-sizing:border-box;
  10126. width:100%;
  10127. }
  10128. #u20171_text {
  10129. border-width:0px;
  10130. word-wrap:break-word;
  10131. text-transform:none;
  10132. visibility:hidden;
  10133. }
  10134. #u20172_input {
  10135. position:absolute;
  10136. left:0px;
  10137. top:0px;
  10138. width:120px;
  10139. height:23px;
  10140. padding:2px 2px 2px 2px;
  10141. font-family:'ArialMT', 'Arial', sans-serif;
  10142. font-weight:400;
  10143. font-style:normal;
  10144. font-size:11px;
  10145. letter-spacing:normal;
  10146. color:#AAAAAA;
  10147. vertical-align:none;
  10148. text-align:left;
  10149. text-transform:none;
  10150. background-color:transparent;
  10151. border-color:transparent;
  10152. }
  10153. #u20172_input.disabled {
  10154. position:absolute;
  10155. left:0px;
  10156. top:0px;
  10157. width:120px;
  10158. height:23px;
  10159. padding:2px 2px 2px 2px;
  10160. font-family:'ArialMT', 'Arial', sans-serif;
  10161. font-weight:400;
  10162. font-style:normal;
  10163. font-size:11px;
  10164. letter-spacing:normal;
  10165. color:#AAAAAA;
  10166. vertical-align:none;
  10167. text-align:left;
  10168. text-transform:none;
  10169. background-color:transparent;
  10170. border-color:transparent;
  10171. }
  10172. #u20172_div {
  10173. border-width:0px;
  10174. position:absolute;
  10175. left:0px;
  10176. top:0px;
  10177. width:120px;
  10178. height:23px;
  10179. background:inherit;
  10180. background-color:rgba(255, 255, 255, 1);
  10181. border:none;
  10182. border-radius:0px;
  10183. -moz-box-shadow:none;
  10184. -webkit-box-shadow:none;
  10185. box-shadow:none;
  10186. font-size:11px;
  10187. color:#AAAAAA;
  10188. }
  10189. #u20172 {
  10190. border-width:0px;
  10191. position:absolute;
  10192. left:1254px;
  10193. top:242px;
  10194. width:120px;
  10195. height:23px;
  10196. display:flex;
  10197. font-size:11px;
  10198. color:#AAAAAA;
  10199. }
  10200. #u20172 .text {
  10201. position:absolute;
  10202. align-self:flex-start;
  10203. padding:2px 2px 2px 2px;
  10204. box-sizing:border-box;
  10205. width:100%;
  10206. }
  10207. #u20172_div.disabled {
  10208. border-width:0px;
  10209. position:absolute;
  10210. left:0px;
  10211. top:0px;
  10212. width:120px;
  10213. height:23px;
  10214. background:inherit;
  10215. background-color:rgba(240, 240, 240, 1);
  10216. border:none;
  10217. border-radius:0px;
  10218. -moz-box-shadow:none;
  10219. -webkit-box-shadow:none;
  10220. box-shadow:none;
  10221. font-size:11px;
  10222. color:#AAAAAA;
  10223. }
  10224. #u20172.disabled {
  10225. }
  10226. .u20172_input_option {
  10227. font-size:11px;
  10228. }
  10229. #u20173 {
  10230. border-width:0px;
  10231. position:absolute;
  10232. left:0px;
  10233. top:0px;
  10234. width:0px;
  10235. height:0px;
  10236. }
  10237. #u20174_div {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:0px;
  10241. top:0px;
  10242. width:140px;
  10243. height:30px;
  10244. background:inherit;
  10245. background-color:rgba(255, 255, 255, 1);
  10246. box-sizing:border-box;
  10247. border-width:1px;
  10248. border-style:solid;
  10249. border-color:rgba(215, 215, 215, 1);
  10250. border-radius:4px;
  10251. -moz-box-shadow:none;
  10252. -webkit-box-shadow:none;
  10253. box-shadow:none;
  10254. font-size:11px;
  10255. }
  10256. #u20174 {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:1097px;
  10260. top:240px;
  10261. width:140px;
  10262. height:30px;
  10263. display:flex;
  10264. font-size:11px;
  10265. }
  10266. #u20174 .text {
  10267. position:absolute;
  10268. align-self:center;
  10269. padding:2px 2px 2px 2px;
  10270. box-sizing:border-box;
  10271. width:100%;
  10272. }
  10273. #u20174_text {
  10274. border-width:0px;
  10275. word-wrap:break-word;
  10276. text-transform:none;
  10277. visibility:hidden;
  10278. }
  10279. #u20175_input {
  10280. position:absolute;
  10281. left:0px;
  10282. top:0px;
  10283. width:120px;
  10284. height:23px;
  10285. padding:2px 2px 2px 2px;
  10286. font-family:'ArialMT', 'Arial', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:11px;
  10290. letter-spacing:normal;
  10291. color:#AAAAAA;
  10292. vertical-align:none;
  10293. text-align:left;
  10294. text-transform:none;
  10295. background-color:transparent;
  10296. border-color:transparent;
  10297. }
  10298. #u20175_input.disabled {
  10299. position:absolute;
  10300. left:0px;
  10301. top:0px;
  10302. width:120px;
  10303. height:23px;
  10304. padding:2px 2px 2px 2px;
  10305. font-family:'ArialMT', 'Arial', sans-serif;
  10306. font-weight:400;
  10307. font-style:normal;
  10308. font-size:11px;
  10309. letter-spacing:normal;
  10310. color:#AAAAAA;
  10311. vertical-align:none;
  10312. text-align:left;
  10313. text-transform:none;
  10314. background-color:transparent;
  10315. border-color:transparent;
  10316. }
  10317. #u20175_div {
  10318. border-width:0px;
  10319. position:absolute;
  10320. left:0px;
  10321. top:0px;
  10322. width:120px;
  10323. height:23px;
  10324. background:inherit;
  10325. background-color:rgba(255, 255, 255, 1);
  10326. border:none;
  10327. border-radius:0px;
  10328. -moz-box-shadow:none;
  10329. -webkit-box-shadow:none;
  10330. box-shadow:none;
  10331. font-size:11px;
  10332. color:#AAAAAA;
  10333. }
  10334. #u20175 {
  10335. border-width:0px;
  10336. position:absolute;
  10337. left:1104px;
  10338. top:242px;
  10339. width:120px;
  10340. height:23px;
  10341. display:flex;
  10342. font-size:11px;
  10343. color:#AAAAAA;
  10344. }
  10345. #u20175 .text {
  10346. position:absolute;
  10347. align-self:flex-start;
  10348. padding:2px 2px 2px 2px;
  10349. box-sizing:border-box;
  10350. width:100%;
  10351. }
  10352. #u20175_div.disabled {
  10353. border-width:0px;
  10354. position:absolute;
  10355. left:0px;
  10356. top:0px;
  10357. width:120px;
  10358. height:23px;
  10359. background:inherit;
  10360. background-color:rgba(240, 240, 240, 1);
  10361. border:none;
  10362. border-radius:0px;
  10363. -moz-box-shadow:none;
  10364. -webkit-box-shadow:none;
  10365. box-shadow:none;
  10366. font-size:11px;
  10367. color:#AAAAAA;
  10368. }
  10369. #u20175.disabled {
  10370. }
  10371. .u20175_input_option {
  10372. font-size:11px;
  10373. }
  10374. #u20176 {
  10375. border-width:0px;
  10376. position:absolute;
  10377. left:0px;
  10378. top:0px;
  10379. width:0px;
  10380. height:0px;
  10381. }
  10382. #u20177_div {
  10383. border-width:0px;
  10384. position:absolute;
  10385. left:0px;
  10386. top:0px;
  10387. width:140px;
  10388. height:30px;
  10389. background:inherit;
  10390. background-color:rgba(255, 255, 255, 1);
  10391. box-sizing:border-box;
  10392. border-width:1px;
  10393. border-style:solid;
  10394. border-color:rgba(215, 215, 215, 1);
  10395. border-radius:4px;
  10396. -moz-box-shadow:none;
  10397. -webkit-box-shadow:none;
  10398. box-shadow:none;
  10399. font-size:11px;
  10400. }
  10401. #u20177 {
  10402. border-width:0px;
  10403. position:absolute;
  10404. left:350px;
  10405. top:280px;
  10406. width:140px;
  10407. height:30px;
  10408. display:flex;
  10409. font-size:11px;
  10410. }
  10411. #u20177 .text {
  10412. position:absolute;
  10413. align-self:center;
  10414. padding:2px 2px 2px 2px;
  10415. box-sizing:border-box;
  10416. width:100%;
  10417. }
  10418. #u20177_text {
  10419. border-width:0px;
  10420. word-wrap:break-word;
  10421. text-transform:none;
  10422. visibility:hidden;
  10423. }
  10424. #u20178_input {
  10425. position:absolute;
  10426. left:0px;
  10427. top:0px;
  10428. width:120px;
  10429. height:23px;
  10430. padding:2px 2px 2px 2px;
  10431. font-family:'ArialMT', 'Arial', sans-serif;
  10432. font-weight:400;
  10433. font-style:normal;
  10434. font-size:11px;
  10435. letter-spacing:normal;
  10436. color:#AAAAAA;
  10437. vertical-align:none;
  10438. text-align:left;
  10439. text-transform:none;
  10440. background-color:transparent;
  10441. border-color:transparent;
  10442. }
  10443. #u20178_input.disabled {
  10444. position:absolute;
  10445. left:0px;
  10446. top:0px;
  10447. width:120px;
  10448. height:23px;
  10449. padding:2px 2px 2px 2px;
  10450. font-family:'ArialMT', 'Arial', sans-serif;
  10451. font-weight:400;
  10452. font-style:normal;
  10453. font-size:11px;
  10454. letter-spacing:normal;
  10455. color:#AAAAAA;
  10456. vertical-align:none;
  10457. text-align:left;
  10458. text-transform:none;
  10459. background-color:transparent;
  10460. border-color:transparent;
  10461. }
  10462. #u20178_div {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:0px;
  10466. top:0px;
  10467. width:120px;
  10468. height:23px;
  10469. background:inherit;
  10470. background-color:rgba(255, 255, 255, 1);
  10471. border:none;
  10472. border-radius:0px;
  10473. -moz-box-shadow:none;
  10474. -webkit-box-shadow:none;
  10475. box-shadow:none;
  10476. font-size:11px;
  10477. color:#AAAAAA;
  10478. }
  10479. #u20178 {
  10480. border-width:0px;
  10481. position:absolute;
  10482. left:357px;
  10483. top:282px;
  10484. width:120px;
  10485. height:23px;
  10486. display:flex;
  10487. font-size:11px;
  10488. color:#AAAAAA;
  10489. }
  10490. #u20178 .text {
  10491. position:absolute;
  10492. align-self:flex-start;
  10493. padding:2px 2px 2px 2px;
  10494. box-sizing:border-box;
  10495. width:100%;
  10496. }
  10497. #u20178_div.disabled {
  10498. border-width:0px;
  10499. position:absolute;
  10500. left:0px;
  10501. top:0px;
  10502. width:120px;
  10503. height:23px;
  10504. background:inherit;
  10505. background-color:rgba(240, 240, 240, 1);
  10506. border:none;
  10507. border-radius:0px;
  10508. -moz-box-shadow:none;
  10509. -webkit-box-shadow:none;
  10510. box-shadow:none;
  10511. font-size:11px;
  10512. color:#AAAAAA;
  10513. }
  10514. #u20178.disabled {
  10515. }
  10516. .u20178_input_option {
  10517. font-size:11px;
  10518. }
  10519. #u20179 {
  10520. border-width:0px;
  10521. position:absolute;
  10522. left:0px;
  10523. top:0px;
  10524. width:0px;
  10525. height:0px;
  10526. }
  10527. #u20180_div {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:0px;
  10531. top:0px;
  10532. width:140px;
  10533. height:30px;
  10534. background:inherit;
  10535. background-color:rgba(255, 255, 255, 1);
  10536. box-sizing:border-box;
  10537. border-width:1px;
  10538. border-style:solid;
  10539. border-color:rgba(215, 215, 215, 1);
  10540. border-radius:4px;
  10541. -moz-box-shadow:none;
  10542. -webkit-box-shadow:none;
  10543. box-shadow:none;
  10544. font-size:11px;
  10545. }
  10546. #u20180 {
  10547. border-width:0px;
  10548. position:absolute;
  10549. left:1397px;
  10550. top:240px;
  10551. width:140px;
  10552. height:30px;
  10553. display:flex;
  10554. font-size:11px;
  10555. }
  10556. #u20180 .text {
  10557. position:absolute;
  10558. align-self:center;
  10559. padding:2px 2px 2px 2px;
  10560. box-sizing:border-box;
  10561. width:100%;
  10562. }
  10563. #u20180_text {
  10564. border-width:0px;
  10565. word-wrap:break-word;
  10566. text-transform:none;
  10567. visibility:hidden;
  10568. }
  10569. #u20181_input {
  10570. position:absolute;
  10571. left:0px;
  10572. top:0px;
  10573. width:120px;
  10574. height:23px;
  10575. padding:2px 2px 2px 2px;
  10576. font-family:'ArialMT', 'Arial', sans-serif;
  10577. font-weight:400;
  10578. font-style:normal;
  10579. font-size:11px;
  10580. letter-spacing:normal;
  10581. color:#AAAAAA;
  10582. vertical-align:none;
  10583. text-align:left;
  10584. text-transform:none;
  10585. background-color:transparent;
  10586. border-color:transparent;
  10587. }
  10588. #u20181_input.disabled {
  10589. position:absolute;
  10590. left:0px;
  10591. top:0px;
  10592. width:120px;
  10593. height:23px;
  10594. padding:2px 2px 2px 2px;
  10595. font-family:'ArialMT', 'Arial', sans-serif;
  10596. font-weight:400;
  10597. font-style:normal;
  10598. font-size:11px;
  10599. letter-spacing:normal;
  10600. color:#AAAAAA;
  10601. vertical-align:none;
  10602. text-align:left;
  10603. text-transform:none;
  10604. background-color:transparent;
  10605. border-color:transparent;
  10606. }
  10607. #u20181_div {
  10608. border-width:0px;
  10609. position:absolute;
  10610. left:0px;
  10611. top:0px;
  10612. width:120px;
  10613. height:23px;
  10614. background:inherit;
  10615. background-color:rgba(255, 255, 255, 1);
  10616. border:none;
  10617. border-radius:0px;
  10618. -moz-box-shadow:none;
  10619. -webkit-box-shadow:none;
  10620. box-shadow:none;
  10621. font-size:11px;
  10622. color:#AAAAAA;
  10623. }
  10624. #u20181 {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:1404px;
  10628. top:242px;
  10629. width:120px;
  10630. height:23px;
  10631. display:flex;
  10632. font-size:11px;
  10633. color:#AAAAAA;
  10634. }
  10635. #u20181 .text {
  10636. position:absolute;
  10637. align-self:flex-start;
  10638. padding:2px 2px 2px 2px;
  10639. box-sizing:border-box;
  10640. width:100%;
  10641. }
  10642. #u20181_div.disabled {
  10643. border-width:0px;
  10644. position:absolute;
  10645. left:0px;
  10646. top:0px;
  10647. width:120px;
  10648. height:23px;
  10649. background:inherit;
  10650. background-color:rgba(240, 240, 240, 1);
  10651. border:none;
  10652. border-radius:0px;
  10653. -moz-box-shadow:none;
  10654. -webkit-box-shadow:none;
  10655. box-shadow:none;
  10656. font-size:11px;
  10657. color:#AAAAAA;
  10658. }
  10659. #u20181.disabled {
  10660. }
  10661. .u20181_input_option {
  10662. font-size:11px;
  10663. }
  10664. #u20182 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:0px;
  10668. top:0px;
  10669. width:0px;
  10670. height:0px;
  10671. }
  10672. #u20183_div {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:0px;
  10676. top:0px;
  10677. width:140px;
  10678. height:30px;
  10679. background:inherit;
  10680. background-color:rgba(255, 255, 255, 1);
  10681. box-sizing:border-box;
  10682. border-width:1px;
  10683. border-style:solid;
  10684. border-color:rgba(201, 201, 201, 1);
  10685. border-radius:4px;
  10686. -moz-box-shadow:none;
  10687. -webkit-box-shadow:none;
  10688. box-shadow:none;
  10689. font-family:'Microsoft YaHei', sans-serif;
  10690. font-weight:400;
  10691. font-style:normal;
  10692. font-size:14px;
  10693. color:#CCCCCC;
  10694. text-align:left;
  10695. }
  10696. #u20183 {
  10697. border-width:0px;
  10698. position:absolute;
  10699. left:350px;
  10700. top:240px;
  10701. width:140px;
  10702. height:30px;
  10703. display:flex;
  10704. font-family:'Microsoft YaHei', sans-serif;
  10705. font-weight:400;
  10706. font-style:normal;
  10707. font-size:14px;
  10708. color:#CCCCCC;
  10709. text-align:left;
  10710. }
  10711. #u20183 .text {
  10712. position:absolute;
  10713. align-self:center;
  10714. padding:2px 8px 2px 8px;
  10715. box-sizing:border-box;
  10716. width:100%;
  10717. }
  10718. #u20183_text {
  10719. border-width:0px;
  10720. word-wrap:break-word;
  10721. text-transform:none;
  10722. visibility:hidden;
  10723. }
  10724. #u20184_input {
  10725. position:absolute;
  10726. left:0px;
  10727. top:0px;
  10728. width:127px;
  10729. height:25px;
  10730. padding:2px 2px 2px 2px;
  10731. font-family:'Microsoft YaHei', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:10px;
  10735. letter-spacing:normal;
  10736. color:#000000;
  10737. vertical-align:none;
  10738. text-align:left;
  10739. text-transform:none;
  10740. background-color:transparent;
  10741. border-color:transparent;
  10742. }
  10743. #u20184_input.disabled {
  10744. position:absolute;
  10745. left:0px;
  10746. top:0px;
  10747. width:127px;
  10748. height:25px;
  10749. padding:2px 2px 2px 2px;
  10750. font-family:'Microsoft YaHei', sans-serif;
  10751. font-weight:400;
  10752. font-style:normal;
  10753. font-size:10px;
  10754. letter-spacing:normal;
  10755. color:#000000;
  10756. vertical-align:none;
  10757. text-align:left;
  10758. text-transform:none;
  10759. background-color:transparent;
  10760. border-color:transparent;
  10761. }
  10762. #u20184_div {
  10763. border-width:0px;
  10764. position:absolute;
  10765. left:0px;
  10766. top:0px;
  10767. width:127px;
  10768. height:25px;
  10769. background:inherit;
  10770. background-color:rgba(255, 255, 255, 1);
  10771. border:none;
  10772. border-radius:0px;
  10773. -moz-box-shadow:none;
  10774. -webkit-box-shadow:none;
  10775. box-shadow:none;
  10776. font-family:'Microsoft YaHei', sans-serif;
  10777. font-weight:400;
  10778. font-style:normal;
  10779. font-size:10px;
  10780. }
  10781. #u20184 {
  10782. border-width:0px;
  10783. position:absolute;
  10784. left:358px;
  10785. top:241px;
  10786. width:127px;
  10787. height:25px;
  10788. display:flex;
  10789. font-family:'Microsoft YaHei', sans-serif;
  10790. font-weight:400;
  10791. font-style:normal;
  10792. font-size:10px;
  10793. }
  10794. #u20184 .text {
  10795. position:absolute;
  10796. align-self:center;
  10797. padding:2px 2px 2px 2px;
  10798. box-sizing:border-box;
  10799. width:100%;
  10800. }
  10801. #u20184_div.disabled {
  10802. border-width:0px;
  10803. position:absolute;
  10804. left:0px;
  10805. top:0px;
  10806. width:127px;
  10807. height:25px;
  10808. background:inherit;
  10809. background-color:rgba(240, 240, 240, 1);
  10810. border:none;
  10811. border-radius:0px;
  10812. -moz-box-shadow:none;
  10813. -webkit-box-shadow:none;
  10814. box-shadow:none;
  10815. font-family:'Microsoft YaHei', sans-serif;
  10816. font-weight:400;
  10817. font-style:normal;
  10818. font-size:10px;
  10819. }
  10820. #u20184.disabled {
  10821. }
  10822. #u20185 {
  10823. border-width:0px;
  10824. position:absolute;
  10825. left:0px;
  10826. top:0px;
  10827. width:0px;
  10828. height:0px;
  10829. }
  10830. #u20186_div {
  10831. border-width:0px;
  10832. position:absolute;
  10833. left:0px;
  10834. top:0px;
  10835. width:140px;
  10836. height:30px;
  10837. background:inherit;
  10838. background-color:rgba(255, 255, 255, 1);
  10839. box-sizing:border-box;
  10840. border-width:1px;
  10841. border-style:solid;
  10842. border-color:rgba(201, 201, 201, 1);
  10843. border-radius:4px;
  10844. -moz-box-shadow:none;
  10845. -webkit-box-shadow:none;
  10846. box-shadow:none;
  10847. font-family:'Microsoft YaHei', sans-serif;
  10848. font-weight:400;
  10849. font-style:normal;
  10850. font-size:14px;
  10851. color:#CCCCCC;
  10852. text-align:left;
  10853. }
  10854. #u20186 {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:499px;
  10858. top:240px;
  10859. width:140px;
  10860. height:30px;
  10861. display:flex;
  10862. font-family:'Microsoft YaHei', sans-serif;
  10863. font-weight:400;
  10864. font-style:normal;
  10865. font-size:14px;
  10866. color:#CCCCCC;
  10867. text-align:left;
  10868. }
  10869. #u20186 .text {
  10870. position:absolute;
  10871. align-self:center;
  10872. padding:2px 8px 2px 8px;
  10873. box-sizing:border-box;
  10874. width:100%;
  10875. }
  10876. #u20186_text {
  10877. border-width:0px;
  10878. word-wrap:break-word;
  10879. text-transform:none;
  10880. visibility:hidden;
  10881. }
  10882. #u20187_input {
  10883. position:absolute;
  10884. left:0px;
  10885. top:0px;
  10886. width:127px;
  10887. height:25px;
  10888. padding:2px 2px 2px 2px;
  10889. font-family:'Microsoft YaHei', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. font-size:10px;
  10893. letter-spacing:normal;
  10894. color:#000000;
  10895. vertical-align:none;
  10896. text-align:left;
  10897. text-transform:none;
  10898. background-color:transparent;
  10899. border-color:transparent;
  10900. }
  10901. #u20187_input.disabled {
  10902. position:absolute;
  10903. left:0px;
  10904. top:0px;
  10905. width:127px;
  10906. height:25px;
  10907. padding:2px 2px 2px 2px;
  10908. font-family:'Microsoft YaHei', sans-serif;
  10909. font-weight:400;
  10910. font-style:normal;
  10911. font-size:10px;
  10912. letter-spacing:normal;
  10913. color:#000000;
  10914. vertical-align:none;
  10915. text-align:left;
  10916. text-transform:none;
  10917. background-color:transparent;
  10918. border-color:transparent;
  10919. }
  10920. #u20187_div {
  10921. border-width:0px;
  10922. position:absolute;
  10923. left:0px;
  10924. top:0px;
  10925. width:127px;
  10926. height:25px;
  10927. background:inherit;
  10928. background-color:rgba(255, 255, 255, 1);
  10929. border:none;
  10930. border-radius:0px;
  10931. -moz-box-shadow:none;
  10932. -webkit-box-shadow:none;
  10933. box-shadow:none;
  10934. font-family:'Microsoft YaHei', sans-serif;
  10935. font-weight:400;
  10936. font-style:normal;
  10937. font-size:10px;
  10938. }
  10939. #u20187 {
  10940. border-width:0px;
  10941. position:absolute;
  10942. left:507px;
  10943. top:241px;
  10944. width:127px;
  10945. height:25px;
  10946. display:flex;
  10947. font-family:'Microsoft YaHei', sans-serif;
  10948. font-weight:400;
  10949. font-style:normal;
  10950. font-size:10px;
  10951. }
  10952. #u20187 .text {
  10953. position:absolute;
  10954. align-self:center;
  10955. padding:2px 2px 2px 2px;
  10956. box-sizing:border-box;
  10957. width:100%;
  10958. }
  10959. #u20187_div.disabled {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:0px;
  10963. top:0px;
  10964. width:127px;
  10965. height:25px;
  10966. background:inherit;
  10967. background-color:rgba(240, 240, 240, 1);
  10968. border:none;
  10969. border-radius:0px;
  10970. -moz-box-shadow:none;
  10971. -webkit-box-shadow:none;
  10972. box-shadow:none;
  10973. font-family:'Microsoft YaHei', sans-serif;
  10974. font-weight:400;
  10975. font-style:normal;
  10976. font-size:10px;
  10977. }
  10978. #u20187.disabled {
  10979. }
  10980. #u20188 {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:0px;
  10984. top:0px;
  10985. width:0px;
  10986. height:0px;
  10987. }
  10988. #u20189_div {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:140px;
  10994. height:30px;
  10995. background:inherit;
  10996. background-color:rgba(255, 255, 255, 1);
  10997. box-sizing:border-box;
  10998. border-width:1px;
  10999. border-style:solid;
  11000. border-color:rgba(215, 215, 215, 1);
  11001. border-radius:4px;
  11002. -moz-box-shadow:none;
  11003. -webkit-box-shadow:none;
  11004. box-shadow:none;
  11005. font-size:11px;
  11006. }
  11007. #u20189 {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:649px;
  11011. top:240px;
  11012. width:140px;
  11013. height:30px;
  11014. display:flex;
  11015. font-size:11px;
  11016. }
  11017. #u20189 .text {
  11018. position:absolute;
  11019. align-self:center;
  11020. padding:2px 2px 2px 2px;
  11021. box-sizing:border-box;
  11022. width:100%;
  11023. }
  11024. #u20189_text {
  11025. border-width:0px;
  11026. word-wrap:break-word;
  11027. text-transform:none;
  11028. visibility:hidden;
  11029. }
  11030. #u20190_input {
  11031. position:absolute;
  11032. left:0px;
  11033. top:0px;
  11034. width:120px;
  11035. height:23px;
  11036. padding:2px 2px 2px 2px;
  11037. font-family:'ArialMT', 'Arial', sans-serif;
  11038. font-weight:400;
  11039. font-style:normal;
  11040. font-size:11px;
  11041. letter-spacing:normal;
  11042. color:#AAAAAA;
  11043. vertical-align:none;
  11044. text-align:left;
  11045. text-transform:none;
  11046. background-color:transparent;
  11047. border-color:transparent;
  11048. }
  11049. #u20190_input.disabled {
  11050. position:absolute;
  11051. left:0px;
  11052. top:0px;
  11053. width:120px;
  11054. height:23px;
  11055. padding:2px 2px 2px 2px;
  11056. font-family:'ArialMT', 'Arial', sans-serif;
  11057. font-weight:400;
  11058. font-style:normal;
  11059. font-size:11px;
  11060. letter-spacing:normal;
  11061. color:#AAAAAA;
  11062. vertical-align:none;
  11063. text-align:left;
  11064. text-transform:none;
  11065. background-color:transparent;
  11066. border-color:transparent;
  11067. }
  11068. #u20190_div {
  11069. border-width:0px;
  11070. position:absolute;
  11071. left:0px;
  11072. top:0px;
  11073. width:120px;
  11074. height:23px;
  11075. background:inherit;
  11076. background-color:rgba(255, 255, 255, 1);
  11077. border:none;
  11078. border-radius:0px;
  11079. -moz-box-shadow:none;
  11080. -webkit-box-shadow:none;
  11081. box-shadow:none;
  11082. font-size:11px;
  11083. color:#AAAAAA;
  11084. }
  11085. #u20190 {
  11086. border-width:0px;
  11087. position:absolute;
  11088. left:656px;
  11089. top:242px;
  11090. width:120px;
  11091. height:23px;
  11092. display:flex;
  11093. font-size:11px;
  11094. color:#AAAAAA;
  11095. }
  11096. #u20190 .text {
  11097. position:absolute;
  11098. align-self:flex-start;
  11099. padding:2px 2px 2px 2px;
  11100. box-sizing:border-box;
  11101. width:100%;
  11102. }
  11103. #u20190_div.disabled {
  11104. border-width:0px;
  11105. position:absolute;
  11106. left:0px;
  11107. top:0px;
  11108. width:120px;
  11109. height:23px;
  11110. background:inherit;
  11111. background-color:rgba(240, 240, 240, 1);
  11112. border:none;
  11113. border-radius:0px;
  11114. -moz-box-shadow:none;
  11115. -webkit-box-shadow:none;
  11116. box-shadow:none;
  11117. font-size:11px;
  11118. color:#AAAAAA;
  11119. }
  11120. #u20190.disabled {
  11121. }
  11122. .u20190_input_option {
  11123. font-size:11px;
  11124. }
  11125. #u20191 {
  11126. border-width:0px;
  11127. position:absolute;
  11128. left:0px;
  11129. top:0px;
  11130. width:0px;
  11131. height:0px;
  11132. }
  11133. #u20192_div {
  11134. border-width:0px;
  11135. position:absolute;
  11136. left:0px;
  11137. top:0px;
  11138. width:140px;
  11139. height:30px;
  11140. background:inherit;
  11141. background-color:rgba(255, 255, 255, 1);
  11142. box-sizing:border-box;
  11143. border-width:1px;
  11144. border-style:solid;
  11145. border-color:rgba(215, 215, 215, 1);
  11146. border-radius:4px;
  11147. -moz-box-shadow:none;
  11148. -webkit-box-shadow:none;
  11149. box-shadow:none;
  11150. font-size:11px;
  11151. }
  11152. #u20192 {
  11153. border-width:0px;
  11154. position:absolute;
  11155. left:798px;
  11156. top:240px;
  11157. width:140px;
  11158. height:30px;
  11159. display:flex;
  11160. font-size:11px;
  11161. }
  11162. #u20192 .text {
  11163. position:absolute;
  11164. align-self:center;
  11165. padding:2px 2px 2px 2px;
  11166. box-sizing:border-box;
  11167. width:100%;
  11168. }
  11169. #u20192_text {
  11170. border-width:0px;
  11171. word-wrap:break-word;
  11172. text-transform:none;
  11173. visibility:hidden;
  11174. }
  11175. #u20193_input {
  11176. position:absolute;
  11177. left:0px;
  11178. top:0px;
  11179. width:120px;
  11180. height:23px;
  11181. padding:2px 2px 2px 2px;
  11182. font-family:'ArialMT', 'Arial', sans-serif;
  11183. font-weight:400;
  11184. font-style:normal;
  11185. font-size:11px;
  11186. letter-spacing:normal;
  11187. color:#AAAAAA;
  11188. vertical-align:none;
  11189. text-align:left;
  11190. text-transform:none;
  11191. background-color:transparent;
  11192. border-color:transparent;
  11193. }
  11194. #u20193_input.disabled {
  11195. position:absolute;
  11196. left:0px;
  11197. top:0px;
  11198. width:120px;
  11199. height:23px;
  11200. padding:2px 2px 2px 2px;
  11201. font-family:'ArialMT', 'Arial', sans-serif;
  11202. font-weight:400;
  11203. font-style:normal;
  11204. font-size:11px;
  11205. letter-spacing:normal;
  11206. color:#AAAAAA;
  11207. vertical-align:none;
  11208. text-align:left;
  11209. text-transform:none;
  11210. background-color:transparent;
  11211. border-color:transparent;
  11212. }
  11213. #u20193_div {
  11214. border-width:0px;
  11215. position:absolute;
  11216. left:0px;
  11217. top:0px;
  11218. width:120px;
  11219. height:23px;
  11220. background:inherit;
  11221. background-color:rgba(255, 255, 255, 1);
  11222. border:none;
  11223. border-radius:0px;
  11224. -moz-box-shadow:none;
  11225. -webkit-box-shadow:none;
  11226. box-shadow:none;
  11227. font-size:11px;
  11228. color:#AAAAAA;
  11229. }
  11230. #u20193 {
  11231. border-width:0px;
  11232. position:absolute;
  11233. left:805px;
  11234. top:242px;
  11235. width:120px;
  11236. height:23px;
  11237. display:flex;
  11238. font-size:11px;
  11239. color:#AAAAAA;
  11240. }
  11241. #u20193 .text {
  11242. position:absolute;
  11243. align-self:flex-start;
  11244. padding:2px 2px 2px 2px;
  11245. box-sizing:border-box;
  11246. width:100%;
  11247. }
  11248. #u20193_div.disabled {
  11249. border-width:0px;
  11250. position:absolute;
  11251. left:0px;
  11252. top:0px;
  11253. width:120px;
  11254. height:23px;
  11255. background:inherit;
  11256. background-color:rgba(240, 240, 240, 1);
  11257. border:none;
  11258. border-radius:0px;
  11259. -moz-box-shadow:none;
  11260. -webkit-box-shadow:none;
  11261. box-shadow:none;
  11262. font-size:11px;
  11263. color:#AAAAAA;
  11264. }
  11265. #u20193.disabled {
  11266. }
  11267. .u20193_input_option {
  11268. font-size:11px;
  11269. }
  11270. #u20194 {
  11271. border-width:0px;
  11272. position:absolute;
  11273. left:0px;
  11274. top:0px;
  11275. width:0px;
  11276. height:0px;
  11277. }
  11278. #u20195_div {
  11279. border-width:0px;
  11280. position:absolute;
  11281. left:0px;
  11282. top:0px;
  11283. width:140px;
  11284. height:30px;
  11285. background:inherit;
  11286. background-color:rgba(255, 255, 255, 1);
  11287. box-sizing:border-box;
  11288. border-width:1px;
  11289. border-style:solid;
  11290. border-color:rgba(215, 215, 215, 1);
  11291. border-radius:4px;
  11292. -moz-box-shadow:none;
  11293. -webkit-box-shadow:none;
  11294. box-shadow:none;
  11295. font-size:11px;
  11296. }
  11297. #u20195 {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:948px;
  11301. top:240px;
  11302. width:140px;
  11303. height:30px;
  11304. display:flex;
  11305. font-size:11px;
  11306. }
  11307. #u20195 .text {
  11308. position:absolute;
  11309. align-self:center;
  11310. padding:2px 2px 2px 2px;
  11311. box-sizing:border-box;
  11312. width:100%;
  11313. }
  11314. #u20195_text {
  11315. border-width:0px;
  11316. word-wrap:break-word;
  11317. text-transform:none;
  11318. visibility:hidden;
  11319. }
  11320. #u20196_input {
  11321. position:absolute;
  11322. left:0px;
  11323. top:0px;
  11324. width:120px;
  11325. height:23px;
  11326. padding:2px 2px 2px 2px;
  11327. font-family:'ArialMT', 'Arial', sans-serif;
  11328. font-weight:400;
  11329. font-style:normal;
  11330. font-size:11px;
  11331. letter-spacing:normal;
  11332. color:#AAAAAA;
  11333. vertical-align:none;
  11334. text-align:left;
  11335. text-transform:none;
  11336. background-color:transparent;
  11337. border-color:transparent;
  11338. }
  11339. #u20196_input.disabled {
  11340. position:absolute;
  11341. left:0px;
  11342. top:0px;
  11343. width:120px;
  11344. height:23px;
  11345. padding:2px 2px 2px 2px;
  11346. font-family:'ArialMT', 'Arial', sans-serif;
  11347. font-weight:400;
  11348. font-style:normal;
  11349. font-size:11px;
  11350. letter-spacing:normal;
  11351. color:#AAAAAA;
  11352. vertical-align:none;
  11353. text-align:left;
  11354. text-transform:none;
  11355. background-color:transparent;
  11356. border-color:transparent;
  11357. }
  11358. #u20196_div {
  11359. border-width:0px;
  11360. position:absolute;
  11361. left:0px;
  11362. top:0px;
  11363. width:120px;
  11364. height:23px;
  11365. background:inherit;
  11366. background-color:rgba(255, 255, 255, 1);
  11367. border:none;
  11368. border-radius:0px;
  11369. -moz-box-shadow:none;
  11370. -webkit-box-shadow:none;
  11371. box-shadow:none;
  11372. font-size:11px;
  11373. color:#AAAAAA;
  11374. }
  11375. #u20196 {
  11376. border-width:0px;
  11377. position:absolute;
  11378. left:955px;
  11379. top:242px;
  11380. width:120px;
  11381. height:23px;
  11382. display:flex;
  11383. font-size:11px;
  11384. color:#AAAAAA;
  11385. }
  11386. #u20196 .text {
  11387. position:absolute;
  11388. align-self:flex-start;
  11389. padding:2px 2px 2px 2px;
  11390. box-sizing:border-box;
  11391. width:100%;
  11392. }
  11393. #u20196_div.disabled {
  11394. border-width:0px;
  11395. position:absolute;
  11396. left:0px;
  11397. top:0px;
  11398. width:120px;
  11399. height:23px;
  11400. background:inherit;
  11401. background-color:rgba(240, 240, 240, 1);
  11402. border:none;
  11403. border-radius:0px;
  11404. -moz-box-shadow:none;
  11405. -webkit-box-shadow:none;
  11406. box-shadow:none;
  11407. font-size:11px;
  11408. color:#AAAAAA;
  11409. }
  11410. #u20196.disabled {
  11411. }
  11412. .u20196_input_option {
  11413. font-size:11px;
  11414. }
  11415. #u20197_div {
  11416. border-width:0px;
  11417. position:absolute;
  11418. left:0px;
  11419. top:0px;
  11420. width:55px;
  11421. height:30px;
  11422. background:inherit;
  11423. background-color:rgba(255, 255, 255, 1);
  11424. box-sizing:border-box;
  11425. border-width:1px;
  11426. border-style:solid;
  11427. border-color:rgba(170, 170, 170, 1);
  11428. border-radius:4px;
  11429. -moz-box-shadow:none;
  11430. -webkit-box-shadow:none;
  11431. box-shadow:none;
  11432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11433. font-weight:400;
  11434. font-style:normal;
  11435. font-size:12px;
  11436. color:#555555;
  11437. }
  11438. #u20197 {
  11439. border-width:0px;
  11440. position:absolute;
  11441. left:350px;
  11442. top:330px;
  11443. width:55px;
  11444. height:30px;
  11445. display:flex;
  11446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11447. font-weight:400;
  11448. font-style:normal;
  11449. font-size:12px;
  11450. color:#555555;
  11451. }
  11452. #u20197 .text {
  11453. position:absolute;
  11454. align-self:center;
  11455. padding:5px 15px 5px 15px;
  11456. box-sizing:border-box;
  11457. width:100%;
  11458. }
  11459. #u20197_text {
  11460. border-width:0px;
  11461. white-space:nowrap;
  11462. text-transform:none;
  11463. }
  11464. #u20198 {
  11465. border-width:0px;
  11466. position:absolute;
  11467. left:0px;
  11468. top:0px;
  11469. width:0px;
  11470. height:0px;
  11471. }
  11472. #u20199_div {
  11473. border-width:0px;
  11474. position:absolute;
  11475. left:0px;
  11476. top:0px;
  11477. width:140px;
  11478. height:30px;
  11479. background:inherit;
  11480. background-color:rgba(255, 255, 255, 1);
  11481. box-sizing:border-box;
  11482. border-width:1px;
  11483. border-style:solid;
  11484. border-color:rgba(215, 215, 215, 1);
  11485. border-radius:4px;
  11486. -moz-box-shadow:none;
  11487. -webkit-box-shadow:none;
  11488. box-shadow:none;
  11489. font-size:11px;
  11490. }
  11491. #u20199 {
  11492. border-width:0px;
  11493. position:absolute;
  11494. left:499px;
  11495. top:279px;
  11496. width:140px;
  11497. height:30px;
  11498. display:flex;
  11499. font-size:11px;
  11500. }
  11501. #u20199 .text {
  11502. position:absolute;
  11503. align-self:center;
  11504. padding:2px 2px 2px 2px;
  11505. box-sizing:border-box;
  11506. width:100%;
  11507. }
  11508. #u20199_text {
  11509. border-width:0px;
  11510. word-wrap:break-word;
  11511. text-transform:none;
  11512. visibility:hidden;
  11513. }
  11514. #u20200_input {
  11515. position:absolute;
  11516. left:0px;
  11517. top:0px;
  11518. width:120px;
  11519. height:23px;
  11520. padding:2px 2px 2px 2px;
  11521. font-family:'ArialMT', 'Arial', sans-serif;
  11522. font-weight:400;
  11523. font-style:normal;
  11524. font-size:11px;
  11525. letter-spacing:normal;
  11526. color:#AAAAAA;
  11527. vertical-align:none;
  11528. text-align:left;
  11529. text-transform:none;
  11530. background-color:transparent;
  11531. border-color:transparent;
  11532. }
  11533. #u20200_input.disabled {
  11534. position:absolute;
  11535. left:0px;
  11536. top:0px;
  11537. width:120px;
  11538. height:23px;
  11539. padding:2px 2px 2px 2px;
  11540. font-family:'ArialMT', 'Arial', sans-serif;
  11541. font-weight:400;
  11542. font-style:normal;
  11543. font-size:11px;
  11544. letter-spacing:normal;
  11545. color:#AAAAAA;
  11546. vertical-align:none;
  11547. text-align:left;
  11548. text-transform:none;
  11549. background-color:transparent;
  11550. border-color:transparent;
  11551. }
  11552. #u20200_div {
  11553. border-width:0px;
  11554. position:absolute;
  11555. left:0px;
  11556. top:0px;
  11557. width:120px;
  11558. height:23px;
  11559. background:inherit;
  11560. background-color:rgba(255, 255, 255, 1);
  11561. border:none;
  11562. border-radius:0px;
  11563. -moz-box-shadow:none;
  11564. -webkit-box-shadow:none;
  11565. box-shadow:none;
  11566. font-size:11px;
  11567. color:#AAAAAA;
  11568. }
  11569. #u20200 {
  11570. border-width:0px;
  11571. position:absolute;
  11572. left:506px;
  11573. top:281px;
  11574. width:120px;
  11575. height:23px;
  11576. display:flex;
  11577. font-size:11px;
  11578. color:#AAAAAA;
  11579. }
  11580. #u20200 .text {
  11581. position:absolute;
  11582. align-self:flex-start;
  11583. padding:2px 2px 2px 2px;
  11584. box-sizing:border-box;
  11585. width:100%;
  11586. }
  11587. #u20200_div.disabled {
  11588. border-width:0px;
  11589. position:absolute;
  11590. left:0px;
  11591. top:0px;
  11592. width:120px;
  11593. height:23px;
  11594. background:inherit;
  11595. background-color:rgba(240, 240, 240, 1);
  11596. border:none;
  11597. border-radius:0px;
  11598. -moz-box-shadow:none;
  11599. -webkit-box-shadow:none;
  11600. box-shadow:none;
  11601. font-size:11px;
  11602. color:#AAAAAA;
  11603. }
  11604. #u20200.disabled {
  11605. }
  11606. .u20200_input_option {
  11607. font-size:11px;
  11608. }
  11609. #u20201 {
  11610. border-width:0px;
  11611. position:absolute;
  11612. left:0px;
  11613. top:0px;
  11614. width:0px;
  11615. height:0px;
  11616. }
  11617. #u20202_div {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:0px;
  11621. top:0px;
  11622. width:200px;
  11623. height:1180px;
  11624. background:inherit;
  11625. background-color:rgba(255, 255, 255, 1);
  11626. border:none;
  11627. border-radius:0px;
  11628. -moz-box-shadow:none;
  11629. -webkit-box-shadow:none;
  11630. box-shadow:none;
  11631. }
  11632. #u20202 {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:120px;
  11636. top:50px;
  11637. width:200px;
  11638. height:1180px;
  11639. display:flex;
  11640. }
  11641. #u20202 .text {
  11642. position:absolute;
  11643. align-self:center;
  11644. padding:2px 2px 2px 2px;
  11645. box-sizing:border-box;
  11646. width:100%;
  11647. }
  11648. #u20202_text {
  11649. border-width:0px;
  11650. word-wrap:break-word;
  11651. text-transform:none;
  11652. visibility:hidden;
  11653. }
  11654. #u20203_div {
  11655. border-width:0px;
  11656. position:absolute;
  11657. left:0px;
  11658. top:0px;
  11659. width:200px;
  11660. height:60px;
  11661. background:inherit;
  11662. background-color:rgba(224, 231, 247, 1);
  11663. border:none;
  11664. border-radius:0px;
  11665. -moz-box-shadow:none;
  11666. -webkit-box-shadow:none;
  11667. box-shadow:none;
  11668. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11669. font-weight:500;
  11670. font-style:normal;
  11671. font-size:18px;
  11672. }
  11673. #u20203 {
  11674. border-width:0px;
  11675. position:absolute;
  11676. left:120px;
  11677. top:50px;
  11678. width:200px;
  11679. height:60px;
  11680. display:flex;
  11681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11682. font-weight:500;
  11683. font-style:normal;
  11684. font-size:18px;
  11685. }
  11686. #u20203 .text {
  11687. position:absolute;
  11688. align-self:center;
  11689. padding:0px 0px 0px 20px;
  11690. box-sizing:border-box;
  11691. width:100%;
  11692. }
  11693. #u20203_text {
  11694. border-width:0px;
  11695. word-wrap:break-word;
  11696. text-transform:none;
  11697. }
  11698. #u20204_div {
  11699. border-width:0px;
  11700. position:absolute;
  11701. left:0px;
  11702. top:0px;
  11703. width:65px;
  11704. height:22px;
  11705. background:inherit;
  11706. background-color:rgba(255, 255, 255, 0);
  11707. border:none;
  11708. border-radius:0px;
  11709. -moz-box-shadow:none;
  11710. -webkit-box-shadow:none;
  11711. box-shadow:none;
  11712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11713. font-weight:400;
  11714. font-style:normal;
  11715. font-size:16px;
  11716. }
  11717. #u20204 {
  11718. border-width:0px;
  11719. position:absolute;
  11720. left:147px;
  11721. top:130px;
  11722. width:65px;
  11723. height:22px;
  11724. display:flex;
  11725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11726. font-weight:400;
  11727. font-style:normal;
  11728. font-size:16px;
  11729. }
  11730. #u20204 .text {
  11731. position:absolute;
  11732. align-self:flex-start;
  11733. padding:0px 0px 0px 0px;
  11734. box-sizing:border-box;
  11735. width:100%;
  11736. }
  11737. #u20204_text {
  11738. border-width:0px;
  11739. white-space:nowrap;
  11740. text-transform:none;
  11741. }
  11742. #u20205_div {
  11743. border-width:0px;
  11744. position:absolute;
  11745. left:0px;
  11746. top:0px;
  11747. width:65px;
  11748. height:22px;
  11749. background:inherit;
  11750. background-color:rgba(255, 255, 255, 0);
  11751. border:none;
  11752. border-radius:0px;
  11753. -moz-box-shadow:none;
  11754. -webkit-box-shadow:none;
  11755. box-shadow:none;
  11756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11757. font-weight:400;
  11758. font-style:normal;
  11759. font-size:16px;
  11760. }
  11761. #u20205 {
  11762. border-width:0px;
  11763. position:absolute;
  11764. left:147px;
  11765. top:229px;
  11766. width:65px;
  11767. height:22px;
  11768. display:flex;
  11769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11770. font-weight:400;
  11771. font-style:normal;
  11772. font-size:16px;
  11773. }
  11774. #u20205 .text {
  11775. position:absolute;
  11776. align-self:flex-start;
  11777. padding:0px 0px 0px 0px;
  11778. box-sizing:border-box;
  11779. width:100%;
  11780. }
  11781. #u20205_text {
  11782. border-width:0px;
  11783. white-space:nowrap;
  11784. text-transform:none;
  11785. }
  11786. #u20206_div {
  11787. border-width:0px;
  11788. position:absolute;
  11789. left:0px;
  11790. top:0px;
  11791. width:65px;
  11792. height:22px;
  11793. background:inherit;
  11794. background-color:rgba(255, 255, 255, 0);
  11795. border:none;
  11796. border-radius:0px;
  11797. -moz-box-shadow:none;
  11798. -webkit-box-shadow:none;
  11799. box-shadow:none;
  11800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11801. font-weight:400;
  11802. font-style:normal;
  11803. font-size:16px;
  11804. }
  11805. #u20206 {
  11806. border-width:0px;
  11807. position:absolute;
  11808. left:147px;
  11809. top:271px;
  11810. width:65px;
  11811. height:22px;
  11812. display:flex;
  11813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11814. font-weight:400;
  11815. font-style:normal;
  11816. font-size:16px;
  11817. }
  11818. #u20206 .text {
  11819. position:absolute;
  11820. align-self:flex-start;
  11821. padding:0px 0px 0px 0px;
  11822. box-sizing:border-box;
  11823. width:100%;
  11824. }
  11825. #u20206_text {
  11826. border-width:0px;
  11827. white-space:nowrap;
  11828. text-transform:none;
  11829. }
  11830. #u20207_div {
  11831. border-width:0px;
  11832. position:absolute;
  11833. left:0px;
  11834. top:0px;
  11835. width:65px;
  11836. height:22px;
  11837. background:inherit;
  11838. background-color:rgba(255, 255, 255, 0);
  11839. border:none;
  11840. border-radius:0px;
  11841. -moz-box-shadow:none;
  11842. -webkit-box-shadow:none;
  11843. box-shadow:none;
  11844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11845. font-weight:400;
  11846. font-style:normal;
  11847. font-size:16px;
  11848. }
  11849. #u20207 {
  11850. border-width:0px;
  11851. position:absolute;
  11852. left:147px;
  11853. top:770px;
  11854. width:65px;
  11855. height:22px;
  11856. display:flex;
  11857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11858. font-weight:400;
  11859. font-style:normal;
  11860. font-size:16px;
  11861. }
  11862. #u20207 .text {
  11863. position:absolute;
  11864. align-self:flex-start;
  11865. padding:0px 0px 0px 0px;
  11866. box-sizing:border-box;
  11867. width:100%;
  11868. }
  11869. #u20207_text {
  11870. border-width:0px;
  11871. white-space:nowrap;
  11872. text-transform:none;
  11873. }
  11874. #u20208_div {
  11875. border-width:0px;
  11876. position:absolute;
  11877. left:0px;
  11878. top:0px;
  11879. width:65px;
  11880. height:22px;
  11881. background:inherit;
  11882. background-color:rgba(255, 255, 255, 0);
  11883. border:none;
  11884. border-radius:0px;
  11885. -moz-box-shadow:none;
  11886. -webkit-box-shadow:none;
  11887. box-shadow:none;
  11888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11889. font-weight:400;
  11890. font-style:normal;
  11891. font-size:16px;
  11892. }
  11893. #u20208 {
  11894. border-width:0px;
  11895. position:absolute;
  11896. left:147px;
  11897. top:812px;
  11898. width:65px;
  11899. height:22px;
  11900. display:flex;
  11901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11902. font-weight:400;
  11903. font-style:normal;
  11904. font-size:16px;
  11905. }
  11906. #u20208 .text {
  11907. position:absolute;
  11908. align-self:flex-start;
  11909. padding:0px 0px 0px 0px;
  11910. box-sizing:border-box;
  11911. width:100%;
  11912. }
  11913. #u20208_text {
  11914. border-width:0px;
  11915. white-space:nowrap;
  11916. text-transform:none;
  11917. }
  11918. #u20209_div {
  11919. border-width:0px;
  11920. position:absolute;
  11921. left:0px;
  11922. top:0px;
  11923. width:49px;
  11924. height:17px;
  11925. background:inherit;
  11926. background-color:rgba(255, 255, 255, 0);
  11927. border:none;
  11928. border-radius:0px;
  11929. -moz-box-shadow:none;
  11930. -webkit-box-shadow:none;
  11931. box-shadow:none;
  11932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11933. font-weight:400;
  11934. font-style:normal;
  11935. font-size:12px;
  11936. color:#AAAAAA;
  11937. }
  11938. #u20209 {
  11939. border-width:0px;
  11940. position:absolute;
  11941. left:147px;
  11942. top:192px;
  11943. width:49px;
  11944. height:17px;
  11945. display:flex;
  11946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11947. font-weight:400;
  11948. font-style:normal;
  11949. font-size:12px;
  11950. color:#AAAAAA;
  11951. }
  11952. #u20209 .text {
  11953. position:absolute;
  11954. align-self:flex-start;
  11955. padding:0px 0px 0px 0px;
  11956. box-sizing:border-box;
  11957. width:100%;
  11958. }
  11959. #u20209_text {
  11960. border-width:0px;
  11961. white-space:nowrap;
  11962. text-transform:none;
  11963. }
  11964. #u20210_img {
  11965. border-width:0px;
  11966. position:absolute;
  11967. left:0px;
  11968. top:0px;
  11969. width:201px;
  11970. height:2px;
  11971. }
  11972. #u20210 {
  11973. border-width:0px;
  11974. position:absolute;
  11975. left:121px;
  11976. top:712px;
  11977. width:200px;
  11978. height:1px;
  11979. display:flex;
  11980. }
  11981. #u20210 .text {
  11982. position:absolute;
  11983. align-self:center;
  11984. padding:2px 2px 2px 2px;
  11985. box-sizing:border-box;
  11986. width:100%;
  11987. }
  11988. #u20210_text {
  11989. border-width:0px;
  11990. word-wrap:break-word;
  11991. text-transform:none;
  11992. visibility:hidden;
  11993. }
  11994. #u20211_div {
  11995. border-width:0px;
  11996. position:absolute;
  11997. left:0px;
  11998. top:0px;
  11999. width:49px;
  12000. height:17px;
  12001. background:inherit;
  12002. background-color:rgba(255, 255, 255, 0);
  12003. border:none;
  12004. border-radius:0px;
  12005. -moz-box-shadow:none;
  12006. -webkit-box-shadow:none;
  12007. box-shadow:none;
  12008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12009. font-weight:400;
  12010. font-style:normal;
  12011. font-size:12px;
  12012. color:#AAAAAA;
  12013. }
  12014. #u20211 {
  12015. border-width:0px;
  12016. position:absolute;
  12017. left:147px;
  12018. top:733px;
  12019. width:49px;
  12020. height:17px;
  12021. display:flex;
  12022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12023. font-weight:400;
  12024. font-style:normal;
  12025. font-size:12px;
  12026. color:#AAAAAA;
  12027. }
  12028. #u20211 .text {
  12029. position:absolute;
  12030. align-self:flex-start;
  12031. padding:0px 0px 0px 0px;
  12032. box-sizing:border-box;
  12033. width:100%;
  12034. }
  12035. #u20211_text {
  12036. border-width:0px;
  12037. white-space:nowrap;
  12038. text-transform:none;
  12039. }
  12040. #u20212_img {
  12041. border-width:0px;
  12042. position:absolute;
  12043. left:0px;
  12044. top:0px;
  12045. width:201px;
  12046. height:2px;
  12047. }
  12048. #u20212 {
  12049. border-width:0px;
  12050. position:absolute;
  12051. left:121px;
  12052. top:171px;
  12053. width:200px;
  12054. height:1px;
  12055. display:flex;
  12056. }
  12057. #u20212 .text {
  12058. position:absolute;
  12059. align-self:center;
  12060. padding:2px 2px 2px 2px;
  12061. box-sizing:border-box;
  12062. width:100%;
  12063. }
  12064. #u20212_text {
  12065. border-width:0px;
  12066. word-wrap:break-word;
  12067. text-transform:none;
  12068. visibility:hidden;
  12069. }
  12070. #u20213_div {
  12071. border-width:0px;
  12072. position:absolute;
  12073. left:0px;
  12074. top:0px;
  12075. width:81px;
  12076. height:22px;
  12077. background:inherit;
  12078. background-color:rgba(255, 255, 255, 0);
  12079. border:none;
  12080. border-radius:0px;
  12081. -moz-box-shadow:none;
  12082. -webkit-box-shadow:none;
  12083. box-shadow:none;
  12084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12085. font-weight:400;
  12086. font-style:normal;
  12087. font-size:16px;
  12088. }
  12089. #u20213 {
  12090. border-width:0px;
  12091. position:absolute;
  12092. left:147px;
  12093. top:315px;
  12094. width:81px;
  12095. height:22px;
  12096. display:flex;
  12097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12098. font-weight:400;
  12099. font-style:normal;
  12100. font-size:16px;
  12101. }
  12102. #u20213 .text {
  12103. position:absolute;
  12104. align-self:flex-start;
  12105. padding:0px 0px 0px 0px;
  12106. box-sizing:border-box;
  12107. width:100%;
  12108. }
  12109. #u20213_text {
  12110. border-width:0px;
  12111. white-space:nowrap;
  12112. text-transform:none;
  12113. }
  12114. #u20214_div {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:81px;
  12120. height:22px;
  12121. background:inherit;
  12122. background-color:rgba(255, 255, 255, 0);
  12123. border:none;
  12124. border-radius:0px;
  12125. -moz-box-shadow:none;
  12126. -webkit-box-shadow:none;
  12127. box-shadow:none;
  12128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12129. font-weight:400;
  12130. font-style:normal;
  12131. font-size:16px;
  12132. }
  12133. #u20214 {
  12134. border-width:0px;
  12135. position:absolute;
  12136. left:147px;
  12137. top:357px;
  12138. width:81px;
  12139. height:22px;
  12140. display:flex;
  12141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12142. font-weight:400;
  12143. font-style:normal;
  12144. font-size:16px;
  12145. }
  12146. #u20214 .text {
  12147. position:absolute;
  12148. align-self:flex-start;
  12149. padding:0px 0px 0px 0px;
  12150. box-sizing:border-box;
  12151. width:100%;
  12152. }
  12153. #u20214_text {
  12154. border-width:0px;
  12155. white-space:nowrap;
  12156. text-transform:none;
  12157. }
  12158. #u20215_div {
  12159. border-width:0px;
  12160. position:absolute;
  12161. left:0px;
  12162. top:0px;
  12163. width:81px;
  12164. height:22px;
  12165. background:inherit;
  12166. background-color:rgba(255, 255, 255, 0);
  12167. border:none;
  12168. border-radius:0px;
  12169. -moz-box-shadow:none;
  12170. -webkit-box-shadow:none;
  12171. box-shadow:none;
  12172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12173. font-weight:400;
  12174. font-style:normal;
  12175. font-size:16px;
  12176. }
  12177. #u20215 {
  12178. border-width:0px;
  12179. position:absolute;
  12180. left:147px;
  12181. top:399px;
  12182. width:81px;
  12183. height:22px;
  12184. display:flex;
  12185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12186. font-weight:400;
  12187. font-style:normal;
  12188. font-size:16px;
  12189. }
  12190. #u20215 .text {
  12191. position:absolute;
  12192. align-self:flex-start;
  12193. padding:0px 0px 0px 0px;
  12194. box-sizing:border-box;
  12195. width:100%;
  12196. }
  12197. #u20215_text {
  12198. border-width:0px;
  12199. white-space:nowrap;
  12200. text-transform:none;
  12201. }
  12202. #u20216_div {
  12203. border-width:0px;
  12204. position:absolute;
  12205. left:0px;
  12206. top:0px;
  12207. width:97px;
  12208. height:22px;
  12209. background:inherit;
  12210. background-color:rgba(255, 255, 255, 0);
  12211. border:none;
  12212. border-radius:0px;
  12213. -moz-box-shadow:none;
  12214. -webkit-box-shadow:none;
  12215. box-shadow:none;
  12216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12217. font-weight:400;
  12218. font-style:normal;
  12219. font-size:16px;
  12220. }
  12221. #u20216 {
  12222. border-width:0px;
  12223. position:absolute;
  12224. left:146px;
  12225. top:499px;
  12226. width:97px;
  12227. height:22px;
  12228. display:flex;
  12229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12230. font-weight:400;
  12231. font-style:normal;
  12232. font-size:16px;
  12233. }
  12234. #u20216 .text {
  12235. position:absolute;
  12236. align-self:flex-start;
  12237. padding:0px 0px 0px 0px;
  12238. box-sizing:border-box;
  12239. width:100%;
  12240. }
  12241. #u20216_text {
  12242. border-width:0px;
  12243. white-space:nowrap;
  12244. text-transform:none;
  12245. }
  12246. #u20217_div {
  12247. border-width:0px;
  12248. position:absolute;
  12249. left:0px;
  12250. top:0px;
  12251. width:65px;
  12252. height:22px;
  12253. background:inherit;
  12254. background-color:rgba(255, 255, 255, 0);
  12255. border:none;
  12256. border-radius:0px;
  12257. -moz-box-shadow:none;
  12258. -webkit-box-shadow:none;
  12259. box-shadow:none;
  12260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12261. font-weight:400;
  12262. font-style:normal;
  12263. font-size:16px;
  12264. }
  12265. #u20217 {
  12266. border-width:0px;
  12267. position:absolute;
  12268. left:146px;
  12269. top:581px;
  12270. width:65px;
  12271. height:22px;
  12272. display:flex;
  12273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12274. font-weight:400;
  12275. font-style:normal;
  12276. font-size:16px;
  12277. }
  12278. #u20217 .text {
  12279. position:absolute;
  12280. align-self:flex-start;
  12281. padding:0px 0px 0px 0px;
  12282. box-sizing:border-box;
  12283. width:100%;
  12284. }
  12285. #u20217_text {
  12286. border-width:0px;
  12287. white-space:nowrap;
  12288. text-transform:none;
  12289. }
  12290. #u20218_div {
  12291. border-width:0px;
  12292. position:absolute;
  12293. left:0px;
  12294. top:0px;
  12295. width:65px;
  12296. height:22px;
  12297. background:inherit;
  12298. background-color:rgba(255, 255, 255, 0);
  12299. border:none;
  12300. border-radius:0px;
  12301. -moz-box-shadow:none;
  12302. -webkit-box-shadow:none;
  12303. box-shadow:none;
  12304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12305. font-weight:400;
  12306. font-style:normal;
  12307. font-size:16px;
  12308. }
  12309. #u20218 {
  12310. border-width:0px;
  12311. position:absolute;
  12312. left:146px;
  12313. top:623px;
  12314. width:65px;
  12315. height:22px;
  12316. display:flex;
  12317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12318. font-weight:400;
  12319. font-style:normal;
  12320. font-size:16px;
  12321. }
  12322. #u20218 .text {
  12323. position:absolute;
  12324. align-self:flex-start;
  12325. padding:0px 0px 0px 0px;
  12326. box-sizing:border-box;
  12327. width:100%;
  12328. }
  12329. #u20218_text {
  12330. border-width:0px;
  12331. white-space:nowrap;
  12332. text-transform:none;
  12333. }
  12334. #u20219_div {
  12335. border-width:0px;
  12336. position:absolute;
  12337. left:0px;
  12338. top:0px;
  12339. width:49px;
  12340. height:17px;
  12341. background:inherit;
  12342. background-color:rgba(255, 255, 255, 0);
  12343. border:none;
  12344. border-radius:0px;
  12345. -moz-box-shadow:none;
  12346. -webkit-box-shadow:none;
  12347. box-shadow:none;
  12348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12349. font-weight:400;
  12350. font-style:normal;
  12351. font-size:12px;
  12352. color:#AAAAAA;
  12353. }
  12354. #u20219 {
  12355. border-width:0px;
  12356. position:absolute;
  12357. left:146px;
  12358. top:462px;
  12359. width:49px;
  12360. height:17px;
  12361. display:flex;
  12362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12363. font-weight:400;
  12364. font-style:normal;
  12365. font-size:12px;
  12366. color:#AAAAAA;
  12367. }
  12368. #u20219 .text {
  12369. position:absolute;
  12370. align-self:flex-start;
  12371. padding:0px 0px 0px 0px;
  12372. box-sizing:border-box;
  12373. width:100%;
  12374. }
  12375. #u20219_text {
  12376. border-width:0px;
  12377. white-space:nowrap;
  12378. text-transform:none;
  12379. }
  12380. #u20220_img {
  12381. border-width:0px;
  12382. position:absolute;
  12383. left:0px;
  12384. top:0px;
  12385. width:201px;
  12386. height:2px;
  12387. }
  12388. #u20220 {
  12389. border-width:0px;
  12390. position:absolute;
  12391. left:120px;
  12392. top:441px;
  12393. width:200px;
  12394. height:1px;
  12395. display:flex;
  12396. }
  12397. #u20220 .text {
  12398. position:absolute;
  12399. align-self:center;
  12400. padding:2px 2px 2px 2px;
  12401. box-sizing:border-box;
  12402. width:100%;
  12403. }
  12404. #u20220_text {
  12405. border-width:0px;
  12406. word-wrap:break-word;
  12407. text-transform:none;
  12408. visibility:hidden;
  12409. }
  12410. #u20221_div {
  12411. border-width:0px;
  12412. position:absolute;
  12413. left:0px;
  12414. top:0px;
  12415. width:65px;
  12416. height:22px;
  12417. background:inherit;
  12418. background-color:rgba(255, 255, 255, 0);
  12419. border:none;
  12420. border-radius:0px;
  12421. -moz-box-shadow:none;
  12422. -webkit-box-shadow:none;
  12423. box-shadow:none;
  12424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12425. font-weight:400;
  12426. font-style:normal;
  12427. font-size:16px;
  12428. }
  12429. #u20221 {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:146px;
  12433. top:665px;
  12434. width:65px;
  12435. height:22px;
  12436. display:flex;
  12437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12438. font-weight:400;
  12439. font-style:normal;
  12440. font-size:16px;
  12441. }
  12442. #u20221 .text {
  12443. position:absolute;
  12444. align-self:flex-start;
  12445. padding:0px 0px 0px 0px;
  12446. box-sizing:border-box;
  12447. width:100%;
  12448. }
  12449. #u20221_text {
  12450. border-width:0px;
  12451. white-space:nowrap;
  12452. text-transform:none;
  12453. }
  12454. #u20222_div {
  12455. border-width:0px;
  12456. position:absolute;
  12457. left:0px;
  12458. top:0px;
  12459. width:97px;
  12460. height:22px;
  12461. background:inherit;
  12462. background-color:rgba(255, 255, 255, 0);
  12463. border:none;
  12464. border-radius:0px;
  12465. -moz-box-shadow:none;
  12466. -webkit-box-shadow:none;
  12467. box-shadow:none;
  12468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12469. font-weight:400;
  12470. font-style:normal;
  12471. font-size:16px;
  12472. }
  12473. #u20222 {
  12474. border-width:0px;
  12475. position:absolute;
  12476. left:146px;
  12477. top:541px;
  12478. width:97px;
  12479. height:22px;
  12480. display:flex;
  12481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12482. font-weight:400;
  12483. font-style:normal;
  12484. font-size:16px;
  12485. }
  12486. #u20222 .text {
  12487. position:absolute;
  12488. align-self:flex-start;
  12489. padding:0px 0px 0px 0px;
  12490. box-sizing:border-box;
  12491. width:100%;
  12492. }
  12493. #u20222_text {
  12494. border-width:0px;
  12495. white-space:nowrap;
  12496. text-transform:none;
  12497. }