styles.css 206 KB

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