styles.css 211 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3061px;
  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. #u15776_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. #u15776 {
  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. #u15776 .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. #u15776_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u15777_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. #u15777 {
  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. #u15777 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u15777_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u15778 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u15779_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u15779 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u15779 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u15779_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u15780_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. #u15780 {
  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. #u15780 .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. #u15780_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u15781_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. #u15781 {
  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. #u15781 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u15781_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u15782_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. #u15782 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u15782 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u15782_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u15783 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u15784_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. #u15784 {
  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. #u15784 .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. #u15784_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u15785_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u15785 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u15785 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u15785_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u15786 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u15787_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. #u15787 {
  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. #u15787 .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. #u15787_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u15788_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u15788 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u15788 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u15788_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u15789 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u15790_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. #u15790 {
  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. #u15790 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u15790_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u15791_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u15791 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u15791 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u15791_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u15792 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u15793_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. #u15793 {
  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. #u15793 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u15793_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u15794_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u15794 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u15794 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u15794_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u15795 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u15796_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. #u15796 {
  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. #u15796 .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. #u15796_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u15797_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u15797 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u15797 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u15797_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u15798 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u15799_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. #u15799 {
  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. #u15799 .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. #u15799_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u15800_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u15800 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u15800 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u15800_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u15801 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u15802_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. #u15802 {
  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. #u15802 .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. #u15802_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u15803_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u15803 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u15803 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u15803_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u15804 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u15805_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. #u15805 {
  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. #u15805 .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. #u15805_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u15806_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u15806 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u15806 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u15806_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u15807 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u15808_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. #u15808 {
  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. #u15808 .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. #u15808_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u15809_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u15809 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u15809 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u15809_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u15810 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u15811_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. #u15811_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. #u15811_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. #u15811 {
  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. #u15811 .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. #u15811_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. #u15811.disabled {
  1108. }
  1109. .u15811_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u15812_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u15812 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u15812 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u15812_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u15813_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. #u15813 {
  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. #u15813 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u15813_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u15814_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u15814 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u15814 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u15814_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u15815 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u15816_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. #u15816 {
  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. #u15816 .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. #u15816_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u15817_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u15817 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u15817 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u15817_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u15818 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u15819_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. #u15819 {
  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. #u15819 .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. #u15819_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u15820_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u15820 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u15820 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u15820_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u15821 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u15822_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. #u15822 {
  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. #u15822 .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. #u15822_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u15823_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u15823 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u15823 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u15823_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u15824 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u15825_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. #u15825 {
  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. #u15825 .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. #u15825_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u15826_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u15826 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u15826 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u15826_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u15827 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u15828_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. #u15828 {
  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. #u15828 .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. #u15828_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u15829_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u15829 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u15829 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u15829_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u15830 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u15831_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. #u15831 {
  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. #u15831 .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. #u15831_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u15832_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u15832 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u15832 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u15832_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u15833_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. #u15833 {
  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. #u15833 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u15833_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u15834_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. #u15834 {
  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. #u15834 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u15834_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u15835_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. #u15835 {
  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. #u15835 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:0px 0px 0px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u15835_text {
  1845. border-width:0px;
  1846. white-space:nowrap;
  1847. text-transform:none;
  1848. }
  1849. #u15836_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. #u15836 {
  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. #u15836 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:5px 15px 5px 15px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u15836_text {
  1891. border-width:0px;
  1892. white-space:nowrap;
  1893. text-transform:none;
  1894. }
  1895. #u15837_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. #u15837 {
  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. #u15837 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:5px 15px 5px 15px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u15837_text {
  1940. border-width:0px;
  1941. white-space:nowrap;
  1942. text-transform:none;
  1943. }
  1944. #u15838 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:0px;
  1950. height:0px;
  1951. }
  1952. #u15839_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. #u15839 {
  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. #u15839 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 8px 2px 8px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u15839_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. visibility:hidden;
  2003. }
  2004. #u15840_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. #u15840_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. #u15840_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. #u15840 {
  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. #u15840 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 2px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u15840_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. #u15840.disabled {
  2101. }
  2102. #u15841 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:0px;
  2108. height:0px;
  2109. }
  2110. #u15842_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. #u15842 {
  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. #u15842 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 2px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u15842_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. visibility:hidden;
  2151. }
  2152. #u15843_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. #u15843_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. #u15843_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. #u15843 {
  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. #u15843 .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. #u15843_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. #u15843.disabled {
  2243. }
  2244. .u15843_input_option {
  2245. font-size:11px;
  2246. }
  2247. #u15844_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. #u15844 {
  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. #u15844 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:0px 0px 0px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u15844_text {
  2294. border-width:0px;
  2295. white-space:nowrap;
  2296. text-transform:none;
  2297. }
  2298. #u15845_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. #u15845 {
  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. #u15845 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:0px 0px 0px 0px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u15845_text {
  2343. border-width:0px;
  2344. white-space:nowrap;
  2345. text-transform:none;
  2346. }
  2347. #u15846_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. #u15846 {
  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. #u15846 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u15846_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u15847_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. #u15847 {
  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. #u15847 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:2px 2px 2px 2px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u15847_text {
  2420. border-width:0px;
  2421. word-wrap:break-word;
  2422. text-transform:none;
  2423. visibility:hidden;
  2424. }
  2425. #u15848_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. #u15848 {
  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. #u15848 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:0px 0px 0px 0px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u15848_text {
  2470. border-width:0px;
  2471. white-space:nowrap;
  2472. text-transform:none;
  2473. }
  2474. #u15849_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. #u15849 {
  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. #u15849 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:5px 15px 5px 15px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u15849_text {
  2516. border-width:0px;
  2517. white-space:nowrap;
  2518. text-transform:none;
  2519. }
  2520. #u15850_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. #u15850 {
  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. #u15850 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:5px 15px 5px 15px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u15850_text {
  2565. border-width:0px;
  2566. white-space:nowrap;
  2567. text-transform:none;
  2568. }
  2569. #u15851 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:0px;
  2575. height:0px;
  2576. }
  2577. #u15852_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. #u15852 {
  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. #u15852 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 8px 2px 8px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u15852_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u15853_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. #u15853_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. #u15853_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. #u15853 {
  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. #u15853 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 2px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u15853_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. #u15853.disabled {
  2726. }
  2727. #u15854 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:0px;
  2733. height:0px;
  2734. }
  2735. #u15855_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. #u15855 {
  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. #u15855 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:2px 2px 2px 2px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u15855_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. visibility:hidden;
  2776. }
  2777. #u15856_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. #u15856_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. #u15856_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. #u15856 {
  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. #u15856 .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. #u15856_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. #u15856.disabled {
  2868. }
  2869. .u15856_input_option {
  2870. font-size:11px;
  2871. }
  2872. #u15857_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. #u15857 {
  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. #u15857 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:0px 0px 0px 0px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u15857_text {
  2917. border-width:0px;
  2918. white-space:nowrap;
  2919. text-transform:none;
  2920. }
  2921. #u15858_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. #u15858 {
  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. #u15858 .text {
  2961. position:absolute;
  2962. align-self:center;
  2963. padding:0px 0px 0px 0px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u15858_text {
  2968. border-width:0px;
  2969. white-space:nowrap;
  2970. text-transform:none;
  2971. }
  2972. #u15859 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:351px;
  2976. top:270px;
  2977. width:1222px;
  2978. height:363px;
  2979. }
  2980. #u15860_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:156px;
  2986. height:38px;
  2987. }
  2988. #u15860 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:156px;
  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. #u15860 .text {
  3003. position:absolute;
  3004. align-self:center;
  3005. padding:2px 2px 2px 0px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u15860_text {
  3010. border-width:0px;
  3011. word-wrap:break-word;
  3012. text-transform:none;
  3013. }
  3014. #u15861_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:138px;
  3020. height:38px;
  3021. }
  3022. #u15861 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:156px;
  3026. top:0px;
  3027. width:138px;
  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. #u15861 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 2px 2px 0px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u15861_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. }
  3048. #u15862_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:138px;
  3054. height:38px;
  3055. }
  3056. #u15862 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:294px;
  3060. top:0px;
  3061. width:138px;
  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. #u15862 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 0px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u15862_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. }
  3082. #u15863_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:158px;
  3088. height:38px;
  3089. }
  3090. #u15863 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:432px;
  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. #u15863 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 2px 2px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u15863_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. }
  3116. #u15864_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:138px;
  3122. height:38px;
  3123. }
  3124. #u15864 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:590px;
  3128. top:0px;
  3129. width:138px;
  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. #u15864 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 0px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u15864_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. }
  3150. #u15865_img {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:156px;
  3156. height:38px;
  3157. }
  3158. #u15865 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:728px;
  3162. top:0px;
  3163. width:156px;
  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. #u15865 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 0px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u15865_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. }
  3184. #u15866_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:158px;
  3190. height:38px;
  3191. }
  3192. #u15866 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:884px;
  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. #u15866 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 0px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u15866_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. }
  3218. #u15867_img {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:180px;
  3224. height:38px;
  3225. }
  3226. #u15867 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:1042px;
  3230. top:0px;
  3231. width:180px;
  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. #u15867 .text {
  3241. position:absolute;
  3242. align-self:center;
  3243. padding:2px 2px 2px 0px;
  3244. box-sizing:border-box;
  3245. width:100%;
  3246. }
  3247. #u15867_text {
  3248. border-width:0px;
  3249. word-wrap:break-word;
  3250. text-transform:none;
  3251. }
  3252. #u15868_img {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:156px;
  3258. height:38px;
  3259. }
  3260. #u15868 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:38px;
  3265. width:156px;
  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. #u15868 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 2px 2px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u15868_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. }
  3285. #u15869_img {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:138px;
  3291. height:38px;
  3292. }
  3293. #u15869 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:156px;
  3297. top:38px;
  3298. width:138px;
  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. #u15869 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 0px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u15869_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. visibility:hidden;
  3318. }
  3319. #u15870_img {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:138px;
  3325. height:38px;
  3326. }
  3327. #u15870 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:294px;
  3331. top:38px;
  3332. width:138px;
  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. #u15870 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u15870_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u15871_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:158px;
  3359. height:38px;
  3360. }
  3361. #u15871 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:432px;
  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. #u15871 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:2px 2px 2px 0px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u15871_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. visibility:hidden;
  3386. }
  3387. #u15872_img {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:138px;
  3393. height:38px;
  3394. }
  3395. #u15872 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:590px;
  3399. top:38px;
  3400. width:138px;
  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. #u15872 .text {
  3409. position:absolute;
  3410. align-self:center;
  3411. padding:2px 2px 2px 0px;
  3412. box-sizing:border-box;
  3413. width:100%;
  3414. }
  3415. #u15872_text {
  3416. border-width:0px;
  3417. word-wrap:break-word;
  3418. text-transform:none;
  3419. visibility:hidden;
  3420. }
  3421. #u15873_img {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:156px;
  3427. height:38px;
  3428. }
  3429. #u15873 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:728px;
  3433. top:38px;
  3434. width:156px;
  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. #u15873 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u15873_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u15874_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:158px;
  3461. height:38px;
  3462. }
  3463. #u15874 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:884px;
  3467. top:38px;
  3468. width:158px;
  3469. height:38px;
  3470. display:flex;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:12px;
  3475. }
  3476. #u15874 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 0px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u15874_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. }
  3488. #u15875_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:180px;
  3494. height:38px;
  3495. }
  3496. #u15875 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:1042px;
  3500. top:38px;
  3501. width:180px;
  3502. height:38px;
  3503. display:flex;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#1890FF;
  3509. }
  3510. #u15875 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u15875_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. }
  3522. #u15876_img {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:156px;
  3528. height:38px;
  3529. }
  3530. #u15876 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:76px;
  3535. width:156px;
  3536. height:38px;
  3537. display:flex;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:12px;
  3542. }
  3543. #u15876 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 0px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u15876_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u15877_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:138px;
  3562. height:38px;
  3563. }
  3564. #u15877 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:156px;
  3568. top:76px;
  3569. width:138px;
  3570. height:38px;
  3571. display:flex;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:12px;
  3576. }
  3577. #u15877 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u15877_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. visibility:hidden;
  3589. }
  3590. #u15878_img {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:138px;
  3596. height:38px;
  3597. }
  3598. #u15878 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:294px;
  3602. top:76px;
  3603. width:138px;
  3604. height:38px;
  3605. display:flex;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:12px;
  3610. }
  3611. #u15878 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u15878_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u15879_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:158px;
  3630. height:38px;
  3631. }
  3632. #u15879 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:432px;
  3636. top:76px;
  3637. width:158px;
  3638. height:38px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. }
  3645. #u15879 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u15879_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. visibility:hidden;
  3657. }
  3658. #u15880_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:138px;
  3664. height:38px;
  3665. }
  3666. #u15880 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:590px;
  3670. top:76px;
  3671. width:138px;
  3672. height:38px;
  3673. display:flex;
  3674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:12px;
  3678. }
  3679. #u15880 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 0px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u15880_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. visibility:hidden;
  3691. }
  3692. #u15881_img {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:156px;
  3698. height:38px;
  3699. }
  3700. #u15881 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:728px;
  3704. top:76px;
  3705. width:156px;
  3706. height:38px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. }
  3713. #u15881 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u15881_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u15882_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:158px;
  3732. height:38px;
  3733. }
  3734. #u15882 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:884px;
  3738. top:76px;
  3739. width:158px;
  3740. height:38px;
  3741. display:flex;
  3742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:12px;
  3746. }
  3747. #u15882 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u15882_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. visibility:hidden;
  3759. }
  3760. #u15883_img {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:180px;
  3766. height:38px;
  3767. }
  3768. #u15883 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:1042px;
  3772. top:76px;
  3773. width:180px;
  3774. height:38px;
  3775. display:flex;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:12px;
  3780. color:#1890FF;
  3781. }
  3782. #u15883 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:2px 2px 2px 0px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u15883_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. }
  3794. #u15884_img {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:156px;
  3800. height:38px;
  3801. }
  3802. #u15884 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:114px;
  3807. width:156px;
  3808. height:38px;
  3809. display:flex;
  3810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3811. font-weight:400;
  3812. font-style:normal;
  3813. font-size:12px;
  3814. }
  3815. #u15884 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 0px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u15884_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u15885_img {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:138px;
  3834. height:38px;
  3835. }
  3836. #u15885 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:156px;
  3840. top:114px;
  3841. width:138px;
  3842. height:38px;
  3843. display:flex;
  3844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:12px;
  3848. }
  3849. #u15885 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 0px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u15885_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. visibility:hidden;
  3861. }
  3862. #u15886_img {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:138px;
  3868. height:38px;
  3869. }
  3870. #u15886 {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:294px;
  3874. top:114px;
  3875. width:138px;
  3876. height:38px;
  3877. display:flex;
  3878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3879. font-weight:400;
  3880. font-style:normal;
  3881. font-size:12px;
  3882. }
  3883. #u15886 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:2px 2px 2px 0px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u15886_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. visibility:hidden;
  3895. }
  3896. #u15887_img {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:158px;
  3902. height:38px;
  3903. }
  3904. #u15887 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:432px;
  3908. top:114px;
  3909. width:158px;
  3910. height:38px;
  3911. display:flex;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:12px;
  3916. }
  3917. #u15887 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:2px 2px 2px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u15887_text {
  3925. border-width:0px;
  3926. word-wrap:break-word;
  3927. text-transform:none;
  3928. visibility:hidden;
  3929. }
  3930. #u15888_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:138px;
  3936. height:38px;
  3937. }
  3938. #u15888 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:590px;
  3942. top:114px;
  3943. width:138px;
  3944. height:38px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. }
  3951. #u15888 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 0px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u15888_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u15889_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:156px;
  3970. height:38px;
  3971. }
  3972. #u15889 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:728px;
  3976. top:114px;
  3977. width:156px;
  3978. height:38px;
  3979. display:flex;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:12px;
  3984. }
  3985. #u15889 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 0px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u15889_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u15890_img {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:158px;
  4004. height:38px;
  4005. }
  4006. #u15890 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:884px;
  4010. top:114px;
  4011. width:158px;
  4012. height:38px;
  4013. display:flex;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:12px;
  4018. }
  4019. #u15890 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 0px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u15890_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u15891_img {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:180px;
  4038. height:38px;
  4039. }
  4040. #u15891 {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:1042px;
  4044. top:114px;
  4045. width:180px;
  4046. height:38px;
  4047. display:flex;
  4048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4049. font-weight:400;
  4050. font-style:normal;
  4051. font-size:12px;
  4052. color:#1890FF;
  4053. }
  4054. #u15891 .text {
  4055. position:absolute;
  4056. align-self:center;
  4057. padding:2px 2px 2px 0px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u15891_text {
  4062. border-width:0px;
  4063. word-wrap:break-word;
  4064. text-transform:none;
  4065. visibility:hidden;
  4066. }
  4067. #u15892_img {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:156px;
  4073. height:38px;
  4074. }
  4075. #u15892 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:152px;
  4080. width:156px;
  4081. height:38px;
  4082. display:flex;
  4083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4084. font-weight:400;
  4085. font-style:normal;
  4086. font-size:12px;
  4087. }
  4088. #u15892 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u15892_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u15893_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:138px;
  4107. height:38px;
  4108. }
  4109. #u15893 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:156px;
  4113. top:152px;
  4114. width:138px;
  4115. height:38px;
  4116. display:flex;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. }
  4122. #u15893 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 2px 2px 0px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u15893_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u15894_img {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:138px;
  4141. height:38px;
  4142. }
  4143. #u15894 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:294px;
  4147. top:152px;
  4148. width:138px;
  4149. height:38px;
  4150. display:flex;
  4151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. font-size:12px;
  4155. }
  4156. #u15894 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 0px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u15894_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u15895_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:158px;
  4175. height:38px;
  4176. }
  4177. #u15895 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:432px;
  4181. top:152px;
  4182. width:158px;
  4183. height:38px;
  4184. display:flex;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:12px;
  4189. }
  4190. #u15895 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u15895_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u15896_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:138px;
  4209. height:38px;
  4210. }
  4211. #u15896 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:590px;
  4215. top:152px;
  4216. width:138px;
  4217. height:38px;
  4218. display:flex;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. }
  4224. #u15896 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 0px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u15896_text {
  4232. border-width:0px;
  4233. word-wrap:break-word;
  4234. text-transform:none;
  4235. visibility:hidden;
  4236. }
  4237. #u15897_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:156px;
  4243. height:38px;
  4244. }
  4245. #u15897 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:728px;
  4249. top:152px;
  4250. width:156px;
  4251. height:38px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. }
  4258. #u15897 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u15897_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. visibility:hidden;
  4270. }
  4271. #u15898_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:158px;
  4277. height:38px;
  4278. }
  4279. #u15898 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:884px;
  4283. top:152px;
  4284. width:158px;
  4285. height:38px;
  4286. display:flex;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:12px;
  4291. }
  4292. #u15898 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 0px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u15898_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u15899_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:180px;
  4311. height:38px;
  4312. }
  4313. #u15899 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:1042px;
  4317. top:152px;
  4318. width:180px;
  4319. height:38px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:12px;
  4325. color:#1890FF;
  4326. }
  4327. #u15899 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u15899_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u15900_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:156px;
  4346. height:35px;
  4347. }
  4348. #u15900 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:190px;
  4353. width:156px;
  4354. height:35px;
  4355. display:flex;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:12px;
  4360. color:#606266;
  4361. }
  4362. #u15900 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 2px 2px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u15900_text {
  4370. border-width:0px;
  4371. word-wrap:break-word;
  4372. text-transform:none;
  4373. visibility:hidden;
  4374. }
  4375. #u15901_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:138px;
  4381. height:35px;
  4382. }
  4383. #u15901 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:156px;
  4387. top:190px;
  4388. width:138px;
  4389. height:35px;
  4390. display:flex;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:12px;
  4395. color:#606266;
  4396. }
  4397. #u15901 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 0px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u15901_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u15902_img {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:138px;
  4416. height:35px;
  4417. }
  4418. #u15902 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:294px;
  4422. top:190px;
  4423. width:138px;
  4424. height:35px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. color:#606266;
  4431. }
  4432. #u15902 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u15902_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. visibility:hidden;
  4444. }
  4445. #u15903_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:158px;
  4451. height:35px;
  4452. }
  4453. #u15903 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:432px;
  4457. top:190px;
  4458. width:158px;
  4459. height:35px;
  4460. display:flex;
  4461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:12px;
  4465. color:#606266;
  4466. }
  4467. #u15903 .text {
  4468. position:absolute;
  4469. align-self:center;
  4470. padding:2px 2px 2px 0px;
  4471. box-sizing:border-box;
  4472. width:100%;
  4473. }
  4474. #u15903_text {
  4475. border-width:0px;
  4476. word-wrap:break-word;
  4477. text-transform:none;
  4478. visibility:hidden;
  4479. }
  4480. #u15904_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:138px;
  4486. height:35px;
  4487. }
  4488. #u15904 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:590px;
  4492. top:190px;
  4493. width:138px;
  4494. height:35px;
  4495. display:flex;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:12px;
  4500. color:#606266;
  4501. }
  4502. #u15904 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:2px 2px 2px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u15904_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. visibility:hidden;
  4514. }
  4515. #u15905_img {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:156px;
  4521. height:35px;
  4522. }
  4523. #u15905 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:728px;
  4527. top:190px;
  4528. width:156px;
  4529. height:35px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. color:#606266;
  4536. }
  4537. #u15905 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 0px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u15905_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u15906_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:158px;
  4556. height:35px;
  4557. }
  4558. #u15906 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:884px;
  4562. top:190px;
  4563. width:158px;
  4564. height:35px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:12px;
  4570. color:#606266;
  4571. }
  4572. #u15906 .text {
  4573. position:absolute;
  4574. align-self:center;
  4575. padding:2px 2px 2px 0px;
  4576. box-sizing:border-box;
  4577. width:100%;
  4578. }
  4579. #u15906_text {
  4580. border-width:0px;
  4581. word-wrap:break-word;
  4582. text-transform:none;
  4583. visibility:hidden;
  4584. }
  4585. #u15907_img {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:180px;
  4591. height:35px;
  4592. }
  4593. #u15907 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:1042px;
  4597. top:190px;
  4598. width:180px;
  4599. height:35px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:12px;
  4605. color:#02A7F0;
  4606. }
  4607. #u15907 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u15907_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u15908_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:156px;
  4626. height:35px;
  4627. }
  4628. #u15908 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:225px;
  4633. width:156px;
  4634. height:35px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:12px;
  4640. color:#606266;
  4641. }
  4642. #u15908 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:2px 2px 2px 0px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u15908_text {
  4650. border-width:0px;
  4651. word-wrap:break-word;
  4652. text-transform:none;
  4653. visibility:hidden;
  4654. }
  4655. #u15909_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:138px;
  4661. height:35px;
  4662. }
  4663. #u15909 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:156px;
  4667. top:225px;
  4668. width:138px;
  4669. height:35px;
  4670. display:flex;
  4671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. font-size:12px;
  4675. color:#606266;
  4676. }
  4677. #u15909 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 0px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u15909_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u15910_img {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:138px;
  4696. height:35px;
  4697. }
  4698. #u15910 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:294px;
  4702. top:225px;
  4703. width:138px;
  4704. height:35px;
  4705. display:flex;
  4706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:12px;
  4710. color:#606266;
  4711. }
  4712. #u15910 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:2px 2px 2px 0px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u15910_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. visibility:hidden;
  4724. }
  4725. #u15911_img {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:158px;
  4731. height:35px;
  4732. }
  4733. #u15911 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:432px;
  4737. top:225px;
  4738. width:158px;
  4739. height:35px;
  4740. display:flex;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. color:#606266;
  4746. }
  4747. #u15911 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u15911_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. visibility:hidden;
  4759. }
  4760. #u15912_img {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:138px;
  4766. height:35px;
  4767. }
  4768. #u15912 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:590px;
  4772. top:225px;
  4773. width:138px;
  4774. height:35px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:12px;
  4780. color:#606266;
  4781. }
  4782. #u15912 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 0px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u15912_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. visibility:hidden;
  4794. }
  4795. #u15913_img {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:156px;
  4801. height:35px;
  4802. }
  4803. #u15913 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:728px;
  4807. top:225px;
  4808. width:156px;
  4809. height:35px;
  4810. display:flex;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:12px;
  4815. color:#606266;
  4816. }
  4817. #u15913 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u15913_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. visibility:hidden;
  4829. }
  4830. #u15914_img {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:158px;
  4836. height:35px;
  4837. }
  4838. #u15914 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:884px;
  4842. top:225px;
  4843. width:158px;
  4844. height:35px;
  4845. display:flex;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:12px;
  4850. color:#606266;
  4851. }
  4852. #u15914 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 0px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u15914_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u15915_img {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:180px;
  4871. height:35px;
  4872. }
  4873. #u15915 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:1042px;
  4877. top:225px;
  4878. width:180px;
  4879. height:35px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:12px;
  4885. color:#02A7F0;
  4886. }
  4887. #u15915 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 0px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u15915_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u15916_img {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:156px;
  4906. height:35px;
  4907. }
  4908. #u15916 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:260px;
  4913. width:156px;
  4914. height:35px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. color:#606266;
  4921. }
  4922. #u15916 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u15916_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u15917_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:138px;
  4941. height:35px;
  4942. }
  4943. #u15917 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:156px;
  4947. top:260px;
  4948. width:138px;
  4949. height:35px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#606266;
  4956. }
  4957. #u15917 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u15917_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u15918_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:138px;
  4976. height:35px;
  4977. }
  4978. #u15918 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:294px;
  4982. top:260px;
  4983. width:138px;
  4984. height:35px;
  4985. display:flex;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#606266;
  4991. }
  4992. #u15918 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 0px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u15918_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u15919_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:158px;
  5011. height:35px;
  5012. }
  5013. #u15919 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:432px;
  5017. top:260px;
  5018. width:158px;
  5019. height:35px;
  5020. display:flex;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#606266;
  5026. }
  5027. #u15919 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u15919_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. visibility:hidden;
  5039. }
  5040. #u15920_img {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:138px;
  5046. height:35px;
  5047. }
  5048. #u15920 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:590px;
  5052. top:260px;
  5053. width:138px;
  5054. height:35px;
  5055. display:flex;
  5056. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:12px;
  5060. color:#606266;
  5061. }
  5062. #u15920 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 0px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u15920_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u15921_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:156px;
  5081. height:35px;
  5082. }
  5083. #u15921 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:728px;
  5087. top:260px;
  5088. width:156px;
  5089. height:35px;
  5090. display:flex;
  5091. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:12px;
  5095. color:#606266;
  5096. }
  5097. #u15921 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u15921_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u15922_img {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:158px;
  5116. height:35px;
  5117. }
  5118. #u15922 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:884px;
  5122. top:260px;
  5123. width:158px;
  5124. height:35px;
  5125. display:flex;
  5126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5127. font-weight:400;
  5128. font-style:normal;
  5129. font-size:12px;
  5130. color:#606266;
  5131. }
  5132. #u15922 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 0px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u15922_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. visibility:hidden;
  5144. }
  5145. #u15923_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:180px;
  5151. height:35px;
  5152. }
  5153. #u15923 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:1042px;
  5157. top:260px;
  5158. width:180px;
  5159. height:35px;
  5160. display:flex;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. color:#02A7F0;
  5166. }
  5167. #u15923 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u15923_text {
  5175. border-width:0px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. visibility:hidden;
  5179. }
  5180. #u15924_img {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:156px;
  5186. height:35px;
  5187. }
  5188. #u15924 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:295px;
  5193. width:156px;
  5194. height:35px;
  5195. display:flex;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:12px;
  5200. color:#606266;
  5201. }
  5202. #u15924 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 0px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u15924_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. visibility:hidden;
  5214. }
  5215. #u15925_img {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:138px;
  5221. height:35px;
  5222. }
  5223. #u15925 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:156px;
  5227. top:295px;
  5228. width:138px;
  5229. height:35px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. color:#606266;
  5236. }
  5237. #u15925 .text {
  5238. position:absolute;
  5239. align-self:center;
  5240. padding:2px 2px 2px 0px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u15925_text {
  5245. border-width:0px;
  5246. word-wrap:break-word;
  5247. text-transform:none;
  5248. visibility:hidden;
  5249. }
  5250. #u15926_img {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:138px;
  5256. height:35px;
  5257. }
  5258. #u15926 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:294px;
  5262. top:295px;
  5263. width:138px;
  5264. height:35px;
  5265. display:flex;
  5266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:12px;
  5270. color:#606266;
  5271. }
  5272. #u15926 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 0px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u15926_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u15927_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:158px;
  5291. height:35px;
  5292. }
  5293. #u15927 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:432px;
  5297. top:295px;
  5298. width:158px;
  5299. height:35px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:12px;
  5305. color:#606266;
  5306. }
  5307. #u15927 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 0px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u15927_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. visibility:hidden;
  5319. }
  5320. #u15928_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:138px;
  5326. height:35px;
  5327. }
  5328. #u15928 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:590px;
  5332. top:295px;
  5333. width:138px;
  5334. height:35px;
  5335. display:flex;
  5336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:12px;
  5340. color:#606266;
  5341. }
  5342. #u15928 .text {
  5343. position:absolute;
  5344. align-self:center;
  5345. padding:2px 2px 2px 0px;
  5346. box-sizing:border-box;
  5347. width:100%;
  5348. }
  5349. #u15928_text {
  5350. border-width:0px;
  5351. word-wrap:break-word;
  5352. text-transform:none;
  5353. visibility:hidden;
  5354. }
  5355. #u15929_img {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:156px;
  5361. height:35px;
  5362. }
  5363. #u15929 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:728px;
  5367. top:295px;
  5368. width:156px;
  5369. height:35px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:12px;
  5375. color:#606266;
  5376. }
  5377. #u15929 .text {
  5378. position:absolute;
  5379. align-self:center;
  5380. padding:2px 2px 2px 0px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u15929_text {
  5385. border-width:0px;
  5386. word-wrap:break-word;
  5387. text-transform:none;
  5388. visibility:hidden;
  5389. }
  5390. #u15930_img {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:158px;
  5396. height:35px;
  5397. }
  5398. #u15930 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:884px;
  5402. top:295px;
  5403. width:158px;
  5404. height:35px;
  5405. display:flex;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:12px;
  5410. color:#606266;
  5411. }
  5412. #u15930 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 0px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u15930_text {
  5420. border-width:0px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. visibility:hidden;
  5424. }
  5425. #u15931_img {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:180px;
  5431. height:35px;
  5432. }
  5433. #u15931 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:1042px;
  5437. top:295px;
  5438. width:180px;
  5439. height:35px;
  5440. display:flex;
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:12px;
  5445. color:#02A7F0;
  5446. }
  5447. #u15931 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 0px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u15931_text {
  5455. border-width:0px;
  5456. word-wrap:break-word;
  5457. text-transform:none;
  5458. visibility:hidden;
  5459. }
  5460. #u15932_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:156px;
  5466. height:33px;
  5467. }
  5468. #u15932 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:330px;
  5473. width:156px;
  5474. height:33px;
  5475. display:flex;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:12px;
  5480. color:#606266;
  5481. }
  5482. #u15932 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:2px 2px 2px 0px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u15932_text {
  5490. border-width:0px;
  5491. word-wrap:break-word;
  5492. text-transform:none;
  5493. visibility:hidden;
  5494. }
  5495. #u15933_img {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:138px;
  5501. height:33px;
  5502. }
  5503. #u15933 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:156px;
  5507. top:330px;
  5508. width:138px;
  5509. height:33px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:12px;
  5515. color:#606266;
  5516. }
  5517. #u15933 .text {
  5518. position:absolute;
  5519. align-self:center;
  5520. padding:2px 2px 2px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u15933_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. visibility:hidden;
  5529. }
  5530. #u15934_img {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:138px;
  5536. height:33px;
  5537. }
  5538. #u15934 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:294px;
  5542. top:330px;
  5543. width:138px;
  5544. height:33px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:12px;
  5550. color:#606266;
  5551. }
  5552. #u15934 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u15934_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. visibility:hidden;
  5564. }
  5565. #u15935_img {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:158px;
  5571. height:33px;
  5572. }
  5573. #u15935 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:432px;
  5577. top:330px;
  5578. width:158px;
  5579. height:33px;
  5580. display:flex;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. color:#606266;
  5586. }
  5587. #u15935 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 0px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u15935_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. visibility:hidden;
  5599. }
  5600. #u15936_img {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:138px;
  5606. height:33px;
  5607. }
  5608. #u15936 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:590px;
  5612. top:330px;
  5613. width:138px;
  5614. height:33px;
  5615. display:flex;
  5616. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:12px;
  5620. color:#606266;
  5621. }
  5622. #u15936 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 0px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u15936_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u15937_img {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:156px;
  5641. height:33px;
  5642. }
  5643. #u15937 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:728px;
  5647. top:330px;
  5648. width:156px;
  5649. height:33px;
  5650. display:flex;
  5651. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:12px;
  5655. color:#606266;
  5656. }
  5657. #u15937 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u15937_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u15938_img {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:158px;
  5676. height:33px;
  5677. }
  5678. #u15938 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:884px;
  5682. top:330px;
  5683. width:158px;
  5684. height:33px;
  5685. display:flex;
  5686. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:12px;
  5690. color:#606266;
  5691. }
  5692. #u15938 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u15938_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u15939_img {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:180px;
  5711. height:33px;
  5712. }
  5713. #u15939 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:1042px;
  5717. top:330px;
  5718. width:180px;
  5719. height:33px;
  5720. display:flex;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:12px;
  5725. color:#02A7F0;
  5726. }
  5727. #u15939 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 0px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u15939_text {
  5735. border-width:0px;
  5736. word-wrap:break-word;
  5737. text-transform:none;
  5738. visibility:hidden;
  5739. }
  5740. #u15940 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:1669px;
  5744. top:230px;
  5745. width:1332px;
  5746. height:364px;
  5747. }
  5748. #u15941_img {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:80px;
  5754. height:39px;
  5755. }
  5756. #u15941 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:80px;
  5762. height:39px;
  5763. display:flex;
  5764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:12px;
  5768. color:#FFFFFF;
  5769. }
  5770. #u15941 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 0px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u15941_text {
  5778. border-width:0px;
  5779. word-wrap:break-word;
  5780. text-transform:none;
  5781. }
  5782. #u15942_img {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:80px;
  5788. height:39px;
  5789. }
  5790. #u15942 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:80px;
  5794. top:0px;
  5795. width:80px;
  5796. height:39px;
  5797. display:flex;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:12px;
  5802. color:#FFFFFF;
  5803. }
  5804. #u15942 .text {
  5805. position:absolute;
  5806. align-self:center;
  5807. padding:2px 2px 2px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u15942_text {
  5812. border-width:0px;
  5813. word-wrap:break-word;
  5814. text-transform:none;
  5815. }
  5816. #u15943_img {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:80px;
  5822. height:39px;
  5823. }
  5824. #u15943 {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:160px;
  5828. top:0px;
  5829. width:80px;
  5830. height:39px;
  5831. display:flex;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:12px;
  5836. color:#FFFFFF;
  5837. }
  5838. #u15943 .text {
  5839. position:absolute;
  5840. align-self:center;
  5841. padding:2px 2px 2px 0px;
  5842. box-sizing:border-box;
  5843. width:100%;
  5844. }
  5845. #u15943_text {
  5846. border-width:0px;
  5847. word-wrap:break-word;
  5848. text-transform:none;
  5849. }
  5850. #u15944_img {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:80px;
  5856. height:39px;
  5857. }
  5858. #u15944 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:240px;
  5862. top:0px;
  5863. width:80px;
  5864. height:39px;
  5865. display:flex;
  5866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:12px;
  5870. color:#FFFFFF;
  5871. }
  5872. #u15944 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 2px 2px 0px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u15944_text {
  5880. border-width:0px;
  5881. word-wrap:break-word;
  5882. text-transform:none;
  5883. }
  5884. #u15945_img {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:80px;
  5890. height:39px;
  5891. }
  5892. #u15945 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:320px;
  5896. top:0px;
  5897. width:80px;
  5898. height:39px;
  5899. display:flex;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:12px;
  5904. color:#FFFFFF;
  5905. }
  5906. #u15945 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:2px 2px 2px 0px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u15945_text {
  5914. border-width:0px;
  5915. word-wrap:break-word;
  5916. text-transform:none;
  5917. }
  5918. #u15946_img {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:80px;
  5924. height:39px;
  5925. }
  5926. #u15946 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:400px;
  5930. top:0px;
  5931. width:80px;
  5932. height:39px;
  5933. display:flex;
  5934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:12px;
  5938. color:#FFFFFF;
  5939. }
  5940. #u15946 .text {
  5941. position:absolute;
  5942. align-self:center;
  5943. padding:2px 2px 2px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u15946_text {
  5948. border-width:0px;
  5949. word-wrap:break-word;
  5950. text-transform:none;
  5951. }
  5952. #u15947_img {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:80px;
  5958. height:39px;
  5959. }
  5960. #u15947 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:480px;
  5964. top:0px;
  5965. width:80px;
  5966. height:39px;
  5967. display:flex;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:12px;
  5972. color:#FFFFFF;
  5973. }
  5974. #u15947 .text {
  5975. position:absolute;
  5976. align-self:center;
  5977. padding:2px 2px 2px 0px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u15947_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. }
  5986. #u15948_img {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:102px;
  5992. height:39px;
  5993. }
  5994. #u15948 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:560px;
  5998. top:0px;
  5999. width:102px;
  6000. height:39px;
  6001. display:flex;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:12px;
  6006. color:#FFFFFF;
  6007. }
  6008. #u15948 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 0px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u15948_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. }
  6020. #u15949_img {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:90px;
  6026. height:39px;
  6027. }
  6028. #u15949 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:662px;
  6032. top:0px;
  6033. width:90px;
  6034. height:39px;
  6035. display:flex;
  6036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:12px;
  6040. color:#FFFFFF;
  6041. }
  6042. #u15949 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 2px 2px 0px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u15949_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. }
  6054. #u15950_img {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:80px;
  6060. height:39px;
  6061. }
  6062. #u15950 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:752px;
  6066. top:0px;
  6067. width:80px;
  6068. height:39px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:12px;
  6074. color:#FFFFFF;
  6075. }
  6076. #u15950 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 0px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u15950_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. }
  6088. #u15951_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:80px;
  6094. height:39px;
  6095. }
  6096. #u15951 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:832px;
  6100. top:0px;
  6101. width:80px;
  6102. height:39px;
  6103. display:flex;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. color:#FFFFFF;
  6109. }
  6110. #u15951 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:2px 2px 2px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u15951_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. }
  6122. #u15952_img {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:80px;
  6128. height:39px;
  6129. }
  6130. #u15952 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:912px;
  6134. top:0px;
  6135. width:80px;
  6136. height:39px;
  6137. display:flex;
  6138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:12px;
  6142. color:#FFFFFF;
  6143. }
  6144. #u15952 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u15952_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. }
  6156. #u15953_img {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:80px;
  6162. height:39px;
  6163. }
  6164. #u15953 {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:992px;
  6168. top:0px;
  6169. width:80px;
  6170. height:39px;
  6171. display:flex;
  6172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. font-size:12px;
  6176. color:#FFFFFF;
  6177. }
  6178. #u15953 .text {
  6179. position:absolute;
  6180. align-self:center;
  6181. padding:2px 2px 2px 0px;
  6182. box-sizing:border-box;
  6183. width:100%;
  6184. }
  6185. #u15953_text {
  6186. border-width:0px;
  6187. word-wrap:break-word;
  6188. text-transform:none;
  6189. }
  6190. #u15954_img {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:80px;
  6196. height:39px;
  6197. }
  6198. #u15954 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:1072px;
  6202. top:0px;
  6203. width:80px;
  6204. height:39px;
  6205. display:flex;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:12px;
  6210. color:#FFFFFF;
  6211. }
  6212. #u15954 .text {
  6213. position:absolute;
  6214. align-self:center;
  6215. padding:2px 2px 2px 0px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u15954_text {
  6220. border-width:0px;
  6221. word-wrap:break-word;
  6222. text-transform:none;
  6223. }
  6224. #u15955_img {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:180px;
  6230. height:39px;
  6231. }
  6232. #u15955 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:1152px;
  6236. top:0px;
  6237. width:180px;
  6238. height:39px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:12px;
  6244. color:#FFFFFF;
  6245. }
  6246. #u15955 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 2px 2px 0px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u15955_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. }
  6258. #u15956_img {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:80px;
  6264. height:38px;
  6265. }
  6266. #u15956 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:39px;
  6271. width:80px;
  6272. height:38px;
  6273. display:flex;
  6274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:12px;
  6278. }
  6279. #u15956 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:2px 2px 2px 0px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u15956_text {
  6287. border-width:0px;
  6288. word-wrap:break-word;
  6289. text-transform:none;
  6290. visibility:hidden;
  6291. }
  6292. #u15957_img {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:80px;
  6298. height:38px;
  6299. }
  6300. #u15957 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:80px;
  6304. top:39px;
  6305. width:80px;
  6306. height:38px;
  6307. display:flex;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:12px;
  6312. }
  6313. #u15957 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 0px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u15957_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u15958_img {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:80px;
  6332. height:38px;
  6333. }
  6334. #u15958 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:160px;
  6338. top:39px;
  6339. width:80px;
  6340. height:38px;
  6341. display:flex;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:12px;
  6346. }
  6347. #u15958 .text {
  6348. position:absolute;
  6349. align-self:center;
  6350. padding:2px 2px 2px 0px;
  6351. box-sizing:border-box;
  6352. width:100%;
  6353. }
  6354. #u15958_text {
  6355. border-width:0px;
  6356. word-wrap:break-word;
  6357. text-transform:none;
  6358. visibility:hidden;
  6359. }
  6360. #u15959_img {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:80px;
  6366. height:38px;
  6367. }
  6368. #u15959 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:240px;
  6372. top:39px;
  6373. width:80px;
  6374. height:38px;
  6375. display:flex;
  6376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:12px;
  6380. }
  6381. #u15959 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:2px 2px 2px 0px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u15959_text {
  6389. border-width:0px;
  6390. word-wrap:break-word;
  6391. text-transform:none;
  6392. }
  6393. #u15960_img {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:80px;
  6399. height:38px;
  6400. }
  6401. #u15960 {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:320px;
  6405. top:39px;
  6406. width:80px;
  6407. height:38px;
  6408. display:flex;
  6409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6410. font-weight:400;
  6411. font-style:normal;
  6412. font-size:12px;
  6413. }
  6414. #u15960 .text {
  6415. position:absolute;
  6416. align-self:center;
  6417. padding:2px 2px 2px 0px;
  6418. box-sizing:border-box;
  6419. width:100%;
  6420. }
  6421. #u15960_text {
  6422. border-width:0px;
  6423. word-wrap:break-word;
  6424. text-transform:none;
  6425. visibility:hidden;
  6426. }
  6427. #u15961_img {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:80px;
  6433. height:38px;
  6434. }
  6435. #u15961 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:400px;
  6439. top:39px;
  6440. width:80px;
  6441. height:38px;
  6442. display:flex;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:12px;
  6447. }
  6448. #u15961 .text {
  6449. position:absolute;
  6450. align-self:center;
  6451. padding:2px 2px 2px 0px;
  6452. box-sizing:border-box;
  6453. width:100%;
  6454. }
  6455. #u15961_text {
  6456. border-width:0px;
  6457. word-wrap:break-word;
  6458. text-transform:none;
  6459. visibility:hidden;
  6460. }
  6461. #u15962_img {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:80px;
  6467. height:38px;
  6468. }
  6469. #u15962 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:480px;
  6473. top:39px;
  6474. width:80px;
  6475. height:38px;
  6476. display:flex;
  6477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6478. font-weight:400;
  6479. font-style:normal;
  6480. font-size:12px;
  6481. }
  6482. #u15962 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:2px 2px 2px 0px;
  6486. box-sizing:border-box;
  6487. width:100%;
  6488. }
  6489. #u15962_text {
  6490. border-width:0px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. visibility:hidden;
  6494. }
  6495. #u15963_img {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:102px;
  6501. height:38px;
  6502. }
  6503. #u15963 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:560px;
  6507. top:39px;
  6508. width:102px;
  6509. height:38px;
  6510. display:flex;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:12px;
  6515. }
  6516. #u15963 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 2px 2px 0px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u15963_text {
  6524. border-width:0px;
  6525. word-wrap:break-word;
  6526. text-transform:none;
  6527. }
  6528. #u15964_img {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:90px;
  6534. height:38px;
  6535. }
  6536. #u15964 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:662px;
  6540. top:39px;
  6541. width:90px;
  6542. height:38px;
  6543. display:flex;
  6544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:12px;
  6548. color:#333333;
  6549. }
  6550. #u15964 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:2px 2px 2px 0px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u15964_text {
  6558. border-width:0px;
  6559. word-wrap:break-word;
  6560. text-transform:none;
  6561. }
  6562. #u15965_img {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:80px;
  6568. height:38px;
  6569. }
  6570. #u15965 {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:752px;
  6574. top:39px;
  6575. width:80px;
  6576. height:38px;
  6577. display:flex;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:12px;
  6582. color:#AAAAAA;
  6583. }
  6584. #u15965 .text {
  6585. position:absolute;
  6586. align-self:center;
  6587. padding:2px 2px 2px 0px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u15965_text {
  6592. border-width:0px;
  6593. word-wrap:break-word;
  6594. text-transform:none;
  6595. }
  6596. #u15966_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:80px;
  6602. height:38px;
  6603. }
  6604. #u15966 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:832px;
  6608. top:39px;
  6609. width:80px;
  6610. height:38px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. color:#333333;
  6617. }
  6618. #u15966 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 0px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u15966_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. }
  6630. #u15967_img {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:80px;
  6636. height:38px;
  6637. }
  6638. #u15967 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:912px;
  6642. top:39px;
  6643. width:80px;
  6644. height:38px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:12px;
  6650. color:#333333;
  6651. }
  6652. #u15967 .text {
  6653. position:absolute;
  6654. align-self:center;
  6655. padding:2px 2px 2px 0px;
  6656. box-sizing:border-box;
  6657. width:100%;
  6658. }
  6659. #u15967_text {
  6660. border-width:0px;
  6661. word-wrap:break-word;
  6662. text-transform:none;
  6663. }
  6664. #u15968_img {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:80px;
  6670. height:38px;
  6671. }
  6672. #u15968 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:992px;
  6676. top:39px;
  6677. width:80px;
  6678. height:38px;
  6679. display:flex;
  6680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6681. font-weight:400;
  6682. font-style:normal;
  6683. font-size:12px;
  6684. color:#AAAAAA;
  6685. }
  6686. #u15968 .text {
  6687. position:absolute;
  6688. align-self:center;
  6689. padding:2px 2px 2px 0px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u15968_text {
  6694. border-width:0px;
  6695. word-wrap:break-word;
  6696. text-transform:none;
  6697. }
  6698. #u15969_img {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:80px;
  6704. height:38px;
  6705. }
  6706. #u15969 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:1072px;
  6710. top:39px;
  6711. width:80px;
  6712. height:38px;
  6713. display:flex;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:12px;
  6718. color:#AAAAAA;
  6719. }
  6720. #u15969 .text {
  6721. position:absolute;
  6722. align-self:center;
  6723. padding:2px 2px 2px 0px;
  6724. box-sizing:border-box;
  6725. width:100%;
  6726. }
  6727. #u15969_text {
  6728. border-width:0px;
  6729. word-wrap:break-word;
  6730. text-transform:none;
  6731. }
  6732. #u15970_img {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:180px;
  6738. height:38px;
  6739. }
  6740. #u15970 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:1152px;
  6744. top:39px;
  6745. width:180px;
  6746. height:38px;
  6747. display:flex;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:12px;
  6752. color:#1890FF;
  6753. }
  6754. #u15970 .text {
  6755. position:absolute;
  6756. align-self:center;
  6757. padding:2px 2px 2px 0px;
  6758. box-sizing:border-box;
  6759. width:100%;
  6760. }
  6761. #u15970_text {
  6762. border-width:0px;
  6763. word-wrap:break-word;
  6764. text-transform:none;
  6765. }
  6766. #u15971_img {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:0px;
  6770. top:0px;
  6771. width:80px;
  6772. height:38px;
  6773. }
  6774. #u15971 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:77px;
  6779. width:80px;
  6780. height:38px;
  6781. display:flex;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:12px;
  6786. }
  6787. #u15971 .text {
  6788. position:absolute;
  6789. align-self:center;
  6790. padding:2px 2px 2px 0px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u15971_text {
  6795. border-width:0px;
  6796. word-wrap:break-word;
  6797. text-transform:none;
  6798. visibility:hidden;
  6799. }
  6800. #u15972_img {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:80px;
  6806. height:38px;
  6807. }
  6808. #u15972 {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:80px;
  6812. top:77px;
  6813. width:80px;
  6814. height:38px;
  6815. display:flex;
  6816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. font-size:12px;
  6820. }
  6821. #u15972 .text {
  6822. position:absolute;
  6823. align-self:center;
  6824. padding:2px 2px 2px 0px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u15972_text {
  6829. border-width:0px;
  6830. word-wrap:break-word;
  6831. text-transform:none;
  6832. visibility:hidden;
  6833. }
  6834. #u15973_img {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:80px;
  6840. height:38px;
  6841. }
  6842. #u15973 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:160px;
  6846. top:77px;
  6847. width:80px;
  6848. height:38px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. }
  6855. #u15973 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:2px 2px 2px 0px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u15973_text {
  6863. border-width:0px;
  6864. word-wrap:break-word;
  6865. text-transform:none;
  6866. visibility:hidden;
  6867. }
  6868. #u15974_img {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:80px;
  6874. height:38px;
  6875. }
  6876. #u15974 {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:240px;
  6880. top:77px;
  6881. width:80px;
  6882. height:38px;
  6883. display:flex;
  6884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6885. font-weight:400;
  6886. font-style:normal;
  6887. font-size:12px;
  6888. }
  6889. #u15974 .text {
  6890. position:absolute;
  6891. align-self:center;
  6892. padding:2px 2px 2px 0px;
  6893. box-sizing:border-box;
  6894. width:100%;
  6895. }
  6896. #u15974_text {
  6897. border-width:0px;
  6898. word-wrap:break-word;
  6899. text-transform:none;
  6900. }
  6901. #u15975_img {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:80px;
  6907. height:38px;
  6908. }
  6909. #u15975 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:320px;
  6913. top:77px;
  6914. width:80px;
  6915. height:38px;
  6916. display:flex;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:12px;
  6921. }
  6922. #u15975 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u15975_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u15976_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:80px;
  6941. height:38px;
  6942. }
  6943. #u15976 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:400px;
  6947. top:77px;
  6948. width:80px;
  6949. height:38px;
  6950. display:flex;
  6951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:12px;
  6955. }
  6956. #u15976 .text {
  6957. position:absolute;
  6958. align-self:center;
  6959. padding:2px 2px 2px 0px;
  6960. box-sizing:border-box;
  6961. width:100%;
  6962. }
  6963. #u15976_text {
  6964. border-width:0px;
  6965. word-wrap:break-word;
  6966. text-transform:none;
  6967. visibility:hidden;
  6968. }
  6969. #u15977_img {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:80px;
  6975. height:38px;
  6976. }
  6977. #u15977 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:480px;
  6981. top:77px;
  6982. width:80px;
  6983. height:38px;
  6984. display:flex;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:12px;
  6989. }
  6990. #u15977 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 0px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u15977_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. visibility:hidden;
  7002. }
  7003. #u15978_img {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:102px;
  7009. height:38px;
  7010. }
  7011. #u15978 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:560px;
  7015. top:77px;
  7016. width:102px;
  7017. height:38px;
  7018. display:flex;
  7019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:12px;
  7023. }
  7024. #u15978 .text {
  7025. position:absolute;
  7026. align-self:center;
  7027. padding:2px 2px 2px 0px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u15978_text {
  7032. border-width:0px;
  7033. word-wrap:break-word;
  7034. text-transform:none;
  7035. }
  7036. #u15979_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:90px;
  7042. height:38px;
  7043. }
  7044. #u15979 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:662px;
  7048. top:77px;
  7049. width:90px;
  7050. height:38px;
  7051. display:flex;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:12px;
  7056. color:#333333;
  7057. }
  7058. #u15979 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 0px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u15979_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. }
  7070. #u15980_img {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:0px;
  7074. top:0px;
  7075. width:80px;
  7076. height:38px;
  7077. }
  7078. #u15980 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:752px;
  7082. top:77px;
  7083. width:80px;
  7084. height:38px;
  7085. display:flex;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:12px;
  7090. color:#AAAAAA;
  7091. }
  7092. #u15980 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:2px 2px 2px 0px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u15980_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. }
  7104. #u15981_img {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:80px;
  7110. height:38px;
  7111. }
  7112. #u15981 {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:832px;
  7116. top:77px;
  7117. width:80px;
  7118. height:38px;
  7119. display:flex;
  7120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:12px;
  7124. color:#333333;
  7125. }
  7126. #u15981 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 0px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u15981_text {
  7134. border-width:0px;
  7135. word-wrap:break-word;
  7136. text-transform:none;
  7137. }
  7138. #u15982_img {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:80px;
  7144. height:38px;
  7145. }
  7146. #u15982 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:912px;
  7150. top:77px;
  7151. width:80px;
  7152. height:38px;
  7153. display:flex;
  7154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7155. font-weight:400;
  7156. font-style:normal;
  7157. font-size:12px;
  7158. color:#333333;
  7159. }
  7160. #u15982 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:2px 2px 2px 0px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u15982_text {
  7168. border-width:0px;
  7169. word-wrap:break-word;
  7170. text-transform:none;
  7171. }
  7172. #u15983_img {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:80px;
  7178. height:38px;
  7179. }
  7180. #u15983 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:992px;
  7184. top:77px;
  7185. width:80px;
  7186. height:38px;
  7187. display:flex;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:12px;
  7192. color:#333333;
  7193. }
  7194. #u15983 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:2px 2px 2px 0px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u15983_text {
  7202. border-width:0px;
  7203. word-wrap:break-word;
  7204. text-transform:none;
  7205. }
  7206. #u15984_img {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:80px;
  7212. height:38px;
  7213. }
  7214. #u15984 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:1072px;
  7218. top:77px;
  7219. width:80px;
  7220. height:38px;
  7221. display:flex;
  7222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:12px;
  7226. color:#AAAAAA;
  7227. }
  7228. #u15984 .text {
  7229. position:absolute;
  7230. align-self:center;
  7231. padding:2px 2px 2px 0px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u15984_text {
  7236. border-width:0px;
  7237. word-wrap:break-word;
  7238. text-transform:none;
  7239. }
  7240. #u15985_img {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:0px;
  7245. width:180px;
  7246. height:38px;
  7247. }
  7248. #u15985 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:1152px;
  7252. top:77px;
  7253. width:180px;
  7254. height:38px;
  7255. display:flex;
  7256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:12px;
  7260. color:#1890FF;
  7261. }
  7262. #u15985 .text {
  7263. position:absolute;
  7264. align-self:center;
  7265. padding:2px 2px 2px 0px;
  7266. box-sizing:border-box;
  7267. width:100%;
  7268. }
  7269. #u15985_text {
  7270. border-width:0px;
  7271. word-wrap:break-word;
  7272. text-transform:none;
  7273. }
  7274. #u15986_img {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:0px;
  7278. top:0px;
  7279. width:80px;
  7280. height:38px;
  7281. }
  7282. #u15986 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:115px;
  7287. width:80px;
  7288. height:38px;
  7289. display:flex;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:12px;
  7294. }
  7295. #u15986 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:2px 2px 2px 0px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u15986_text {
  7303. border-width:0px;
  7304. word-wrap:break-word;
  7305. text-transform:none;
  7306. visibility:hidden;
  7307. }
  7308. #u15987_img {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:80px;
  7314. height:38px;
  7315. }
  7316. #u15987 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:80px;
  7320. top:115px;
  7321. width:80px;
  7322. height:38px;
  7323. display:flex;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. }
  7329. #u15987 .text {
  7330. position:absolute;
  7331. align-self:center;
  7332. padding:2px 2px 2px 0px;
  7333. box-sizing:border-box;
  7334. width:100%;
  7335. }
  7336. #u15987_text {
  7337. border-width:0px;
  7338. word-wrap:break-word;
  7339. text-transform:none;
  7340. visibility:hidden;
  7341. }
  7342. #u15988_img {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:80px;
  7348. height:38px;
  7349. }
  7350. #u15988 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:160px;
  7354. top:115px;
  7355. width:80px;
  7356. height:38px;
  7357. display:flex;
  7358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:12px;
  7362. }
  7363. #u15988 .text {
  7364. position:absolute;
  7365. align-self:center;
  7366. padding:2px 2px 2px 0px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u15988_text {
  7371. border-width:0px;
  7372. word-wrap:break-word;
  7373. text-transform:none;
  7374. visibility:hidden;
  7375. }
  7376. #u15989_img {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:80px;
  7382. height:38px;
  7383. }
  7384. #u15989 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:240px;
  7388. top:115px;
  7389. width:80px;
  7390. height:38px;
  7391. display:flex;
  7392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7393. font-weight:400;
  7394. font-style:normal;
  7395. font-size:12px;
  7396. }
  7397. #u15989 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:2px 2px 2px 0px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u15989_text {
  7405. border-width:0px;
  7406. word-wrap:break-word;
  7407. text-transform:none;
  7408. }
  7409. #u15990_img {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:80px;
  7415. height:38px;
  7416. }
  7417. #u15990 {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:320px;
  7421. top:115px;
  7422. width:80px;
  7423. height:38px;
  7424. display:flex;
  7425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7426. font-weight:400;
  7427. font-style:normal;
  7428. font-size:12px;
  7429. }
  7430. #u15990 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:2px 2px 2px 0px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u15990_text {
  7438. border-width:0px;
  7439. word-wrap:break-word;
  7440. text-transform:none;
  7441. visibility:hidden;
  7442. }
  7443. #u15991_img {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:80px;
  7449. height:38px;
  7450. }
  7451. #u15991 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:400px;
  7455. top:115px;
  7456. width:80px;
  7457. height:38px;
  7458. display:flex;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:12px;
  7463. }
  7464. #u15991 .text {
  7465. position:absolute;
  7466. align-self:center;
  7467. padding:2px 2px 2px 0px;
  7468. box-sizing:border-box;
  7469. width:100%;
  7470. }
  7471. #u15991_text {
  7472. border-width:0px;
  7473. word-wrap:break-word;
  7474. text-transform:none;
  7475. visibility:hidden;
  7476. }
  7477. #u15992_img {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:80px;
  7483. height:38px;
  7484. }
  7485. #u15992 {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:480px;
  7489. top:115px;
  7490. width:80px;
  7491. height:38px;
  7492. display:flex;
  7493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7494. font-weight:400;
  7495. font-style:normal;
  7496. font-size:12px;
  7497. }
  7498. #u15992 .text {
  7499. position:absolute;
  7500. align-self:center;
  7501. padding:2px 2px 2px 0px;
  7502. box-sizing:border-box;
  7503. width:100%;
  7504. }
  7505. #u15992_text {
  7506. border-width:0px;
  7507. word-wrap:break-word;
  7508. text-transform:none;
  7509. visibility:hidden;
  7510. }
  7511. #u15993_img {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:102px;
  7517. height:38px;
  7518. }
  7519. #u15993 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:560px;
  7523. top:115px;
  7524. width:102px;
  7525. height:38px;
  7526. display:flex;
  7527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7528. font-weight:400;
  7529. font-style:normal;
  7530. font-size:12px;
  7531. }
  7532. #u15993 .text {
  7533. position:absolute;
  7534. align-self:center;
  7535. padding:2px 2px 2px 0px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u15993_text {
  7540. border-width:0px;
  7541. word-wrap:break-word;
  7542. text-transform:none;
  7543. }
  7544. #u15994_img {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:90px;
  7550. height:38px;
  7551. }
  7552. #u15994 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:662px;
  7556. top:115px;
  7557. width:90px;
  7558. height:38px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:12px;
  7564. color:#333333;
  7565. }
  7566. #u15994 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:2px 2px 2px 0px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u15994_text {
  7574. border-width:0px;
  7575. word-wrap:break-word;
  7576. text-transform:none;
  7577. }
  7578. #u15995_img {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:80px;
  7584. height:38px;
  7585. }
  7586. #u15995 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:752px;
  7590. top:115px;
  7591. width:80px;
  7592. height:38px;
  7593. display:flex;
  7594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7595. font-weight:400;
  7596. font-style:normal;
  7597. font-size:12px;
  7598. color:#AAAAAA;
  7599. }
  7600. #u15995 .text {
  7601. position:absolute;
  7602. align-self:center;
  7603. padding:2px 2px 2px 0px;
  7604. box-sizing:border-box;
  7605. width:100%;
  7606. }
  7607. #u15995_text {
  7608. border-width:0px;
  7609. word-wrap:break-word;
  7610. text-transform:none;
  7611. }
  7612. #u15996_img {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:0px;
  7616. top:0px;
  7617. width:80px;
  7618. height:38px;
  7619. }
  7620. #u15996 {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:832px;
  7624. top:115px;
  7625. width:80px;
  7626. height:38px;
  7627. display:flex;
  7628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:12px;
  7632. color:#333333;
  7633. }
  7634. #u15996 .text {
  7635. position:absolute;
  7636. align-self:center;
  7637. padding:2px 2px 2px 0px;
  7638. box-sizing:border-box;
  7639. width:100%;
  7640. }
  7641. #u15996_text {
  7642. border-width:0px;
  7643. word-wrap:break-word;
  7644. text-transform:none;
  7645. visibility:hidden;
  7646. }
  7647. #u15997_img {
  7648. border-width:0px;
  7649. position:absolute;
  7650. left:0px;
  7651. top:0px;
  7652. width:80px;
  7653. height:38px;
  7654. }
  7655. #u15997 {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:912px;
  7659. top:115px;
  7660. width:80px;
  7661. height:38px;
  7662. display:flex;
  7663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7664. font-weight:400;
  7665. font-style:normal;
  7666. font-size:12px;
  7667. color:#333333;
  7668. }
  7669. #u15997 .text {
  7670. position:absolute;
  7671. align-self:center;
  7672. padding:2px 2px 2px 0px;
  7673. box-sizing:border-box;
  7674. width:100%;
  7675. }
  7676. #u15997_text {
  7677. border-width:0px;
  7678. word-wrap:break-word;
  7679. text-transform:none;
  7680. }
  7681. #u15998_img {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:80px;
  7687. height:38px;
  7688. }
  7689. #u15998 {
  7690. border-width:0px;
  7691. position:absolute;
  7692. left:992px;
  7693. top:115px;
  7694. width:80px;
  7695. height:38px;
  7696. display:flex;
  7697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7698. font-weight:400;
  7699. font-style:normal;
  7700. font-size:12px;
  7701. color:#AAAAAA;
  7702. }
  7703. #u15998 .text {
  7704. position:absolute;
  7705. align-self:center;
  7706. padding:2px 2px 2px 0px;
  7707. box-sizing:border-box;
  7708. width:100%;
  7709. }
  7710. #u15998_text {
  7711. border-width:0px;
  7712. word-wrap:break-word;
  7713. text-transform:none;
  7714. }
  7715. #u15999_img {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:80px;
  7721. height:38px;
  7722. }
  7723. #u15999 {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:1072px;
  7727. top:115px;
  7728. width:80px;
  7729. height:38px;
  7730. display:flex;
  7731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7732. font-weight:400;
  7733. font-style:normal;
  7734. font-size:12px;
  7735. color:#AAAAAA;
  7736. }
  7737. #u15999 .text {
  7738. position:absolute;
  7739. align-self:center;
  7740. padding:2px 2px 2px 0px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u15999_text {
  7745. border-width:0px;
  7746. word-wrap:break-word;
  7747. text-transform:none;
  7748. }
  7749. #u16000_img {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:180px;
  7755. height:38px;
  7756. }
  7757. #u16000 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:1152px;
  7761. top:115px;
  7762. width:180px;
  7763. height:38px;
  7764. display:flex;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:12px;
  7769. color:#1890FF;
  7770. }
  7771. #u16000 .text {
  7772. position:absolute;
  7773. align-self:center;
  7774. padding:2px 2px 2px 0px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u16000_text {
  7779. border-width:0px;
  7780. word-wrap:break-word;
  7781. text-transform:none;
  7782. }
  7783. #u16001_img {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:0px;
  7787. top:0px;
  7788. width:80px;
  7789. height:38px;
  7790. }
  7791. #u16001 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:153px;
  7796. width:80px;
  7797. height:38px;
  7798. display:flex;
  7799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:12px;
  7803. }
  7804. #u16001 .text {
  7805. position:absolute;
  7806. align-self:center;
  7807. padding:2px 2px 2px 0px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u16001_text {
  7812. border-width:0px;
  7813. word-wrap:break-word;
  7814. text-transform:none;
  7815. visibility:hidden;
  7816. }
  7817. #u16002_img {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:0px;
  7821. top:0px;
  7822. width:80px;
  7823. height:38px;
  7824. }
  7825. #u16002 {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:80px;
  7829. top:153px;
  7830. width:80px;
  7831. height:38px;
  7832. display:flex;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:12px;
  7837. }
  7838. #u16002 .text {
  7839. position:absolute;
  7840. align-self:center;
  7841. padding:2px 2px 2px 0px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u16002_text {
  7846. border-width:0px;
  7847. word-wrap:break-word;
  7848. text-transform:none;
  7849. visibility:hidden;
  7850. }
  7851. #u16003_img {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:80px;
  7857. height:38px;
  7858. }
  7859. #u16003 {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:160px;
  7863. top:153px;
  7864. width:80px;
  7865. height:38px;
  7866. display:flex;
  7867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:12px;
  7871. }
  7872. #u16003 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:2px 2px 2px 0px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u16003_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. visibility:hidden;
  7884. }
  7885. #u16004_img {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:80px;
  7891. height:38px;
  7892. }
  7893. #u16004 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:240px;
  7897. top:153px;
  7898. width:80px;
  7899. height:38px;
  7900. display:flex;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:12px;
  7905. }
  7906. #u16004 .text {
  7907. position:absolute;
  7908. align-self:center;
  7909. padding:2px 2px 2px 0px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u16004_text {
  7914. border-width:0px;
  7915. word-wrap:break-word;
  7916. text-transform:none;
  7917. }
  7918. #u16005_img {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:80px;
  7924. height:38px;
  7925. }
  7926. #u16005 {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:320px;
  7930. top:153px;
  7931. width:80px;
  7932. height:38px;
  7933. display:flex;
  7934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7935. font-weight:400;
  7936. font-style:normal;
  7937. font-size:12px;
  7938. }
  7939. #u16005 .text {
  7940. position:absolute;
  7941. align-self:center;
  7942. padding:2px 2px 2px 0px;
  7943. box-sizing:border-box;
  7944. width:100%;
  7945. }
  7946. #u16005_text {
  7947. border-width:0px;
  7948. word-wrap:break-word;
  7949. text-transform:none;
  7950. visibility:hidden;
  7951. }
  7952. #u16006_img {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:80px;
  7958. height:38px;
  7959. }
  7960. #u16006 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:400px;
  7964. top:153px;
  7965. width:80px;
  7966. height:38px;
  7967. display:flex;
  7968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7969. font-weight:400;
  7970. font-style:normal;
  7971. font-size:12px;
  7972. }
  7973. #u16006 .text {
  7974. position:absolute;
  7975. align-self:center;
  7976. padding:2px 2px 2px 0px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u16006_text {
  7981. border-width:0px;
  7982. word-wrap:break-word;
  7983. text-transform:none;
  7984. visibility:hidden;
  7985. }
  7986. #u16007_img {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:80px;
  7992. height:38px;
  7993. }
  7994. #u16007 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:480px;
  7998. top:153px;
  7999. width:80px;
  8000. height:38px;
  8001. display:flex;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:12px;
  8006. }
  8007. #u16007 .text {
  8008. position:absolute;
  8009. align-self:center;
  8010. padding:2px 2px 2px 0px;
  8011. box-sizing:border-box;
  8012. width:100%;
  8013. }
  8014. #u16007_text {
  8015. border-width:0px;
  8016. word-wrap:break-word;
  8017. text-transform:none;
  8018. visibility:hidden;
  8019. }
  8020. #u16008_img {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:102px;
  8026. height:38px;
  8027. }
  8028. #u16008 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:560px;
  8032. top:153px;
  8033. width:102px;
  8034. height:38px;
  8035. display:flex;
  8036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:12px;
  8040. }
  8041. #u16008 .text {
  8042. position:absolute;
  8043. align-self:center;
  8044. padding:2px 2px 2px 0px;
  8045. box-sizing:border-box;
  8046. width:100%;
  8047. }
  8048. #u16008_text {
  8049. border-width:0px;
  8050. word-wrap:break-word;
  8051. text-transform:none;
  8052. visibility:hidden;
  8053. }
  8054. #u16009_img {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:90px;
  8060. height:38px;
  8061. }
  8062. #u16009 {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:662px;
  8066. top:153px;
  8067. width:90px;
  8068. height:38px;
  8069. display:flex;
  8070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8071. font-weight:400;
  8072. font-style:normal;
  8073. font-size:12px;
  8074. color:#D7D7D7;
  8075. }
  8076. #u16009 .text {
  8077. position:absolute;
  8078. align-self:center;
  8079. padding:2px 2px 2px 0px;
  8080. box-sizing:border-box;
  8081. width:100%;
  8082. }
  8083. #u16009_text {
  8084. border-width:0px;
  8085. word-wrap:break-word;
  8086. text-transform:none;
  8087. visibility:hidden;
  8088. }
  8089. #u16010_img {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:80px;
  8095. height:38px;
  8096. }
  8097. #u16010 {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:752px;
  8101. top:153px;
  8102. width:80px;
  8103. height:38px;
  8104. display:flex;
  8105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:12px;
  8109. color:#D7D7D7;
  8110. }
  8111. #u16010 .text {
  8112. position:absolute;
  8113. align-self:center;
  8114. padding:2px 2px 2px 0px;
  8115. box-sizing:border-box;
  8116. width:100%;
  8117. }
  8118. #u16010_text {
  8119. border-width:0px;
  8120. word-wrap:break-word;
  8121. text-transform:none;
  8122. visibility:hidden;
  8123. }
  8124. #u16011_img {
  8125. border-width:0px;
  8126. position:absolute;
  8127. left:0px;
  8128. top:0px;
  8129. width:80px;
  8130. height:38px;
  8131. }
  8132. #u16011 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:832px;
  8136. top:153px;
  8137. width:80px;
  8138. height:38px;
  8139. display:flex;
  8140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. font-size:12px;
  8144. color:#D7D7D7;
  8145. }
  8146. #u16011 .text {
  8147. position:absolute;
  8148. align-self:center;
  8149. padding:2px 2px 2px 0px;
  8150. box-sizing:border-box;
  8151. width:100%;
  8152. }
  8153. #u16011_text {
  8154. border-width:0px;
  8155. word-wrap:break-word;
  8156. text-transform:none;
  8157. visibility:hidden;
  8158. }
  8159. #u16012_img {
  8160. border-width:0px;
  8161. position:absolute;
  8162. left:0px;
  8163. top:0px;
  8164. width:80px;
  8165. height:38px;
  8166. }
  8167. #u16012 {
  8168. border-width:0px;
  8169. position:absolute;
  8170. left:912px;
  8171. top:153px;
  8172. width:80px;
  8173. height:38px;
  8174. display:flex;
  8175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8176. font-weight:400;
  8177. font-style:normal;
  8178. font-size:12px;
  8179. color:#D7D7D7;
  8180. }
  8181. #u16012 .text {
  8182. position:absolute;
  8183. align-self:center;
  8184. padding:2px 2px 2px 0px;
  8185. box-sizing:border-box;
  8186. width:100%;
  8187. }
  8188. #u16012_text {
  8189. border-width:0px;
  8190. word-wrap:break-word;
  8191. text-transform:none;
  8192. }
  8193. #u16013_img {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:0px;
  8197. top:0px;
  8198. width:80px;
  8199. height:38px;
  8200. }
  8201. #u16013 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:992px;
  8205. top:153px;
  8206. width:80px;
  8207. height:38px;
  8208. display:flex;
  8209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. font-size:12px;
  8213. color:#D7D7D7;
  8214. }
  8215. #u16013 .text {
  8216. position:absolute;
  8217. align-self:center;
  8218. padding:2px 2px 2px 0px;
  8219. box-sizing:border-box;
  8220. width:100%;
  8221. }
  8222. #u16013_text {
  8223. border-width:0px;
  8224. word-wrap:break-word;
  8225. text-transform:none;
  8226. visibility:hidden;
  8227. }
  8228. #u16014_img {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:80px;
  8234. height:38px;
  8235. }
  8236. #u16014 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:1072px;
  8240. top:153px;
  8241. width:80px;
  8242. height:38px;
  8243. display:flex;
  8244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:12px;
  8248. color:#D7D7D7;
  8249. }
  8250. #u16014 .text {
  8251. position:absolute;
  8252. align-self:center;
  8253. padding:2px 2px 2px 0px;
  8254. box-sizing:border-box;
  8255. width:100%;
  8256. }
  8257. #u16014_text {
  8258. border-width:0px;
  8259. word-wrap:break-word;
  8260. text-transform:none;
  8261. visibility:hidden;
  8262. }
  8263. #u16015_img {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:0px;
  8267. top:0px;
  8268. width:180px;
  8269. height:38px;
  8270. }
  8271. #u16015 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:1152px;
  8275. top:153px;
  8276. width:180px;
  8277. height:38px;
  8278. display:flex;
  8279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8280. font-weight:400;
  8281. font-style:normal;
  8282. font-size:12px;
  8283. color:#1890FF;
  8284. }
  8285. #u16015 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:2px 2px 2px 0px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u16015_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. visibility:hidden;
  8297. }
  8298. #u16016_img {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:80px;
  8304. height:35px;
  8305. }
  8306. #u16016 {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:191px;
  8311. width:80px;
  8312. height:35px;
  8313. display:flex;
  8314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8315. font-weight:400;
  8316. font-style:normal;
  8317. font-size:12px;
  8318. color:#606266;
  8319. }
  8320. #u16016 .text {
  8321. position:absolute;
  8322. align-self:center;
  8323. padding:2px 2px 2px 0px;
  8324. box-sizing:border-box;
  8325. width:100%;
  8326. }
  8327. #u16016_text {
  8328. border-width:0px;
  8329. word-wrap:break-word;
  8330. text-transform:none;
  8331. visibility:hidden;
  8332. }
  8333. #u16017_img {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:80px;
  8339. height:35px;
  8340. }
  8341. #u16017 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:80px;
  8345. top:191px;
  8346. width:80px;
  8347. height:35px;
  8348. display:flex;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:12px;
  8353. color:#606266;
  8354. }
  8355. #u16017 .text {
  8356. position:absolute;
  8357. align-self:center;
  8358. padding:2px 2px 2px 0px;
  8359. box-sizing:border-box;
  8360. width:100%;
  8361. }
  8362. #u16017_text {
  8363. border-width:0px;
  8364. word-wrap:break-word;
  8365. text-transform:none;
  8366. visibility:hidden;
  8367. }
  8368. #u16018_img {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:0px;
  8372. top:0px;
  8373. width:80px;
  8374. height:35px;
  8375. }
  8376. #u16018 {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:160px;
  8380. top:191px;
  8381. width:80px;
  8382. height:35px;
  8383. display:flex;
  8384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8385. font-weight:400;
  8386. font-style:normal;
  8387. font-size:12px;
  8388. color:#606266;
  8389. }
  8390. #u16018 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:2px 2px 2px 0px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u16018_text {
  8398. border-width:0px;
  8399. word-wrap:break-word;
  8400. text-transform:none;
  8401. visibility:hidden;
  8402. }
  8403. #u16019_img {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:80px;
  8409. height:35px;
  8410. }
  8411. #u16019 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:240px;
  8415. top:191px;
  8416. width:80px;
  8417. height:35px;
  8418. display:flex;
  8419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. font-size:12px;
  8423. color:#606266;
  8424. }
  8425. #u16019 .text {
  8426. position:absolute;
  8427. align-self:center;
  8428. padding:2px 2px 2px 0px;
  8429. box-sizing:border-box;
  8430. width:100%;
  8431. }
  8432. #u16019_text {
  8433. border-width:0px;
  8434. word-wrap:break-word;
  8435. text-transform:none;
  8436. visibility:hidden;
  8437. }
  8438. #u16020_img {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:0px;
  8442. top:0px;
  8443. width:80px;
  8444. height:35px;
  8445. }
  8446. #u16020 {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:320px;
  8450. top:191px;
  8451. width:80px;
  8452. height:35px;
  8453. display:flex;
  8454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8455. font-weight:400;
  8456. font-style:normal;
  8457. font-size:12px;
  8458. color:#606266;
  8459. }
  8460. #u16020 .text {
  8461. position:absolute;
  8462. align-self:center;
  8463. padding:2px 2px 2px 0px;
  8464. box-sizing:border-box;
  8465. width:100%;
  8466. }
  8467. #u16020_text {
  8468. border-width:0px;
  8469. word-wrap:break-word;
  8470. text-transform:none;
  8471. visibility:hidden;
  8472. }
  8473. #u16021_img {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:80px;
  8479. height:35px;
  8480. }
  8481. #u16021 {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:400px;
  8485. top:191px;
  8486. width:80px;
  8487. height:35px;
  8488. display:flex;
  8489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:12px;
  8493. color:#606266;
  8494. }
  8495. #u16021 .text {
  8496. position:absolute;
  8497. align-self:center;
  8498. padding:2px 2px 2px 0px;
  8499. box-sizing:border-box;
  8500. width:100%;
  8501. }
  8502. #u16021_text {
  8503. border-width:0px;
  8504. word-wrap:break-word;
  8505. text-transform:none;
  8506. visibility:hidden;
  8507. }
  8508. #u16022_img {
  8509. border-width:0px;
  8510. position:absolute;
  8511. left:0px;
  8512. top:0px;
  8513. width:80px;
  8514. height:35px;
  8515. }
  8516. #u16022 {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:480px;
  8520. top:191px;
  8521. width:80px;
  8522. height:35px;
  8523. display:flex;
  8524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8525. font-weight:400;
  8526. font-style:normal;
  8527. font-size:12px;
  8528. color:#606266;
  8529. }
  8530. #u16022 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 0px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u16022_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. visibility:hidden;
  8542. }
  8543. #u16023_img {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:102px;
  8549. height:35px;
  8550. }
  8551. #u16023 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:560px;
  8555. top:191px;
  8556. width:102px;
  8557. height:35px;
  8558. display:flex;
  8559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8560. font-weight:400;
  8561. font-style:normal;
  8562. font-size:12px;
  8563. color:#606266;
  8564. }
  8565. #u16023 .text {
  8566. position:absolute;
  8567. align-self:center;
  8568. padding:2px 2px 2px 0px;
  8569. box-sizing:border-box;
  8570. width:100%;
  8571. }
  8572. #u16023_text {
  8573. border-width:0px;
  8574. word-wrap:break-word;
  8575. text-transform:none;
  8576. visibility:hidden;
  8577. }
  8578. #u16024_img {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:90px;
  8584. height:35px;
  8585. }
  8586. #u16024 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:662px;
  8590. top:191px;
  8591. width:90px;
  8592. height:35px;
  8593. display:flex;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:12px;
  8598. color:#606266;
  8599. }
  8600. #u16024 .text {
  8601. position:absolute;
  8602. align-self:center;
  8603. padding:2px 2px 2px 0px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u16024_text {
  8608. border-width:0px;
  8609. word-wrap:break-word;
  8610. text-transform:none;
  8611. visibility:hidden;
  8612. }
  8613. #u16025_img {
  8614. border-width:0px;
  8615. position:absolute;
  8616. left:0px;
  8617. top:0px;
  8618. width:80px;
  8619. height:35px;
  8620. }
  8621. #u16025 {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:752px;
  8625. top:191px;
  8626. width:80px;
  8627. height:35px;
  8628. display:flex;
  8629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8630. font-weight:400;
  8631. font-style:normal;
  8632. font-size:12px;
  8633. color:#606266;
  8634. }
  8635. #u16025 .text {
  8636. position:absolute;
  8637. align-self:center;
  8638. padding:2px 2px 2px 0px;
  8639. box-sizing:border-box;
  8640. width:100%;
  8641. }
  8642. #u16025_text {
  8643. border-width:0px;
  8644. word-wrap:break-word;
  8645. text-transform:none;
  8646. visibility:hidden;
  8647. }
  8648. #u16026_img {
  8649. border-width:0px;
  8650. position:absolute;
  8651. left:0px;
  8652. top:0px;
  8653. width:80px;
  8654. height:35px;
  8655. }
  8656. #u16026 {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:832px;
  8660. top:191px;
  8661. width:80px;
  8662. height:35px;
  8663. display:flex;
  8664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8665. font-weight:400;
  8666. font-style:normal;
  8667. font-size:12px;
  8668. color:#606266;
  8669. }
  8670. #u16026 .text {
  8671. position:absolute;
  8672. align-self:center;
  8673. padding:2px 2px 2px 0px;
  8674. box-sizing:border-box;
  8675. width:100%;
  8676. }
  8677. #u16026_text {
  8678. border-width:0px;
  8679. word-wrap:break-word;
  8680. text-transform:none;
  8681. visibility:hidden;
  8682. }
  8683. #u16027_img {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:80px;
  8689. height:35px;
  8690. }
  8691. #u16027 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:912px;
  8695. top:191px;
  8696. width:80px;
  8697. height:35px;
  8698. display:flex;
  8699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8700. font-weight:400;
  8701. font-style:normal;
  8702. font-size:12px;
  8703. color:#606266;
  8704. }
  8705. #u16027 .text {
  8706. position:absolute;
  8707. align-self:center;
  8708. padding:2px 2px 2px 0px;
  8709. box-sizing:border-box;
  8710. width:100%;
  8711. }
  8712. #u16027_text {
  8713. border-width:0px;
  8714. word-wrap:break-word;
  8715. text-transform:none;
  8716. visibility:hidden;
  8717. }
  8718. #u16028_img {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:80px;
  8724. height:35px;
  8725. }
  8726. #u16028 {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:992px;
  8730. top:191px;
  8731. width:80px;
  8732. height:35px;
  8733. display:flex;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:12px;
  8738. color:#606266;
  8739. }
  8740. #u16028 .text {
  8741. position:absolute;
  8742. align-self:center;
  8743. padding:2px 2px 2px 0px;
  8744. box-sizing:border-box;
  8745. width:100%;
  8746. }
  8747. #u16028_text {
  8748. border-width:0px;
  8749. word-wrap:break-word;
  8750. text-transform:none;
  8751. visibility:hidden;
  8752. }
  8753. #u16029_img {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:0px;
  8757. top:0px;
  8758. width:80px;
  8759. height:35px;
  8760. }
  8761. #u16029 {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:1072px;
  8765. top:191px;
  8766. width:80px;
  8767. height:35px;
  8768. display:flex;
  8769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8770. font-weight:400;
  8771. font-style:normal;
  8772. font-size:12px;
  8773. color:#606266;
  8774. }
  8775. #u16029 .text {
  8776. position:absolute;
  8777. align-self:center;
  8778. padding:2px 2px 2px 0px;
  8779. box-sizing:border-box;
  8780. width:100%;
  8781. }
  8782. #u16029_text {
  8783. border-width:0px;
  8784. word-wrap:break-word;
  8785. text-transform:none;
  8786. visibility:hidden;
  8787. }
  8788. #u16030_img {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:180px;
  8794. height:35px;
  8795. }
  8796. #u16030 {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:1152px;
  8800. top:191px;
  8801. width:180px;
  8802. height:35px;
  8803. display:flex;
  8804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8805. font-weight:400;
  8806. font-style:normal;
  8807. font-size:12px;
  8808. color:#02A7F0;
  8809. }
  8810. #u16030 .text {
  8811. position:absolute;
  8812. align-self:center;
  8813. padding:2px 2px 2px 0px;
  8814. box-sizing:border-box;
  8815. width:100%;
  8816. }
  8817. #u16030_text {
  8818. border-width:0px;
  8819. word-wrap:break-word;
  8820. text-transform:none;
  8821. visibility:hidden;
  8822. }
  8823. #u16031_img {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:0px;
  8827. top:0px;
  8828. width:80px;
  8829. height:35px;
  8830. }
  8831. #u16031 {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:0px;
  8835. top:226px;
  8836. width:80px;
  8837. height:35px;
  8838. display:flex;
  8839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:12px;
  8843. color:#606266;
  8844. }
  8845. #u16031 .text {
  8846. position:absolute;
  8847. align-self:center;
  8848. padding:2px 2px 2px 0px;
  8849. box-sizing:border-box;
  8850. width:100%;
  8851. }
  8852. #u16031_text {
  8853. border-width:0px;
  8854. word-wrap:break-word;
  8855. text-transform:none;
  8856. visibility:hidden;
  8857. }
  8858. #u16032_img {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:80px;
  8864. height:35px;
  8865. }
  8866. #u16032 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:80px;
  8870. top:226px;
  8871. width:80px;
  8872. height:35px;
  8873. display:flex;
  8874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8875. font-weight:400;
  8876. font-style:normal;
  8877. font-size:12px;
  8878. color:#606266;
  8879. }
  8880. #u16032 .text {
  8881. position:absolute;
  8882. align-self:center;
  8883. padding:2px 2px 2px 0px;
  8884. box-sizing:border-box;
  8885. width:100%;
  8886. }
  8887. #u16032_text {
  8888. border-width:0px;
  8889. word-wrap:break-word;
  8890. text-transform:none;
  8891. visibility:hidden;
  8892. }
  8893. #u16033_img {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:80px;
  8899. height:35px;
  8900. }
  8901. #u16033 {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:160px;
  8905. top:226px;
  8906. width:80px;
  8907. height:35px;
  8908. display:flex;
  8909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8910. font-weight:400;
  8911. font-style:normal;
  8912. font-size:12px;
  8913. color:#606266;
  8914. }
  8915. #u16033 .text {
  8916. position:absolute;
  8917. align-self:center;
  8918. padding:2px 2px 2px 0px;
  8919. box-sizing:border-box;
  8920. width:100%;
  8921. }
  8922. #u16033_text {
  8923. border-width:0px;
  8924. word-wrap:break-word;
  8925. text-transform:none;
  8926. visibility:hidden;
  8927. }
  8928. #u16034_img {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:0px;
  8932. top:0px;
  8933. width:80px;
  8934. height:35px;
  8935. }
  8936. #u16034 {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:240px;
  8940. top:226px;
  8941. width:80px;
  8942. height:35px;
  8943. display:flex;
  8944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:12px;
  8948. color:#606266;
  8949. }
  8950. #u16034 .text {
  8951. position:absolute;
  8952. align-self:center;
  8953. padding:2px 2px 2px 0px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u16034_text {
  8958. border-width:0px;
  8959. word-wrap:break-word;
  8960. text-transform:none;
  8961. visibility:hidden;
  8962. }
  8963. #u16035_img {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:80px;
  8969. height:35px;
  8970. }
  8971. #u16035 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:320px;
  8975. top:226px;
  8976. width:80px;
  8977. height:35px;
  8978. display:flex;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:12px;
  8983. color:#606266;
  8984. }
  8985. #u16035 .text {
  8986. position:absolute;
  8987. align-self:center;
  8988. padding:2px 2px 2px 0px;
  8989. box-sizing:border-box;
  8990. width:100%;
  8991. }
  8992. #u16035_text {
  8993. border-width:0px;
  8994. word-wrap:break-word;
  8995. text-transform:none;
  8996. visibility:hidden;
  8997. }
  8998. #u16036_img {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:80px;
  9004. height:35px;
  9005. }
  9006. #u16036 {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:400px;
  9010. top:226px;
  9011. width:80px;
  9012. height:35px;
  9013. display:flex;
  9014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9015. font-weight:400;
  9016. font-style:normal;
  9017. font-size:12px;
  9018. color:#606266;
  9019. }
  9020. #u16036 .text {
  9021. position:absolute;
  9022. align-self:center;
  9023. padding:2px 2px 2px 0px;
  9024. box-sizing:border-box;
  9025. width:100%;
  9026. }
  9027. #u16036_text {
  9028. border-width:0px;
  9029. word-wrap:break-word;
  9030. text-transform:none;
  9031. visibility:hidden;
  9032. }
  9033. #u16037_img {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:0px;
  9038. width:80px;
  9039. height:35px;
  9040. }
  9041. #u16037 {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:480px;
  9045. top:226px;
  9046. width:80px;
  9047. height:35px;
  9048. display:flex;
  9049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:12px;
  9053. color:#606266;
  9054. }
  9055. #u16037 .text {
  9056. position:absolute;
  9057. align-self:center;
  9058. padding:2px 2px 2px 0px;
  9059. box-sizing:border-box;
  9060. width:100%;
  9061. }
  9062. #u16037_text {
  9063. border-width:0px;
  9064. word-wrap:break-word;
  9065. text-transform:none;
  9066. visibility:hidden;
  9067. }
  9068. #u16038_img {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:0px;
  9072. top:0px;
  9073. width:102px;
  9074. height:35px;
  9075. }
  9076. #u16038 {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:560px;
  9080. top:226px;
  9081. width:102px;
  9082. height:35px;
  9083. display:flex;
  9084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9085. font-weight:400;
  9086. font-style:normal;
  9087. font-size:12px;
  9088. color:#606266;
  9089. }
  9090. #u16038 .text {
  9091. position:absolute;
  9092. align-self:center;
  9093. padding:2px 2px 2px 0px;
  9094. box-sizing:border-box;
  9095. width:100%;
  9096. }
  9097. #u16038_text {
  9098. border-width:0px;
  9099. word-wrap:break-word;
  9100. text-transform:none;
  9101. visibility:hidden;
  9102. }
  9103. #u16039_img {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:0px;
  9107. top:0px;
  9108. width:90px;
  9109. height:35px;
  9110. }
  9111. #u16039 {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:662px;
  9115. top:226px;
  9116. width:90px;
  9117. height:35px;
  9118. display:flex;
  9119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9120. font-weight:400;
  9121. font-style:normal;
  9122. font-size:12px;
  9123. color:#606266;
  9124. }
  9125. #u16039 .text {
  9126. position:absolute;
  9127. align-self:center;
  9128. padding:2px 2px 2px 0px;
  9129. box-sizing:border-box;
  9130. width:100%;
  9131. }
  9132. #u16039_text {
  9133. border-width:0px;
  9134. word-wrap:break-word;
  9135. text-transform:none;
  9136. visibility:hidden;
  9137. }
  9138. #u16040_img {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:0px;
  9142. top:0px;
  9143. width:80px;
  9144. height:35px;
  9145. }
  9146. #u16040 {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:752px;
  9150. top:226px;
  9151. width:80px;
  9152. height:35px;
  9153. display:flex;
  9154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9155. font-weight:400;
  9156. font-style:normal;
  9157. font-size:12px;
  9158. color:#606266;
  9159. }
  9160. #u16040 .text {
  9161. position:absolute;
  9162. align-self:center;
  9163. padding:2px 2px 2px 0px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u16040_text {
  9168. border-width:0px;
  9169. word-wrap:break-word;
  9170. text-transform:none;
  9171. visibility:hidden;
  9172. }
  9173. #u16041_img {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:80px;
  9179. height:35px;
  9180. }
  9181. #u16041 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:832px;
  9185. top:226px;
  9186. width:80px;
  9187. height:35px;
  9188. display:flex;
  9189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9190. font-weight:400;
  9191. font-style:normal;
  9192. font-size:12px;
  9193. color:#606266;
  9194. }
  9195. #u16041 .text {
  9196. position:absolute;
  9197. align-self:center;
  9198. padding:2px 2px 2px 0px;
  9199. box-sizing:border-box;
  9200. width:100%;
  9201. }
  9202. #u16041_text {
  9203. border-width:0px;
  9204. word-wrap:break-word;
  9205. text-transform:none;
  9206. visibility:hidden;
  9207. }
  9208. #u16042_img {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:80px;
  9214. height:35px;
  9215. }
  9216. #u16042 {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:912px;
  9220. top:226px;
  9221. width:80px;
  9222. height:35px;
  9223. display:flex;
  9224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9225. font-weight:400;
  9226. font-style:normal;
  9227. font-size:12px;
  9228. color:#606266;
  9229. }
  9230. #u16042 .text {
  9231. position:absolute;
  9232. align-self:center;
  9233. padding:2px 2px 2px 0px;
  9234. box-sizing:border-box;
  9235. width:100%;
  9236. }
  9237. #u16042_text {
  9238. border-width:0px;
  9239. word-wrap:break-word;
  9240. text-transform:none;
  9241. visibility:hidden;
  9242. }
  9243. #u16043_img {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:80px;
  9249. height:35px;
  9250. }
  9251. #u16043 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:992px;
  9255. top:226px;
  9256. width:80px;
  9257. height:35px;
  9258. display:flex;
  9259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9260. font-weight:400;
  9261. font-style:normal;
  9262. font-size:12px;
  9263. color:#606266;
  9264. }
  9265. #u16043 .text {
  9266. position:absolute;
  9267. align-self:center;
  9268. padding:2px 2px 2px 0px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u16043_text {
  9273. border-width:0px;
  9274. word-wrap:break-word;
  9275. text-transform:none;
  9276. visibility:hidden;
  9277. }
  9278. #u16044_img {
  9279. border-width:0px;
  9280. position:absolute;
  9281. left:0px;
  9282. top:0px;
  9283. width:80px;
  9284. height:35px;
  9285. }
  9286. #u16044 {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:1072px;
  9290. top:226px;
  9291. width:80px;
  9292. height:35px;
  9293. display:flex;
  9294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9295. font-weight:400;
  9296. font-style:normal;
  9297. font-size:12px;
  9298. color:#606266;
  9299. }
  9300. #u16044 .text {
  9301. position:absolute;
  9302. align-self:center;
  9303. padding:2px 2px 2px 0px;
  9304. box-sizing:border-box;
  9305. width:100%;
  9306. }
  9307. #u16044_text {
  9308. border-width:0px;
  9309. word-wrap:break-word;
  9310. text-transform:none;
  9311. visibility:hidden;
  9312. }
  9313. #u16045_img {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:180px;
  9319. height:35px;
  9320. }
  9321. #u16045 {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:1152px;
  9325. top:226px;
  9326. width:180px;
  9327. height:35px;
  9328. display:flex;
  9329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9330. font-weight:400;
  9331. font-style:normal;
  9332. font-size:12px;
  9333. color:#02A7F0;
  9334. }
  9335. #u16045 .text {
  9336. position:absolute;
  9337. align-self:center;
  9338. padding:2px 2px 2px 0px;
  9339. box-sizing:border-box;
  9340. width:100%;
  9341. }
  9342. #u16045_text {
  9343. border-width:0px;
  9344. word-wrap:break-word;
  9345. text-transform:none;
  9346. visibility:hidden;
  9347. }
  9348. #u16046_img {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:80px;
  9354. height:35px;
  9355. }
  9356. #u16046 {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:261px;
  9361. width:80px;
  9362. height:35px;
  9363. display:flex;
  9364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9365. font-weight:400;
  9366. font-style:normal;
  9367. font-size:12px;
  9368. color:#606266;
  9369. }
  9370. #u16046 .text {
  9371. position:absolute;
  9372. align-self:center;
  9373. padding:2px 2px 2px 0px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u16046_text {
  9378. border-width:0px;
  9379. word-wrap:break-word;
  9380. text-transform:none;
  9381. visibility:hidden;
  9382. }
  9383. #u16047_img {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:80px;
  9389. height:35px;
  9390. }
  9391. #u16047 {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:80px;
  9395. top:261px;
  9396. width:80px;
  9397. height:35px;
  9398. display:flex;
  9399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9400. font-weight:400;
  9401. font-style:normal;
  9402. font-size:12px;
  9403. color:#606266;
  9404. }
  9405. #u16047 .text {
  9406. position:absolute;
  9407. align-self:center;
  9408. padding:2px 2px 2px 0px;
  9409. box-sizing:border-box;
  9410. width:100%;
  9411. }
  9412. #u16047_text {
  9413. border-width:0px;
  9414. word-wrap:break-word;
  9415. text-transform:none;
  9416. visibility:hidden;
  9417. }
  9418. #u16048_img {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:0px;
  9422. top:0px;
  9423. width:80px;
  9424. height:35px;
  9425. }
  9426. #u16048 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:160px;
  9430. top:261px;
  9431. width:80px;
  9432. height:35px;
  9433. display:flex;
  9434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:12px;
  9438. color:#606266;
  9439. }
  9440. #u16048 .text {
  9441. position:absolute;
  9442. align-self:center;
  9443. padding:2px 2px 2px 0px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u16048_text {
  9448. border-width:0px;
  9449. word-wrap:break-word;
  9450. text-transform:none;
  9451. visibility:hidden;
  9452. }
  9453. #u16049_img {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:80px;
  9459. height:35px;
  9460. }
  9461. #u16049 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:240px;
  9465. top:261px;
  9466. width:80px;
  9467. height:35px;
  9468. display:flex;
  9469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:12px;
  9473. color:#606266;
  9474. }
  9475. #u16049 .text {
  9476. position:absolute;
  9477. align-self:center;
  9478. padding:2px 2px 2px 0px;
  9479. box-sizing:border-box;
  9480. width:100%;
  9481. }
  9482. #u16049_text {
  9483. border-width:0px;
  9484. word-wrap:break-word;
  9485. text-transform:none;
  9486. visibility:hidden;
  9487. }
  9488. #u16050_img {
  9489. border-width:0px;
  9490. position:absolute;
  9491. left:0px;
  9492. top:0px;
  9493. width:80px;
  9494. height:35px;
  9495. }
  9496. #u16050 {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:320px;
  9500. top:261px;
  9501. width:80px;
  9502. height:35px;
  9503. display:flex;
  9504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9505. font-weight:400;
  9506. font-style:normal;
  9507. font-size:12px;
  9508. color:#606266;
  9509. }
  9510. #u16050 .text {
  9511. position:absolute;
  9512. align-self:center;
  9513. padding:2px 2px 2px 0px;
  9514. box-sizing:border-box;
  9515. width:100%;
  9516. }
  9517. #u16050_text {
  9518. border-width:0px;
  9519. word-wrap:break-word;
  9520. text-transform:none;
  9521. visibility:hidden;
  9522. }
  9523. #u16051_img {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:0px;
  9527. top:0px;
  9528. width:80px;
  9529. height:35px;
  9530. }
  9531. #u16051 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:400px;
  9535. top:261px;
  9536. width:80px;
  9537. height:35px;
  9538. display:flex;
  9539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9540. font-weight:400;
  9541. font-style:normal;
  9542. font-size:12px;
  9543. color:#606266;
  9544. }
  9545. #u16051 .text {
  9546. position:absolute;
  9547. align-self:center;
  9548. padding:2px 2px 2px 0px;
  9549. box-sizing:border-box;
  9550. width:100%;
  9551. }
  9552. #u16051_text {
  9553. border-width:0px;
  9554. word-wrap:break-word;
  9555. text-transform:none;
  9556. visibility:hidden;
  9557. }
  9558. #u16052_img {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:0px;
  9562. top:0px;
  9563. width:80px;
  9564. height:35px;
  9565. }
  9566. #u16052 {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:480px;
  9570. top:261px;
  9571. width:80px;
  9572. height:35px;
  9573. display:flex;
  9574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9575. font-weight:400;
  9576. font-style:normal;
  9577. font-size:12px;
  9578. color:#606266;
  9579. }
  9580. #u16052 .text {
  9581. position:absolute;
  9582. align-self:center;
  9583. padding:2px 2px 2px 0px;
  9584. box-sizing:border-box;
  9585. width:100%;
  9586. }
  9587. #u16052_text {
  9588. border-width:0px;
  9589. word-wrap:break-word;
  9590. text-transform:none;
  9591. visibility:hidden;
  9592. }
  9593. #u16053_img {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:0px;
  9597. top:0px;
  9598. width:102px;
  9599. height:35px;
  9600. }
  9601. #u16053 {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:560px;
  9605. top:261px;
  9606. width:102px;
  9607. height:35px;
  9608. display:flex;
  9609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9610. font-weight:400;
  9611. font-style:normal;
  9612. font-size:12px;
  9613. color:#606266;
  9614. }
  9615. #u16053 .text {
  9616. position:absolute;
  9617. align-self:center;
  9618. padding:2px 2px 2px 0px;
  9619. box-sizing:border-box;
  9620. width:100%;
  9621. }
  9622. #u16053_text {
  9623. border-width:0px;
  9624. word-wrap:break-word;
  9625. text-transform:none;
  9626. visibility:hidden;
  9627. }
  9628. #u16054_img {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:0px;
  9632. top:0px;
  9633. width:90px;
  9634. height:35px;
  9635. }
  9636. #u16054 {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:662px;
  9640. top:261px;
  9641. width:90px;
  9642. height:35px;
  9643. display:flex;
  9644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9645. font-weight:400;
  9646. font-style:normal;
  9647. font-size:12px;
  9648. color:#606266;
  9649. }
  9650. #u16054 .text {
  9651. position:absolute;
  9652. align-self:center;
  9653. padding:2px 2px 2px 0px;
  9654. box-sizing:border-box;
  9655. width:100%;
  9656. }
  9657. #u16054_text {
  9658. border-width:0px;
  9659. word-wrap:break-word;
  9660. text-transform:none;
  9661. visibility:hidden;
  9662. }
  9663. #u16055_img {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:0px;
  9667. top:0px;
  9668. width:80px;
  9669. height:35px;
  9670. }
  9671. #u16055 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:752px;
  9675. top:261px;
  9676. width:80px;
  9677. height:35px;
  9678. display:flex;
  9679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9680. font-weight:400;
  9681. font-style:normal;
  9682. font-size:12px;
  9683. color:#606266;
  9684. }
  9685. #u16055 .text {
  9686. position:absolute;
  9687. align-self:center;
  9688. padding:2px 2px 2px 0px;
  9689. box-sizing:border-box;
  9690. width:100%;
  9691. }
  9692. #u16055_text {
  9693. border-width:0px;
  9694. word-wrap:break-word;
  9695. text-transform:none;
  9696. visibility:hidden;
  9697. }
  9698. #u16056_img {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:80px;
  9704. height:35px;
  9705. }
  9706. #u16056 {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:832px;
  9710. top:261px;
  9711. width:80px;
  9712. height:35px;
  9713. display:flex;
  9714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:12px;
  9718. color:#606266;
  9719. }
  9720. #u16056 .text {
  9721. position:absolute;
  9722. align-self:center;
  9723. padding:2px 2px 2px 0px;
  9724. box-sizing:border-box;
  9725. width:100%;
  9726. }
  9727. #u16056_text {
  9728. border-width:0px;
  9729. word-wrap:break-word;
  9730. text-transform:none;
  9731. visibility:hidden;
  9732. }
  9733. #u16057_img {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:0px;
  9737. top:0px;
  9738. width:80px;
  9739. height:35px;
  9740. }
  9741. #u16057 {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:912px;
  9745. top:261px;
  9746. width:80px;
  9747. height:35px;
  9748. display:flex;
  9749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:12px;
  9753. color:#606266;
  9754. }
  9755. #u16057 .text {
  9756. position:absolute;
  9757. align-self:center;
  9758. padding:2px 2px 2px 0px;
  9759. box-sizing:border-box;
  9760. width:100%;
  9761. }
  9762. #u16057_text {
  9763. border-width:0px;
  9764. word-wrap:break-word;
  9765. text-transform:none;
  9766. visibility:hidden;
  9767. }
  9768. #u16058_img {
  9769. border-width:0px;
  9770. position:absolute;
  9771. left:0px;
  9772. top:0px;
  9773. width:80px;
  9774. height:35px;
  9775. }
  9776. #u16058 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:992px;
  9780. top:261px;
  9781. width:80px;
  9782. height:35px;
  9783. display:flex;
  9784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9785. font-weight:400;
  9786. font-style:normal;
  9787. font-size:12px;
  9788. color:#606266;
  9789. }
  9790. #u16058 .text {
  9791. position:absolute;
  9792. align-self:center;
  9793. padding:2px 2px 2px 0px;
  9794. box-sizing:border-box;
  9795. width:100%;
  9796. }
  9797. #u16058_text {
  9798. border-width:0px;
  9799. word-wrap:break-word;
  9800. text-transform:none;
  9801. visibility:hidden;
  9802. }
  9803. #u16059_img {
  9804. border-width:0px;
  9805. position:absolute;
  9806. left:0px;
  9807. top:0px;
  9808. width:80px;
  9809. height:35px;
  9810. }
  9811. #u16059 {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:1072px;
  9815. top:261px;
  9816. width:80px;
  9817. height:35px;
  9818. display:flex;
  9819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9820. font-weight:400;
  9821. font-style:normal;
  9822. font-size:12px;
  9823. color:#606266;
  9824. }
  9825. #u16059 .text {
  9826. position:absolute;
  9827. align-self:center;
  9828. padding:2px 2px 2px 0px;
  9829. box-sizing:border-box;
  9830. width:100%;
  9831. }
  9832. #u16059_text {
  9833. border-width:0px;
  9834. word-wrap:break-word;
  9835. text-transform:none;
  9836. visibility:hidden;
  9837. }
  9838. #u16060_img {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:0px;
  9842. top:0px;
  9843. width:180px;
  9844. height:35px;
  9845. }
  9846. #u16060 {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:1152px;
  9850. top:261px;
  9851. width:180px;
  9852. height:35px;
  9853. display:flex;
  9854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9855. font-weight:400;
  9856. font-style:normal;
  9857. font-size:12px;
  9858. color:#02A7F0;
  9859. }
  9860. #u16060 .text {
  9861. position:absolute;
  9862. align-self:center;
  9863. padding:2px 2px 2px 0px;
  9864. box-sizing:border-box;
  9865. width:100%;
  9866. }
  9867. #u16060_text {
  9868. border-width:0px;
  9869. word-wrap:break-word;
  9870. text-transform:none;
  9871. visibility:hidden;
  9872. }
  9873. #u16061_img {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:0px;
  9877. top:0px;
  9878. width:80px;
  9879. height:35px;
  9880. }
  9881. #u16061 {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:0px;
  9885. top:296px;
  9886. width:80px;
  9887. height:35px;
  9888. display:flex;
  9889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9890. font-weight:400;
  9891. font-style:normal;
  9892. font-size:12px;
  9893. color:#606266;
  9894. }
  9895. #u16061 .text {
  9896. position:absolute;
  9897. align-self:center;
  9898. padding:2px 2px 2px 0px;
  9899. box-sizing:border-box;
  9900. width:100%;
  9901. }
  9902. #u16061_text {
  9903. border-width:0px;
  9904. word-wrap:break-word;
  9905. text-transform:none;
  9906. visibility:hidden;
  9907. }
  9908. #u16062_img {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:80px;
  9914. height:35px;
  9915. }
  9916. #u16062 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:80px;
  9920. top:296px;
  9921. width:80px;
  9922. height:35px;
  9923. display:flex;
  9924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9925. font-weight:400;
  9926. font-style:normal;
  9927. font-size:12px;
  9928. color:#606266;
  9929. }
  9930. #u16062 .text {
  9931. position:absolute;
  9932. align-self:center;
  9933. padding:2px 2px 2px 0px;
  9934. box-sizing:border-box;
  9935. width:100%;
  9936. }
  9937. #u16062_text {
  9938. border-width:0px;
  9939. word-wrap:break-word;
  9940. text-transform:none;
  9941. visibility:hidden;
  9942. }
  9943. #u16063_img {
  9944. border-width:0px;
  9945. position:absolute;
  9946. left:0px;
  9947. top:0px;
  9948. width:80px;
  9949. height:35px;
  9950. }
  9951. #u16063 {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:160px;
  9955. top:296px;
  9956. width:80px;
  9957. height:35px;
  9958. display:flex;
  9959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9960. font-weight:400;
  9961. font-style:normal;
  9962. font-size:12px;
  9963. color:#606266;
  9964. }
  9965. #u16063 .text {
  9966. position:absolute;
  9967. align-self:center;
  9968. padding:2px 2px 2px 0px;
  9969. box-sizing:border-box;
  9970. width:100%;
  9971. }
  9972. #u16063_text {
  9973. border-width:0px;
  9974. word-wrap:break-word;
  9975. text-transform:none;
  9976. visibility:hidden;
  9977. }
  9978. #u16064_img {
  9979. border-width:0px;
  9980. position:absolute;
  9981. left:0px;
  9982. top:0px;
  9983. width:80px;
  9984. height:35px;
  9985. }
  9986. #u16064 {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:240px;
  9990. top:296px;
  9991. width:80px;
  9992. height:35px;
  9993. display:flex;
  9994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9995. font-weight:400;
  9996. font-style:normal;
  9997. font-size:12px;
  9998. color:#606266;
  9999. }
  10000. #u16064 .text {
  10001. position:absolute;
  10002. align-self:center;
  10003. padding:2px 2px 2px 0px;
  10004. box-sizing:border-box;
  10005. width:100%;
  10006. }
  10007. #u16064_text {
  10008. border-width:0px;
  10009. word-wrap:break-word;
  10010. text-transform:none;
  10011. visibility:hidden;
  10012. }
  10013. #u16065_img {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:0px;
  10017. top:0px;
  10018. width:80px;
  10019. height:35px;
  10020. }
  10021. #u16065 {
  10022. border-width:0px;
  10023. position:absolute;
  10024. left:320px;
  10025. top:296px;
  10026. width:80px;
  10027. height:35px;
  10028. display:flex;
  10029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10030. font-weight:400;
  10031. font-style:normal;
  10032. font-size:12px;
  10033. color:#606266;
  10034. }
  10035. #u16065 .text {
  10036. position:absolute;
  10037. align-self:center;
  10038. padding:2px 2px 2px 0px;
  10039. box-sizing:border-box;
  10040. width:100%;
  10041. }
  10042. #u16065_text {
  10043. border-width:0px;
  10044. word-wrap:break-word;
  10045. text-transform:none;
  10046. visibility:hidden;
  10047. }
  10048. #u16066_img {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:0px;
  10052. top:0px;
  10053. width:80px;
  10054. height:35px;
  10055. }
  10056. #u16066 {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:400px;
  10060. top:296px;
  10061. width:80px;
  10062. height:35px;
  10063. display:flex;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. font-size:12px;
  10068. color:#606266;
  10069. }
  10070. #u16066 .text {
  10071. position:absolute;
  10072. align-self:center;
  10073. padding:2px 2px 2px 0px;
  10074. box-sizing:border-box;
  10075. width:100%;
  10076. }
  10077. #u16066_text {
  10078. border-width:0px;
  10079. word-wrap:break-word;
  10080. text-transform:none;
  10081. visibility:hidden;
  10082. }
  10083. #u16067_img {
  10084. border-width:0px;
  10085. position:absolute;
  10086. left:0px;
  10087. top:0px;
  10088. width:80px;
  10089. height:35px;
  10090. }
  10091. #u16067 {
  10092. border-width:0px;
  10093. position:absolute;
  10094. left:480px;
  10095. top:296px;
  10096. width:80px;
  10097. height:35px;
  10098. display:flex;
  10099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10100. font-weight:400;
  10101. font-style:normal;
  10102. font-size:12px;
  10103. color:#606266;
  10104. }
  10105. #u16067 .text {
  10106. position:absolute;
  10107. align-self:center;
  10108. padding:2px 2px 2px 0px;
  10109. box-sizing:border-box;
  10110. width:100%;
  10111. }
  10112. #u16067_text {
  10113. border-width:0px;
  10114. word-wrap:break-word;
  10115. text-transform:none;
  10116. visibility:hidden;
  10117. }
  10118. #u16068_img {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:0px;
  10122. top:0px;
  10123. width:102px;
  10124. height:35px;
  10125. }
  10126. #u16068 {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:560px;
  10130. top:296px;
  10131. width:102px;
  10132. height:35px;
  10133. display:flex;
  10134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10135. font-weight:400;
  10136. font-style:normal;
  10137. font-size:12px;
  10138. color:#606266;
  10139. }
  10140. #u16068 .text {
  10141. position:absolute;
  10142. align-self:center;
  10143. padding:2px 2px 2px 0px;
  10144. box-sizing:border-box;
  10145. width:100%;
  10146. }
  10147. #u16068_text {
  10148. border-width:0px;
  10149. word-wrap:break-word;
  10150. text-transform:none;
  10151. visibility:hidden;
  10152. }
  10153. #u16069_img {
  10154. border-width:0px;
  10155. position:absolute;
  10156. left:0px;
  10157. top:0px;
  10158. width:90px;
  10159. height:35px;
  10160. }
  10161. #u16069 {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:662px;
  10165. top:296px;
  10166. width:90px;
  10167. height:35px;
  10168. display:flex;
  10169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10170. font-weight:400;
  10171. font-style:normal;
  10172. font-size:12px;
  10173. color:#606266;
  10174. }
  10175. #u16069 .text {
  10176. position:absolute;
  10177. align-self:center;
  10178. padding:2px 2px 2px 0px;
  10179. box-sizing:border-box;
  10180. width:100%;
  10181. }
  10182. #u16069_text {
  10183. border-width:0px;
  10184. word-wrap:break-word;
  10185. text-transform:none;
  10186. visibility:hidden;
  10187. }
  10188. #u16070_img {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:0px;
  10192. top:0px;
  10193. width:80px;
  10194. height:35px;
  10195. }
  10196. #u16070 {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:752px;
  10200. top:296px;
  10201. width:80px;
  10202. height:35px;
  10203. display:flex;
  10204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10205. font-weight:400;
  10206. font-style:normal;
  10207. font-size:12px;
  10208. color:#606266;
  10209. }
  10210. #u16070 .text {
  10211. position:absolute;
  10212. align-self:center;
  10213. padding:2px 2px 2px 0px;
  10214. box-sizing:border-box;
  10215. width:100%;
  10216. }
  10217. #u16070_text {
  10218. border-width:0px;
  10219. word-wrap:break-word;
  10220. text-transform:none;
  10221. visibility:hidden;
  10222. }
  10223. #u16071_img {
  10224. border-width:0px;
  10225. position:absolute;
  10226. left:0px;
  10227. top:0px;
  10228. width:80px;
  10229. height:35px;
  10230. }
  10231. #u16071 {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:832px;
  10235. top:296px;
  10236. width:80px;
  10237. height:35px;
  10238. display:flex;
  10239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10240. font-weight:400;
  10241. font-style:normal;
  10242. font-size:12px;
  10243. color:#606266;
  10244. }
  10245. #u16071 .text {
  10246. position:absolute;
  10247. align-self:center;
  10248. padding:2px 2px 2px 0px;
  10249. box-sizing:border-box;
  10250. width:100%;
  10251. }
  10252. #u16071_text {
  10253. border-width:0px;
  10254. word-wrap:break-word;
  10255. text-transform:none;
  10256. visibility:hidden;
  10257. }
  10258. #u16072_img {
  10259. border-width:0px;
  10260. position:absolute;
  10261. left:0px;
  10262. top:0px;
  10263. width:80px;
  10264. height:35px;
  10265. }
  10266. #u16072 {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:912px;
  10270. top:296px;
  10271. width:80px;
  10272. height:35px;
  10273. display:flex;
  10274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10275. font-weight:400;
  10276. font-style:normal;
  10277. font-size:12px;
  10278. color:#606266;
  10279. }
  10280. #u16072 .text {
  10281. position:absolute;
  10282. align-self:center;
  10283. padding:2px 2px 2px 0px;
  10284. box-sizing:border-box;
  10285. width:100%;
  10286. }
  10287. #u16072_text {
  10288. border-width:0px;
  10289. word-wrap:break-word;
  10290. text-transform:none;
  10291. visibility:hidden;
  10292. }
  10293. #u16073_img {
  10294. border-width:0px;
  10295. position:absolute;
  10296. left:0px;
  10297. top:0px;
  10298. width:80px;
  10299. height:35px;
  10300. }
  10301. #u16073 {
  10302. border-width:0px;
  10303. position:absolute;
  10304. left:992px;
  10305. top:296px;
  10306. width:80px;
  10307. height:35px;
  10308. display:flex;
  10309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10310. font-weight:400;
  10311. font-style:normal;
  10312. font-size:12px;
  10313. color:#606266;
  10314. }
  10315. #u16073 .text {
  10316. position:absolute;
  10317. align-self:center;
  10318. padding:2px 2px 2px 0px;
  10319. box-sizing:border-box;
  10320. width:100%;
  10321. }
  10322. #u16073_text {
  10323. border-width:0px;
  10324. word-wrap:break-word;
  10325. text-transform:none;
  10326. visibility:hidden;
  10327. }
  10328. #u16074_img {
  10329. border-width:0px;
  10330. position:absolute;
  10331. left:0px;
  10332. top:0px;
  10333. width:80px;
  10334. height:35px;
  10335. }
  10336. #u16074 {
  10337. border-width:0px;
  10338. position:absolute;
  10339. left:1072px;
  10340. top:296px;
  10341. width:80px;
  10342. height:35px;
  10343. display:flex;
  10344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10345. font-weight:400;
  10346. font-style:normal;
  10347. font-size:12px;
  10348. color:#606266;
  10349. }
  10350. #u16074 .text {
  10351. position:absolute;
  10352. align-self:center;
  10353. padding:2px 2px 2px 0px;
  10354. box-sizing:border-box;
  10355. width:100%;
  10356. }
  10357. #u16074_text {
  10358. border-width:0px;
  10359. word-wrap:break-word;
  10360. text-transform:none;
  10361. visibility:hidden;
  10362. }
  10363. #u16075_img {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:0px;
  10367. top:0px;
  10368. width:180px;
  10369. height:35px;
  10370. }
  10371. #u16075 {
  10372. border-width:0px;
  10373. position:absolute;
  10374. left:1152px;
  10375. top:296px;
  10376. width:180px;
  10377. height:35px;
  10378. display:flex;
  10379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10380. font-weight:400;
  10381. font-style:normal;
  10382. font-size:12px;
  10383. color:#02A7F0;
  10384. }
  10385. #u16075 .text {
  10386. position:absolute;
  10387. align-self:center;
  10388. padding:2px 2px 2px 0px;
  10389. box-sizing:border-box;
  10390. width:100%;
  10391. }
  10392. #u16075_text {
  10393. border-width:0px;
  10394. word-wrap:break-word;
  10395. text-transform:none;
  10396. visibility:hidden;
  10397. }
  10398. #u16076_img {
  10399. border-width:0px;
  10400. position:absolute;
  10401. left:0px;
  10402. top:0px;
  10403. width:80px;
  10404. height:33px;
  10405. }
  10406. #u16076 {
  10407. border-width:0px;
  10408. position:absolute;
  10409. left:0px;
  10410. top:331px;
  10411. width:80px;
  10412. height:33px;
  10413. display:flex;
  10414. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10415. font-weight:400;
  10416. font-style:normal;
  10417. font-size:12px;
  10418. color:#606266;
  10419. }
  10420. #u16076 .text {
  10421. position:absolute;
  10422. align-self:center;
  10423. padding:2px 2px 2px 0px;
  10424. box-sizing:border-box;
  10425. width:100%;
  10426. }
  10427. #u16076_text {
  10428. border-width:0px;
  10429. word-wrap:break-word;
  10430. text-transform:none;
  10431. visibility:hidden;
  10432. }
  10433. #u16077_img {
  10434. border-width:0px;
  10435. position:absolute;
  10436. left:0px;
  10437. top:0px;
  10438. width:80px;
  10439. height:33px;
  10440. }
  10441. #u16077 {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:80px;
  10445. top:331px;
  10446. width:80px;
  10447. height:33px;
  10448. display:flex;
  10449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10450. font-weight:400;
  10451. font-style:normal;
  10452. font-size:12px;
  10453. color:#606266;
  10454. }
  10455. #u16077 .text {
  10456. position:absolute;
  10457. align-self:center;
  10458. padding:2px 2px 2px 0px;
  10459. box-sizing:border-box;
  10460. width:100%;
  10461. }
  10462. #u16077_text {
  10463. border-width:0px;
  10464. word-wrap:break-word;
  10465. text-transform:none;
  10466. visibility:hidden;
  10467. }
  10468. #u16078_img {
  10469. border-width:0px;
  10470. position:absolute;
  10471. left:0px;
  10472. top:0px;
  10473. width:80px;
  10474. height:33px;
  10475. }
  10476. #u16078 {
  10477. border-width:0px;
  10478. position:absolute;
  10479. left:160px;
  10480. top:331px;
  10481. width:80px;
  10482. height:33px;
  10483. display:flex;
  10484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10485. font-weight:400;
  10486. font-style:normal;
  10487. font-size:12px;
  10488. color:#606266;
  10489. }
  10490. #u16078 .text {
  10491. position:absolute;
  10492. align-self:center;
  10493. padding:2px 2px 2px 0px;
  10494. box-sizing:border-box;
  10495. width:100%;
  10496. }
  10497. #u16078_text {
  10498. border-width:0px;
  10499. word-wrap:break-word;
  10500. text-transform:none;
  10501. visibility:hidden;
  10502. }
  10503. #u16079_img {
  10504. border-width:0px;
  10505. position:absolute;
  10506. left:0px;
  10507. top:0px;
  10508. width:80px;
  10509. height:33px;
  10510. }
  10511. #u16079 {
  10512. border-width:0px;
  10513. position:absolute;
  10514. left:240px;
  10515. top:331px;
  10516. width:80px;
  10517. height:33px;
  10518. display:flex;
  10519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10520. font-weight:400;
  10521. font-style:normal;
  10522. font-size:12px;
  10523. color:#606266;
  10524. }
  10525. #u16079 .text {
  10526. position:absolute;
  10527. align-self:center;
  10528. padding:2px 2px 2px 0px;
  10529. box-sizing:border-box;
  10530. width:100%;
  10531. }
  10532. #u16079_text {
  10533. border-width:0px;
  10534. word-wrap:break-word;
  10535. text-transform:none;
  10536. visibility:hidden;
  10537. }
  10538. #u16080_img {
  10539. border-width:0px;
  10540. position:absolute;
  10541. left:0px;
  10542. top:0px;
  10543. width:80px;
  10544. height:33px;
  10545. }
  10546. #u16080 {
  10547. border-width:0px;
  10548. position:absolute;
  10549. left:320px;
  10550. top:331px;
  10551. width:80px;
  10552. height:33px;
  10553. display:flex;
  10554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10555. font-weight:400;
  10556. font-style:normal;
  10557. font-size:12px;
  10558. color:#606266;
  10559. }
  10560. #u16080 .text {
  10561. position:absolute;
  10562. align-self:center;
  10563. padding:2px 2px 2px 0px;
  10564. box-sizing:border-box;
  10565. width:100%;
  10566. }
  10567. #u16080_text {
  10568. border-width:0px;
  10569. word-wrap:break-word;
  10570. text-transform:none;
  10571. visibility:hidden;
  10572. }
  10573. #u16081_img {
  10574. border-width:0px;
  10575. position:absolute;
  10576. left:0px;
  10577. top:0px;
  10578. width:80px;
  10579. height:33px;
  10580. }
  10581. #u16081 {
  10582. border-width:0px;
  10583. position:absolute;
  10584. left:400px;
  10585. top:331px;
  10586. width:80px;
  10587. height:33px;
  10588. display:flex;
  10589. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10590. font-weight:400;
  10591. font-style:normal;
  10592. font-size:12px;
  10593. color:#606266;
  10594. }
  10595. #u16081 .text {
  10596. position:absolute;
  10597. align-self:center;
  10598. padding:2px 2px 2px 0px;
  10599. box-sizing:border-box;
  10600. width:100%;
  10601. }
  10602. #u16081_text {
  10603. border-width:0px;
  10604. word-wrap:break-word;
  10605. text-transform:none;
  10606. visibility:hidden;
  10607. }
  10608. #u16082_img {
  10609. border-width:0px;
  10610. position:absolute;
  10611. left:0px;
  10612. top:0px;
  10613. width:80px;
  10614. height:33px;
  10615. }
  10616. #u16082 {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:480px;
  10620. top:331px;
  10621. width:80px;
  10622. height:33px;
  10623. display:flex;
  10624. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10625. font-weight:400;
  10626. font-style:normal;
  10627. font-size:12px;
  10628. color:#606266;
  10629. }
  10630. #u16082 .text {
  10631. position:absolute;
  10632. align-self:center;
  10633. padding:2px 2px 2px 0px;
  10634. box-sizing:border-box;
  10635. width:100%;
  10636. }
  10637. #u16082_text {
  10638. border-width:0px;
  10639. word-wrap:break-word;
  10640. text-transform:none;
  10641. visibility:hidden;
  10642. }
  10643. #u16083_img {
  10644. border-width:0px;
  10645. position:absolute;
  10646. left:0px;
  10647. top:0px;
  10648. width:102px;
  10649. height:33px;
  10650. }
  10651. #u16083 {
  10652. border-width:0px;
  10653. position:absolute;
  10654. left:560px;
  10655. top:331px;
  10656. width:102px;
  10657. height:33px;
  10658. display:flex;
  10659. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10660. font-weight:400;
  10661. font-style:normal;
  10662. font-size:12px;
  10663. color:#606266;
  10664. }
  10665. #u16083 .text {
  10666. position:absolute;
  10667. align-self:center;
  10668. padding:2px 2px 2px 0px;
  10669. box-sizing:border-box;
  10670. width:100%;
  10671. }
  10672. #u16083_text {
  10673. border-width:0px;
  10674. word-wrap:break-word;
  10675. text-transform:none;
  10676. visibility:hidden;
  10677. }
  10678. #u16084_img {
  10679. border-width:0px;
  10680. position:absolute;
  10681. left:0px;
  10682. top:0px;
  10683. width:90px;
  10684. height:33px;
  10685. }
  10686. #u16084 {
  10687. border-width:0px;
  10688. position:absolute;
  10689. left:662px;
  10690. top:331px;
  10691. width:90px;
  10692. height:33px;
  10693. display:flex;
  10694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10695. font-weight:400;
  10696. font-style:normal;
  10697. font-size:12px;
  10698. color:#606266;
  10699. }
  10700. #u16084 .text {
  10701. position:absolute;
  10702. align-self:center;
  10703. padding:2px 2px 2px 0px;
  10704. box-sizing:border-box;
  10705. width:100%;
  10706. }
  10707. #u16084_text {
  10708. border-width:0px;
  10709. word-wrap:break-word;
  10710. text-transform:none;
  10711. visibility:hidden;
  10712. }
  10713. #u16085_img {
  10714. border-width:0px;
  10715. position:absolute;
  10716. left:0px;
  10717. top:0px;
  10718. width:80px;
  10719. height:33px;
  10720. }
  10721. #u16085 {
  10722. border-width:0px;
  10723. position:absolute;
  10724. left:752px;
  10725. top:331px;
  10726. width:80px;
  10727. height:33px;
  10728. display:flex;
  10729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10730. font-weight:400;
  10731. font-style:normal;
  10732. font-size:12px;
  10733. color:#606266;
  10734. }
  10735. #u16085 .text {
  10736. position:absolute;
  10737. align-self:center;
  10738. padding:2px 2px 2px 0px;
  10739. box-sizing:border-box;
  10740. width:100%;
  10741. }
  10742. #u16085_text {
  10743. border-width:0px;
  10744. word-wrap:break-word;
  10745. text-transform:none;
  10746. visibility:hidden;
  10747. }
  10748. #u16086_img {
  10749. border-width:0px;
  10750. position:absolute;
  10751. left:0px;
  10752. top:0px;
  10753. width:80px;
  10754. height:33px;
  10755. }
  10756. #u16086 {
  10757. border-width:0px;
  10758. position:absolute;
  10759. left:832px;
  10760. top:331px;
  10761. width:80px;
  10762. height:33px;
  10763. display:flex;
  10764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10765. font-weight:400;
  10766. font-style:normal;
  10767. font-size:12px;
  10768. color:#606266;
  10769. }
  10770. #u16086 .text {
  10771. position:absolute;
  10772. align-self:center;
  10773. padding:2px 2px 2px 0px;
  10774. box-sizing:border-box;
  10775. width:100%;
  10776. }
  10777. #u16086_text {
  10778. border-width:0px;
  10779. word-wrap:break-word;
  10780. text-transform:none;
  10781. visibility:hidden;
  10782. }
  10783. #u16087_img {
  10784. border-width:0px;
  10785. position:absolute;
  10786. left:0px;
  10787. top:0px;
  10788. width:80px;
  10789. height:33px;
  10790. }
  10791. #u16087 {
  10792. border-width:0px;
  10793. position:absolute;
  10794. left:912px;
  10795. top:331px;
  10796. width:80px;
  10797. height:33px;
  10798. display:flex;
  10799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10800. font-weight:400;
  10801. font-style:normal;
  10802. font-size:12px;
  10803. color:#606266;
  10804. }
  10805. #u16087 .text {
  10806. position:absolute;
  10807. align-self:center;
  10808. padding:2px 2px 2px 0px;
  10809. box-sizing:border-box;
  10810. width:100%;
  10811. }
  10812. #u16087_text {
  10813. border-width:0px;
  10814. word-wrap:break-word;
  10815. text-transform:none;
  10816. visibility:hidden;
  10817. }
  10818. #u16088_img {
  10819. border-width:0px;
  10820. position:absolute;
  10821. left:0px;
  10822. top:0px;
  10823. width:80px;
  10824. height:33px;
  10825. }
  10826. #u16088 {
  10827. border-width:0px;
  10828. position:absolute;
  10829. left:992px;
  10830. top:331px;
  10831. width:80px;
  10832. height:33px;
  10833. display:flex;
  10834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10835. font-weight:400;
  10836. font-style:normal;
  10837. font-size:12px;
  10838. color:#606266;
  10839. }
  10840. #u16088 .text {
  10841. position:absolute;
  10842. align-self:center;
  10843. padding:2px 2px 2px 0px;
  10844. box-sizing:border-box;
  10845. width:100%;
  10846. }
  10847. #u16088_text {
  10848. border-width:0px;
  10849. word-wrap:break-word;
  10850. text-transform:none;
  10851. visibility:hidden;
  10852. }
  10853. #u16089_img {
  10854. border-width:0px;
  10855. position:absolute;
  10856. left:0px;
  10857. top:0px;
  10858. width:80px;
  10859. height:33px;
  10860. }
  10861. #u16089 {
  10862. border-width:0px;
  10863. position:absolute;
  10864. left:1072px;
  10865. top:331px;
  10866. width:80px;
  10867. height:33px;
  10868. display:flex;
  10869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10870. font-weight:400;
  10871. font-style:normal;
  10872. font-size:12px;
  10873. color:#606266;
  10874. }
  10875. #u16089 .text {
  10876. position:absolute;
  10877. align-self:center;
  10878. padding:2px 2px 2px 0px;
  10879. box-sizing:border-box;
  10880. width:100%;
  10881. }
  10882. #u16089_text {
  10883. border-width:0px;
  10884. word-wrap:break-word;
  10885. text-transform:none;
  10886. visibility:hidden;
  10887. }
  10888. #u16090_img {
  10889. border-width:0px;
  10890. position:absolute;
  10891. left:0px;
  10892. top:0px;
  10893. width:180px;
  10894. height:33px;
  10895. }
  10896. #u16090 {
  10897. border-width:0px;
  10898. position:absolute;
  10899. left:1152px;
  10900. top:331px;
  10901. width:180px;
  10902. height:33px;
  10903. display:flex;
  10904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10905. font-weight:400;
  10906. font-style:normal;
  10907. font-size:12px;
  10908. color:#02A7F0;
  10909. }
  10910. #u16090 .text {
  10911. position:absolute;
  10912. align-self:center;
  10913. padding:2px 2px 2px 0px;
  10914. box-sizing:border-box;
  10915. width:100%;
  10916. }
  10917. #u16090_text {
  10918. border-width:0px;
  10919. word-wrap:break-word;
  10920. text-transform:none;
  10921. visibility:hidden;
  10922. }
  10923. #u16091 {
  10924. border-width:0px;
  10925. position:absolute;
  10926. left:0px;
  10927. top:0px;
  10928. width:0px;
  10929. height:0px;
  10930. }
  10931. #u16092_div {
  10932. border-width:0px;
  10933. position:absolute;
  10934. left:0px;
  10935. top:0px;
  10936. width:200px;
  10937. height:1192px;
  10938. background:inherit;
  10939. background-color:rgba(255, 255, 255, 1);
  10940. border:none;
  10941. border-radius:0px;
  10942. -moz-box-shadow:none;
  10943. -webkit-box-shadow:none;
  10944. box-shadow:none;
  10945. }
  10946. #u16092 {
  10947. border-width:0px;
  10948. position:absolute;
  10949. left:120px;
  10950. top:50px;
  10951. width:200px;
  10952. height:1192px;
  10953. display:flex;
  10954. }
  10955. #u16092 .text {
  10956. position:absolute;
  10957. align-self:center;
  10958. padding:2px 2px 2px 2px;
  10959. box-sizing:border-box;
  10960. width:100%;
  10961. }
  10962. #u16092_text {
  10963. border-width:0px;
  10964. word-wrap:break-word;
  10965. text-transform:none;
  10966. visibility:hidden;
  10967. }
  10968. #u16093_div {
  10969. border-width:0px;
  10970. position:absolute;
  10971. left:0px;
  10972. top:0px;
  10973. width:200px;
  10974. height:60px;
  10975. background:inherit;
  10976. background-color:rgba(224, 231, 247, 1);
  10977. border:none;
  10978. border-radius:0px;
  10979. -moz-box-shadow:none;
  10980. -webkit-box-shadow:none;
  10981. box-shadow:none;
  10982. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10983. font-weight:500;
  10984. font-style:normal;
  10985. font-size:18px;
  10986. }
  10987. #u16093 {
  10988. border-width:0px;
  10989. position:absolute;
  10990. left:120px;
  10991. top:50px;
  10992. width:200px;
  10993. height:60px;
  10994. display:flex;
  10995. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10996. font-weight:500;
  10997. font-style:normal;
  10998. font-size:18px;
  10999. }
  11000. #u16093 .text {
  11001. position:absolute;
  11002. align-self:center;
  11003. padding:0px 0px 0px 20px;
  11004. box-sizing:border-box;
  11005. width:100%;
  11006. }
  11007. #u16093_text {
  11008. border-width:0px;
  11009. word-wrap:break-word;
  11010. text-transform:none;
  11011. }
  11012. #u16094_div {
  11013. border-width:0px;
  11014. position:absolute;
  11015. left:0px;
  11016. top:0px;
  11017. width:65px;
  11018. height:22px;
  11019. background:inherit;
  11020. background-color:rgba(255, 255, 255, 0);
  11021. border:none;
  11022. border-radius:0px;
  11023. -moz-box-shadow:none;
  11024. -webkit-box-shadow:none;
  11025. box-shadow:none;
  11026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11027. font-weight:400;
  11028. font-style:normal;
  11029. font-size:16px;
  11030. }
  11031. #u16094 {
  11032. border-width:0px;
  11033. position:absolute;
  11034. left:147px;
  11035. top:166px;
  11036. width:65px;
  11037. height:22px;
  11038. display:flex;
  11039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11040. font-weight:400;
  11041. font-style:normal;
  11042. font-size:16px;
  11043. }
  11044. #u16094 .text {
  11045. position:absolute;
  11046. align-self:flex-start;
  11047. padding:0px 0px 0px 0px;
  11048. box-sizing:border-box;
  11049. width:100%;
  11050. }
  11051. #u16094_text {
  11052. border-width:0px;
  11053. white-space:nowrap;
  11054. text-transform:none;
  11055. }
  11056. #u16095_div {
  11057. border-width:0px;
  11058. position:absolute;
  11059. left:0px;
  11060. top:0px;
  11061. width:25px;
  11062. height:17px;
  11063. background:inherit;
  11064. background-color:rgba(255, 255, 255, 0);
  11065. border:none;
  11066. border-radius:0px;
  11067. -moz-box-shadow:none;
  11068. -webkit-box-shadow:none;
  11069. box-shadow:none;
  11070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11071. font-weight:400;
  11072. font-style:normal;
  11073. font-size:12px;
  11074. color:#AAAAAA;
  11075. }
  11076. #u16095 {
  11077. border-width:0px;
  11078. position:absolute;
  11079. left:147px;
  11080. top:130px;
  11081. width:25px;
  11082. height:17px;
  11083. display:flex;
  11084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11085. font-weight:400;
  11086. font-style:normal;
  11087. font-size:12px;
  11088. color:#AAAAAA;
  11089. }
  11090. #u16095 .text {
  11091. position:absolute;
  11092. align-self:flex-start;
  11093. padding:0px 0px 0px 0px;
  11094. box-sizing:border-box;
  11095. width:100%;
  11096. }
  11097. #u16095_text {
  11098. border-width:0px;
  11099. white-space:nowrap;
  11100. text-transform:none;
  11101. }
  11102. #u16096_div {
  11103. border-width:0px;
  11104. position:absolute;
  11105. left:0px;
  11106. top:0px;
  11107. width:65px;
  11108. height:22px;
  11109. background:inherit;
  11110. background-color:rgba(255, 255, 255, 0);
  11111. border:none;
  11112. border-radius:0px;
  11113. -moz-box-shadow:none;
  11114. -webkit-box-shadow:none;
  11115. box-shadow:none;
  11116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11117. font-weight:400;
  11118. font-style:normal;
  11119. font-size:16px;
  11120. }
  11121. #u16096 {
  11122. border-width:0px;
  11123. position:absolute;
  11124. left:147px;
  11125. top:315px;
  11126. width:65px;
  11127. height:22px;
  11128. display:flex;
  11129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11130. font-weight:400;
  11131. font-style:normal;
  11132. font-size:16px;
  11133. }
  11134. #u16096 .text {
  11135. position:absolute;
  11136. align-self:flex-start;
  11137. padding:0px 0px 0px 0px;
  11138. box-sizing:border-box;
  11139. width:100%;
  11140. }
  11141. #u16096_text {
  11142. border-width:0px;
  11143. white-space:nowrap;
  11144. text-transform:none;
  11145. }
  11146. #u16097_img {
  11147. border-width:0px;
  11148. position:absolute;
  11149. left:0px;
  11150. top:0px;
  11151. width:201px;
  11152. height:2px;
  11153. }
  11154. #u16097 {
  11155. border-width:0px;
  11156. position:absolute;
  11157. left:120px;
  11158. top:253px;
  11159. width:200px;
  11160. height:1px;
  11161. display:flex;
  11162. }
  11163. #u16097 .text {
  11164. position:absolute;
  11165. align-self:center;
  11166. padding:2px 2px 2px 2px;
  11167. box-sizing:border-box;
  11168. width:100%;
  11169. }
  11170. #u16097_text {
  11171. border-width:0px;
  11172. word-wrap:break-word;
  11173. text-transform:none;
  11174. visibility:hidden;
  11175. }
  11176. #u16098_div {
  11177. border-width:0px;
  11178. position:absolute;
  11179. left:0px;
  11180. top:0px;
  11181. width:25px;
  11182. height:17px;
  11183. background:inherit;
  11184. background-color:rgba(255, 255, 255, 0);
  11185. border:none;
  11186. border-radius:0px;
  11187. -moz-box-shadow:none;
  11188. -webkit-box-shadow:none;
  11189. box-shadow:none;
  11190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11191. font-weight:400;
  11192. font-style:normal;
  11193. font-size:12px;
  11194. color:#AAAAAA;
  11195. }
  11196. #u16098 {
  11197. border-width:0px;
  11198. position:absolute;
  11199. left:147px;
  11200. top:279px;
  11201. width:25px;
  11202. height:17px;
  11203. display:flex;
  11204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11205. font-weight:400;
  11206. font-style:normal;
  11207. font-size:12px;
  11208. color:#AAAAAA;
  11209. }
  11210. #u16098 .text {
  11211. position:absolute;
  11212. align-self:flex-start;
  11213. padding:0px 0px 0px 0px;
  11214. box-sizing:border-box;
  11215. width:100%;
  11216. }
  11217. #u16098_text {
  11218. border-width:0px;
  11219. white-space:nowrap;
  11220. text-transform:none;
  11221. }
  11222. #u16099_div {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:0px;
  11226. top:0px;
  11227. width:65px;
  11228. height:22px;
  11229. background:inherit;
  11230. background-color:rgba(255, 255, 255, 0);
  11231. border:none;
  11232. border-radius:0px;
  11233. -moz-box-shadow:none;
  11234. -webkit-box-shadow:none;
  11235. box-shadow:none;
  11236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11237. font-weight:400;
  11238. font-style:normal;
  11239. font-size:16px;
  11240. }
  11241. #u16099 {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:147px;
  11245. top:357px;
  11246. width:65px;
  11247. height:22px;
  11248. display:flex;
  11249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11250. font-weight:400;
  11251. font-style:normal;
  11252. font-size:16px;
  11253. }
  11254. #u16099 .text {
  11255. position:absolute;
  11256. align-self:flex-start;
  11257. padding:0px 0px 0px 0px;
  11258. box-sizing:border-box;
  11259. width:100%;
  11260. }
  11261. #u16099_text {
  11262. border-width:0px;
  11263. white-space:nowrap;
  11264. text-transform:none;
  11265. }
  11266. #u16100_div {
  11267. border-width:0px;
  11268. position:absolute;
  11269. left:0px;
  11270. top:0px;
  11271. width:49px;
  11272. height:22px;
  11273. background:inherit;
  11274. background-color:rgba(255, 255, 255, 0);
  11275. border:none;
  11276. border-radius:0px;
  11277. -moz-box-shadow:none;
  11278. -webkit-box-shadow:none;
  11279. box-shadow:none;
  11280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11281. font-weight:400;
  11282. font-style:normal;
  11283. font-size:16px;
  11284. }
  11285. #u16100 {
  11286. border-width:0px;
  11287. position:absolute;
  11288. left:147px;
  11289. top:399px;
  11290. width:49px;
  11291. height:22px;
  11292. display:flex;
  11293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11294. font-weight:400;
  11295. font-style:normal;
  11296. font-size:16px;
  11297. }
  11298. #u16100 .text {
  11299. position:absolute;
  11300. align-self:flex-start;
  11301. padding:0px 0px 0px 0px;
  11302. box-sizing:border-box;
  11303. width:100%;
  11304. }
  11305. #u16100_text {
  11306. border-width:0px;
  11307. white-space:nowrap;
  11308. text-transform:none;
  11309. }
  11310. #u16101_div {
  11311. border-width:0px;
  11312. position:absolute;
  11313. left:0px;
  11314. top:0px;
  11315. width:81px;
  11316. height:22px;
  11317. background:inherit;
  11318. background-color:rgba(255, 255, 255, 0);
  11319. border:none;
  11320. border-radius:0px;
  11321. -moz-box-shadow:none;
  11322. -webkit-box-shadow:none;
  11323. box-shadow:none;
  11324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11325. font-weight:400;
  11326. font-style:normal;
  11327. font-size:16px;
  11328. }
  11329. #u16101 {
  11330. border-width:0px;
  11331. position:absolute;
  11332. left:147px;
  11333. top:441px;
  11334. width:81px;
  11335. height:22px;
  11336. display:flex;
  11337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11338. font-weight:400;
  11339. font-style:normal;
  11340. font-size:16px;
  11341. }
  11342. #u16101 .text {
  11343. position:absolute;
  11344. align-self:flex-start;
  11345. padding:0px 0px 0px 0px;
  11346. box-sizing:border-box;
  11347. width:100%;
  11348. }
  11349. #u16101_text {
  11350. border-width:0px;
  11351. white-space:nowrap;
  11352. text-transform:none;
  11353. }
  11354. #u16102_div {
  11355. border-width:0px;
  11356. position:absolute;
  11357. left:0px;
  11358. top:0px;
  11359. width:81px;
  11360. height:22px;
  11361. background:inherit;
  11362. background-color:rgba(255, 255, 255, 0);
  11363. border:none;
  11364. border-radius:0px;
  11365. -moz-box-shadow:none;
  11366. -webkit-box-shadow:none;
  11367. box-shadow:none;
  11368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11369. font-weight:400;
  11370. font-style:normal;
  11371. font-size:16px;
  11372. }
  11373. #u16102 {
  11374. border-width:0px;
  11375. position:absolute;
  11376. left:147px;
  11377. top:483px;
  11378. width:81px;
  11379. height:22px;
  11380. display:flex;
  11381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11382. font-weight:400;
  11383. font-style:normal;
  11384. font-size:16px;
  11385. }
  11386. #u16102 .text {
  11387. position:absolute;
  11388. align-self:flex-start;
  11389. padding:0px 0px 0px 0px;
  11390. box-sizing:border-box;
  11391. width:100%;
  11392. }
  11393. #u16102_text {
  11394. border-width:0px;
  11395. white-space:nowrap;
  11396. text-transform:none;
  11397. }
  11398. #u16103_div {
  11399. border-width:0px;
  11400. position:absolute;
  11401. left:0px;
  11402. top:0px;
  11403. width:65px;
  11404. height:22px;
  11405. background:inherit;
  11406. background-color:rgba(255, 255, 255, 0);
  11407. border:none;
  11408. border-radius:0px;
  11409. -moz-box-shadow:none;
  11410. -webkit-box-shadow:none;
  11411. box-shadow:none;
  11412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11413. font-weight:400;
  11414. font-style:normal;
  11415. font-size:16px;
  11416. }
  11417. #u16103 {
  11418. border-width:0px;
  11419. position:absolute;
  11420. left:147px;
  11421. top:208px;
  11422. width:65px;
  11423. height:22px;
  11424. display:flex;
  11425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11426. font-weight:400;
  11427. font-style:normal;
  11428. font-size:16px;
  11429. }
  11430. #u16103 .text {
  11431. position:absolute;
  11432. align-self:flex-start;
  11433. padding:0px 0px 0px 0px;
  11434. box-sizing:border-box;
  11435. width:100%;
  11436. }
  11437. #u16103_text {
  11438. border-width:0px;
  11439. white-space:nowrap;
  11440. text-transform:none;
  11441. }
  11442. #u16104_div {
  11443. border-width:0px;
  11444. position:absolute;
  11445. left:0px;
  11446. top:0px;
  11447. width:95px;
  11448. height:30px;
  11449. background:inherit;
  11450. background-color:rgba(41, 143, 255, 1);
  11451. border:none;
  11452. border-radius:4px;
  11453. -moz-box-shadow:none;
  11454. -webkit-box-shadow:none;
  11455. box-shadow:none;
  11456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11457. font-weight:400;
  11458. font-style:normal;
  11459. font-size:14px;
  11460. color:#FFFFFF;
  11461. }
  11462. #u16104 {
  11463. border-width:0px;
  11464. position:absolute;
  11465. left:351px;
  11466. top:230px;
  11467. width:95px;
  11468. height:30px;
  11469. display:flex;
  11470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11471. font-weight:400;
  11472. font-style:normal;
  11473. font-size:14px;
  11474. color:#FFFFFF;
  11475. }
  11476. #u16104 .text {
  11477. position:absolute;
  11478. align-self:center;
  11479. padding:5px 15px 5px 15px;
  11480. box-sizing:border-box;
  11481. width:100%;
  11482. }
  11483. #u16104_text {
  11484. border-width:0px;
  11485. white-space:nowrap;
  11486. text-transform:none;
  11487. }
  11488. #u16105_div {
  11489. border-width:0px;
  11490. position:absolute;
  11491. left:0px;
  11492. top:0px;
  11493. width:335px;
  11494. height:80px;
  11495. background:inherit;
  11496. background-color:rgba(255, 255, 255, 0);
  11497. border:none;
  11498. border-left:0px;
  11499. border-top:0px;
  11500. border-right:0px;
  11501. border-radius:0px;
  11502. border-bottom-right-radius:0px;
  11503. border-bottom-left-radius:0px;
  11504. -moz-box-shadow:none;
  11505. -webkit-box-shadow:none;
  11506. box-shadow:none;
  11507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11508. font-weight:400;
  11509. font-style:normal;
  11510. font-size:14px;
  11511. color:#D9001B;
  11512. }
  11513. #u16105 {
  11514. border-width:0px;
  11515. position:absolute;
  11516. left:2701px;
  11517. top:130px;
  11518. width:335px;
  11519. height:80px;
  11520. display:flex;
  11521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11522. font-weight:400;
  11523. font-style:normal;
  11524. font-size:14px;
  11525. color:#D9001B;
  11526. }
  11527. #u16105 .text {
  11528. position:absolute;
  11529. align-self:center;
  11530. padding:0px 0px 0px 0px;
  11531. box-sizing:border-box;
  11532. width:100%;
  11533. }
  11534. #u16105_text {
  11535. border-width:0px;
  11536. white-space:nowrap;
  11537. text-transform:none;
  11538. }
  11539. #u16106 {
  11540. border-width:0px;
  11541. position:absolute;
  11542. left:0px;
  11543. top:0px;
  11544. width:0px;
  11545. height:0px;
  11546. }
  11547. #u16107_div {
  11548. border-width:0px;
  11549. position:absolute;
  11550. left:0px;
  11551. top:0px;
  11552. width:120px;
  11553. height:180px;
  11554. background:inherit;
  11555. background-color:rgba(255, 255, 255, 1);
  11556. box-sizing:border-box;
  11557. border-width:1px;
  11558. border-style:solid;
  11559. border-color:rgba(242, 242, 242, 1);
  11560. border-radius:4px;
  11561. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11562. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11563. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11565. font-weight:400;
  11566. font-style:normal;
  11567. font-size:14px;
  11568. text-align:left;
  11569. }
  11570. #u16107 {
  11571. border-width:0px;
  11572. position:absolute;
  11573. left:2941px;
  11574. top:521px;
  11575. width:120px;
  11576. height:180px;
  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. text-align:left;
  11583. }
  11584. #u16107 .text {
  11585. position:absolute;
  11586. align-self:center;
  11587. padding:2px 2px 2px 2px;
  11588. box-sizing:border-box;
  11589. width:100%;
  11590. }
  11591. #u16107_text {
  11592. border-width:0px;
  11593. word-wrap:break-word;
  11594. text-transform:none;
  11595. visibility:hidden;
  11596. }
  11597. #u16108_div {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:0px;
  11601. top:0px;
  11602. width:100px;
  11603. height:40px;
  11604. background:inherit;
  11605. background-color:rgba(255, 255, 255, 1);
  11606. box-sizing:border-box;
  11607. border-width:1px;
  11608. border-style:solid;
  11609. border-color:rgba(215, 215, 215, 1);
  11610. border-left:0px;
  11611. border-top:0px;
  11612. border-right:0px;
  11613. border-radius:0px;
  11614. border-bottom-right-radius:0px;
  11615. border-bottom-left-radius:0px;
  11616. -moz-box-shadow:none;
  11617. -webkit-box-shadow:none;
  11618. box-shadow:none;
  11619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11620. font-weight:400;
  11621. font-style:normal;
  11622. font-size:14px;
  11623. color:#AAAAAA;
  11624. }
  11625. #u16108 {
  11626. border-width:0px;
  11627. position:absolute;
  11628. left:2951px;
  11629. top:531px;
  11630. width:100px;
  11631. height:40px;
  11632. display:flex;
  11633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11634. font-weight:400;
  11635. font-style:normal;
  11636. font-size:14px;
  11637. color:#AAAAAA;
  11638. }
  11639. #u16108 .text {
  11640. position:absolute;
  11641. align-self:center;
  11642. padding:2px 2px 2px 2px;
  11643. box-sizing:border-box;
  11644. width:100%;
  11645. }
  11646. #u16108_text {
  11647. border-width:0px;
  11648. word-wrap:break-word;
  11649. text-transform:none;
  11650. }
  11651. #u16109_div {
  11652. border-width:0px;
  11653. position:absolute;
  11654. left:0px;
  11655. top:0px;
  11656. width:100px;
  11657. height:40px;
  11658. background:inherit;
  11659. background-color:rgba(255, 255, 255, 1);
  11660. border:none;
  11661. border-left:0px;
  11662. border-top:0px;
  11663. border-right:0px;
  11664. border-radius:0px;
  11665. border-bottom-right-radius:0px;
  11666. border-bottom-left-radius:0px;
  11667. -moz-box-shadow:none;
  11668. -webkit-box-shadow:none;
  11669. box-shadow:none;
  11670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11671. font-weight:400;
  11672. font-style:normal;
  11673. font-size:14px;
  11674. }
  11675. #u16109 {
  11676. border-width:0px;
  11677. position:absolute;
  11678. left:2951px;
  11679. top:651px;
  11680. width:100px;
  11681. height:40px;
  11682. display:flex;
  11683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11684. font-weight:400;
  11685. font-style:normal;
  11686. font-size:14px;
  11687. }
  11688. #u16109 .text {
  11689. position:absolute;
  11690. align-self:center;
  11691. padding:2px 2px 2px 2px;
  11692. box-sizing:border-box;
  11693. width:100%;
  11694. }
  11695. #u16109_text {
  11696. border-width:0px;
  11697. word-wrap:break-word;
  11698. text-transform:none;
  11699. }
  11700. #u16110_div {
  11701. border-width:0px;
  11702. position:absolute;
  11703. left:0px;
  11704. top:0px;
  11705. width:100px;
  11706. height:40px;
  11707. background:inherit;
  11708. background-color:rgba(255, 255, 255, 1);
  11709. box-sizing:border-box;
  11710. border-width:1px;
  11711. border-style:solid;
  11712. border-color:rgba(215, 215, 215, 1);
  11713. border-left:0px;
  11714. border-top:0px;
  11715. border-right:0px;
  11716. border-radius:0px;
  11717. border-bottom-right-radius:0px;
  11718. border-bottom-left-radius:0px;
  11719. -moz-box-shadow:none;
  11720. -webkit-box-shadow:none;
  11721. box-shadow:none;
  11722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11723. font-weight:400;
  11724. font-style:normal;
  11725. font-size:14px;
  11726. color:#AAAAAA;
  11727. }
  11728. #u16110 {
  11729. border-width:0px;
  11730. position:absolute;
  11731. left:2951px;
  11732. top:571px;
  11733. width:100px;
  11734. height:40px;
  11735. display:flex;
  11736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11737. font-weight:400;
  11738. font-style:normal;
  11739. font-size:14px;
  11740. color:#AAAAAA;
  11741. }
  11742. #u16110 .text {
  11743. position:absolute;
  11744. align-self:center;
  11745. padding:2px 2px 2px 2px;
  11746. box-sizing:border-box;
  11747. width:100%;
  11748. }
  11749. #u16110_text {
  11750. border-width:0px;
  11751. word-wrap:break-word;
  11752. text-transform:none;
  11753. }
  11754. #u16111_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. #u16111 {
  11782. border-width:0px;
  11783. position:absolute;
  11784. left:2951px;
  11785. top:611px;
  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. #u16111 .text {
  11795. position:absolute;
  11796. align-self:center;
  11797. padding:2px 2px 2px 2px;
  11798. box-sizing:border-box;
  11799. width:100%;
  11800. }
  11801. #u16111_text {
  11802. border-width:0px;
  11803. word-wrap:break-word;
  11804. text-transform:none;
  11805. }
  11806. #u16112 {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:0px;
  11810. top:0px;
  11811. width:0px;
  11812. height:0px;
  11813. }
  11814. #u16113_div {
  11815. border-width:0px;
  11816. position:absolute;
  11817. left:0px;
  11818. top:0px;
  11819. width:120px;
  11820. height:180px;
  11821. background:inherit;
  11822. background-color:rgba(255, 255, 255, 1);
  11823. box-sizing:border-box;
  11824. border-width:1px;
  11825. border-style:solid;
  11826. border-color:rgba(242, 242, 242, 1);
  11827. border-radius:4px;
  11828. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11829. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11830. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11832. font-weight:400;
  11833. font-style:normal;
  11834. font-size:14px;
  11835. text-align:left;
  11836. }
  11837. #u16113 {
  11838. border-width:0px;
  11839. position:absolute;
  11840. left:2792px;
  11841. top:521px;
  11842. width:120px;
  11843. height:180px;
  11844. display:flex;
  11845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11846. font-weight:400;
  11847. font-style:normal;
  11848. font-size:14px;
  11849. text-align:left;
  11850. }
  11851. #u16113 .text {
  11852. position:absolute;
  11853. align-self:center;
  11854. padding:2px 2px 2px 2px;
  11855. box-sizing:border-box;
  11856. width:100%;
  11857. }
  11858. #u16113_text {
  11859. border-width:0px;
  11860. word-wrap:break-word;
  11861. text-transform:none;
  11862. visibility:hidden;
  11863. }
  11864. #u16114_div {
  11865. border-width:0px;
  11866. position:absolute;
  11867. left:0px;
  11868. top:0px;
  11869. width:100px;
  11870. height:40px;
  11871. background:inherit;
  11872. background-color:rgba(255, 255, 255, 1);
  11873. box-sizing:border-box;
  11874. border-width:1px;
  11875. border-style:solid;
  11876. border-color:rgba(215, 215, 215, 1);
  11877. border-left:0px;
  11878. border-top:0px;
  11879. border-right:0px;
  11880. border-radius:0px;
  11881. border-bottom-right-radius:0px;
  11882. border-bottom-left-radius:0px;
  11883. -moz-box-shadow:none;
  11884. -webkit-box-shadow:none;
  11885. box-shadow:none;
  11886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11887. font-weight:400;
  11888. font-style:normal;
  11889. font-size:14px;
  11890. }
  11891. #u16114 {
  11892. border-width:0px;
  11893. position:absolute;
  11894. left:2802px;
  11895. top:531px;
  11896. width:100px;
  11897. height:40px;
  11898. display:flex;
  11899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11900. font-weight:400;
  11901. font-style:normal;
  11902. font-size:14px;
  11903. }
  11904. #u16114 .text {
  11905. position:absolute;
  11906. align-self:center;
  11907. padding:2px 2px 2px 2px;
  11908. box-sizing:border-box;
  11909. width:100%;
  11910. }
  11911. #u16114_text {
  11912. border-width:0px;
  11913. word-wrap:break-word;
  11914. text-transform:none;
  11915. }
  11916. #u16115_div {
  11917. border-width:0px;
  11918. position:absolute;
  11919. left:0px;
  11920. top:0px;
  11921. width:100px;
  11922. height:40px;
  11923. background:inherit;
  11924. background-color:rgba(255, 255, 255, 1);
  11925. border:none;
  11926. border-left:0px;
  11927. border-top:0px;
  11928. border-right:0px;
  11929. border-radius:0px;
  11930. border-bottom-right-radius:0px;
  11931. border-bottom-left-radius:0px;
  11932. -moz-box-shadow:none;
  11933. -webkit-box-shadow:none;
  11934. box-shadow:none;
  11935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11936. font-weight:400;
  11937. font-style:normal;
  11938. font-size:14px;
  11939. }
  11940. #u16115 {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:2802px;
  11944. top:651px;
  11945. width:100px;
  11946. height:40px;
  11947. display:flex;
  11948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11949. font-weight:400;
  11950. font-style:normal;
  11951. font-size:14px;
  11952. }
  11953. #u16115 .text {
  11954. position:absolute;
  11955. align-self:center;
  11956. padding:2px 2px 2px 2px;
  11957. box-sizing:border-box;
  11958. width:100%;
  11959. }
  11960. #u16115_text {
  11961. border-width:0px;
  11962. word-wrap:break-word;
  11963. text-transform:none;
  11964. }
  11965. #u16116_div {
  11966. border-width:0px;
  11967. position:absolute;
  11968. left:0px;
  11969. top:0px;
  11970. width:100px;
  11971. height:40px;
  11972. background:inherit;
  11973. background-color:rgba(255, 255, 255, 1);
  11974. box-sizing:border-box;
  11975. border-width:1px;
  11976. border-style:solid;
  11977. border-color:rgba(215, 215, 215, 1);
  11978. border-left:0px;
  11979. border-top:0px;
  11980. border-right:0px;
  11981. border-radius:0px;
  11982. border-bottom-right-radius:0px;
  11983. border-bottom-left-radius:0px;
  11984. -moz-box-shadow:none;
  11985. -webkit-box-shadow:none;
  11986. box-shadow:none;
  11987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11988. font-weight:400;
  11989. font-style:normal;
  11990. font-size:14px;
  11991. }
  11992. #u16116 {
  11993. border-width:0px;
  11994. position:absolute;
  11995. left:2802px;
  11996. top:571px;
  11997. width:100px;
  11998. height:40px;
  11999. display:flex;
  12000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12001. font-weight:400;
  12002. font-style:normal;
  12003. font-size:14px;
  12004. }
  12005. #u16116 .text {
  12006. position:absolute;
  12007. align-self:center;
  12008. padding:2px 2px 2px 2px;
  12009. box-sizing:border-box;
  12010. width:100%;
  12011. }
  12012. #u16116_text {
  12013. border-width:0px;
  12014. word-wrap:break-word;
  12015. text-transform:none;
  12016. }
  12017. #u16117_div {
  12018. border-width:0px;
  12019. position:absolute;
  12020. left:0px;
  12021. top:0px;
  12022. width:100px;
  12023. height:40px;
  12024. background:inherit;
  12025. background-color:rgba(255, 255, 255, 1);
  12026. box-sizing:border-box;
  12027. border-width:1px;
  12028. border-style:solid;
  12029. border-color:rgba(215, 215, 215, 1);
  12030. border-left:0px;
  12031. border-top:0px;
  12032. border-right:0px;
  12033. border-radius:0px;
  12034. border-bottom-right-radius:0px;
  12035. border-bottom-left-radius:0px;
  12036. -moz-box-shadow:none;
  12037. -webkit-box-shadow:none;
  12038. box-shadow:none;
  12039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12040. font-weight:400;
  12041. font-style:normal;
  12042. font-size:14px;
  12043. }
  12044. #u16117 {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:2802px;
  12048. top:611px;
  12049. width:100px;
  12050. height:40px;
  12051. display:flex;
  12052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12053. font-weight:400;
  12054. font-style:normal;
  12055. font-size:14px;
  12056. }
  12057. #u16117 .text {
  12058. position:absolute;
  12059. align-self:center;
  12060. padding:2px 2px 2px 2px;
  12061. box-sizing:border-box;
  12062. width:100%;
  12063. }
  12064. #u16117_text {
  12065. border-width:0px;
  12066. word-wrap:break-word;
  12067. text-transform:none;
  12068. }
  12069. #u16118_div {
  12070. border-width:0px;
  12071. position:absolute;
  12072. left:0px;
  12073. top:0px;
  12074. width:73px;
  12075. height:17px;
  12076. background:inherit;
  12077. background-color:rgba(255, 255, 255, 0);
  12078. border:none;
  12079. border-radius:0px;
  12080. -moz-box-shadow:none;
  12081. -webkit-box-shadow:none;
  12082. box-shadow:none;
  12083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12084. font-weight:400;
  12085. font-style:normal;
  12086. font-size:12px;
  12087. color:#D9001B;
  12088. text-align:center;
  12089. }
  12090. #u16118 {
  12091. border-width:0px;
  12092. position:absolute;
  12093. left:2788px;
  12094. top:494px;
  12095. width:73px;
  12096. height:17px;
  12097. display:flex;
  12098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12099. font-weight:400;
  12100. font-style:normal;
  12101. font-size:12px;
  12102. color:#D9001B;
  12103. text-align:center;
  12104. }
  12105. #u16118 .text {
  12106. position:absolute;
  12107. align-self:flex-start;
  12108. padding:0px 0px 0px 0px;
  12109. box-sizing:border-box;
  12110. width:100%;
  12111. }
  12112. #u16118_text {
  12113. border-width:0px;
  12114. white-space:nowrap;
  12115. text-transform:none;
  12116. }
  12117. #u16119_div {
  12118. border-width:0px;
  12119. position:absolute;
  12120. left:0px;
  12121. top:0px;
  12122. width:73px;
  12123. height:17px;
  12124. background:inherit;
  12125. background-color:rgba(255, 255, 255, 0);
  12126. border:none;
  12127. border-radius:0px;
  12128. -moz-box-shadow:none;
  12129. -webkit-box-shadow:none;
  12130. box-shadow:none;
  12131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12132. font-weight:400;
  12133. font-style:normal;
  12134. font-size:12px;
  12135. color:#D9001B;
  12136. text-align:center;
  12137. }
  12138. #u16119 {
  12139. border-width:0px;
  12140. position:absolute;
  12141. left:2941px;
  12142. top:494px;
  12143. width:73px;
  12144. height:17px;
  12145. display:flex;
  12146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12147. font-weight:400;
  12148. font-style:normal;
  12149. font-size:12px;
  12150. color:#D9001B;
  12151. text-align:center;
  12152. }
  12153. #u16119 .text {
  12154. position:absolute;
  12155. align-self:flex-start;
  12156. padding:0px 0px 0px 0px;
  12157. box-sizing:border-box;
  12158. width:100%;
  12159. }
  12160. #u16119_text {
  12161. border-width:0px;
  12162. white-space:nowrap;
  12163. text-transform:none;
  12164. }