styles.css 160 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172
  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. #u16835_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. #u16835 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u16835 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u16835_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u16836_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. #u16836 {
  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. #u16836 .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. #u16836_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u16837_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. #u16837 {
  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. #u16837 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u16837_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u16838 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u16839_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u16839 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u16839 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u16839_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u16840_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. #u16840 {
  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. #u16840 .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. #u16840_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u16841_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. #u16841 {
  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. #u16841 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u16841_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u16842 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u16843_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. #u16843 {
  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. #u16843 .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. #u16843_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u16844_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u16844 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u16844 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u16844_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u16845 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u16846_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. #u16846 {
  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. #u16846 .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. #u16846_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u16847_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u16847 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u16847 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u16847_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u16848 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u16849_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. #u16849 {
  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. #u16849 .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. #u16849_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u16850_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u16850 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u16850 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u16850_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u16851 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u16852_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. #u16852 {
  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. #u16852 .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. #u16852_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u16853_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u16853 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u16853 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u16853_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u16854 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u16855_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. #u16855 {
  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. #u16855 .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. #u16855_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u16856_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u16856 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u16856 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u16856_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u16857 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u16858_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. #u16858 {
  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. #u16858 .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. #u16858_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u16859_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u16859 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u16859 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u16859_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u16860 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u16861_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. #u16861 {
  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. #u16861 .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. #u16861_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u16862_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u16862 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u16862 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u16862_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u16863 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u16864_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. #u16864 {
  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. #u16864 .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. #u16864_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u16865_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u16865 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u16865 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u16865_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u16866 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u16867_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. #u16867 {
  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. #u16867 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u16867_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u16868_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u16868 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u16868 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u16868_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u16869 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u16870_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. #u16870 {
  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. #u16870 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u16870_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u16871_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u16871 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u16871 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u16871_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u16872 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u16873_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. #u16873 {
  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. #u16873 .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. #u16873_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u16874_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u16874 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u16874 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u16874_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u16875 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u16876_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. #u16876_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. #u16876_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. #u16876 {
  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. #u16876 .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. #u16876_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. #u16876.disabled {
  1276. }
  1277. .u16876_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u16877_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u16877 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u16877 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u16877_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u16878_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. #u16878 {
  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. #u16878 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u16878_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u16879_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u16879 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u16879 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u16879_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u16880 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u16881_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. #u16881 {
  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. #u16881 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u16881_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u16882_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u16882 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u16882 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u16882_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u16883_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u16883 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u16883 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u16883_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u16884_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u16884 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u16884 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u16884_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u16885_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u16885 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u16885 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u16885_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u16886 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u16887_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. #u16887 {
  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. #u16887 .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. #u16887_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u16888_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u16888 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u16888 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u16888_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u16889_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1259px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(121, 121, 121, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u16889 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:331px;
  1664. top:50px;
  1665. width:1259px;
  1666. height:1180px;
  1667. display:flex;
  1668. }
  1669. #u16889 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u16889_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u16890 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:351px;
  1686. top:233px;
  1687. width:1209px;
  1688. height:316px;
  1689. }
  1690. #u16891_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:60px;
  1696. height:38px;
  1697. }
  1698. #u16891 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:60px;
  1704. height:38px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:12px;
  1710. color:#FFFFFF;
  1711. }
  1712. #u16891 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 0px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u16891_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. }
  1724. #u16892_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:60px;
  1730. height:38px;
  1731. }
  1732. #u16892 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:60px;
  1736. top:0px;
  1737. width:60px;
  1738. height:38px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:12px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u16892 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 0px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u16892_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. }
  1758. #u16893_img {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:60px;
  1764. height:38px;
  1765. }
  1766. #u16893 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:120px;
  1770. top:0px;
  1771. width:60px;
  1772. height:38px;
  1773. display:flex;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:12px;
  1778. color:#FFFFFF;
  1779. }
  1780. #u16893 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 0px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u16893_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. }
  1792. #u16894_img {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:79px;
  1798. height:38px;
  1799. }
  1800. #u16894 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:180px;
  1804. top:0px;
  1805. width:79px;
  1806. height:38px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:12px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u16894 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 0px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u16894_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. }
  1826. #u16895_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:79px;
  1832. height:38px;
  1833. }
  1834. #u16895 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:259px;
  1838. top:0px;
  1839. width:79px;
  1840. height:38px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. color:#FFFFFF;
  1847. }
  1848. #u16895 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 0px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u16895_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u16896_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:79px;
  1866. height:38px;
  1867. }
  1868. #u16896 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:338px;
  1872. top:0px;
  1873. width:79px;
  1874. height:38px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:12px;
  1880. color:#FFFFFF;
  1881. }
  1882. #u16896 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 0px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u16896_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. }
  1894. #u16897_img {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:79px;
  1900. height:38px;
  1901. }
  1902. #u16897 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:417px;
  1906. top:0px;
  1907. width:79px;
  1908. height:38px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. color:#FFFFFF;
  1915. }
  1916. #u16897 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:2px 2px 2px 0px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u16897_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. }
  1928. #u16898_img {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:79px;
  1934. height:38px;
  1935. }
  1936. #u16898 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:496px;
  1940. top:0px;
  1941. width:79px;
  1942. height:38px;
  1943. display:flex;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:12px;
  1948. color:#FFFFFF;
  1949. }
  1950. #u16898 .text {
  1951. position:absolute;
  1952. align-self:center;
  1953. padding:2px 2px 2px 0px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u16898_text {
  1958. border-width:0px;
  1959. word-wrap:break-word;
  1960. text-transform:none;
  1961. }
  1962. #u16899_img {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:79px;
  1968. height:38px;
  1969. }
  1970. #u16899 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:575px;
  1974. top:0px;
  1975. width:79px;
  1976. height:38px;
  1977. display:flex;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:12px;
  1982. color:#FFFFFF;
  1983. }
  1984. #u16899 .text {
  1985. position:absolute;
  1986. align-self:center;
  1987. padding:2px 2px 2px 0px;
  1988. box-sizing:border-box;
  1989. width:100%;
  1990. }
  1991. #u16899_text {
  1992. border-width:0px;
  1993. word-wrap:break-word;
  1994. text-transform:none;
  1995. }
  1996. #u16900_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:79px;
  2002. height:38px;
  2003. }
  2004. #u16900 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:654px;
  2008. top:0px;
  2009. width:79px;
  2010. height:38px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:12px;
  2016. color:#FFFFFF;
  2017. }
  2018. #u16900 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 0px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u16900_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. }
  2030. #u16901_img {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:76px;
  2036. height:38px;
  2037. }
  2038. #u16901 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:733px;
  2042. top:0px;
  2043. width:76px;
  2044. height:38px;
  2045. display:flex;
  2046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:12px;
  2050. color:#FFFFFF;
  2051. }
  2052. #u16901 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 2px 2px 0px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u16901_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. }
  2064. #u16902_img {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:86px;
  2070. height:38px;
  2071. }
  2072. #u16902 {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:809px;
  2076. top:0px;
  2077. width:86px;
  2078. height:38px;
  2079. display:flex;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:12px;
  2084. color:#FFFFFF;
  2085. }
  2086. #u16902 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 0px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u16902_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. }
  2098. #u16903_img {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:80px;
  2104. height:38px;
  2105. }
  2106. #u16903 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:895px;
  2110. top:0px;
  2111. width:80px;
  2112. height:38px;
  2113. display:flex;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:12px;
  2118. color:#FFFFFF;
  2119. }
  2120. #u16903 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 2px 2px 0px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u16903_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. }
  2132. #u16904_img {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:79px;
  2138. height:38px;
  2139. }
  2140. #u16904 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:975px;
  2144. top:0px;
  2145. width:79px;
  2146. height:38px;
  2147. display:flex;
  2148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:12px;
  2152. color:#FFFFFF;
  2153. }
  2154. #u16904 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 2px 2px 0px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u16904_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. }
  2166. #u16905_img {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:79px;
  2172. height:38px;
  2173. }
  2174. #u16905 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:1054px;
  2178. top:0px;
  2179. width:79px;
  2180. height:38px;
  2181. display:flex;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. color:#FFFFFF;
  2187. }
  2188. #u16905 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:2px 2px 2px 0px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u16905_text {
  2196. border-width:0px;
  2197. word-wrap:break-word;
  2198. text-transform:none;
  2199. }
  2200. #u16906_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:76px;
  2206. height:38px;
  2207. }
  2208. #u16906 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:1133px;
  2212. top:0px;
  2213. width:76px;
  2214. height:38px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. color:#FFFFFF;
  2221. }
  2222. #u16906 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u16906_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. }
  2234. #u16907_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:60px;
  2240. height:44px;
  2241. }
  2242. #u16907 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:38px;
  2247. width:60px;
  2248. height:44px;
  2249. display:flex;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. font-size:12px;
  2254. color:#333333;
  2255. line-height:40px;
  2256. }
  2257. #u16907 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u16907_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. visibility:hidden;
  2269. }
  2270. #u16908_img {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:60px;
  2276. height:44px;
  2277. }
  2278. #u16908 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:60px;
  2282. top:38px;
  2283. width:60px;
  2284. height:44px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. color:#333333;
  2291. line-height:40px;
  2292. }
  2293. #u16908 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u16908_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u16909_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:60px;
  2312. height:44px;
  2313. }
  2314. #u16909 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:120px;
  2318. top:38px;
  2319. width:60px;
  2320. height:44px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#333333;
  2327. line-height:40px;
  2328. }
  2329. #u16909 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u16909_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u16910_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:79px;
  2348. height:44px;
  2349. }
  2350. #u16910 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:180px;
  2354. top:38px;
  2355. width:79px;
  2356. height:44px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. color:#333333;
  2363. line-height:40px;
  2364. }
  2365. #u16910 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u16910_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. }
  2377. #u16911_img {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:79px;
  2383. height:44px;
  2384. }
  2385. #u16911 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:259px;
  2389. top:38px;
  2390. width:79px;
  2391. height:44px;
  2392. display:flex;
  2393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2394. font-weight:400;
  2395. font-style:normal;
  2396. font-size:12px;
  2397. }
  2398. #u16911 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 2px 2px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u16911_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. }
  2410. #u16912_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:79px;
  2416. height:44px;
  2417. }
  2418. #u16912 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:338px;
  2422. top:38px;
  2423. width:79px;
  2424. height:44px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. color:#606266;
  2431. }
  2432. #u16912 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u16912_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u16913_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:79px;
  2450. height:44px;
  2451. }
  2452. #u16913 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:417px;
  2456. top:38px;
  2457. width:79px;
  2458. height:44px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:12px;
  2464. color:#333333;
  2465. }
  2466. #u16913 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 2px 2px 0px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u16913_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u16914_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:79px;
  2485. height:44px;
  2486. }
  2487. #u16914 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:496px;
  2491. top:38px;
  2492. width:79px;
  2493. height:44px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:12px;
  2499. color:#333333;
  2500. }
  2501. #u16914 .text {
  2502. position:absolute;
  2503. align-self:center;
  2504. padding:2px 2px 2px 0px;
  2505. box-sizing:border-box;
  2506. width:100%;
  2507. }
  2508. #u16914_text {
  2509. border-width:0px;
  2510. word-wrap:break-word;
  2511. text-transform:none;
  2512. visibility:hidden;
  2513. }
  2514. #u16915_img {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:79px;
  2520. height:44px;
  2521. }
  2522. #u16915 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:575px;
  2526. top:38px;
  2527. width:79px;
  2528. height:44px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. color:#333333;
  2535. }
  2536. #u16915 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u16915_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. visibility:hidden;
  2548. }
  2549. #u16916_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:79px;
  2555. height:44px;
  2556. }
  2557. #u16916 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:654px;
  2561. top:38px;
  2562. width:79px;
  2563. height:44px;
  2564. display:flex;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. color:#333333;
  2570. }
  2571. #u16916 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u16916_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. }
  2583. #u16917_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:76px;
  2589. height:44px;
  2590. }
  2591. #u16917 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:733px;
  2595. top:38px;
  2596. width:76px;
  2597. height:44px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. color:#333333;
  2604. }
  2605. #u16917 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u16917_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u16918_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:86px;
  2624. height:44px;
  2625. }
  2626. #u16918 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:809px;
  2630. top:38px;
  2631. width:86px;
  2632. height:44px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. color:#333333;
  2639. }
  2640. #u16918 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u16918_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. }
  2652. #u16919_img {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:80px;
  2658. height:44px;
  2659. }
  2660. #u16919 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:895px;
  2664. top:38px;
  2665. width:80px;
  2666. height:44px;
  2667. display:flex;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:12px;
  2672. color:#333333;
  2673. }
  2674. #u16919 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u16919_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. }
  2686. #u16920_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:79px;
  2692. height:44px;
  2693. }
  2694. #u16920 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:975px;
  2698. top:38px;
  2699. width:79px;
  2700. height:44px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#333333;
  2707. }
  2708. #u16920 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u16920_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u16921_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:79px;
  2727. height:44px;
  2728. }
  2729. #u16921 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:1054px;
  2733. top:38px;
  2734. width:79px;
  2735. height:44px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#333333;
  2742. }
  2743. #u16921 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u16921_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u16922_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:76px;
  2762. height:44px;
  2763. }
  2764. #u16922 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:1133px;
  2768. top:38px;
  2769. width:76px;
  2770. height:44px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. color:#298FFF;
  2777. line-height:35px;
  2778. }
  2779. #u16922 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:2px 2px 2px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u16922_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. }
  2791. #u16923_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:60px;
  2797. height:44px;
  2798. }
  2799. #u16923 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:82px;
  2804. width:60px;
  2805. height:44px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#333333;
  2812. line-height:40px;
  2813. }
  2814. #u16923 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 2px 2px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u16923_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u16924_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:60px;
  2833. height:44px;
  2834. }
  2835. #u16924 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:60px;
  2839. top:82px;
  2840. width:60px;
  2841. height:44px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:12px;
  2847. color:#333333;
  2848. line-height:40px;
  2849. }
  2850. #u16924 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u16924_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u16925_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:60px;
  2869. height:44px;
  2870. }
  2871. #u16925 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:120px;
  2875. top:82px;
  2876. width:60px;
  2877. height:44px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#333333;
  2884. line-height:40px;
  2885. }
  2886. #u16925 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 0px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u16925_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u16926_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:79px;
  2905. height:44px;
  2906. }
  2907. #u16926 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:180px;
  2911. top:82px;
  2912. width:79px;
  2913. height:44px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#333333;
  2920. line-height:40px;
  2921. }
  2922. #u16926 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 0px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u16926_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. }
  2934. #u16927_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:79px;
  2940. height:44px;
  2941. }
  2942. #u16927 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:259px;
  2946. top:82px;
  2947. width:79px;
  2948. height:44px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. }
  2955. #u16927 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u16927_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u16928_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:79px;
  2974. height:44px;
  2975. }
  2976. #u16928 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:338px;
  2980. top:82px;
  2981. width:79px;
  2982. height:44px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. color:#606266;
  2989. }
  2990. #u16928 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u16928_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. }
  3002. #u16929_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:79px;
  3008. height:44px;
  3009. }
  3010. #u16929 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:417px;
  3014. top:82px;
  3015. width:79px;
  3016. height:44px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:12px;
  3022. color:#333333;
  3023. }
  3024. #u16929 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 0px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u16929_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u16930_img {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:79px;
  3043. height:44px;
  3044. }
  3045. #u16930 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:496px;
  3049. top:82px;
  3050. width:79px;
  3051. height:44px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:12px;
  3057. color:#333333;
  3058. }
  3059. #u16930 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:2px 2px 2px 0px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u16930_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u16931_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:79px;
  3078. height:44px;
  3079. }
  3080. #u16931 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:575px;
  3084. top:82px;
  3085. width:79px;
  3086. height:44px;
  3087. display:flex;
  3088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:12px;
  3092. color:#333333;
  3093. }
  3094. #u16931 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 0px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u16931_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u16932_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:79px;
  3113. height:44px;
  3114. }
  3115. #u16932 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:654px;
  3119. top:82px;
  3120. width:79px;
  3121. height:44px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:12px;
  3127. color:#333333;
  3128. }
  3129. #u16932 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 2px 2px 0px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u16932_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. }
  3141. #u16933_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:76px;
  3147. height:44px;
  3148. }
  3149. #u16933 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:733px;
  3153. top:82px;
  3154. width:76px;
  3155. height:44px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#333333;
  3162. }
  3163. #u16933 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 2px 2px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u16933_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. visibility:hidden;
  3175. }
  3176. #u16934_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:86px;
  3182. height:44px;
  3183. }
  3184. #u16934 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:809px;
  3188. top:82px;
  3189. width:86px;
  3190. height:44px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#333333;
  3197. }
  3198. #u16934 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u16934_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. visibility:hidden;
  3210. }
  3211. #u16935_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:80px;
  3217. height:44px;
  3218. }
  3219. #u16935 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:895px;
  3223. top:82px;
  3224. width:80px;
  3225. height:44px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. color:#333333;
  3232. }
  3233. #u16935 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u16935_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. }
  3245. #u16936_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:79px;
  3251. height:44px;
  3252. }
  3253. #u16936 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:975px;
  3257. top:82px;
  3258. width:79px;
  3259. height:44px;
  3260. display:flex;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. color:#333333;
  3266. }
  3267. #u16936 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u16936_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u16937_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:79px;
  3286. height:44px;
  3287. }
  3288. #u16937 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:1054px;
  3292. top:82px;
  3293. width:79px;
  3294. height:44px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. color:#333333;
  3301. }
  3302. #u16937 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u16937_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u16938_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:76px;
  3321. height:44px;
  3322. }
  3323. #u16938 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:1133px;
  3327. top:82px;
  3328. width:76px;
  3329. height:44px;
  3330. display:flex;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. color:#1890FF;
  3336. }
  3337. #u16938 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u16938_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u16939_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:60px;
  3356. height:38px;
  3357. }
  3358. #u16939 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:126px;
  3363. width:60px;
  3364. height:38px;
  3365. display:flex;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#333333;
  3371. line-height:40px;
  3372. }
  3373. #u16939 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:2px 2px 2px 0px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u16939_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u16940_img {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:60px;
  3392. height:38px;
  3393. }
  3394. #u16940 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:60px;
  3398. top:126px;
  3399. width:60px;
  3400. height:38px;
  3401. display:flex;
  3402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:12px;
  3406. color:#333333;
  3407. line-height:40px;
  3408. }
  3409. #u16940 .text {
  3410. position:absolute;
  3411. align-self:center;
  3412. padding:2px 2px 2px 0px;
  3413. box-sizing:border-box;
  3414. width:100%;
  3415. }
  3416. #u16940_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. visibility:hidden;
  3421. }
  3422. #u16941_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:60px;
  3428. height:38px;
  3429. }
  3430. #u16941 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:120px;
  3434. top:126px;
  3435. width:60px;
  3436. height:38px;
  3437. display:flex;
  3438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3439. font-weight:400;
  3440. font-style:normal;
  3441. font-size:12px;
  3442. color:#333333;
  3443. line-height:40px;
  3444. }
  3445. #u16941 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u16941_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u16942_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:79px;
  3464. height:38px;
  3465. }
  3466. #u16942 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:180px;
  3470. top:126px;
  3471. width:79px;
  3472. height:38px;
  3473. display:flex;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. color:#333333;
  3479. line-height:40px;
  3480. }
  3481. #u16942 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:2px 2px 2px 0px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u16942_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u16943_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:79px;
  3500. height:38px;
  3501. }
  3502. #u16943 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:259px;
  3506. top:126px;
  3507. width:79px;
  3508. height:38px;
  3509. display:flex;
  3510. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:12px;
  3514. color:#606266;
  3515. }
  3516. #u16943 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 0px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u16943_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u16944_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:79px;
  3535. height:38px;
  3536. }
  3537. #u16944 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:338px;
  3541. top:126px;
  3542. width:79px;
  3543. height:38px;
  3544. display:flex;
  3545. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:12px;
  3549. color:#606266;
  3550. }
  3551. #u16944 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 0px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u16944_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u16945_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:79px;
  3570. height:38px;
  3571. }
  3572. #u16945 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:417px;
  3576. top:126px;
  3577. width:79px;
  3578. height:38px;
  3579. display:flex;
  3580. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:12px;
  3584. color:#606266;
  3585. }
  3586. #u16945 .text {
  3587. position:absolute;
  3588. align-self:center;
  3589. padding:2px 2px 2px 0px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u16945_text {
  3594. border-width:0px;
  3595. word-wrap:break-word;
  3596. text-transform:none;
  3597. visibility:hidden;
  3598. }
  3599. #u16946_img {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:79px;
  3605. height:38px;
  3606. }
  3607. #u16946 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:496px;
  3611. top:126px;
  3612. width:79px;
  3613. height:38px;
  3614. display:flex;
  3615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:12px;
  3619. color:#606266;
  3620. }
  3621. #u16946 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:2px 2px 2px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u16946_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u16947_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:79px;
  3640. height:38px;
  3641. }
  3642. #u16947 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:575px;
  3646. top:126px;
  3647. width:79px;
  3648. height:38px;
  3649. display:flex;
  3650. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:12px;
  3654. color:#606266;
  3655. }
  3656. #u16947 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 0px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u16947_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u16948_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:79px;
  3675. height:38px;
  3676. }
  3677. #u16948 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:654px;
  3681. top:126px;
  3682. width:79px;
  3683. height:38px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. color:#333333;
  3690. }
  3691. #u16948 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 0px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u16948_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. }
  3703. #u16949_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:76px;
  3709. height:38px;
  3710. }
  3711. #u16949 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:733px;
  3715. top:126px;
  3716. width:76px;
  3717. height:38px;
  3718. display:flex;
  3719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. color:#333333;
  3724. }
  3725. #u16949 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u16949_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u16950_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:86px;
  3744. height:38px;
  3745. }
  3746. #u16950 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:809px;
  3750. top:126px;
  3751. width:86px;
  3752. height:38px;
  3753. display:flex;
  3754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. color:#333333;
  3759. }
  3760. #u16950 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u16950_text {
  3768. border-width:0px;
  3769. word-wrap:break-word;
  3770. text-transform:none;
  3771. visibility:hidden;
  3772. }
  3773. #u16951_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:80px;
  3779. height:38px;
  3780. }
  3781. #u16951 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:895px;
  3785. top:126px;
  3786. width:80px;
  3787. height:38px;
  3788. display:flex;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:#333333;
  3794. }
  3795. #u16951 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u16951_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. }
  3807. #u16952_img {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:79px;
  3813. height:38px;
  3814. }
  3815. #u16952 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:975px;
  3819. top:126px;
  3820. width:79px;
  3821. height:38px;
  3822. display:flex;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:12px;
  3827. color:#606266;
  3828. }
  3829. #u16952 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u16952_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u16953_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:79px;
  3848. height:38px;
  3849. }
  3850. #u16953 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:1054px;
  3854. top:126px;
  3855. width:79px;
  3856. height:38px;
  3857. display:flex;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:12px;
  3862. color:#606266;
  3863. }
  3864. #u16953 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:2px 2px 2px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u16953_text {
  3872. border-width:0px;
  3873. word-wrap:break-word;
  3874. text-transform:none;
  3875. visibility:hidden;
  3876. }
  3877. #u16954_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:76px;
  3883. height:38px;
  3884. }
  3885. #u16954 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:1133px;
  3889. top:126px;
  3890. width:76px;
  3891. height:38px;
  3892. display:flex;
  3893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. color:#1890FF;
  3898. }
  3899. #u16954 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 0px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u16954_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u16955_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:60px;
  3918. height:38px;
  3919. }
  3920. #u16955 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:164px;
  3925. width:60px;
  3926. height:38px;
  3927. display:flex;
  3928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:12px;
  3932. color:#606266;
  3933. }
  3934. #u16955 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u16955_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u16956_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:60px;
  3953. height:38px;
  3954. }
  3955. #u16956 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:60px;
  3959. top:164px;
  3960. width:60px;
  3961. height:38px;
  3962. display:flex;
  3963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:12px;
  3967. color:#606266;
  3968. }
  3969. #u16956 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:2px 2px 2px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u16956_text {
  3977. border-width:0px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. visibility:hidden;
  3981. }
  3982. #u16957_img {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:60px;
  3988. height:38px;
  3989. }
  3990. #u16957 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:120px;
  3994. top:164px;
  3995. width:60px;
  3996. height:38px;
  3997. display:flex;
  3998. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. color:#606266;
  4003. }
  4004. #u16957 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:2px 2px 2px 0px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u16957_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. visibility:hidden;
  4016. }
  4017. #u16958_img {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:79px;
  4023. height:38px;
  4024. }
  4025. #u16958 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:180px;
  4029. top:164px;
  4030. width:79px;
  4031. height:38px;
  4032. display:flex;
  4033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:12px;
  4037. color:#606266;
  4038. }
  4039. #u16958 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u16958_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u16959_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:79px;
  4058. height:38px;
  4059. }
  4060. #u16959 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:259px;
  4064. top:164px;
  4065. width:79px;
  4066. height:38px;
  4067. display:flex;
  4068. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#606266;
  4073. }
  4074. #u16959 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 0px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u16959_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u16960_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:79px;
  4093. height:38px;
  4094. }
  4095. #u16960 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:338px;
  4099. top:164px;
  4100. width:79px;
  4101. height:38px;
  4102. display:flex;
  4103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:12px;
  4107. color:#606266;
  4108. }
  4109. #u16960 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u16960_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u16961_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:79px;
  4128. height:38px;
  4129. }
  4130. #u16961 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:417px;
  4134. top:164px;
  4135. width:79px;
  4136. height:38px;
  4137. display:flex;
  4138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:12px;
  4142. color:#606266;
  4143. }
  4144. #u16961 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 0px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u16961_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u16962_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:79px;
  4163. height:38px;
  4164. }
  4165. #u16962 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:496px;
  4169. top:164px;
  4170. width:79px;
  4171. height:38px;
  4172. display:flex;
  4173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:12px;
  4177. color:#606266;
  4178. }
  4179. #u16962 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 0px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u16962_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u16963_img {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:79px;
  4198. height:38px;
  4199. }
  4200. #u16963 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:575px;
  4204. top:164px;
  4205. width:79px;
  4206. height:38px;
  4207. display:flex;
  4208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:12px;
  4212. color:#606266;
  4213. }
  4214. #u16963 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 0px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u16963_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u16964_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:79px;
  4233. height:38px;
  4234. }
  4235. #u16964 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:654px;
  4239. top:164px;
  4240. width:79px;
  4241. height:38px;
  4242. display:flex;
  4243. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:12px;
  4247. color:#606266;
  4248. }
  4249. #u16964 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u16964_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u16965_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:76px;
  4268. height:38px;
  4269. }
  4270. #u16965 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:733px;
  4274. top:164px;
  4275. width:76px;
  4276. height:38px;
  4277. display:flex;
  4278. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. color:#606266;
  4283. }
  4284. #u16965 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u16965_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u16966_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:86px;
  4303. height:38px;
  4304. }
  4305. #u16966 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:809px;
  4309. top:164px;
  4310. width:86px;
  4311. height:38px;
  4312. display:flex;
  4313. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:12px;
  4317. color:#606266;
  4318. }
  4319. #u16966 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u16966_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u16967_img {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:80px;
  4338. height:38px;
  4339. }
  4340. #u16967 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:895px;
  4344. top:164px;
  4345. width:80px;
  4346. height:38px;
  4347. display:flex;
  4348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:12px;
  4352. color:#606266;
  4353. }
  4354. #u16967 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 0px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u16967_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. }
  4366. #u16968_img {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:0px;
  4370. top:0px;
  4371. width:79px;
  4372. height:38px;
  4373. }
  4374. #u16968 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:975px;
  4378. top:164px;
  4379. width:79px;
  4380. height:38px;
  4381. display:flex;
  4382. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:12px;
  4386. color:#606266;
  4387. }
  4388. #u16968 .text {
  4389. position:absolute;
  4390. align-self:center;
  4391. padding:2px 2px 2px 0px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u16968_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. visibility:hidden;
  4400. }
  4401. #u16969_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:79px;
  4407. height:38px;
  4408. }
  4409. #u16969 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:1054px;
  4413. top:164px;
  4414. width:79px;
  4415. height:38px;
  4416. display:flex;
  4417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:12px;
  4421. color:#606266;
  4422. }
  4423. #u16969 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:2px 2px 2px 0px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u16969_text {
  4431. border-width:0px;
  4432. word-wrap:break-word;
  4433. text-transform:none;
  4434. visibility:hidden;
  4435. }
  4436. #u16970_img {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:76px;
  4442. height:38px;
  4443. }
  4444. #u16970 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:1133px;
  4448. top:164px;
  4449. width:76px;
  4450. height:38px;
  4451. display:flex;
  4452. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:12px;
  4456. color:#606266;
  4457. }
  4458. #u16970 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:2px 2px 2px 0px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u16970_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. visibility:hidden;
  4470. }
  4471. #u16971_img {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:60px;
  4477. height:38px;
  4478. }
  4479. #u16971 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:202px;
  4484. width:60px;
  4485. height:38px;
  4486. display:flex;
  4487. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:12px;
  4491. color:#606266;
  4492. }
  4493. #u16971 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 2px 2px 0px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u16971_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. visibility:hidden;
  4505. }
  4506. #u16972_img {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:60px;
  4512. height:38px;
  4513. }
  4514. #u16972 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:60px;
  4518. top:202px;
  4519. width:60px;
  4520. height:38px;
  4521. display:flex;
  4522. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4523. font-weight:400;
  4524. font-style:normal;
  4525. font-size:12px;
  4526. color:#606266;
  4527. }
  4528. #u16972 .text {
  4529. position:absolute;
  4530. align-self:center;
  4531. padding:2px 2px 2px 0px;
  4532. box-sizing:border-box;
  4533. width:100%;
  4534. }
  4535. #u16972_text {
  4536. border-width:0px;
  4537. word-wrap:break-word;
  4538. text-transform:none;
  4539. visibility:hidden;
  4540. }
  4541. #u16973_img {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:60px;
  4547. height:38px;
  4548. }
  4549. #u16973 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:120px;
  4553. top:202px;
  4554. width:60px;
  4555. height:38px;
  4556. display:flex;
  4557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. color:#606266;
  4562. }
  4563. #u16973 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:2px 2px 2px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u16973_text {
  4571. border-width:0px;
  4572. word-wrap:break-word;
  4573. text-transform:none;
  4574. visibility:hidden;
  4575. }
  4576. #u16974_img {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:79px;
  4582. height:38px;
  4583. }
  4584. #u16974 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:180px;
  4588. top:202px;
  4589. width:79px;
  4590. height:38px;
  4591. display:flex;
  4592. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:12px;
  4596. color:#606266;
  4597. }
  4598. #u16974 .text {
  4599. position:absolute;
  4600. align-self:center;
  4601. padding:2px 2px 2px 0px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u16974_text {
  4606. border-width:0px;
  4607. word-wrap:break-word;
  4608. text-transform:none;
  4609. visibility:hidden;
  4610. }
  4611. #u16975_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:79px;
  4617. height:38px;
  4618. }
  4619. #u16975 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:259px;
  4623. top:202px;
  4624. width:79px;
  4625. height:38px;
  4626. display:flex;
  4627. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:12px;
  4631. color:#606266;
  4632. }
  4633. #u16975 .text {
  4634. position:absolute;
  4635. align-self:center;
  4636. padding:2px 2px 2px 0px;
  4637. box-sizing:border-box;
  4638. width:100%;
  4639. }
  4640. #u16975_text {
  4641. border-width:0px;
  4642. word-wrap:break-word;
  4643. text-transform:none;
  4644. visibility:hidden;
  4645. }
  4646. #u16976_img {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:79px;
  4652. height:38px;
  4653. }
  4654. #u16976 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:338px;
  4658. top:202px;
  4659. width:79px;
  4660. height:38px;
  4661. display:flex;
  4662. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:12px;
  4666. color:#606266;
  4667. }
  4668. #u16976 .text {
  4669. position:absolute;
  4670. align-self:center;
  4671. padding:2px 2px 2px 0px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u16976_text {
  4676. border-width:0px;
  4677. word-wrap:break-word;
  4678. text-transform:none;
  4679. visibility:hidden;
  4680. }
  4681. #u16977_img {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:79px;
  4687. height:38px;
  4688. }
  4689. #u16977 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:417px;
  4693. top:202px;
  4694. width:79px;
  4695. height:38px;
  4696. display:flex;
  4697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4698. font-weight:400;
  4699. font-style:normal;
  4700. font-size:12px;
  4701. color:#606266;
  4702. }
  4703. #u16977 .text {
  4704. position:absolute;
  4705. align-self:center;
  4706. padding:2px 2px 2px 0px;
  4707. box-sizing:border-box;
  4708. width:100%;
  4709. }
  4710. #u16977_text {
  4711. border-width:0px;
  4712. word-wrap:break-word;
  4713. text-transform:none;
  4714. visibility:hidden;
  4715. }
  4716. #u16978_img {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:79px;
  4722. height:38px;
  4723. }
  4724. #u16978 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:496px;
  4728. top:202px;
  4729. width:79px;
  4730. height:38px;
  4731. display:flex;
  4732. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:12px;
  4736. color:#606266;
  4737. }
  4738. #u16978 .text {
  4739. position:absolute;
  4740. align-self:center;
  4741. padding:2px 2px 2px 0px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u16978_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. visibility:hidden;
  4750. }
  4751. #u16979_img {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:79px;
  4757. height:38px;
  4758. }
  4759. #u16979 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:575px;
  4763. top:202px;
  4764. width:79px;
  4765. height:38px;
  4766. display:flex;
  4767. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:12px;
  4771. color:#606266;
  4772. }
  4773. #u16979 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 0px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u16979_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u16980_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:79px;
  4792. height:38px;
  4793. }
  4794. #u16980 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:654px;
  4798. top:202px;
  4799. width:79px;
  4800. height:38px;
  4801. display:flex;
  4802. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:12px;
  4806. color:#606266;
  4807. }
  4808. #u16980 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u16980_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u16981_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:76px;
  4827. height:38px;
  4828. }
  4829. #u16981 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:733px;
  4833. top:202px;
  4834. width:76px;
  4835. height:38px;
  4836. display:flex;
  4837. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:12px;
  4841. color:#606266;
  4842. }
  4843. #u16981 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:2px 2px 2px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u16981_text {
  4851. border-width:0px;
  4852. word-wrap:break-word;
  4853. text-transform:none;
  4854. visibility:hidden;
  4855. }
  4856. #u16982_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:86px;
  4862. height:38px;
  4863. }
  4864. #u16982 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:809px;
  4868. top:202px;
  4869. width:86px;
  4870. height:38px;
  4871. display:flex;
  4872. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:12px;
  4876. color:#606266;
  4877. }
  4878. #u16982 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u16982_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u16983_img {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:80px;
  4897. height:38px;
  4898. }
  4899. #u16983 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:895px;
  4903. top:202px;
  4904. width:80px;
  4905. height:38px;
  4906. display:flex;
  4907. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:12px;
  4911. color:#606266;
  4912. }
  4913. #u16983 .text {
  4914. position:absolute;
  4915. align-self:center;
  4916. padding:2px 2px 2px 0px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u16983_text {
  4921. border-width:0px;
  4922. word-wrap:break-word;
  4923. text-transform:none;
  4924. visibility:hidden;
  4925. }
  4926. #u16984_img {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:79px;
  4932. height:38px;
  4933. }
  4934. #u16984 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:975px;
  4938. top:202px;
  4939. width:79px;
  4940. height:38px;
  4941. display:flex;
  4942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:12px;
  4946. color:#606266;
  4947. }
  4948. #u16984 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 0px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u16984_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u16985_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:79px;
  4967. height:38px;
  4968. }
  4969. #u16985 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:1054px;
  4973. top:202px;
  4974. width:79px;
  4975. height:38px;
  4976. display:flex;
  4977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:12px;
  4981. color:#606266;
  4982. }
  4983. #u16985 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:2px 2px 2px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u16985_text {
  4991. border-width:0px;
  4992. word-wrap:break-word;
  4993. text-transform:none;
  4994. visibility:hidden;
  4995. }
  4996. #u16986_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:76px;
  5002. height:38px;
  5003. }
  5004. #u16986 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:1133px;
  5008. top:202px;
  5009. width:76px;
  5010. height:38px;
  5011. display:flex;
  5012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:12px;
  5016. color:#606266;
  5017. }
  5018. #u16986 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u16986_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u16987_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:60px;
  5037. height:38px;
  5038. }
  5039. #u16987 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:240px;
  5044. width:60px;
  5045. height:38px;
  5046. display:flex;
  5047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:12px;
  5051. color:#606266;
  5052. }
  5053. #u16987 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 0px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u16987_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u16988_img {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:60px;
  5072. height:38px;
  5073. }
  5074. #u16988 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:60px;
  5078. top:240px;
  5079. width:60px;
  5080. height:38px;
  5081. display:flex;
  5082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:12px;
  5086. color:#606266;
  5087. }
  5088. #u16988 .text {
  5089. position:absolute;
  5090. align-self:center;
  5091. padding:2px 2px 2px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u16988_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. visibility:hidden;
  5100. }
  5101. #u16989_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:60px;
  5107. height:38px;
  5108. }
  5109. #u16989 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:120px;
  5113. top:240px;
  5114. width:60px;
  5115. height:38px;
  5116. display:flex;
  5117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. color:#606266;
  5122. }
  5123. #u16989 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 0px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u16989_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u16990_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:79px;
  5142. height:38px;
  5143. }
  5144. #u16990 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:180px;
  5148. top:240px;
  5149. width:79px;
  5150. height:38px;
  5151. display:flex;
  5152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:12px;
  5156. color:#606266;
  5157. }
  5158. #u16990 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u16990_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u16991_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:79px;
  5177. height:38px;
  5178. }
  5179. #u16991 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:259px;
  5183. top:240px;
  5184. width:79px;
  5185. height:38px;
  5186. display:flex;
  5187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:12px;
  5191. color:#606266;
  5192. }
  5193. #u16991 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:2px 2px 2px 0px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u16991_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. visibility:hidden;
  5205. }
  5206. #u16992_img {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:79px;
  5212. height:38px;
  5213. }
  5214. #u16992 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:338px;
  5218. top:240px;
  5219. width:79px;
  5220. height:38px;
  5221. display:flex;
  5222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. font-size:12px;
  5226. color:#606266;
  5227. }
  5228. #u16992 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:2px 2px 2px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u16992_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. visibility:hidden;
  5240. }
  5241. #u16993_img {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:79px;
  5247. height:38px;
  5248. }
  5249. #u16993 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:417px;
  5253. top:240px;
  5254. width:79px;
  5255. height:38px;
  5256. display:flex;
  5257. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:12px;
  5261. color:#606266;
  5262. }
  5263. #u16993 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:2px 2px 2px 0px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u16993_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. visibility:hidden;
  5275. }
  5276. #u16994_img {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:79px;
  5282. height:38px;
  5283. }
  5284. #u16994 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:496px;
  5288. top:240px;
  5289. width:79px;
  5290. height:38px;
  5291. display:flex;
  5292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:12px;
  5296. color:#606266;
  5297. }
  5298. #u16994 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 2px 2px 0px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u16994_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u16995_img {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:79px;
  5317. height:38px;
  5318. }
  5319. #u16995 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:575px;
  5323. top:240px;
  5324. width:79px;
  5325. height:38px;
  5326. display:flex;
  5327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:12px;
  5331. color:#606266;
  5332. }
  5333. #u16995 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:2px 2px 2px 0px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u16995_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. visibility:hidden;
  5345. }
  5346. #u16996_img {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:79px;
  5352. height:38px;
  5353. }
  5354. #u16996 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:654px;
  5358. top:240px;
  5359. width:79px;
  5360. height:38px;
  5361. display:flex;
  5362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:12px;
  5366. color:#606266;
  5367. }
  5368. #u16996 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 0px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u16996_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u16997_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:76px;
  5387. height:38px;
  5388. }
  5389. #u16997 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:733px;
  5393. top:240px;
  5394. width:76px;
  5395. height:38px;
  5396. display:flex;
  5397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:12px;
  5401. color:#606266;
  5402. }
  5403. #u16997 .text {
  5404. position:absolute;
  5405. align-self:center;
  5406. padding:2px 2px 2px 0px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u16997_text {
  5411. border-width:0px;
  5412. word-wrap:break-word;
  5413. text-transform:none;
  5414. visibility:hidden;
  5415. }
  5416. #u16998_img {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:86px;
  5422. height:38px;
  5423. }
  5424. #u16998 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:809px;
  5428. top:240px;
  5429. width:86px;
  5430. height:38px;
  5431. display:flex;
  5432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. color:#606266;
  5437. }
  5438. #u16998 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u16998_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. visibility:hidden;
  5450. }
  5451. #u16999_img {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:80px;
  5457. height:38px;
  5458. }
  5459. #u16999 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:895px;
  5463. top:240px;
  5464. width:80px;
  5465. height:38px;
  5466. display:flex;
  5467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:12px;
  5471. color:#606266;
  5472. }
  5473. #u16999 .text {
  5474. position:absolute;
  5475. align-self:center;
  5476. padding:2px 2px 2px 0px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u16999_text {
  5481. border-width:0px;
  5482. word-wrap:break-word;
  5483. text-transform:none;
  5484. visibility:hidden;
  5485. }
  5486. #u17000_img {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:79px;
  5492. height:38px;
  5493. }
  5494. #u17000 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:975px;
  5498. top:240px;
  5499. width:79px;
  5500. height:38px;
  5501. display:flex;
  5502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:12px;
  5506. color:#606266;
  5507. }
  5508. #u17000 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u17000_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. visibility:hidden;
  5520. }
  5521. #u17001_img {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:79px;
  5527. height:38px;
  5528. }
  5529. #u17001 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:1054px;
  5533. top:240px;
  5534. width:79px;
  5535. height:38px;
  5536. display:flex;
  5537. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:12px;
  5541. color:#606266;
  5542. }
  5543. #u17001 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 0px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u17001_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u17002_img {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:76px;
  5562. height:38px;
  5563. }
  5564. #u17002 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:1133px;
  5568. top:240px;
  5569. width:76px;
  5570. height:38px;
  5571. display:flex;
  5572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:12px;
  5576. color:#606266;
  5577. }
  5578. #u17002 .text {
  5579. position:absolute;
  5580. align-self:center;
  5581. padding:2px 2px 2px 0px;
  5582. box-sizing:border-box;
  5583. width:100%;
  5584. }
  5585. #u17002_text {
  5586. border-width:0px;
  5587. word-wrap:break-word;
  5588. text-transform:none;
  5589. visibility:hidden;
  5590. }
  5591. #u17003_img {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:60px;
  5597. height:38px;
  5598. }
  5599. #u17003 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:278px;
  5604. width:60px;
  5605. height:38px;
  5606. display:flex;
  5607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:12px;
  5611. color:#606266;
  5612. }
  5613. #u17003 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 2px 2px 0px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u17003_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u17004_img {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:60px;
  5632. height:38px;
  5633. }
  5634. #u17004 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:60px;
  5638. top:278px;
  5639. width:60px;
  5640. height:38px;
  5641. display:flex;
  5642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:12px;
  5646. color:#606266;
  5647. }
  5648. #u17004 .text {
  5649. position:absolute;
  5650. align-self:center;
  5651. padding:2px 2px 2px 0px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u17004_text {
  5656. border-width:0px;
  5657. word-wrap:break-word;
  5658. text-transform:none;
  5659. visibility:hidden;
  5660. }
  5661. #u17005_img {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:60px;
  5667. height:38px;
  5668. }
  5669. #u17005 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:120px;
  5673. top:278px;
  5674. width:60px;
  5675. height:38px;
  5676. display:flex;
  5677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:12px;
  5681. color:#606266;
  5682. }
  5683. #u17005 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 0px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u17005_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. visibility:hidden;
  5695. }
  5696. #u17006_img {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:79px;
  5702. height:38px;
  5703. }
  5704. #u17006 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:180px;
  5708. top:278px;
  5709. width:79px;
  5710. height:38px;
  5711. display:flex;
  5712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. color:#606266;
  5717. }
  5718. #u17006 .text {
  5719. position:absolute;
  5720. align-self:center;
  5721. padding:2px 2px 2px 0px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u17006_text {
  5726. border-width:0px;
  5727. word-wrap:break-word;
  5728. text-transform:none;
  5729. visibility:hidden;
  5730. }
  5731. #u17007_img {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:79px;
  5737. height:38px;
  5738. }
  5739. #u17007 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:259px;
  5743. top:278px;
  5744. width:79px;
  5745. height:38px;
  5746. display:flex;
  5747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:12px;
  5751. color:#606266;
  5752. }
  5753. #u17007 .text {
  5754. position:absolute;
  5755. align-self:center;
  5756. padding:2px 2px 2px 0px;
  5757. box-sizing:border-box;
  5758. width:100%;
  5759. }
  5760. #u17007_text {
  5761. border-width:0px;
  5762. word-wrap:break-word;
  5763. text-transform:none;
  5764. visibility:hidden;
  5765. }
  5766. #u17008_img {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:79px;
  5772. height:38px;
  5773. }
  5774. #u17008 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:338px;
  5778. top:278px;
  5779. width:79px;
  5780. height:38px;
  5781. display:flex;
  5782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:12px;
  5786. color:#606266;
  5787. }
  5788. #u17008 .text {
  5789. position:absolute;
  5790. align-self:center;
  5791. padding:2px 2px 2px 0px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u17008_text {
  5796. border-width:0px;
  5797. word-wrap:break-word;
  5798. text-transform:none;
  5799. visibility:hidden;
  5800. }
  5801. #u17009_img {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:79px;
  5807. height:38px;
  5808. }
  5809. #u17009 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:417px;
  5813. top:278px;
  5814. width:79px;
  5815. height:38px;
  5816. display:flex;
  5817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:12px;
  5821. color:#606266;
  5822. }
  5823. #u17009 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 0px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u17009_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u17010_img {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:79px;
  5842. height:38px;
  5843. }
  5844. #u17010 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:496px;
  5848. top:278px;
  5849. width:79px;
  5850. height:38px;
  5851. display:flex;
  5852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:12px;
  5856. color:#606266;
  5857. }
  5858. #u17010 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 0px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u17010_text {
  5866. border-width:0px;
  5867. word-wrap:break-word;
  5868. text-transform:none;
  5869. visibility:hidden;
  5870. }
  5871. #u17011_img {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:79px;
  5877. height:38px;
  5878. }
  5879. #u17011 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:575px;
  5883. top:278px;
  5884. width:79px;
  5885. height:38px;
  5886. display:flex;
  5887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:12px;
  5891. color:#606266;
  5892. }
  5893. #u17011 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 0px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u17011_text {
  5901. border-width:0px;
  5902. word-wrap:break-word;
  5903. text-transform:none;
  5904. visibility:hidden;
  5905. }
  5906. #u17012_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:79px;
  5912. height:38px;
  5913. }
  5914. #u17012 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:654px;
  5918. top:278px;
  5919. width:79px;
  5920. height:38px;
  5921. display:flex;
  5922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:12px;
  5926. color:#606266;
  5927. }
  5928. #u17012 .text {
  5929. position:absolute;
  5930. align-self:center;
  5931. padding:2px 2px 2px 0px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u17012_text {
  5936. border-width:0px;
  5937. word-wrap:break-word;
  5938. text-transform:none;
  5939. visibility:hidden;
  5940. }
  5941. #u17013_img {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:76px;
  5947. height:38px;
  5948. }
  5949. #u17013 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:733px;
  5953. top:278px;
  5954. width:76px;
  5955. height:38px;
  5956. display:flex;
  5957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:12px;
  5961. color:#606266;
  5962. }
  5963. #u17013 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 0px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u17013_text {
  5971. border-width:0px;
  5972. word-wrap:break-word;
  5973. text-transform:none;
  5974. visibility:hidden;
  5975. }
  5976. #u17014_img {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:86px;
  5982. height:38px;
  5983. }
  5984. #u17014 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:809px;
  5988. top:278px;
  5989. width:86px;
  5990. height:38px;
  5991. display:flex;
  5992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:12px;
  5996. color:#606266;
  5997. }
  5998. #u17014 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 0px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u17014_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u17015_img {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:80px;
  6017. height:38px;
  6018. }
  6019. #u17015 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:895px;
  6023. top:278px;
  6024. width:80px;
  6025. height:38px;
  6026. display:flex;
  6027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:12px;
  6031. color:#606266;
  6032. }
  6033. #u17015 .text {
  6034. position:absolute;
  6035. align-self:center;
  6036. padding:2px 2px 2px 0px;
  6037. box-sizing:border-box;
  6038. width:100%;
  6039. }
  6040. #u17015_text {
  6041. border-width:0px;
  6042. word-wrap:break-word;
  6043. text-transform:none;
  6044. visibility:hidden;
  6045. }
  6046. #u17016_img {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:79px;
  6052. height:38px;
  6053. }
  6054. #u17016 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:975px;
  6058. top:278px;
  6059. width:79px;
  6060. height:38px;
  6061. display:flex;
  6062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:12px;
  6066. color:#606266;
  6067. }
  6068. #u17016 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:2px 2px 2px 0px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u17016_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. visibility:hidden;
  6080. }
  6081. #u17017_img {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:79px;
  6087. height:38px;
  6088. }
  6089. #u17017 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:1054px;
  6093. top:278px;
  6094. width:79px;
  6095. height:38px;
  6096. display:flex;
  6097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:12px;
  6101. color:#606266;
  6102. }
  6103. #u17017 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 2px 2px 0px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u17017_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u17018_img {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:76px;
  6122. height:38px;
  6123. }
  6124. #u17018 {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:1133px;
  6128. top:278px;
  6129. width:76px;
  6130. height:38px;
  6131. display:flex;
  6132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:12px;
  6136. color:#606266;
  6137. }
  6138. #u17018 .text {
  6139. position:absolute;
  6140. align-self:center;
  6141. padding:2px 2px 2px 0px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u17018_text {
  6146. border-width:0px;
  6147. word-wrap:break-word;
  6148. text-transform:none;
  6149. visibility:hidden;
  6150. }
  6151. #u17019_div {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:109px;
  6157. height:50px;
  6158. background:inherit;
  6159. background-color:rgba(255, 255, 255, 0);
  6160. border:none;
  6161. border-left:0px;
  6162. border-top:0px;
  6163. border-right:0px;
  6164. border-radius:0px;
  6165. border-bottom-right-radius:0px;
  6166. border-bottom-left-radius:0px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:18px;
  6174. }
  6175. #u17019 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:350px;
  6179. top:50px;
  6180. width:109px;
  6181. height:50px;
  6182. display:flex;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:18px;
  6187. }
  6188. #u17019 .text {
  6189. position:absolute;
  6190. align-self:center;
  6191. padding:0px 0px 0px 0px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u17019_text {
  6196. border-width:0px;
  6197. white-space:nowrap;
  6198. text-transform:none;
  6199. }
  6200. #u17020 {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:0px;
  6206. height:0px;
  6207. }
  6208. #u17021_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:140px;
  6214. height:30px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 1);
  6217. box-sizing:border-box;
  6218. border-width:1px;
  6219. border-style:solid;
  6220. border-color:rgba(215, 215, 215, 1);
  6221. border-radius:4px;
  6222. -moz-box-shadow:none;
  6223. -webkit-box-shadow:none;
  6224. box-shadow:none;
  6225. font-size:14px;
  6226. }
  6227. #u17021 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:648px;
  6231. top:145px;
  6232. width:140px;
  6233. height:30px;
  6234. display:flex;
  6235. font-size:14px;
  6236. }
  6237. #u17021 .text {
  6238. position:absolute;
  6239. align-self:center;
  6240. padding:2px 2px 2px 2px;
  6241. box-sizing:border-box;
  6242. width:100%;
  6243. }
  6244. #u17021_text {
  6245. border-width:0px;
  6246. word-wrap:break-word;
  6247. text-transform:none;
  6248. visibility:hidden;
  6249. }
  6250. #u17022_input {
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:134px;
  6255. height:23px;
  6256. padding:2px 2px 2px 2px;
  6257. font-family:'ArialMT', 'Arial', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:14px;
  6261. letter-spacing:normal;
  6262. color:#AAAAAA;
  6263. vertical-align:none;
  6264. text-align:left;
  6265. text-transform:none;
  6266. background-color:transparent;
  6267. border-color:transparent;
  6268. }
  6269. #u17022_input.disabled {
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:134px;
  6274. height:23px;
  6275. padding:2px 2px 2px 2px;
  6276. font-family:'ArialMT', 'Arial', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:14px;
  6280. letter-spacing:normal;
  6281. color:#AAAAAA;
  6282. vertical-align:none;
  6283. text-align:left;
  6284. text-transform:none;
  6285. background-color:transparent;
  6286. border-color:transparent;
  6287. }
  6288. #u17022_div {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:0px;
  6292. top:0px;
  6293. width:134px;
  6294. height:23px;
  6295. background:inherit;
  6296. background-color:rgba(255, 255, 255, 1);
  6297. border:none;
  6298. border-radius:0px;
  6299. -moz-box-shadow:none;
  6300. -webkit-box-shadow:none;
  6301. box-shadow:none;
  6302. font-size:14px;
  6303. color:#AAAAAA;
  6304. }
  6305. #u17022 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:652px;
  6309. top:147px;
  6310. width:134px;
  6311. height:23px;
  6312. display:flex;
  6313. font-size:14px;
  6314. color:#AAAAAA;
  6315. }
  6316. #u17022 .text {
  6317. position:absolute;
  6318. align-self:flex-start;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u17022_div.disabled {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:134px;
  6329. height:23px;
  6330. background:inherit;
  6331. background-color:rgba(240, 240, 240, 1);
  6332. border:none;
  6333. border-radius:0px;
  6334. -moz-box-shadow:none;
  6335. -webkit-box-shadow:none;
  6336. box-shadow:none;
  6337. font-size:14px;
  6338. color:#AAAAAA;
  6339. }
  6340. #u17022.disabled {
  6341. }
  6342. .u17022_input_option {
  6343. font-size:14px;
  6344. }
  6345. #u17023 {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:0px;
  6351. height:0px;
  6352. }
  6353. #u17024_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:140px;
  6359. height:30px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 1);
  6362. box-sizing:border-box;
  6363. border-width:1px;
  6364. border-style:solid;
  6365. border-color:rgba(215, 215, 215, 1);
  6366. border-radius:4px;
  6367. -moz-box-shadow:none;
  6368. -webkit-box-shadow:none;
  6369. box-shadow:none;
  6370. font-size:14px;
  6371. }
  6372. #u17024 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:498px;
  6376. top:145px;
  6377. width:140px;
  6378. height:30px;
  6379. display:flex;
  6380. font-size:14px;
  6381. }
  6382. #u17024 .text {
  6383. position:absolute;
  6384. align-self:center;
  6385. padding:2px 2px 2px 2px;
  6386. box-sizing:border-box;
  6387. width:100%;
  6388. }
  6389. #u17024_text {
  6390. border-width:0px;
  6391. word-wrap:break-word;
  6392. text-transform:none;
  6393. visibility:hidden;
  6394. }
  6395. #u17025_input {
  6396. position:absolute;
  6397. left:0px;
  6398. top:0px;
  6399. width:134px;
  6400. height:23px;
  6401. padding:2px 2px 2px 2px;
  6402. font-family:'ArialMT', 'Arial', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:14px;
  6406. letter-spacing:normal;
  6407. color:#AAAAAA;
  6408. vertical-align:none;
  6409. text-align:left;
  6410. text-transform:none;
  6411. background-color:transparent;
  6412. border-color:transparent;
  6413. }
  6414. #u17025_input.disabled {
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:134px;
  6419. height:23px;
  6420. padding:2px 2px 2px 2px;
  6421. font-family:'ArialMT', 'Arial', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:14px;
  6425. letter-spacing:normal;
  6426. color:#AAAAAA;
  6427. vertical-align:none;
  6428. text-align:left;
  6429. text-transform:none;
  6430. background-color:transparent;
  6431. border-color:transparent;
  6432. }
  6433. #u17025_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:134px;
  6439. height:23px;
  6440. background:inherit;
  6441. background-color:rgba(255, 255, 255, 1);
  6442. border:none;
  6443. border-radius:0px;
  6444. -moz-box-shadow:none;
  6445. -webkit-box-shadow:none;
  6446. box-shadow:none;
  6447. font-size:14px;
  6448. color:#AAAAAA;
  6449. }
  6450. #u17025 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:502px;
  6454. top:147px;
  6455. width:134px;
  6456. height:23px;
  6457. display:flex;
  6458. font-size:14px;
  6459. color:#AAAAAA;
  6460. }
  6461. #u17025 .text {
  6462. position:absolute;
  6463. align-self:flex-start;
  6464. padding:2px 2px 2px 2px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u17025_div.disabled {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:134px;
  6474. height:23px;
  6475. background:inherit;
  6476. background-color:rgba(240, 240, 240, 1);
  6477. border:none;
  6478. border-radius:0px;
  6479. -moz-box-shadow:none;
  6480. -webkit-box-shadow:none;
  6481. box-shadow:none;
  6482. font-size:14px;
  6483. color:#AAAAAA;
  6484. }
  6485. #u17025.disabled {
  6486. }
  6487. .u17025_input_option {
  6488. font-size:14px;
  6489. }
  6490. #u17027 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:0px;
  6496. height:0px;
  6497. }
  6498. #u17028_div {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:0px;
  6502. top:0px;
  6503. width:200px;
  6504. height:1180px;
  6505. background:inherit;
  6506. background-color:rgba(255, 255, 255, 1);
  6507. border:none;
  6508. border-radius:0px;
  6509. -moz-box-shadow:none;
  6510. -webkit-box-shadow:none;
  6511. box-shadow:none;
  6512. }
  6513. #u17028 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:120px;
  6517. top:50px;
  6518. width:200px;
  6519. height:1180px;
  6520. display:flex;
  6521. }
  6522. #u17028 .text {
  6523. position:absolute;
  6524. align-self:center;
  6525. padding:2px 2px 2px 2px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u17028_text {
  6530. border-width:0px;
  6531. word-wrap:break-word;
  6532. text-transform:none;
  6533. visibility:hidden;
  6534. }
  6535. #u17029_div {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:200px;
  6541. height:60px;
  6542. background:inherit;
  6543. background-color:rgba(224, 231, 247, 1);
  6544. border:none;
  6545. border-radius:0px;
  6546. -moz-box-shadow:none;
  6547. -webkit-box-shadow:none;
  6548. box-shadow:none;
  6549. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6550. font-weight:500;
  6551. font-style:normal;
  6552. font-size:18px;
  6553. }
  6554. #u17029 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:120px;
  6558. top:50px;
  6559. width:200px;
  6560. height:60px;
  6561. display:flex;
  6562. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6563. font-weight:500;
  6564. font-style:normal;
  6565. font-size:18px;
  6566. }
  6567. #u17029 .text {
  6568. position:absolute;
  6569. align-self:center;
  6570. padding:0px 0px 0px 20px;
  6571. box-sizing:border-box;
  6572. width:100%;
  6573. }
  6574. #u17029_text {
  6575. border-width:0px;
  6576. word-wrap:break-word;
  6577. text-transform:none;
  6578. }
  6579. #u17030_div {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:65px;
  6585. height:22px;
  6586. background:inherit;
  6587. background-color:rgba(255, 255, 255, 0);
  6588. border:none;
  6589. border-radius:0px;
  6590. -moz-box-shadow:none;
  6591. -webkit-box-shadow:none;
  6592. box-shadow:none;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:16px;
  6597. }
  6598. #u17030 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:145px;
  6602. top:536px;
  6603. width:65px;
  6604. height:22px;
  6605. display:flex;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:16px;
  6610. }
  6611. #u17030 .text {
  6612. position:absolute;
  6613. align-self:flex-start;
  6614. padding:0px 0px 0px 0px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u17030_text {
  6619. border-width:0px;
  6620. white-space:nowrap;
  6621. text-transform:none;
  6622. }
  6623. #u17031_div {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:0px;
  6627. top:0px;
  6628. width:49px;
  6629. height:17px;
  6630. background:inherit;
  6631. background-color:rgba(255, 255, 255, 0);
  6632. border:none;
  6633. border-radius:0px;
  6634. -moz-box-shadow:none;
  6635. -webkit-box-shadow:none;
  6636. box-shadow:none;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:12px;
  6641. color:#AAAAAA;
  6642. }
  6643. #u17031 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:143px;
  6647. top:499px;
  6648. width:49px;
  6649. height:17px;
  6650. display:flex;
  6651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:12px;
  6655. color:#AAAAAA;
  6656. }
  6657. #u17031 .text {
  6658. position:absolute;
  6659. align-self:flex-start;
  6660. padding:0px 0px 0px 0px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u17031_text {
  6665. border-width:0px;
  6666. white-space:nowrap;
  6667. text-transform:none;
  6668. }
  6669. #u17032_div {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:49px;
  6675. height:17px;
  6676. background:inherit;
  6677. background-color:rgba(255, 255, 255, 0);
  6678. border:none;
  6679. border-radius:0px;
  6680. -moz-box-shadow:none;
  6681. -webkit-box-shadow:none;
  6682. box-shadow:none;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:12px;
  6687. color:#AAAAAA;
  6688. }
  6689. #u17032 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:144px;
  6693. top:131px;
  6694. width:49px;
  6695. height:17px;
  6696. display:flex;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:12px;
  6701. color:#AAAAAA;
  6702. }
  6703. #u17032 .text {
  6704. position:absolute;
  6705. align-self:flex-start;
  6706. padding:0px 0px 0px 0px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u17032_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u17033_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:65px;
  6721. height:22px;
  6722. background:inherit;
  6723. background-color:rgba(255, 255, 255, 0);
  6724. border:none;
  6725. border-radius:0px;
  6726. -moz-box-shadow:none;
  6727. -webkit-box-shadow:none;
  6728. box-shadow:none;
  6729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6730. font-weight:400;
  6731. font-style:normal;
  6732. font-size:16px;
  6733. }
  6734. #u17033 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:146px;
  6738. top:168px;
  6739. width:65px;
  6740. height:22px;
  6741. display:flex;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:16px;
  6746. }
  6747. #u17033 .text {
  6748. position:absolute;
  6749. align-self:flex-start;
  6750. padding:0px 0px 0px 0px;
  6751. box-sizing:border-box;
  6752. width:100%;
  6753. }
  6754. #u17033_text {
  6755. border-width:0px;
  6756. white-space:nowrap;
  6757. text-transform:none;
  6758. }
  6759. #u17034_img {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:0px;
  6763. top:0px;
  6764. width:201px;
  6765. height:2px;
  6766. }
  6767. #u17034 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:120px;
  6771. top:478px;
  6772. width:200px;
  6773. height:1px;
  6774. display:flex;
  6775. }
  6776. #u17034 .text {
  6777. position:absolute;
  6778. align-self:center;
  6779. padding:2px 2px 2px 2px;
  6780. box-sizing:border-box;
  6781. width:100%;
  6782. }
  6783. #u17034_text {
  6784. border-width:0px;
  6785. word-wrap:break-word;
  6786. text-transform:none;
  6787. visibility:hidden;
  6788. }
  6789. #u17035_div {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:0px;
  6793. top:0px;
  6794. width:65px;
  6795. height:22px;
  6796. background:inherit;
  6797. background-color:rgba(255, 255, 255, 0);
  6798. border:none;
  6799. border-radius:0px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:16px;
  6807. }
  6808. #u17035 {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:145px;
  6812. top:578px;
  6813. width:65px;
  6814. height:22px;
  6815. display:flex;
  6816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. font-size:16px;
  6820. }
  6821. #u17035 .text {
  6822. position:absolute;
  6823. align-self:flex-start;
  6824. padding:0px 0px 0px 0px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u17035_text {
  6829. border-width:0px;
  6830. white-space:nowrap;
  6831. text-transform:none;
  6832. }
  6833. #u17036_div {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:49px;
  6839. height:17px;
  6840. background:inherit;
  6841. background-color:rgba(255, 255, 255, 0);
  6842. border:none;
  6843. border-radius:0px;
  6844. -moz-box-shadow:none;
  6845. -webkit-box-shadow:none;
  6846. box-shadow:none;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:12px;
  6851. color:#AAAAAA;
  6852. }
  6853. #u17036 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:144px;
  6857. top:315px;
  6858. width:49px;
  6859. height:17px;
  6860. display:flex;
  6861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:12px;
  6865. color:#AAAAAA;
  6866. }
  6867. #u17036 .text {
  6868. position:absolute;
  6869. align-self:flex-start;
  6870. padding:0px 0px 0px 0px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u17036_text {
  6875. border-width:0px;
  6876. white-space:nowrap;
  6877. text-transform:none;
  6878. }
  6879. #u17037_img {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:201px;
  6885. height:2px;
  6886. }
  6887. #u17037 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:121px;
  6891. top:294px;
  6892. width:200px;
  6893. height:1px;
  6894. display:flex;
  6895. }
  6896. #u17037 .text {
  6897. position:absolute;
  6898. align-self:center;
  6899. padding:2px 2px 2px 2px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u17037_text {
  6904. border-width:0px;
  6905. word-wrap:break-word;
  6906. text-transform:none;
  6907. visibility:hidden;
  6908. }
  6909. #u17038_div {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:65px;
  6915. height:22px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 0);
  6918. border:none;
  6919. border-radius:0px;
  6920. -moz-box-shadow:none;
  6921. -webkit-box-shadow:none;
  6922. box-shadow:none;
  6923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6924. font-weight:400;
  6925. font-style:normal;
  6926. font-size:16px;
  6927. }
  6928. #u17038 {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:146px;
  6932. top:352px;
  6933. width:65px;
  6934. height:22px;
  6935. display:flex;
  6936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6937. font-weight:400;
  6938. font-style:normal;
  6939. font-size:16px;
  6940. }
  6941. #u17038 .text {
  6942. position:absolute;
  6943. align-self:flex-start;
  6944. padding:0px 0px 0px 0px;
  6945. box-sizing:border-box;
  6946. width:100%;
  6947. }
  6948. #u17038_text {
  6949. border-width:0px;
  6950. white-space:nowrap;
  6951. text-transform:none;
  6952. }
  6953. #u17039_div {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:65px;
  6959. height:22px;
  6960. background:inherit;
  6961. background-color:rgba(255, 255, 255, 0);
  6962. border:none;
  6963. border-radius:0px;
  6964. -moz-box-shadow:none;
  6965. -webkit-box-shadow:none;
  6966. box-shadow:none;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:16px;
  6971. }
  6972. #u17039 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:146px;
  6976. top:394px;
  6977. width:65px;
  6978. height:22px;
  6979. display:flex;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:16px;
  6984. }
  6985. #u17039 .text {
  6986. position:absolute;
  6987. align-self:flex-start;
  6988. padding:0px 0px 0px 0px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u17039_text {
  6993. border-width:0px;
  6994. white-space:nowrap;
  6995. text-transform:none;
  6996. }
  6997. #u17040_div {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:65px;
  7003. height:22px;
  7004. background:inherit;
  7005. background-color:rgba(255, 255, 255, 0);
  7006. border:none;
  7007. border-radius:0px;
  7008. -moz-box-shadow:none;
  7009. -webkit-box-shadow:none;
  7010. box-shadow:none;
  7011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7012. font-weight:400;
  7013. font-style:normal;
  7014. font-size:16px;
  7015. }
  7016. #u17040 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:145px;
  7020. top:926px;
  7021. width:65px;
  7022. height:22px;
  7023. display:flex;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:16px;
  7028. }
  7029. #u17040 .text {
  7030. position:absolute;
  7031. align-self:flex-start;
  7032. padding:0px 0px 0px 0px;
  7033. box-sizing:border-box;
  7034. width:100%;
  7035. }
  7036. #u17040_text {
  7037. border-width:0px;
  7038. white-space:nowrap;
  7039. text-transform:none;
  7040. }
  7041. #u17041_div {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:97px;
  7047. height:22px;
  7048. background:inherit;
  7049. background-color:rgba(255, 255, 255, 0);
  7050. border:none;
  7051. border-radius:0px;
  7052. -moz-box-shadow:none;
  7053. -webkit-box-shadow:none;
  7054. box-shadow:none;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:16px;
  7059. }
  7060. #u17041 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:145px;
  7064. top:678px;
  7065. width:97px;
  7066. height:22px;
  7067. display:flex;
  7068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7069. font-weight:400;
  7070. font-style:normal;
  7071. font-size:16px;
  7072. }
  7073. #u17041 .text {
  7074. position:absolute;
  7075. align-self:flex-start;
  7076. padding:0px 0px 0px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u17041_text {
  7081. border-width:0px;
  7082. white-space:nowrap;
  7083. text-transform:none;
  7084. }
  7085. #u17042_div {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:49px;
  7091. height:17px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 0);
  7094. border:none;
  7095. border-radius:0px;
  7096. -moz-box-shadow:none;
  7097. -webkit-box-shadow:none;
  7098. box-shadow:none;
  7099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. font-size:12px;
  7103. color:#AAAAAA;
  7104. }
  7105. #u17042 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:143px;
  7109. top:641px;
  7110. width:49px;
  7111. height:17px;
  7112. display:flex;
  7113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:12px;
  7117. color:#AAAAAA;
  7118. }
  7119. #u17042 .text {
  7120. position:absolute;
  7121. align-self:flex-start;
  7122. padding:0px 0px 0px 0px;
  7123. box-sizing:border-box;
  7124. width:100%;
  7125. }
  7126. #u17042_text {
  7127. border-width:0px;
  7128. white-space:nowrap;
  7129. text-transform:none;
  7130. }
  7131. #u17043_img {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:201px;
  7137. height:2px;
  7138. }
  7139. #u17043 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:120px;
  7143. top:620px;
  7144. width:200px;
  7145. height:1px;
  7146. display:flex;
  7147. }
  7148. #u17043 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u17043_text {
  7156. border-width:0px;
  7157. word-wrap:break-word;
  7158. text-transform:none;
  7159. visibility:hidden;
  7160. }
  7161. #u17044_div {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:97px;
  7167. height:22px;
  7168. background:inherit;
  7169. background-color:rgba(255, 255, 255, 0);
  7170. border:none;
  7171. border-radius:0px;
  7172. -moz-box-shadow:none;
  7173. -webkit-box-shadow:none;
  7174. box-shadow:none;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:16px;
  7179. }
  7180. #u17044 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:145px;
  7184. top:760px;
  7185. width:97px;
  7186. height:22px;
  7187. display:flex;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:16px;
  7192. }
  7193. #u17044 .text {
  7194. position:absolute;
  7195. align-self:flex-start;
  7196. padding:0px 0px 0px 0px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u17044_text {
  7201. border-width:0px;
  7202. white-space:nowrap;
  7203. text-transform:none;
  7204. }
  7205. #u17045_div {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:0px;
  7209. top:0px;
  7210. width:97px;
  7211. height:22px;
  7212. background:inherit;
  7213. background-color:rgba(255, 255, 255, 0);
  7214. border:none;
  7215. border-radius:0px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:16px;
  7223. }
  7224. #u17045 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:145px;
  7228. top:802px;
  7229. width:97px;
  7230. height:22px;
  7231. display:flex;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:16px;
  7236. }
  7237. #u17045 .text {
  7238. position:absolute;
  7239. align-self:flex-start;
  7240. padding:0px 0px 0px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u17045_text {
  7245. border-width:0px;
  7246. white-space:nowrap;
  7247. text-transform:none;
  7248. }
  7249. #u17046_div {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:129px;
  7255. height:22px;
  7256. background:inherit;
  7257. background-color:rgba(255, 255, 255, 0);
  7258. border:none;
  7259. border-radius:0px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:16px;
  7267. }
  7268. #u17046 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:145px;
  7272. top:884px;
  7273. width:129px;
  7274. height:22px;
  7275. display:flex;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:16px;
  7280. }
  7281. #u17046 .text {
  7282. position:absolute;
  7283. align-self:flex-start;
  7284. padding:0px 0px 0px 0px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u17046_text {
  7289. border-width:0px;
  7290. white-space:nowrap;
  7291. text-transform:none;
  7292. }
  7293. #u17047_div {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:65px;
  7299. height:22px;
  7300. background:inherit;
  7301. background-color:rgba(255, 255, 255, 0);
  7302. border:none;
  7303. border-radius:0px;
  7304. -moz-box-shadow:none;
  7305. -webkit-box-shadow:none;
  7306. box-shadow:none;
  7307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:16px;
  7311. }
  7312. #u17047 {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:145px;
  7316. top:1026px;
  7317. width:65px;
  7318. height:22px;
  7319. display:flex;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:16px;
  7324. }
  7325. #u17047 .text {
  7326. position:absolute;
  7327. align-self:flex-start;
  7328. padding:0px 0px 0px 0px;
  7329. box-sizing:border-box;
  7330. width:100%;
  7331. }
  7332. #u17047_text {
  7333. border-width:0px;
  7334. white-space:nowrap;
  7335. text-transform:none;
  7336. }
  7337. #u17048_div {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:49px;
  7343. height:17px;
  7344. background:inherit;
  7345. background-color:rgba(255, 255, 255, 0);
  7346. border:none;
  7347. border-radius:0px;
  7348. -moz-box-shadow:none;
  7349. -webkit-box-shadow:none;
  7350. box-shadow:none;
  7351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. font-size:12px;
  7355. color:#AAAAAA;
  7356. }
  7357. #u17048 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:143px;
  7361. top:989px;
  7362. width:49px;
  7363. height:17px;
  7364. display:flex;
  7365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:12px;
  7369. color:#AAAAAA;
  7370. }
  7371. #u17048 .text {
  7372. position:absolute;
  7373. align-self:flex-start;
  7374. padding:0px 0px 0px 0px;
  7375. box-sizing:border-box;
  7376. width:100%;
  7377. }
  7378. #u17048_text {
  7379. border-width:0px;
  7380. white-space:nowrap;
  7381. text-transform:none;
  7382. }
  7383. #u17049_img {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:201px;
  7389. height:2px;
  7390. }
  7391. #u17049 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:120px;
  7395. top:968px;
  7396. width:200px;
  7397. height:1px;
  7398. display:flex;
  7399. }
  7400. #u17049 .text {
  7401. position:absolute;
  7402. align-self:center;
  7403. padding:2px 2px 2px 2px;
  7404. box-sizing:border-box;
  7405. width:100%;
  7406. }
  7407. #u17049_text {
  7408. border-width:0px;
  7409. word-wrap:break-word;
  7410. text-transform:none;
  7411. visibility:hidden;
  7412. }
  7413. #u17050_div {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:0px;
  7418. width:65px;
  7419. height:22px;
  7420. background:inherit;
  7421. background-color:rgba(255, 255, 255, 0);
  7422. border:none;
  7423. border-radius:0px;
  7424. -moz-box-shadow:none;
  7425. -webkit-box-shadow:none;
  7426. box-shadow:none;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:16px;
  7431. }
  7432. #u17050 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:145px;
  7436. top:1068px;
  7437. width:65px;
  7438. height:22px;
  7439. display:flex;
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:16px;
  7444. }
  7445. #u17050 .text {
  7446. position:absolute;
  7447. align-self:flex-start;
  7448. padding:0px 0px 0px 0px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u17050_text {
  7453. border-width:0px;
  7454. white-space:nowrap;
  7455. text-transform:none;
  7456. }
  7457. #u17051_div {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:0px;
  7461. top:0px;
  7462. width:97px;
  7463. height:22px;
  7464. background:inherit;
  7465. background-color:rgba(255, 255, 255, 0);
  7466. border:none;
  7467. border-radius:0px;
  7468. -moz-box-shadow:none;
  7469. -webkit-box-shadow:none;
  7470. box-shadow:none;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:16px;
  7475. }
  7476. #u17051 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:145px;
  7480. top:844px;
  7481. width:97px;
  7482. height:22px;
  7483. display:flex;
  7484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:16px;
  7488. }
  7489. #u17051 .text {
  7490. position:absolute;
  7491. align-self:flex-start;
  7492. padding:0px 0px 0px 0px;
  7493. box-sizing:border-box;
  7494. width:100%;
  7495. }
  7496. #u17051_text {
  7497. border-width:0px;
  7498. white-space:nowrap;
  7499. text-transform:none;
  7500. }
  7501. #u17052_div {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:81px;
  7507. height:22px;
  7508. background:inherit;
  7509. background-color:rgba(255, 255, 255, 0);
  7510. border:none;
  7511. border-radius:0px;
  7512. -moz-box-shadow:none;
  7513. -webkit-box-shadow:none;
  7514. box-shadow:none;
  7515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:16px;
  7519. }
  7520. #u17052 {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:146px;
  7524. top:436px;
  7525. width:81px;
  7526. height:22px;
  7527. display:flex;
  7528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7529. font-weight:400;
  7530. font-style:normal;
  7531. font-size:16px;
  7532. }
  7533. #u17052 .text {
  7534. position:absolute;
  7535. align-self:flex-start;
  7536. padding:0px 0px 0px 0px;
  7537. box-sizing:border-box;
  7538. width:100%;
  7539. }
  7540. #u17052_text {
  7541. border-width:0px;
  7542. white-space:nowrap;
  7543. text-transform:none;
  7544. }
  7545. #u17053_div {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:0px;
  7549. top:0px;
  7550. width:97px;
  7551. height:22px;
  7552. background:inherit;
  7553. background-color:rgba(255, 255, 255, 0);
  7554. border:none;
  7555. border-radius:0px;
  7556. -moz-box-shadow:none;
  7557. -webkit-box-shadow:none;
  7558. box-shadow:none;
  7559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7560. font-weight:400;
  7561. font-style:normal;
  7562. font-size:16px;
  7563. }
  7564. #u17053 {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:145px;
  7568. top:720px;
  7569. width:97px;
  7570. height:22px;
  7571. display:flex;
  7572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7573. font-weight:400;
  7574. font-style:normal;
  7575. font-size:16px;
  7576. }
  7577. #u17053 .text {
  7578. position:absolute;
  7579. align-self:flex-start;
  7580. padding:0px 0px 0px 0px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u17053_text {
  7585. border-width:0px;
  7586. white-space:nowrap;
  7587. text-transform:none;
  7588. }
  7589. #u17054_div {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:65px;
  7595. height:22px;
  7596. background:inherit;
  7597. background-color:rgba(255, 255, 255, 0);
  7598. border:none;
  7599. border-radius:0px;
  7600. -moz-box-shadow:none;
  7601. -webkit-box-shadow:none;
  7602. box-shadow:none;
  7603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7604. font-weight:400;
  7605. font-style:normal;
  7606. font-size:16px;
  7607. }
  7608. #u17054 {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:145px;
  7612. top:210px;
  7613. width:65px;
  7614. height:22px;
  7615. display:flex;
  7616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:16px;
  7620. }
  7621. #u17054 .text {
  7622. position:absolute;
  7623. align-self:flex-start;
  7624. padding:0px 0px 0px 0px;
  7625. box-sizing:border-box;
  7626. width:100%;
  7627. }
  7628. #u17054_text {
  7629. border-width:0px;
  7630. white-space:nowrap;
  7631. text-transform:none;
  7632. }
  7633. #u17055_div {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:0px;
  7637. top:0px;
  7638. width:65px;
  7639. height:22px;
  7640. background:inherit;
  7641. background-color:rgba(255, 255, 255, 0);
  7642. border:none;
  7643. border-radius:0px;
  7644. -moz-box-shadow:none;
  7645. -webkit-box-shadow:none;
  7646. box-shadow:none;
  7647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7648. font-weight:400;
  7649. font-style:normal;
  7650. font-size:16px;
  7651. }
  7652. #u17055 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:146px;
  7656. top:252px;
  7657. width:65px;
  7658. height:22px;
  7659. display:flex;
  7660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:16px;
  7664. }
  7665. #u17055 .text {
  7666. position:absolute;
  7667. align-self:flex-start;
  7668. padding:0px 0px 0px 0px;
  7669. box-sizing:border-box;
  7670. width:100%;
  7671. }
  7672. #u17055_text {
  7673. border-width:0px;
  7674. white-space:nowrap;
  7675. text-transform:none;
  7676. }
  7677. #u17056_div {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:0px;
  7681. top:0px;
  7682. width:827px;
  7683. height:20px;
  7684. background:inherit;
  7685. background-color:rgba(255, 255, 255, 0);
  7686. border:none;
  7687. border-left:0px;
  7688. border-top:0px;
  7689. border-right:0px;
  7690. border-radius:0px;
  7691. border-bottom-right-radius:0px;
  7692. border-bottom-left-radius:0px;
  7693. -moz-box-shadow:none;
  7694. -webkit-box-shadow:none;
  7695. box-shadow:none;
  7696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7697. font-weight:400;
  7698. font-style:normal;
  7699. font-size:14px;
  7700. color:#7F7F7F;
  7701. }
  7702. #u17056 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:351px;
  7706. top:100px;
  7707. width:827px;
  7708. height:20px;
  7709. display:flex;
  7710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7711. font-weight:400;
  7712. font-style:normal;
  7713. font-size:14px;
  7714. color:#7F7F7F;
  7715. }
  7716. #u17056 .text {
  7717. position:absolute;
  7718. align-self:center;
  7719. padding:0px 0px 0px 0px;
  7720. box-sizing:border-box;
  7721. width:100%;
  7722. }
  7723. #u17056_text {
  7724. border-width:0px;
  7725. white-space:nowrap;
  7726. text-transform:none;
  7727. }
  7728. #u17057 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:0px;
  7734. height:0px;
  7735. }
  7736. #u17058_div {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:60px;
  7742. height:30px;
  7743. background:inherit;
  7744. background-color:rgba(24, 144, 255, 1);
  7745. border:none;
  7746. border-radius:4px;
  7747. -moz-box-shadow:none;
  7748. -webkit-box-shadow:none;
  7749. box-shadow:none;
  7750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:14px;
  7754. color:#FFFFFF;
  7755. }
  7756. #u17058 {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:800px;
  7760. top:183px;
  7761. width:60px;
  7762. height:30px;
  7763. display:flex;
  7764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7765. font-weight:400;
  7766. font-style:normal;
  7767. font-size:14px;
  7768. color:#FFFFFF;
  7769. }
  7770. #u17058 .text {
  7771. position:absolute;
  7772. align-self:center;
  7773. padding:2px 2px 2px 2px;
  7774. box-sizing:border-box;
  7775. width:100%;
  7776. }
  7777. #u17058_text {
  7778. border-width:0px;
  7779. word-wrap:break-word;
  7780. text-transform:none;
  7781. }
  7782. #u17059_div {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:60px;
  7788. height:30px;
  7789. background:inherit;
  7790. background-color:rgba(255, 255, 255, 1);
  7791. box-sizing:border-box;
  7792. border-width:1px;
  7793. border-style:solid;
  7794. border-color:rgba(170, 170, 170, 1);
  7795. border-radius:4px;
  7796. -moz-box-shadow:none;
  7797. -webkit-box-shadow:none;
  7798. box-shadow:none;
  7799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:14px;
  7803. }
  7804. #u17059 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:870px;
  7808. top:183px;
  7809. width:60px;
  7810. height:30px;
  7811. display:flex;
  7812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7813. font-weight:400;
  7814. font-style:normal;
  7815. font-size:14px;
  7816. }
  7817. #u17059 .text {
  7818. position:absolute;
  7819. align-self:center;
  7820. padding:2px 2px 2px 2px;
  7821. box-sizing:border-box;
  7822. width:100%;
  7823. }
  7824. #u17059_text {
  7825. border-width:0px;
  7826. word-wrap:break-word;
  7827. text-transform:none;
  7828. }
  7829. #u17060 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:0px;
  7835. height:0px;
  7836. }
  7837. #u17061_div {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:140px;
  7843. height:30px;
  7844. background:inherit;
  7845. background-color:rgba(255, 255, 255, 1);
  7846. box-sizing:border-box;
  7847. border-width:1px;
  7848. border-style:solid;
  7849. border-color:rgba(215, 215, 215, 1);
  7850. border-radius:4px;
  7851. -moz-box-shadow:none;
  7852. -webkit-box-shadow:none;
  7853. box-shadow:none;
  7854. font-size:14px;
  7855. }
  7856. #u17061 {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:350px;
  7860. top:143px;
  7861. width:140px;
  7862. height:30px;
  7863. display:flex;
  7864. font-size:14px;
  7865. }
  7866. #u17061 .text {
  7867. position:absolute;
  7868. align-self:center;
  7869. padding:2px 2px 2px 2px;
  7870. box-sizing:border-box;
  7871. width:100%;
  7872. }
  7873. #u17061_text {
  7874. border-width:0px;
  7875. word-wrap:break-word;
  7876. text-transform:none;
  7877. visibility:hidden;
  7878. }
  7879. #u17062_input {
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:134px;
  7884. height:23px;
  7885. padding:2px 2px 2px 2px;
  7886. font-family:'ArialMT', 'Arial', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:14px;
  7890. letter-spacing:normal;
  7891. color:#AAAAAA;
  7892. vertical-align:none;
  7893. text-align:left;
  7894. text-transform:none;
  7895. background-color:transparent;
  7896. border-color:transparent;
  7897. }
  7898. #u17062_input.disabled {
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:134px;
  7903. height:23px;
  7904. padding:2px 2px 2px 2px;
  7905. font-family:'ArialMT', 'Arial', sans-serif;
  7906. font-weight:400;
  7907. font-style:normal;
  7908. font-size:14px;
  7909. letter-spacing:normal;
  7910. color:#AAAAAA;
  7911. vertical-align:none;
  7912. text-align:left;
  7913. text-transform:none;
  7914. background-color:transparent;
  7915. border-color:transparent;
  7916. }
  7917. #u17062_div {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:0px;
  7921. top:0px;
  7922. width:134px;
  7923. height:23px;
  7924. background:inherit;
  7925. background-color:rgba(255, 255, 255, 1);
  7926. border:none;
  7927. border-radius:0px;
  7928. -moz-box-shadow:none;
  7929. -webkit-box-shadow:none;
  7930. box-shadow:none;
  7931. font-size:14px;
  7932. color:#AAAAAA;
  7933. }
  7934. #u17062 {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:354px;
  7938. top:145px;
  7939. width:134px;
  7940. height:23px;
  7941. display:flex;
  7942. font-size:14px;
  7943. color:#AAAAAA;
  7944. }
  7945. #u17062 .text {
  7946. position:absolute;
  7947. align-self:flex-start;
  7948. padding:2px 2px 2px 2px;
  7949. box-sizing:border-box;
  7950. width:100%;
  7951. }
  7952. #u17062_div.disabled {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:134px;
  7958. height:23px;
  7959. background:inherit;
  7960. background-color:rgba(240, 240, 240, 1);
  7961. border:none;
  7962. border-radius:0px;
  7963. -moz-box-shadow:none;
  7964. -webkit-box-shadow:none;
  7965. box-shadow:none;
  7966. font-size:14px;
  7967. color:#AAAAAA;
  7968. }
  7969. #u17062.disabled {
  7970. }
  7971. .u17062_input_option {
  7972. font-size:14px;
  7973. }
  7974. #u17063 {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:0px;
  7980. height:0px;
  7981. }
  7982. #u17064_div {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:0px;
  7986. top:0px;
  7987. width:140px;
  7988. height:30px;
  7989. background:inherit;
  7990. background-color:rgba(255, 255, 255, 1);
  7991. box-sizing:border-box;
  7992. border-width:1px;
  7993. border-style:solid;
  7994. border-color:rgba(215, 215, 215, 1);
  7995. border-radius:4px;
  7996. -moz-box-shadow:none;
  7997. -webkit-box-shadow:none;
  7998. box-shadow:none;
  7999. font-size:14px;
  8000. }
  8001. #u17064 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:1400px;
  8005. top:145px;
  8006. width:140px;
  8007. height:30px;
  8008. display:flex;
  8009. font-size:14px;
  8010. }
  8011. #u17064 .text {
  8012. position:absolute;
  8013. align-self:center;
  8014. padding:2px 2px 2px 2px;
  8015. box-sizing:border-box;
  8016. width:100%;
  8017. }
  8018. #u17064_text {
  8019. border-width:0px;
  8020. word-wrap:break-word;
  8021. text-transform:none;
  8022. visibility:hidden;
  8023. }
  8024. #u17065_input {
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:134px;
  8029. height:23px;
  8030. padding:2px 2px 2px 2px;
  8031. font-family:'ArialMT', 'Arial', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:14px;
  8035. letter-spacing:normal;
  8036. color:#AAAAAA;
  8037. vertical-align:none;
  8038. text-align:left;
  8039. text-transform:none;
  8040. background-color:transparent;
  8041. border-color:transparent;
  8042. }
  8043. #u17065_input.disabled {
  8044. position:absolute;
  8045. left:0px;
  8046. top:0px;
  8047. width:134px;
  8048. height:23px;
  8049. padding:2px 2px 2px 2px;
  8050. font-family:'ArialMT', 'Arial', sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:14px;
  8054. letter-spacing:normal;
  8055. color:#AAAAAA;
  8056. vertical-align:none;
  8057. text-align:left;
  8058. text-transform:none;
  8059. background-color:transparent;
  8060. border-color:transparent;
  8061. }
  8062. #u17065_div {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:0px;
  8066. top:0px;
  8067. width:134px;
  8068. height:23px;
  8069. background:inherit;
  8070. background-color:rgba(255, 255, 255, 1);
  8071. border:none;
  8072. border-radius:0px;
  8073. -moz-box-shadow:none;
  8074. -webkit-box-shadow:none;
  8075. box-shadow:none;
  8076. font-size:14px;
  8077. color:#AAAAAA;
  8078. }
  8079. #u17065 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:1404px;
  8083. top:147px;
  8084. width:134px;
  8085. height:23px;
  8086. display:flex;
  8087. font-size:14px;
  8088. color:#AAAAAA;
  8089. }
  8090. #u17065 .text {
  8091. position:absolute;
  8092. align-self:flex-start;
  8093. padding:2px 2px 2px 2px;
  8094. box-sizing:border-box;
  8095. width:100%;
  8096. }
  8097. #u17065_div.disabled {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:0px;
  8101. top:0px;
  8102. width:134px;
  8103. height:23px;
  8104. background:inherit;
  8105. background-color:rgba(240, 240, 240, 1);
  8106. border:none;
  8107. border-radius:0px;
  8108. -moz-box-shadow:none;
  8109. -webkit-box-shadow:none;
  8110. box-shadow:none;
  8111. font-size:14px;
  8112. color:#AAAAAA;
  8113. }
  8114. #u17065.disabled {
  8115. }
  8116. .u17065_input_option {
  8117. font-size:14px;
  8118. }
  8119. #u17066 {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:0px;
  8125. height:0px;
  8126. }
  8127. #u17067_div {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:0px;
  8131. top:0px;
  8132. width:140px;
  8133. height:30px;
  8134. background:inherit;
  8135. background-color:rgba(255, 255, 255, 1);
  8136. box-sizing:border-box;
  8137. border-width:1px;
  8138. border-style:solid;
  8139. border-color:rgba(215, 215, 215, 1);
  8140. border-radius:4px;
  8141. -moz-box-shadow:none;
  8142. -webkit-box-shadow:none;
  8143. box-shadow:none;
  8144. font-size:14px;
  8145. }
  8146. #u17067 {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:800px;
  8150. top:145px;
  8151. width:140px;
  8152. height:30px;
  8153. display:flex;
  8154. font-size:14px;
  8155. }
  8156. #u17067 .text {
  8157. position:absolute;
  8158. align-self:center;
  8159. padding:2px 2px 2px 2px;
  8160. box-sizing:border-box;
  8161. width:100%;
  8162. }
  8163. #u17067_text {
  8164. border-width:0px;
  8165. word-wrap:break-word;
  8166. text-transform:none;
  8167. visibility:hidden;
  8168. }
  8169. #u17068_input {
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:134px;
  8174. height:23px;
  8175. padding:2px 2px 2px 2px;
  8176. font-family:'ArialMT', 'Arial', sans-serif;
  8177. font-weight:400;
  8178. font-style:normal;
  8179. font-size:14px;
  8180. letter-spacing:normal;
  8181. color:#AAAAAA;
  8182. vertical-align:none;
  8183. text-align:left;
  8184. text-transform:none;
  8185. background-color:transparent;
  8186. border-color:transparent;
  8187. }
  8188. #u17068_input.disabled {
  8189. position:absolute;
  8190. left:0px;
  8191. top:0px;
  8192. width:134px;
  8193. height:23px;
  8194. padding:2px 2px 2px 2px;
  8195. font-family:'ArialMT', 'Arial', sans-serif;
  8196. font-weight:400;
  8197. font-style:normal;
  8198. font-size:14px;
  8199. letter-spacing:normal;
  8200. color:#AAAAAA;
  8201. vertical-align:none;
  8202. text-align:left;
  8203. text-transform:none;
  8204. background-color:transparent;
  8205. border-color:transparent;
  8206. }
  8207. #u17068_div {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:134px;
  8213. height:23px;
  8214. background:inherit;
  8215. background-color:rgba(255, 255, 255, 1);
  8216. border:none;
  8217. border-radius:0px;
  8218. -moz-box-shadow:none;
  8219. -webkit-box-shadow:none;
  8220. box-shadow:none;
  8221. font-size:14px;
  8222. color:#AAAAAA;
  8223. }
  8224. #u17068 {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:804px;
  8228. top:147px;
  8229. width:134px;
  8230. height:23px;
  8231. display:flex;
  8232. font-size:14px;
  8233. color:#AAAAAA;
  8234. }
  8235. #u17068 .text {
  8236. position:absolute;
  8237. align-self:flex-start;
  8238. padding:2px 2px 2px 2px;
  8239. box-sizing:border-box;
  8240. width:100%;
  8241. }
  8242. #u17068_div.disabled {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:134px;
  8248. height:23px;
  8249. background:inherit;
  8250. background-color:rgba(240, 240, 240, 1);
  8251. border:none;
  8252. border-radius:0px;
  8253. -moz-box-shadow:none;
  8254. -webkit-box-shadow:none;
  8255. box-shadow:none;
  8256. font-size:14px;
  8257. color:#AAAAAA;
  8258. }
  8259. #u17068.disabled {
  8260. }
  8261. .u17068_input_option {
  8262. font-size:14px;
  8263. }
  8264. #u17069 {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:0px;
  8268. top:0px;
  8269. width:0px;
  8270. height:0px;
  8271. }
  8272. #u17070_div {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:0px;
  8276. top:0px;
  8277. width:140px;
  8278. height:30px;
  8279. background:inherit;
  8280. background-color:rgba(255, 255, 255, 1);
  8281. box-sizing:border-box;
  8282. border-width:1px;
  8283. border-style:solid;
  8284. border-color:rgba(201, 201, 201, 1);
  8285. border-radius:4px;
  8286. -moz-box-shadow:none;
  8287. -webkit-box-shadow:none;
  8288. box-shadow:none;
  8289. font-family:'Microsoft YaHei', sans-serif;
  8290. font-weight:400;
  8291. font-style:normal;
  8292. font-size:14px;
  8293. color:#CCCCCC;
  8294. text-align:left;
  8295. }
  8296. #u17070 {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:1250px;
  8300. top:145px;
  8301. width:140px;
  8302. height:30px;
  8303. display:flex;
  8304. font-family:'Microsoft YaHei', sans-serif;
  8305. font-weight:400;
  8306. font-style:normal;
  8307. font-size:14px;
  8308. color:#CCCCCC;
  8309. text-align:left;
  8310. }
  8311. #u17070 .text {
  8312. position:absolute;
  8313. align-self:center;
  8314. padding:2px 8px 2px 8px;
  8315. box-sizing:border-box;
  8316. width:100%;
  8317. }
  8318. #u17070_text {
  8319. border-width:0px;
  8320. word-wrap:break-word;
  8321. text-transform:none;
  8322. visibility:hidden;
  8323. }
  8324. #u17071_input {
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:127px;
  8329. height:25px;
  8330. padding:2px 2px 2px 2px;
  8331. font-family:'Microsoft YaHei', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:10px;
  8335. letter-spacing:normal;
  8336. color:#000000;
  8337. vertical-align:none;
  8338. text-align:left;
  8339. text-transform:none;
  8340. background-color:transparent;
  8341. border-color:transparent;
  8342. }
  8343. #u17071_input.disabled {
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:127px;
  8348. height:25px;
  8349. padding:2px 2px 2px 2px;
  8350. font-family:'Microsoft YaHei', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. font-size:10px;
  8354. letter-spacing:normal;
  8355. color:#000000;
  8356. vertical-align:none;
  8357. text-align:left;
  8358. text-transform:none;
  8359. background-color:transparent;
  8360. border-color:transparent;
  8361. }
  8362. #u17071_div {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:0px;
  8366. top:0px;
  8367. width:127px;
  8368. height:25px;
  8369. background:inherit;
  8370. background-color:rgba(255, 255, 255, 1);
  8371. border:none;
  8372. border-radius:0px;
  8373. -moz-box-shadow:none;
  8374. -webkit-box-shadow:none;
  8375. box-shadow:none;
  8376. font-family:'Microsoft YaHei', sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:10px;
  8380. }
  8381. #u17071 {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:1258px;
  8385. top:146px;
  8386. width:127px;
  8387. height:25px;
  8388. display:flex;
  8389. font-family:'Microsoft YaHei', sans-serif;
  8390. font-weight:400;
  8391. font-style:normal;
  8392. font-size:10px;
  8393. }
  8394. #u17071 .text {
  8395. position:absolute;
  8396. align-self:center;
  8397. padding:2px 2px 2px 2px;
  8398. box-sizing:border-box;
  8399. width:100%;
  8400. }
  8401. #u17071_div.disabled {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:127px;
  8407. height:25px;
  8408. background:inherit;
  8409. background-color:rgba(240, 240, 240, 1);
  8410. border:none;
  8411. border-radius:0px;
  8412. -moz-box-shadow:none;
  8413. -webkit-box-shadow:none;
  8414. box-shadow:none;
  8415. font-family:'Microsoft YaHei', sans-serif;
  8416. font-weight:400;
  8417. font-style:normal;
  8418. font-size:10px;
  8419. }
  8420. #u17071.disabled {
  8421. }
  8422. #u17072 {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:0px;
  8426. top:0px;
  8427. width:0px;
  8428. height:0px;
  8429. }
  8430. #u17073_div {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:140px;
  8436. height:30px;
  8437. background:inherit;
  8438. background-color:rgba(255, 255, 255, 1);
  8439. box-sizing:border-box;
  8440. border-width:1px;
  8441. border-style:solid;
  8442. border-color:rgba(201, 201, 201, 1);
  8443. border-radius:4px;
  8444. -moz-box-shadow:none;
  8445. -webkit-box-shadow:none;
  8446. box-shadow:none;
  8447. font-family:'Microsoft YaHei', sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:14px;
  8451. color:#CCCCCC;
  8452. text-align:left;
  8453. }
  8454. #u17073 {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:1100px;
  8458. top:145px;
  8459. width:140px;
  8460. height:30px;
  8461. display:flex;
  8462. font-family:'Microsoft YaHei', sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:14px;
  8466. color:#CCCCCC;
  8467. text-align:left;
  8468. }
  8469. #u17073 .text {
  8470. position:absolute;
  8471. align-self:center;
  8472. padding:2px 8px 2px 8px;
  8473. box-sizing:border-box;
  8474. width:100%;
  8475. }
  8476. #u17073_text {
  8477. border-width:0px;
  8478. word-wrap:break-word;
  8479. text-transform:none;
  8480. visibility:hidden;
  8481. }
  8482. #u17074_input {
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:127px;
  8487. height:25px;
  8488. padding:2px 2px 2px 2px;
  8489. font-family:'Microsoft YaHei', sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:10px;
  8493. letter-spacing:normal;
  8494. color:#000000;
  8495. vertical-align:none;
  8496. text-align:left;
  8497. text-transform:none;
  8498. background-color:transparent;
  8499. border-color:transparent;
  8500. }
  8501. #u17074_input.disabled {
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:127px;
  8506. height:25px;
  8507. padding:2px 2px 2px 2px;
  8508. font-family:'Microsoft YaHei', sans-serif;
  8509. font-weight:400;
  8510. font-style:normal;
  8511. font-size:10px;
  8512. letter-spacing:normal;
  8513. color:#000000;
  8514. vertical-align:none;
  8515. text-align:left;
  8516. text-transform:none;
  8517. background-color:transparent;
  8518. border-color:transparent;
  8519. }
  8520. #u17074_div {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:127px;
  8526. height:25px;
  8527. background:inherit;
  8528. background-color:rgba(255, 255, 255, 1);
  8529. border:none;
  8530. border-radius:0px;
  8531. -moz-box-shadow:none;
  8532. -webkit-box-shadow:none;
  8533. box-shadow:none;
  8534. font-family:'Microsoft YaHei', sans-serif;
  8535. font-weight:400;
  8536. font-style:normal;
  8537. font-size:10px;
  8538. }
  8539. #u17074 {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:1108px;
  8543. top:146px;
  8544. width:127px;
  8545. height:25px;
  8546. display:flex;
  8547. font-family:'Microsoft YaHei', sans-serif;
  8548. font-weight:400;
  8549. font-style:normal;
  8550. font-size:10px;
  8551. }
  8552. #u17074 .text {
  8553. position:absolute;
  8554. align-self:center;
  8555. padding:2px 2px 2px 2px;
  8556. box-sizing:border-box;
  8557. width:100%;
  8558. }
  8559. #u17074_div.disabled {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:127px;
  8565. height:25px;
  8566. background:inherit;
  8567. background-color:rgba(240, 240, 240, 1);
  8568. border:none;
  8569. border-radius:0px;
  8570. -moz-box-shadow:none;
  8571. -webkit-box-shadow:none;
  8572. box-shadow:none;
  8573. font-family:'Microsoft YaHei', sans-serif;
  8574. font-weight:400;
  8575. font-style:normal;
  8576. font-size:10px;
  8577. }
  8578. #u17074.disabled {
  8579. }
  8580. #u17075 {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:0px;
  8584. top:0px;
  8585. width:0px;
  8586. height:0px;
  8587. }
  8588. #u17076_div {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:0px;
  8592. top:0px;
  8593. width:140px;
  8594. height:30px;
  8595. background:inherit;
  8596. background-color:rgba(255, 255, 255, 1);
  8597. box-sizing:border-box;
  8598. border-width:1px;
  8599. border-style:solid;
  8600. border-color:rgba(215, 215, 215, 1);
  8601. border-radius:4px;
  8602. -moz-box-shadow:none;
  8603. -webkit-box-shadow:none;
  8604. box-shadow:none;
  8605. font-size:14px;
  8606. }
  8607. #u17076 {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:950px;
  8611. top:145px;
  8612. width:140px;
  8613. height:30px;
  8614. display:flex;
  8615. font-size:14px;
  8616. }
  8617. #u17076 .text {
  8618. position:absolute;
  8619. align-self:center;
  8620. padding:2px 2px 2px 2px;
  8621. box-sizing:border-box;
  8622. width:100%;
  8623. }
  8624. #u17076_text {
  8625. border-width:0px;
  8626. word-wrap:break-word;
  8627. text-transform:none;
  8628. visibility:hidden;
  8629. }
  8630. #u17077_input {
  8631. position:absolute;
  8632. left:0px;
  8633. top:0px;
  8634. width:134px;
  8635. height:23px;
  8636. padding:2px 2px 2px 2px;
  8637. font-family:'ArialMT', 'Arial', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:14px;
  8641. letter-spacing:normal;
  8642. color:#AAAAAA;
  8643. vertical-align:none;
  8644. text-align:left;
  8645. text-transform:none;
  8646. background-color:transparent;
  8647. border-color:transparent;
  8648. }
  8649. #u17077_input.disabled {
  8650. position:absolute;
  8651. left:0px;
  8652. top:0px;
  8653. width:134px;
  8654. height:23px;
  8655. padding:2px 2px 2px 2px;
  8656. font-family:'ArialMT', 'Arial', sans-serif;
  8657. font-weight:400;
  8658. font-style:normal;
  8659. font-size:14px;
  8660. letter-spacing:normal;
  8661. color:#AAAAAA;
  8662. vertical-align:none;
  8663. text-align:left;
  8664. text-transform:none;
  8665. background-color:transparent;
  8666. border-color:transparent;
  8667. }
  8668. #u17077_div {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:0px;
  8672. top:0px;
  8673. width:134px;
  8674. height:23px;
  8675. background:inherit;
  8676. background-color:rgba(255, 255, 255, 1);
  8677. border:none;
  8678. border-radius:0px;
  8679. -moz-box-shadow:none;
  8680. -webkit-box-shadow:none;
  8681. box-shadow:none;
  8682. font-size:14px;
  8683. color:#AAAAAA;
  8684. }
  8685. #u17077 {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:954px;
  8689. top:147px;
  8690. width:134px;
  8691. height:23px;
  8692. display:flex;
  8693. font-size:14px;
  8694. color:#AAAAAA;
  8695. }
  8696. #u17077 .text {
  8697. position:absolute;
  8698. align-self:flex-start;
  8699. padding:2px 2px 2px 2px;
  8700. box-sizing:border-box;
  8701. width:100%;
  8702. }
  8703. #u17077_div.disabled {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:134px;
  8709. height:23px;
  8710. background:inherit;
  8711. background-color:rgba(240, 240, 240, 1);
  8712. border:none;
  8713. border-radius:0px;
  8714. -moz-box-shadow:none;
  8715. -webkit-box-shadow:none;
  8716. box-shadow:none;
  8717. font-size:14px;
  8718. color:#AAAAAA;
  8719. }
  8720. #u17077.disabled {
  8721. }
  8722. .u17077_input_option {
  8723. font-size:14px;
  8724. }
  8725. #u17078 {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:0px;
  8729. top:0px;
  8730. width:0px;
  8731. height:0px;
  8732. }
  8733. #u17079_div {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:140px;
  8739. height:30px;
  8740. background:inherit;
  8741. background-color:rgba(255, 255, 255, 1);
  8742. box-sizing:border-box;
  8743. border-width:1px;
  8744. border-style:solid;
  8745. border-color:rgba(215, 215, 215, 1);
  8746. border-radius:4px;
  8747. -moz-box-shadow:none;
  8748. -webkit-box-shadow:none;
  8749. box-shadow:none;
  8750. font-size:14px;
  8751. }
  8752. #u17079 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:350px;
  8756. top:183px;
  8757. width:140px;
  8758. height:30px;
  8759. display:flex;
  8760. font-size:14px;
  8761. }
  8762. #u17079 .text {
  8763. position:absolute;
  8764. align-self:center;
  8765. padding:2px 2px 2px 2px;
  8766. box-sizing:border-box;
  8767. width:100%;
  8768. }
  8769. #u17079_text {
  8770. border-width:0px;
  8771. word-wrap:break-word;
  8772. text-transform:none;
  8773. visibility:hidden;
  8774. }
  8775. #u17080_input {
  8776. position:absolute;
  8777. left:0px;
  8778. top:0px;
  8779. width:134px;
  8780. height:23px;
  8781. padding:2px 2px 2px 2px;
  8782. font-family:'ArialMT', 'Arial', sans-serif;
  8783. font-weight:400;
  8784. font-style:normal;
  8785. font-size:14px;
  8786. letter-spacing:normal;
  8787. color:#AAAAAA;
  8788. vertical-align:none;
  8789. text-align:left;
  8790. text-transform:none;
  8791. background-color:transparent;
  8792. border-color:transparent;
  8793. }
  8794. #u17080_input.disabled {
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:134px;
  8799. height:23px;
  8800. padding:2px 2px 2px 2px;
  8801. font-family:'ArialMT', 'Arial', sans-serif;
  8802. font-weight:400;
  8803. font-style:normal;
  8804. font-size:14px;
  8805. letter-spacing:normal;
  8806. color:#AAAAAA;
  8807. vertical-align:none;
  8808. text-align:left;
  8809. text-transform:none;
  8810. background-color:transparent;
  8811. border-color:transparent;
  8812. }
  8813. #u17080_div {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:0px;
  8817. top:0px;
  8818. width:134px;
  8819. height:23px;
  8820. background:inherit;
  8821. background-color:rgba(255, 255, 255, 1);
  8822. border:none;
  8823. border-radius:0px;
  8824. -moz-box-shadow:none;
  8825. -webkit-box-shadow:none;
  8826. box-shadow:none;
  8827. font-size:14px;
  8828. color:#AAAAAA;
  8829. }
  8830. #u17080 {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:354px;
  8834. top:185px;
  8835. width:134px;
  8836. height:23px;
  8837. display:flex;
  8838. font-size:14px;
  8839. color:#AAAAAA;
  8840. }
  8841. #u17080 .text {
  8842. position:absolute;
  8843. align-self:flex-start;
  8844. padding:2px 2px 2px 2px;
  8845. box-sizing:border-box;
  8846. width:100%;
  8847. }
  8848. #u17080_div.disabled {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:134px;
  8854. height:23px;
  8855. background:inherit;
  8856. background-color:rgba(240, 240, 240, 1);
  8857. border:none;
  8858. border-radius:0px;
  8859. -moz-box-shadow:none;
  8860. -webkit-box-shadow:none;
  8861. box-shadow:none;
  8862. font-size:14px;
  8863. color:#AAAAAA;
  8864. }
  8865. #u17080.disabled {
  8866. }
  8867. .u17080_input_option {
  8868. font-size:14px;
  8869. }
  8870. #u17081 {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:0px;
  8874. top:0px;
  8875. width:0px;
  8876. height:0px;
  8877. }
  8878. #u17082_div {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:0px;
  8882. top:0px;
  8883. width:140px;
  8884. height:30px;
  8885. background:inherit;
  8886. background-color:rgba(255, 255, 255, 1);
  8887. box-sizing:border-box;
  8888. border-width:1px;
  8889. border-style:solid;
  8890. border-color:rgba(215, 215, 215, 1);
  8891. border-radius:4px;
  8892. -moz-box-shadow:none;
  8893. -webkit-box-shadow:none;
  8894. box-shadow:none;
  8895. font-size:14px;
  8896. }
  8897. #u17082 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:650px;
  8901. top:183px;
  8902. width:140px;
  8903. height:30px;
  8904. display:flex;
  8905. font-size:14px;
  8906. }
  8907. #u17082 .text {
  8908. position:absolute;
  8909. align-self:center;
  8910. padding:2px 2px 2px 2px;
  8911. box-sizing:border-box;
  8912. width:100%;
  8913. }
  8914. #u17082_text {
  8915. border-width:0px;
  8916. word-wrap:break-word;
  8917. text-transform:none;
  8918. visibility:hidden;
  8919. }
  8920. #u17083_input {
  8921. position:absolute;
  8922. left:0px;
  8923. top:0px;
  8924. width:134px;
  8925. height:23px;
  8926. padding:2px 2px 2px 2px;
  8927. font-family:'ArialMT', 'Arial', sans-serif;
  8928. font-weight:400;
  8929. font-style:normal;
  8930. font-size:14px;
  8931. letter-spacing:normal;
  8932. color:#AAAAAA;
  8933. vertical-align:none;
  8934. text-align:left;
  8935. text-transform:none;
  8936. background-color:transparent;
  8937. border-color:transparent;
  8938. }
  8939. #u17083_input.disabled {
  8940. position:absolute;
  8941. left:0px;
  8942. top:0px;
  8943. width:134px;
  8944. height:23px;
  8945. padding:2px 2px 2px 2px;
  8946. font-family:'ArialMT', 'Arial', sans-serif;
  8947. font-weight:400;
  8948. font-style:normal;
  8949. font-size:14px;
  8950. letter-spacing:normal;
  8951. color:#AAAAAA;
  8952. vertical-align:none;
  8953. text-align:left;
  8954. text-transform:none;
  8955. background-color:transparent;
  8956. border-color:transparent;
  8957. }
  8958. #u17083_div {
  8959. border-width:0px;
  8960. position:absolute;
  8961. left:0px;
  8962. top:0px;
  8963. width:134px;
  8964. height:23px;
  8965. background:inherit;
  8966. background-color:rgba(255, 255, 255, 1);
  8967. border:none;
  8968. border-radius:0px;
  8969. -moz-box-shadow:none;
  8970. -webkit-box-shadow:none;
  8971. box-shadow:none;
  8972. font-size:14px;
  8973. color:#AAAAAA;
  8974. }
  8975. #u17083 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:654px;
  8979. top:185px;
  8980. width:134px;
  8981. height:23px;
  8982. display:flex;
  8983. font-size:14px;
  8984. color:#AAAAAA;
  8985. }
  8986. #u17083 .text {
  8987. position:absolute;
  8988. align-self:flex-start;
  8989. padding:2px 2px 2px 2px;
  8990. box-sizing:border-box;
  8991. width:100%;
  8992. }
  8993. #u17083_div.disabled {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:134px;
  8999. height:23px;
  9000. background:inherit;
  9001. background-color:rgba(240, 240, 240, 1);
  9002. border:none;
  9003. border-radius:0px;
  9004. -moz-box-shadow:none;
  9005. -webkit-box-shadow:none;
  9006. box-shadow:none;
  9007. font-size:14px;
  9008. color:#AAAAAA;
  9009. }
  9010. #u17083.disabled {
  9011. }
  9012. .u17083_input_option {
  9013. font-size:14px;
  9014. }
  9015. #u17084 {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:0px;
  9021. height:0px;
  9022. }
  9023. #u17085_div {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:0px;
  9027. top:0px;
  9028. width:140px;
  9029. height:30px;
  9030. background:inherit;
  9031. background-color:rgba(255, 255, 255, 1);
  9032. box-sizing:border-box;
  9033. border-width:1px;
  9034. border-style:solid;
  9035. border-color:rgba(201, 201, 201, 1);
  9036. border-radius:4px;
  9037. -moz-box-shadow:none;
  9038. -webkit-box-shadow:none;
  9039. box-shadow:none;
  9040. font-family:'Microsoft YaHei', sans-serif;
  9041. font-weight:400;
  9042. font-style:normal;
  9043. font-size:14px;
  9044. color:#CCCCCC;
  9045. text-align:left;
  9046. }
  9047. #u17085 {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:500px;
  9051. top:183px;
  9052. width:140px;
  9053. height:30px;
  9054. display:flex;
  9055. font-family:'Microsoft YaHei', sans-serif;
  9056. font-weight:400;
  9057. font-style:normal;
  9058. font-size:14px;
  9059. color:#CCCCCC;
  9060. text-align:left;
  9061. }
  9062. #u17085 .text {
  9063. position:absolute;
  9064. align-self:center;
  9065. padding:2px 8px 2px 8px;
  9066. box-sizing:border-box;
  9067. width:100%;
  9068. }
  9069. #u17085_text {
  9070. border-width:0px;
  9071. word-wrap:break-word;
  9072. text-transform:none;
  9073. visibility:hidden;
  9074. }
  9075. #u17086_input {
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:127px;
  9080. height:25px;
  9081. padding:2px 2px 2px 2px;
  9082. font-family:'Microsoft YaHei', sans-serif;
  9083. font-weight:400;
  9084. font-style:normal;
  9085. font-size:10px;
  9086. letter-spacing:normal;
  9087. color:#000000;
  9088. vertical-align:none;
  9089. text-align:left;
  9090. text-transform:none;
  9091. background-color:transparent;
  9092. border-color:transparent;
  9093. }
  9094. #u17086_input.disabled {
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:127px;
  9099. height:25px;
  9100. padding:2px 2px 2px 2px;
  9101. font-family:'Microsoft YaHei', sans-serif;
  9102. font-weight:400;
  9103. font-style:normal;
  9104. font-size:10px;
  9105. letter-spacing:normal;
  9106. color:#000000;
  9107. vertical-align:none;
  9108. text-align:left;
  9109. text-transform:none;
  9110. background-color:transparent;
  9111. border-color:transparent;
  9112. }
  9113. #u17086_div {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:0px;
  9117. top:0px;
  9118. width:127px;
  9119. height:25px;
  9120. background:inherit;
  9121. background-color:rgba(255, 255, 255, 1);
  9122. border:none;
  9123. border-radius:0px;
  9124. -moz-box-shadow:none;
  9125. -webkit-box-shadow:none;
  9126. box-shadow:none;
  9127. font-family:'Microsoft YaHei', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:10px;
  9131. }
  9132. #u17086 {
  9133. border-width:0px;
  9134. position:absolute;
  9135. left:508px;
  9136. top:184px;
  9137. width:127px;
  9138. height:25px;
  9139. display:flex;
  9140. font-family:'Microsoft YaHei', sans-serif;
  9141. font-weight:400;
  9142. font-style:normal;
  9143. font-size:10px;
  9144. }
  9145. #u17086 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:2px 2px 2px 2px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u17086_div.disabled {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:0px;
  9156. top:0px;
  9157. width:127px;
  9158. height:25px;
  9159. background:inherit;
  9160. background-color:rgba(240, 240, 240, 1);
  9161. border:none;
  9162. border-radius:0px;
  9163. -moz-box-shadow:none;
  9164. -webkit-box-shadow:none;
  9165. box-shadow:none;
  9166. font-family:'Microsoft YaHei', sans-serif;
  9167. font-weight:400;
  9168. font-style:normal;
  9169. font-size:10px;
  9170. }
  9171. #u17086.disabled {
  9172. }