styles.css 164 KB

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