styles.css 227 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3632px;
  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. #u9731_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. #u9731 {
  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. #u9731 .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. #u9731_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u9732_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. #u9732 {
  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. #u9732 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u9732_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u9733 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u9734_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u9734 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u9734 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u9734_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u9735_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. #u9735 {
  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. #u9735 .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. #u9735_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u9736_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. #u9736 {
  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. #u9736 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u9736_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u9737_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. #u9737 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u9737 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u9737_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u9738 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u9739_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. #u9739 {
  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. #u9739 .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. #u9739_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u9740_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u9740 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u9740 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u9740_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u9741 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u9742_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. #u9742 {
  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. #u9742 .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. #u9742_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u9743_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u9743 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u9743 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u9743_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u9744 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u9745_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. #u9745 {
  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. #u9745 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u9745_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u9746_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u9746 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u9746 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u9746_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u9747 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u9748_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. #u9748 {
  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. #u9748 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u9748_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u9749_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u9749 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u9749 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u9749_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u9750 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u9751_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. #u9751 {
  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. #u9751 .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. #u9751_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u9752_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u9752 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u9752 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u9752_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u9753 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u9754_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. #u9754 {
  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. #u9754 .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. #u9754_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u9755_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u9755 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u9755 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u9755_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u9756 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u9757_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. #u9757 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u9757 .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. #u9757_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u9758_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u9758 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u9758 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u9758_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u9759 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u9760_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. #u9760 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u9760 .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. #u9760_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u9761_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u9761 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u9761 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u9761_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u9762 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u9763_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. #u9763 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u9763 .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. #u9763_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u9764_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u9764 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u9764 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u9764_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u9765_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u9765_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u9765_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u9765 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u9765 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u9765_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u9765.disabled {
  1100. }
  1101. .u9765_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u9766_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u9766 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u9766 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u9766_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u9767_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u9767 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u9767 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u9767_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u9768_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u9768 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u9768 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u9768_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u9769 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u9770_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u9770 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u9770 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u9770_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u9771_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u9771 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u9771 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u9771_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u9772 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u9773_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u9773 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u9773 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u9773_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u9774_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u9774 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u9774 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u9774_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u9775 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u9776_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u9776 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u9776 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u9776_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u9777_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u9777 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u9777 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u9777_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u9778 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u9779_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u9779 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u9779 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u9779_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u9780_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u9780 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u9780 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u9780_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u9781 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u9782_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u9782 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u9782 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u9782_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u9783_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u9783 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u9783 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u9783_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u9784_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1260px;
  1636. height:1082px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. color:#1890FF;
  1645. }
  1646. #u9784 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:332px;
  1650. top:160px;
  1651. width:1260px;
  1652. height:1082px;
  1653. display:flex;
  1654. color:#1890FF;
  1655. }
  1656. #u9784 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u9784_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. visibility:hidden;
  1668. }
  1669. #u9785_div {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:1260px;
  1675. height:100px;
  1676. background:inherit;
  1677. background-color:rgba(255, 255, 255, 1);
  1678. border:none;
  1679. border-radius:0px;
  1680. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1681. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1682. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1683. color:#1890FF;
  1684. }
  1685. #u9785 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:332px;
  1689. top:50px;
  1690. width:1260px;
  1691. height:100px;
  1692. display:flex;
  1693. color:#1890FF;
  1694. }
  1695. #u9785 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u9785_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u9786_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:73px;
  1714. height:50px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 0);
  1717. border:none;
  1718. border-left:0px;
  1719. border-top:0px;
  1720. border-right:0px;
  1721. border-radius:0px;
  1722. border-bottom-right-radius:0px;
  1723. border-bottom-left-radius:0px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1728. font-weight:500;
  1729. font-style:normal;
  1730. font-size:18px;
  1731. }
  1732. #u9786 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:351px;
  1736. top:50px;
  1737. width:73px;
  1738. height:50px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1741. font-weight:500;
  1742. font-style:normal;
  1743. font-size:18px;
  1744. }
  1745. #u9786 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:0px 0px 0px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u9786_text {
  1753. border-width:0px;
  1754. white-space:nowrap;
  1755. text-transform:none;
  1756. }
  1757. #u9787 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:351px;
  1761. top:230px;
  1762. width:1222px;
  1763. height:363px;
  1764. }
  1765. #u9788_img {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:112px;
  1771. height:38px;
  1772. }
  1773. #u9788 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:112px;
  1779. height:38px;
  1780. display:flex;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:12px;
  1785. color:#FFFFFF;
  1786. }
  1787. #u9788 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u9788_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u9789_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:100px;
  1805. height:38px;
  1806. }
  1807. #u9789 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:112px;
  1811. top:0px;
  1812. width:100px;
  1813. height:38px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:12px;
  1819. color:#FFFFFF;
  1820. }
  1821. #u9789 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:2px 2px 2px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u9789_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. }
  1833. #u9790_img {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:100px;
  1839. height:38px;
  1840. }
  1841. #u9790 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:212px;
  1845. top:0px;
  1846. width:100px;
  1847. height:38px;
  1848. display:flex;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:12px;
  1853. color:#FFFFFF;
  1854. }
  1855. #u9790 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 2px 2px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u9790_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u9791_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:114px;
  1873. height:38px;
  1874. }
  1875. #u9791 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:312px;
  1879. top:0px;
  1880. width:114px;
  1881. height:38px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:12px;
  1887. color:#FFFFFF;
  1888. }
  1889. #u9791 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u9791_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u9792_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:100px;
  1907. height:38px;
  1908. }
  1909. #u9792 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:426px;
  1913. top:0px;
  1914. width:100px;
  1915. height:38px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#FFFFFF;
  1922. }
  1923. #u9792 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u9792_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u9793_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:112px;
  1941. height:38px;
  1942. }
  1943. #u9793 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:526px;
  1947. top:0px;
  1948. width:112px;
  1949. height:38px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. color:#FFFFFF;
  1956. }
  1957. #u9793 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u9793_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u9794_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:114px;
  1975. height:38px;
  1976. }
  1977. #u9794 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:638px;
  1981. top:0px;
  1982. width:114px;
  1983. height:38px;
  1984. display:flex;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. color:#FFFFFF;
  1990. }
  1991. #u9794 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u9794_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u9795_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:112px;
  2009. height:38px;
  2010. }
  2011. #u9795 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:752px;
  2015. top:0px;
  2016. width:112px;
  2017. height:38px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u9795 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u9795_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u9796_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:114px;
  2043. height:38px;
  2044. }
  2045. #u9796 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:864px;
  2049. top:0px;
  2050. width:114px;
  2051. height:38px;
  2052. display:flex;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:12px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u9796 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u9796_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u9797_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:114px;
  2077. height:38px;
  2078. }
  2079. #u9797 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:978px;
  2083. top:0px;
  2084. width:114px;
  2085. height:38px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. color:#FFFFFF;
  2092. }
  2093. #u9797 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u9797_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u9798_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:130px;
  2111. height:38px;
  2112. }
  2113. #u9798 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:1092px;
  2117. top:0px;
  2118. width:130px;
  2119. height:38px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. color:#FFFFFF;
  2126. }
  2127. #u9798 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u9798_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u9799_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:112px;
  2145. height:38px;
  2146. }
  2147. #u9799 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:38px;
  2152. width:112px;
  2153. height:38px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. }
  2160. #u9799 .text {
  2161. position:absolute;
  2162. align-self:center;
  2163. padding:2px 2px 2px 0px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u9799_text {
  2168. border-width:0px;
  2169. word-wrap:break-word;
  2170. text-transform:none;
  2171. }
  2172. #u9800_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:100px;
  2178. height:38px;
  2179. }
  2180. #u9800 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:112px;
  2184. top:38px;
  2185. width:100px;
  2186. height:38px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:12px;
  2192. }
  2193. #u9800 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 2px 2px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u9800_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u9801_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:100px;
  2212. height:38px;
  2213. }
  2214. #u9801 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:212px;
  2218. top:38px;
  2219. width:100px;
  2220. height:38px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:12px;
  2226. }
  2227. #u9801 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u9801_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u9802_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:114px;
  2246. height:38px;
  2247. }
  2248. #u9802 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:312px;
  2252. top:38px;
  2253. width:114px;
  2254. height:38px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:12px;
  2260. }
  2261. #u9802 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u9802_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u9803_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:100px;
  2280. height:38px;
  2281. }
  2282. #u9803 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:426px;
  2286. top:38px;
  2287. width:100px;
  2288. height:38px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u9803 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u9803_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u9804_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:112px;
  2314. height:38px;
  2315. }
  2316. #u9804 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:526px;
  2320. top:38px;
  2321. width:112px;
  2322. height:38px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. }
  2329. #u9804 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u9804_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. }
  2341. #u9805_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:114px;
  2347. height:38px;
  2348. }
  2349. #u9805 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:638px;
  2353. top:38px;
  2354. width:114px;
  2355. height:38px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. }
  2362. #u9805 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u9805_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. }
  2374. #u9806_img {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:112px;
  2380. height:38px;
  2381. }
  2382. #u9806 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:752px;
  2386. top:38px;
  2387. width:112px;
  2388. height:38px;
  2389. display:flex;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:12px;
  2394. }
  2395. #u9806 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 0px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u9806_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. }
  2407. #u9807_img {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:114px;
  2413. height:38px;
  2414. }
  2415. #u9807 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:864px;
  2419. top:38px;
  2420. width:114px;
  2421. height:38px;
  2422. display:flex;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:12px;
  2427. }
  2428. #u9807 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 2px 2px 0px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u9807_text {
  2436. border-width:0px;
  2437. word-wrap:break-word;
  2438. text-transform:none;
  2439. }
  2440. #u9808_img {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:114px;
  2446. height:38px;
  2447. }
  2448. #u9808 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:978px;
  2452. top:38px;
  2453. width:114px;
  2454. height:38px;
  2455. display:flex;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:12px;
  2460. }
  2461. #u9808 .text {
  2462. position:absolute;
  2463. align-self:center;
  2464. padding:2px 2px 2px 0px;
  2465. box-sizing:border-box;
  2466. width:100%;
  2467. }
  2468. #u9808_text {
  2469. border-width:0px;
  2470. word-wrap:break-word;
  2471. text-transform:none;
  2472. }
  2473. #u9809_img {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:130px;
  2479. height:38px;
  2480. }
  2481. #u9809 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:1092px;
  2485. top:38px;
  2486. width:130px;
  2487. height:38px;
  2488. display:flex;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:12px;
  2493. color:#1890FF;
  2494. }
  2495. #u9809 .text {
  2496. position:absolute;
  2497. align-self:center;
  2498. padding:2px 2px 2px 0px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u9809_text {
  2503. border-width:0px;
  2504. word-wrap:break-word;
  2505. text-transform:none;
  2506. }
  2507. #u9810_img {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:112px;
  2513. height:38px;
  2514. }
  2515. #u9810 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:76px;
  2520. width:112px;
  2521. height:38px;
  2522. display:flex;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:12px;
  2527. }
  2528. #u9810 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 0px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u9810_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u9811_img {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:100px;
  2547. height:38px;
  2548. }
  2549. #u9811 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:112px;
  2553. top:76px;
  2554. width:100px;
  2555. height:38px;
  2556. display:flex;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:12px;
  2561. }
  2562. #u9811 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 0px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u9811_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. visibility:hidden;
  2574. }
  2575. #u9812_img {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:100px;
  2581. height:38px;
  2582. }
  2583. #u9812 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:212px;
  2587. top:76px;
  2588. width:100px;
  2589. height:38px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:12px;
  2595. }
  2596. #u9812 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 0px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u9812_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u9813_img {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:114px;
  2615. height:38px;
  2616. }
  2617. #u9813 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:312px;
  2621. top:76px;
  2622. width:114px;
  2623. height:38px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:12px;
  2629. }
  2630. #u9813 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:2px 2px 2px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u9813_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. visibility:hidden;
  2642. }
  2643. #u9814_img {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:100px;
  2649. height:38px;
  2650. }
  2651. #u9814 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:426px;
  2655. top:76px;
  2656. width:100px;
  2657. height:38px;
  2658. display:flex;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:12px;
  2663. }
  2664. #u9814 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u9814_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u9815_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:112px;
  2683. height:38px;
  2684. }
  2685. #u9815 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:526px;
  2689. top:76px;
  2690. width:112px;
  2691. height:38px;
  2692. display:flex;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:12px;
  2697. }
  2698. #u9815 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 0px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u9815_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u9816_img {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:114px;
  2717. height:38px;
  2718. }
  2719. #u9816 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:638px;
  2723. top:76px;
  2724. width:114px;
  2725. height:38px;
  2726. display:flex;
  2727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2728. font-weight:400;
  2729. font-style:normal;
  2730. font-size:12px;
  2731. }
  2732. #u9816 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:2px 2px 2px 0px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u9816_text {
  2740. border-width:0px;
  2741. word-wrap:break-word;
  2742. text-transform:none;
  2743. visibility:hidden;
  2744. }
  2745. #u9817_img {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:112px;
  2751. height:38px;
  2752. }
  2753. #u9817 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:752px;
  2757. top:76px;
  2758. width:112px;
  2759. height:38px;
  2760. display:flex;
  2761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:12px;
  2765. }
  2766. #u9817 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 2px 2px 0px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u9817_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u9818_img {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:114px;
  2785. height:38px;
  2786. }
  2787. #u9818 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:864px;
  2791. top:76px;
  2792. width:114px;
  2793. height:38px;
  2794. display:flex;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:12px;
  2799. }
  2800. #u9818 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 0px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u9818_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u9819_img {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:114px;
  2819. height:38px;
  2820. }
  2821. #u9819 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:978px;
  2825. top:76px;
  2826. width:114px;
  2827. height:38px;
  2828. display:flex;
  2829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2830. font-weight:400;
  2831. font-style:normal;
  2832. font-size:12px;
  2833. }
  2834. #u9819 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 2px 2px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u9819_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u9820_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:130px;
  2853. height:38px;
  2854. }
  2855. #u9820 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:1092px;
  2859. top:76px;
  2860. width:130px;
  2861. height:38px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:12px;
  2867. color:#1890FF;
  2868. }
  2869. #u9820 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:2px 2px 2px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u9820_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. }
  2881. #u9821_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:112px;
  2887. height:38px;
  2888. }
  2889. #u9821 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:114px;
  2894. width:112px;
  2895. height:38px;
  2896. display:flex;
  2897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2898. font-weight:400;
  2899. font-style:normal;
  2900. font-size:12px;
  2901. }
  2902. #u9821 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 0px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u9821_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. visibility:hidden;
  2914. }
  2915. #u9822_img {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:100px;
  2921. height:38px;
  2922. }
  2923. #u9822 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:112px;
  2927. top:114px;
  2928. width:100px;
  2929. height:38px;
  2930. display:flex;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:12px;
  2935. }
  2936. #u9822 .text {
  2937. position:absolute;
  2938. align-self:center;
  2939. padding:2px 2px 2px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u9822_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. visibility:hidden;
  2948. }
  2949. #u9823_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:100px;
  2955. height:38px;
  2956. }
  2957. #u9823 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:212px;
  2961. top:114px;
  2962. width:100px;
  2963. height:38px;
  2964. display:flex;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:12px;
  2969. }
  2970. #u9823 .text {
  2971. position:absolute;
  2972. align-self:center;
  2973. padding:2px 2px 2px 0px;
  2974. box-sizing:border-box;
  2975. width:100%;
  2976. }
  2977. #u9823_text {
  2978. border-width:0px;
  2979. word-wrap:break-word;
  2980. text-transform:none;
  2981. visibility:hidden;
  2982. }
  2983. #u9824_img {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:114px;
  2989. height:38px;
  2990. }
  2991. #u9824 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:312px;
  2995. top:114px;
  2996. width:114px;
  2997. height:38px;
  2998. display:flex;
  2999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. font-size:12px;
  3003. }
  3004. #u9824 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 0px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u9824_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. visibility:hidden;
  3016. }
  3017. #u9825_img {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:100px;
  3023. height:38px;
  3024. }
  3025. #u9825 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:426px;
  3029. top:114px;
  3030. width:100px;
  3031. height:38px;
  3032. display:flex;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:12px;
  3037. }
  3038. #u9825 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 0px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u9825_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u9826_img {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:112px;
  3057. height:38px;
  3058. }
  3059. #u9826 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:526px;
  3063. top:114px;
  3064. width:112px;
  3065. height:38px;
  3066. display:flex;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:12px;
  3071. }
  3072. #u9826 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 0px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u9826_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. visibility:hidden;
  3084. }
  3085. #u9827_img {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:114px;
  3091. height:38px;
  3092. }
  3093. #u9827 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:638px;
  3097. top:114px;
  3098. width:114px;
  3099. height:38px;
  3100. display:flex;
  3101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. }
  3106. #u9827 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 0px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u9827_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. visibility:hidden;
  3118. }
  3119. #u9828_img {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:112px;
  3125. height:38px;
  3126. }
  3127. #u9828 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:752px;
  3131. top:114px;
  3132. width:112px;
  3133. height:38px;
  3134. display:flex;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:12px;
  3139. }
  3140. #u9828 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u9828_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u9829_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:114px;
  3159. height:38px;
  3160. }
  3161. #u9829 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:864px;
  3165. top:114px;
  3166. width:114px;
  3167. height:38px;
  3168. display:flex;
  3169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:12px;
  3173. }
  3174. #u9829 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 0px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u9829_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. visibility:hidden;
  3186. }
  3187. #u9830_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:114px;
  3193. height:38px;
  3194. }
  3195. #u9830 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:978px;
  3199. top:114px;
  3200. width:114px;
  3201. height:38px;
  3202. display:flex;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:12px;
  3207. }
  3208. #u9830 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u9830_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u9831_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:130px;
  3227. height:38px;
  3228. }
  3229. #u9831 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:1092px;
  3233. top:114px;
  3234. width:130px;
  3235. height:38px;
  3236. display:flex;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:12px;
  3241. color:#1890FF;
  3242. }
  3243. #u9831 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 0px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u9831_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u9832_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:112px;
  3262. height:38px;
  3263. }
  3264. #u9832 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:152px;
  3269. width:112px;
  3270. height:38px;
  3271. display:flex;
  3272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:12px;
  3276. }
  3277. #u9832 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:2px 2px 2px 0px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u9832_text {
  3285. border-width:0px;
  3286. word-wrap:break-word;
  3287. text-transform:none;
  3288. visibility:hidden;
  3289. }
  3290. #u9833_img {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:100px;
  3296. height:38px;
  3297. }
  3298. #u9833 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:112px;
  3302. top:152px;
  3303. width:100px;
  3304. height:38px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:12px;
  3310. }
  3311. #u9833 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u9833_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u9834_img {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:100px;
  3330. height:38px;
  3331. }
  3332. #u9834 {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:212px;
  3336. top:152px;
  3337. width:100px;
  3338. height:38px;
  3339. display:flex;
  3340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3341. font-weight:400;
  3342. font-style:normal;
  3343. font-size:12px;
  3344. }
  3345. #u9834 .text {
  3346. position:absolute;
  3347. align-self:center;
  3348. padding:2px 2px 2px 0px;
  3349. box-sizing:border-box;
  3350. width:100%;
  3351. }
  3352. #u9834_text {
  3353. border-width:0px;
  3354. word-wrap:break-word;
  3355. text-transform:none;
  3356. visibility:hidden;
  3357. }
  3358. #u9835_img {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:114px;
  3364. height:38px;
  3365. }
  3366. #u9835 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:312px;
  3370. top:152px;
  3371. width:114px;
  3372. height:38px;
  3373. display:flex;
  3374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:12px;
  3378. }
  3379. #u9835 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u9835_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. visibility:hidden;
  3391. }
  3392. #u9836_img {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:100px;
  3398. height:38px;
  3399. }
  3400. #u9836 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:426px;
  3404. top:152px;
  3405. width:100px;
  3406. height:38px;
  3407. display:flex;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:12px;
  3412. }
  3413. #u9836 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 0px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u9836_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. visibility:hidden;
  3425. }
  3426. #u9837_img {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:112px;
  3432. height:38px;
  3433. }
  3434. #u9837 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:526px;
  3438. top:152px;
  3439. width:112px;
  3440. height:38px;
  3441. display:flex;
  3442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:12px;
  3446. }
  3447. #u9837 .text {
  3448. position:absolute;
  3449. align-self:center;
  3450. padding:2px 2px 2px 0px;
  3451. box-sizing:border-box;
  3452. width:100%;
  3453. }
  3454. #u9837_text {
  3455. border-width:0px;
  3456. word-wrap:break-word;
  3457. text-transform:none;
  3458. visibility:hidden;
  3459. }
  3460. #u9838_img {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:114px;
  3466. height:38px;
  3467. }
  3468. #u9838 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:638px;
  3472. top:152px;
  3473. width:114px;
  3474. height:38px;
  3475. display:flex;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:12px;
  3480. }
  3481. #u9838 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:2px 2px 2px 0px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u9838_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u9839_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:112px;
  3500. height:38px;
  3501. }
  3502. #u9839 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:752px;
  3506. top:152px;
  3507. width:112px;
  3508. height:38px;
  3509. display:flex;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:12px;
  3514. }
  3515. #u9839 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 0px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u9839_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u9840_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:114px;
  3534. height:38px;
  3535. }
  3536. #u9840 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:864px;
  3540. top:152px;
  3541. width:114px;
  3542. height:38px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. }
  3549. #u9840 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:2px 2px 2px 0px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u9840_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u9841_img {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:114px;
  3568. height:38px;
  3569. }
  3570. #u9841 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:978px;
  3574. top:152px;
  3575. width:114px;
  3576. height:38px;
  3577. display:flex;
  3578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:12px;
  3582. }
  3583. #u9841 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u9841_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. visibility:hidden;
  3595. }
  3596. #u9842_img {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:130px;
  3602. height:38px;
  3603. }
  3604. #u9842 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:1092px;
  3608. top:152px;
  3609. width:130px;
  3610. height:38px;
  3611. display:flex;
  3612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3613. font-weight:400;
  3614. font-style:normal;
  3615. font-size:12px;
  3616. color:#1890FF;
  3617. }
  3618. #u9842 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 0px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u9842_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u9843_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:112px;
  3637. height:35px;
  3638. }
  3639. #u9843 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:190px;
  3644. width:112px;
  3645. height:35px;
  3646. display:flex;
  3647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:12px;
  3651. color:#606266;
  3652. }
  3653. #u9843 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 0px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u9843_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u9844_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:100px;
  3672. height:35px;
  3673. }
  3674. #u9844 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:112px;
  3678. top:190px;
  3679. width:100px;
  3680. height:35px;
  3681. display:flex;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. color:#606266;
  3687. }
  3688. #u9844 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 2px 2px 0px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u9844_text {
  3696. border-width:0px;
  3697. word-wrap:break-word;
  3698. text-transform:none;
  3699. visibility:hidden;
  3700. }
  3701. #u9845_img {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:100px;
  3707. height:35px;
  3708. }
  3709. #u9845 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:212px;
  3713. top:190px;
  3714. width:100px;
  3715. height:35px;
  3716. display:flex;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:12px;
  3721. color:#606266;
  3722. }
  3723. #u9845 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 0px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u9845_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. visibility:hidden;
  3735. }
  3736. #u9846_img {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:114px;
  3742. height:35px;
  3743. }
  3744. #u9846 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:312px;
  3748. top:190px;
  3749. width:114px;
  3750. height:35px;
  3751. display:flex;
  3752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3753. font-weight:400;
  3754. font-style:normal;
  3755. font-size:12px;
  3756. color:#606266;
  3757. }
  3758. #u9846 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 0px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u9846_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u9847_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:100px;
  3777. height:35px;
  3778. }
  3779. #u9847 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:426px;
  3783. top:190px;
  3784. width:100px;
  3785. height:35px;
  3786. display:flex;
  3787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. color:#606266;
  3792. }
  3793. #u9847 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 2px 2px 0px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u9847_text {
  3801. border-width:0px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. visibility:hidden;
  3805. }
  3806. #u9848_img {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:112px;
  3812. height:35px;
  3813. }
  3814. #u9848 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:526px;
  3818. top:190px;
  3819. width:112px;
  3820. height:35px;
  3821. display:flex;
  3822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:12px;
  3826. color:#606266;
  3827. }
  3828. #u9848 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:2px 2px 2px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u9848_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. visibility:hidden;
  3840. }
  3841. #u9849_img {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:114px;
  3847. height:35px;
  3848. }
  3849. #u9849 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:638px;
  3853. top:190px;
  3854. width:114px;
  3855. height:35px;
  3856. display:flex;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:12px;
  3861. color:#606266;
  3862. }
  3863. #u9849 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u9849_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. visibility:hidden;
  3875. }
  3876. #u9850_img {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:112px;
  3882. height:35px;
  3883. }
  3884. #u9850 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:752px;
  3888. top:190px;
  3889. width:112px;
  3890. height:35px;
  3891. display:flex;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:12px;
  3896. color:#606266;
  3897. }
  3898. #u9850 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 0px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u9850_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. visibility:hidden;
  3910. }
  3911. #u9851_img {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:114px;
  3917. height:35px;
  3918. }
  3919. #u9851 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:864px;
  3923. top:190px;
  3924. width:114px;
  3925. height:35px;
  3926. display:flex;
  3927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3928. font-weight:400;
  3929. font-style:normal;
  3930. font-size:12px;
  3931. color:#606266;
  3932. }
  3933. #u9851 .text {
  3934. position:absolute;
  3935. align-self:center;
  3936. padding:2px 2px 2px 0px;
  3937. box-sizing:border-box;
  3938. width:100%;
  3939. }
  3940. #u9851_text {
  3941. border-width:0px;
  3942. word-wrap:break-word;
  3943. text-transform:none;
  3944. visibility:hidden;
  3945. }
  3946. #u9852_img {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:114px;
  3952. height:35px;
  3953. }
  3954. #u9852 {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:978px;
  3958. top:190px;
  3959. width:114px;
  3960. height:35px;
  3961. display:flex;
  3962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3963. font-weight:400;
  3964. font-style:normal;
  3965. font-size:12px;
  3966. color:#606266;
  3967. }
  3968. #u9852 .text {
  3969. position:absolute;
  3970. align-self:center;
  3971. padding:2px 2px 2px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u9852_text {
  3976. border-width:0px;
  3977. word-wrap:break-word;
  3978. text-transform:none;
  3979. visibility:hidden;
  3980. }
  3981. #u9853_img {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:130px;
  3987. height:35px;
  3988. }
  3989. #u9853 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:1092px;
  3993. top:190px;
  3994. width:130px;
  3995. height:35px;
  3996. display:flex;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:12px;
  4001. color:#02A7F0;
  4002. }
  4003. #u9853 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 0px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u9853_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. visibility:hidden;
  4015. }
  4016. #u9854_img {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:112px;
  4022. height:35px;
  4023. }
  4024. #u9854 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:225px;
  4029. width:112px;
  4030. height:35px;
  4031. display:flex;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:12px;
  4036. color:#606266;
  4037. }
  4038. #u9854 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:2px 2px 2px 0px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u9854_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. visibility:hidden;
  4050. }
  4051. #u9855_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:100px;
  4057. height:35px;
  4058. }
  4059. #u9855 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:112px;
  4063. top:225px;
  4064. width:100px;
  4065. height:35px;
  4066. display:flex;
  4067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4068. font-weight:400;
  4069. font-style:normal;
  4070. font-size:12px;
  4071. color:#606266;
  4072. }
  4073. #u9855 .text {
  4074. position:absolute;
  4075. align-self:center;
  4076. padding:2px 2px 2px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u9855_text {
  4081. border-width:0px;
  4082. word-wrap:break-word;
  4083. text-transform:none;
  4084. visibility:hidden;
  4085. }
  4086. #u9856_img {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:100px;
  4092. height:35px;
  4093. }
  4094. #u9856 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:212px;
  4098. top:225px;
  4099. width:100px;
  4100. height:35px;
  4101. display:flex;
  4102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4103. font-weight:400;
  4104. font-style:normal;
  4105. font-size:12px;
  4106. color:#606266;
  4107. }
  4108. #u9856 .text {
  4109. position:absolute;
  4110. align-self:center;
  4111. padding:2px 2px 2px 0px;
  4112. box-sizing:border-box;
  4113. width:100%;
  4114. }
  4115. #u9856_text {
  4116. border-width:0px;
  4117. word-wrap:break-word;
  4118. text-transform:none;
  4119. visibility:hidden;
  4120. }
  4121. #u9857_img {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:114px;
  4127. height:35px;
  4128. }
  4129. #u9857 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:312px;
  4133. top:225px;
  4134. width:114px;
  4135. height:35px;
  4136. display:flex;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:12px;
  4141. color:#606266;
  4142. }
  4143. #u9857 .text {
  4144. position:absolute;
  4145. align-self:center;
  4146. padding:2px 2px 2px 0px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u9857_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. visibility:hidden;
  4155. }
  4156. #u9858_img {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:100px;
  4162. height:35px;
  4163. }
  4164. #u9858 {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:426px;
  4168. top:225px;
  4169. width:100px;
  4170. height:35px;
  4171. display:flex;
  4172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. font-size:12px;
  4176. color:#606266;
  4177. }
  4178. #u9858 .text {
  4179. position:absolute;
  4180. align-self:center;
  4181. padding:2px 2px 2px 0px;
  4182. box-sizing:border-box;
  4183. width:100%;
  4184. }
  4185. #u9858_text {
  4186. border-width:0px;
  4187. word-wrap:break-word;
  4188. text-transform:none;
  4189. visibility:hidden;
  4190. }
  4191. #u9859_img {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:112px;
  4197. height:35px;
  4198. }
  4199. #u9859 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:526px;
  4203. top:225px;
  4204. width:112px;
  4205. height:35px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:12px;
  4211. color:#606266;
  4212. }
  4213. #u9859 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u9859_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u9860_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:114px;
  4232. height:35px;
  4233. }
  4234. #u9860 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:638px;
  4238. top:225px;
  4239. width:114px;
  4240. height:35px;
  4241. display:flex;
  4242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4243. font-weight:400;
  4244. font-style:normal;
  4245. font-size:12px;
  4246. color:#606266;
  4247. }
  4248. #u9860 .text {
  4249. position:absolute;
  4250. align-self:center;
  4251. padding:2px 2px 2px 0px;
  4252. box-sizing:border-box;
  4253. width:100%;
  4254. }
  4255. #u9860_text {
  4256. border-width:0px;
  4257. word-wrap:break-word;
  4258. text-transform:none;
  4259. visibility:hidden;
  4260. }
  4261. #u9861_img {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:112px;
  4267. height:35px;
  4268. }
  4269. #u9861 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:752px;
  4273. top:225px;
  4274. width:112px;
  4275. height:35px;
  4276. display:flex;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:12px;
  4281. color:#606266;
  4282. }
  4283. #u9861 .text {
  4284. position:absolute;
  4285. align-self:center;
  4286. padding:2px 2px 2px 0px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u9861_text {
  4291. border-width:0px;
  4292. word-wrap:break-word;
  4293. text-transform:none;
  4294. visibility:hidden;
  4295. }
  4296. #u9862_img {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:114px;
  4302. height:35px;
  4303. }
  4304. #u9862 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:864px;
  4308. top:225px;
  4309. width:114px;
  4310. height:35px;
  4311. display:flex;
  4312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4313. font-weight:400;
  4314. font-style:normal;
  4315. font-size:12px;
  4316. color:#606266;
  4317. }
  4318. #u9862 .text {
  4319. position:absolute;
  4320. align-self:center;
  4321. padding:2px 2px 2px 0px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u9862_text {
  4326. border-width:0px;
  4327. word-wrap:break-word;
  4328. text-transform:none;
  4329. visibility:hidden;
  4330. }
  4331. #u9863_img {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:114px;
  4337. height:35px;
  4338. }
  4339. #u9863 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:978px;
  4343. top:225px;
  4344. width:114px;
  4345. height:35px;
  4346. display:flex;
  4347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4348. font-weight:400;
  4349. font-style:normal;
  4350. font-size:12px;
  4351. color:#606266;
  4352. }
  4353. #u9863 .text {
  4354. position:absolute;
  4355. align-self:center;
  4356. padding:2px 2px 2px 0px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u9863_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. visibility:hidden;
  4365. }
  4366. #u9864_img {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:0px;
  4370. top:0px;
  4371. width:130px;
  4372. height:35px;
  4373. }
  4374. #u9864 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:1092px;
  4378. top:225px;
  4379. width:130px;
  4380. height:35px;
  4381. display:flex;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:12px;
  4386. color:#02A7F0;
  4387. }
  4388. #u9864 .text {
  4389. position:absolute;
  4390. align-self:center;
  4391. padding:2px 2px 2px 0px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u9864_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. visibility:hidden;
  4400. }
  4401. #u9865_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:112px;
  4407. height:35px;
  4408. }
  4409. #u9865 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:260px;
  4414. width:112px;
  4415. height:35px;
  4416. display:flex;
  4417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:12px;
  4421. color:#606266;
  4422. }
  4423. #u9865 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:2px 2px 2px 0px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u9865_text {
  4431. border-width:0px;
  4432. word-wrap:break-word;
  4433. text-transform:none;
  4434. visibility:hidden;
  4435. }
  4436. #u9866_img {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:100px;
  4442. height:35px;
  4443. }
  4444. #u9866 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:112px;
  4448. top:260px;
  4449. width:100px;
  4450. height:35px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:12px;
  4456. color:#606266;
  4457. }
  4458. #u9866 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:2px 2px 2px 0px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u9866_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. visibility:hidden;
  4470. }
  4471. #u9867_img {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:100px;
  4477. height:35px;
  4478. }
  4479. #u9867 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:212px;
  4483. top:260px;
  4484. width:100px;
  4485. height:35px;
  4486. display:flex;
  4487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:12px;
  4491. color:#606266;
  4492. }
  4493. #u9867 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 2px 2px 0px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u9867_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. visibility:hidden;
  4505. }
  4506. #u9868_img {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:114px;
  4512. height:35px;
  4513. }
  4514. #u9868 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:312px;
  4518. top:260px;
  4519. width:114px;
  4520. height:35px;
  4521. display:flex;
  4522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4523. font-weight:400;
  4524. font-style:normal;
  4525. font-size:12px;
  4526. color:#606266;
  4527. }
  4528. #u9868 .text {
  4529. position:absolute;
  4530. align-self:center;
  4531. padding:2px 2px 2px 0px;
  4532. box-sizing:border-box;
  4533. width:100%;
  4534. }
  4535. #u9868_text {
  4536. border-width:0px;
  4537. word-wrap:break-word;
  4538. text-transform:none;
  4539. visibility:hidden;
  4540. }
  4541. #u9869_img {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:100px;
  4547. height:35px;
  4548. }
  4549. #u9869 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:426px;
  4553. top:260px;
  4554. width:100px;
  4555. height:35px;
  4556. display:flex;
  4557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. color:#606266;
  4562. }
  4563. #u9869 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:2px 2px 2px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u9869_text {
  4571. border-width:0px;
  4572. word-wrap:break-word;
  4573. text-transform:none;
  4574. visibility:hidden;
  4575. }
  4576. #u9870_img {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:112px;
  4582. height:35px;
  4583. }
  4584. #u9870 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:526px;
  4588. top:260px;
  4589. width:112px;
  4590. height:35px;
  4591. display:flex;
  4592. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:12px;
  4596. color:#606266;
  4597. }
  4598. #u9870 .text {
  4599. position:absolute;
  4600. align-self:center;
  4601. padding:2px 2px 2px 0px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u9870_text {
  4606. border-width:0px;
  4607. word-wrap:break-word;
  4608. text-transform:none;
  4609. visibility:hidden;
  4610. }
  4611. #u9871_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:114px;
  4617. height:35px;
  4618. }
  4619. #u9871 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:638px;
  4623. top:260px;
  4624. width:114px;
  4625. height:35px;
  4626. display:flex;
  4627. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:12px;
  4631. color:#606266;
  4632. }
  4633. #u9871 .text {
  4634. position:absolute;
  4635. align-self:center;
  4636. padding:2px 2px 2px 0px;
  4637. box-sizing:border-box;
  4638. width:100%;
  4639. }
  4640. #u9871_text {
  4641. border-width:0px;
  4642. word-wrap:break-word;
  4643. text-transform:none;
  4644. visibility:hidden;
  4645. }
  4646. #u9872_img {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:112px;
  4652. height:35px;
  4653. }
  4654. #u9872 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:752px;
  4658. top:260px;
  4659. width:112px;
  4660. height:35px;
  4661. display:flex;
  4662. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:12px;
  4666. color:#606266;
  4667. }
  4668. #u9872 .text {
  4669. position:absolute;
  4670. align-self:center;
  4671. padding:2px 2px 2px 0px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u9872_text {
  4676. border-width:0px;
  4677. word-wrap:break-word;
  4678. text-transform:none;
  4679. visibility:hidden;
  4680. }
  4681. #u9873_img {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:114px;
  4687. height:35px;
  4688. }
  4689. #u9873 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:864px;
  4693. top:260px;
  4694. width:114px;
  4695. height:35px;
  4696. display:flex;
  4697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4698. font-weight:400;
  4699. font-style:normal;
  4700. font-size:12px;
  4701. color:#606266;
  4702. }
  4703. #u9873 .text {
  4704. position:absolute;
  4705. align-self:center;
  4706. padding:2px 2px 2px 0px;
  4707. box-sizing:border-box;
  4708. width:100%;
  4709. }
  4710. #u9873_text {
  4711. border-width:0px;
  4712. word-wrap:break-word;
  4713. text-transform:none;
  4714. visibility:hidden;
  4715. }
  4716. #u9874_img {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:114px;
  4722. height:35px;
  4723. }
  4724. #u9874 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:978px;
  4728. top:260px;
  4729. width:114px;
  4730. height:35px;
  4731. display:flex;
  4732. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:12px;
  4736. color:#606266;
  4737. }
  4738. #u9874 .text {
  4739. position:absolute;
  4740. align-self:center;
  4741. padding:2px 2px 2px 0px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u9874_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. visibility:hidden;
  4750. }
  4751. #u9875_img {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:130px;
  4757. height:35px;
  4758. }
  4759. #u9875 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:1092px;
  4763. top:260px;
  4764. width:130px;
  4765. height:35px;
  4766. display:flex;
  4767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:12px;
  4771. color:#02A7F0;
  4772. }
  4773. #u9875 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 0px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u9875_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u9876_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:112px;
  4792. height:35px;
  4793. }
  4794. #u9876 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:295px;
  4799. width:112px;
  4800. height:35px;
  4801. display:flex;
  4802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:12px;
  4806. color:#606266;
  4807. }
  4808. #u9876 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u9876_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u9877_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:100px;
  4827. height:35px;
  4828. }
  4829. #u9877 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:112px;
  4833. top:295px;
  4834. width:100px;
  4835. height:35px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:12px;
  4841. color:#606266;
  4842. }
  4843. #u9877 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:2px 2px 2px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u9877_text {
  4851. border-width:0px;
  4852. word-wrap:break-word;
  4853. text-transform:none;
  4854. visibility:hidden;
  4855. }
  4856. #u9878_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:100px;
  4862. height:35px;
  4863. }
  4864. #u9878 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:212px;
  4868. top:295px;
  4869. width:100px;
  4870. height:35px;
  4871. display:flex;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:12px;
  4876. color:#606266;
  4877. }
  4878. #u9878 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u9878_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u9879_img {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:114px;
  4897. height:35px;
  4898. }
  4899. #u9879 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:312px;
  4903. top:295px;
  4904. width:114px;
  4905. height:35px;
  4906. display:flex;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:12px;
  4911. color:#606266;
  4912. }
  4913. #u9879 .text {
  4914. position:absolute;
  4915. align-self:center;
  4916. padding:2px 2px 2px 0px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u9879_text {
  4921. border-width:0px;
  4922. word-wrap:break-word;
  4923. text-transform:none;
  4924. visibility:hidden;
  4925. }
  4926. #u9880_img {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:100px;
  4932. height:35px;
  4933. }
  4934. #u9880 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:426px;
  4938. top:295px;
  4939. width:100px;
  4940. height:35px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:12px;
  4946. color:#606266;
  4947. }
  4948. #u9880 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 0px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u9880_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u9881_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:112px;
  4967. height:35px;
  4968. }
  4969. #u9881 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:526px;
  4973. top:295px;
  4974. width:112px;
  4975. height:35px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:12px;
  4981. color:#606266;
  4982. }
  4983. #u9881 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:2px 2px 2px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u9881_text {
  4991. border-width:0px;
  4992. word-wrap:break-word;
  4993. text-transform:none;
  4994. visibility:hidden;
  4995. }
  4996. #u9882_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:114px;
  5002. height:35px;
  5003. }
  5004. #u9882 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:638px;
  5008. top:295px;
  5009. width:114px;
  5010. height:35px;
  5011. display:flex;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:12px;
  5016. color:#606266;
  5017. }
  5018. #u9882 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u9882_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u9883_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:112px;
  5037. height:35px;
  5038. }
  5039. #u9883 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:752px;
  5043. top:295px;
  5044. width:112px;
  5045. height:35px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:12px;
  5051. color:#606266;
  5052. }
  5053. #u9883 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 0px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u9883_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u9884_img {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:114px;
  5072. height:35px;
  5073. }
  5074. #u9884 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:864px;
  5078. top:295px;
  5079. width:114px;
  5080. height:35px;
  5081. display:flex;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:12px;
  5086. color:#606266;
  5087. }
  5088. #u9884 .text {
  5089. position:absolute;
  5090. align-self:center;
  5091. padding:2px 2px 2px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u9884_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. visibility:hidden;
  5100. }
  5101. #u9885_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:114px;
  5107. height:35px;
  5108. }
  5109. #u9885 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:978px;
  5113. top:295px;
  5114. width:114px;
  5115. height:35px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. color:#606266;
  5122. }
  5123. #u9885 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 0px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u9885_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u9886_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:130px;
  5142. height:35px;
  5143. }
  5144. #u9886 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:1092px;
  5148. top:295px;
  5149. width:130px;
  5150. height:35px;
  5151. display:flex;
  5152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:12px;
  5156. color:#02A7F0;
  5157. }
  5158. #u9886 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u9886_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u9887_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:112px;
  5177. height:33px;
  5178. }
  5179. #u9887 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:330px;
  5184. width:112px;
  5185. height:33px;
  5186. display:flex;
  5187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:12px;
  5191. color:#606266;
  5192. }
  5193. #u9887 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:2px 2px 2px 0px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u9887_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. visibility:hidden;
  5205. }
  5206. #u9888_img {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:100px;
  5212. height:33px;
  5213. }
  5214. #u9888 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:112px;
  5218. top:330px;
  5219. width:100px;
  5220. height:33px;
  5221. display:flex;
  5222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. font-size:12px;
  5226. color:#606266;
  5227. }
  5228. #u9888 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:2px 2px 2px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u9888_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. visibility:hidden;
  5240. }
  5241. #u9889_img {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:100px;
  5247. height:33px;
  5248. }
  5249. #u9889 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:212px;
  5253. top:330px;
  5254. width:100px;
  5255. height:33px;
  5256. display:flex;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:12px;
  5261. color:#606266;
  5262. }
  5263. #u9889 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:2px 2px 2px 0px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u9889_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. visibility:hidden;
  5275. }
  5276. #u9890_img {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:114px;
  5282. height:33px;
  5283. }
  5284. #u9890 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:312px;
  5288. top:330px;
  5289. width:114px;
  5290. height:33px;
  5291. display:flex;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:12px;
  5296. color:#606266;
  5297. }
  5298. #u9890 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 2px 2px 0px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u9890_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u9891_img {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:100px;
  5317. height:33px;
  5318. }
  5319. #u9891 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:426px;
  5323. top:330px;
  5324. width:100px;
  5325. height:33px;
  5326. display:flex;
  5327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:12px;
  5331. color:#606266;
  5332. }
  5333. #u9891 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:2px 2px 2px 0px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u9891_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. visibility:hidden;
  5345. }
  5346. #u9892_img {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:112px;
  5352. height:33px;
  5353. }
  5354. #u9892 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:526px;
  5358. top:330px;
  5359. width:112px;
  5360. height:33px;
  5361. display:flex;
  5362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:12px;
  5366. color:#606266;
  5367. }
  5368. #u9892 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 0px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u9892_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u9893_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:114px;
  5387. height:33px;
  5388. }
  5389. #u9893 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:638px;
  5393. top:330px;
  5394. width:114px;
  5395. height:33px;
  5396. display:flex;
  5397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:12px;
  5401. color:#606266;
  5402. }
  5403. #u9893 .text {
  5404. position:absolute;
  5405. align-self:center;
  5406. padding:2px 2px 2px 0px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u9893_text {
  5411. border-width:0px;
  5412. word-wrap:break-word;
  5413. text-transform:none;
  5414. visibility:hidden;
  5415. }
  5416. #u9894_img {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:112px;
  5422. height:33px;
  5423. }
  5424. #u9894 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:752px;
  5428. top:330px;
  5429. width:112px;
  5430. height:33px;
  5431. display:flex;
  5432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. color:#606266;
  5437. }
  5438. #u9894 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u9894_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. visibility:hidden;
  5450. }
  5451. #u9895_img {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:114px;
  5457. height:33px;
  5458. }
  5459. #u9895 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:864px;
  5463. top:330px;
  5464. width:114px;
  5465. height:33px;
  5466. display:flex;
  5467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:12px;
  5471. color:#606266;
  5472. }
  5473. #u9895 .text {
  5474. position:absolute;
  5475. align-self:center;
  5476. padding:2px 2px 2px 0px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u9895_text {
  5481. border-width:0px;
  5482. word-wrap:break-word;
  5483. text-transform:none;
  5484. visibility:hidden;
  5485. }
  5486. #u9896_img {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:114px;
  5492. height:33px;
  5493. }
  5494. #u9896 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:978px;
  5498. top:330px;
  5499. width:114px;
  5500. height:33px;
  5501. display:flex;
  5502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:12px;
  5506. color:#606266;
  5507. }
  5508. #u9896 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u9896_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. visibility:hidden;
  5520. }
  5521. #u9897_img {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:130px;
  5527. height:33px;
  5528. }
  5529. #u9897 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:1092px;
  5533. top:330px;
  5534. width:130px;
  5535. height:33px;
  5536. display:flex;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:12px;
  5541. color:#02A7F0;
  5542. }
  5543. #u9897 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 0px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u9897_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u9898_div {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:59px;
  5562. height:30px;
  5563. background:inherit;
  5564. background-color:rgba(41, 143, 255, 1);
  5565. border:none;
  5566. border-radius:4px;
  5567. -moz-box-shadow:none;
  5568. -webkit-box-shadow:none;
  5569. box-shadow:none;
  5570. font-family:'Microsoft YaHei', sans-serif;
  5571. font-weight:400;
  5572. font-style:normal;
  5573. font-size:14px;
  5574. color:#FFFFFF;
  5575. }
  5576. #u9898 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:651px;
  5580. top:180px;
  5581. width:59px;
  5582. height:30px;
  5583. display:flex;
  5584. font-family:'Microsoft YaHei', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:14px;
  5588. color:#FFFFFF;
  5589. }
  5590. #u9898 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:5px 15px 5px 15px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u9898_text {
  5598. border-width:0px;
  5599. white-space:nowrap;
  5600. text-transform:none;
  5601. }
  5602. #u9899_div {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:55px;
  5608. height:30px;
  5609. background:inherit;
  5610. background-color:rgba(255, 255, 255, 1);
  5611. box-sizing:border-box;
  5612. border-width:1px;
  5613. border-style:solid;
  5614. border-color:rgba(170, 170, 170, 1);
  5615. border-radius:4px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:12px;
  5623. color:#555555;
  5624. }
  5625. #u9899 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:720px;
  5629. top:180px;
  5630. width:55px;
  5631. height:30px;
  5632. display:flex;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:12px;
  5637. color:#555555;
  5638. }
  5639. #u9899 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:5px 15px 5px 15px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u9899_text {
  5647. border-width:0px;
  5648. white-space:nowrap;
  5649. text-transform:none;
  5650. }
  5651. #u9900 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:0px;
  5657. height:0px;
  5658. }
  5659. #u9901_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:140px;
  5665. height:30px;
  5666. background:inherit;
  5667. background-color:rgba(255, 255, 255, 1);
  5668. box-sizing:border-box;
  5669. border-width:1px;
  5670. border-style:solid;
  5671. border-color:rgba(201, 201, 201, 1);
  5672. border-radius:4px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. font-family:'Microsoft YaHei', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:14px;
  5680. color:#CCCCCC;
  5681. text-align:left;
  5682. }
  5683. #u9901 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:501px;
  5687. top:180px;
  5688. width:140px;
  5689. height:30px;
  5690. display:flex;
  5691. font-family:'Microsoft YaHei', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:14px;
  5695. color:#CCCCCC;
  5696. text-align:left;
  5697. }
  5698. #u9901 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 8px 2px 8px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u9901_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. visibility:hidden;
  5710. }
  5711. #u9902_input {
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:127px;
  5716. height:25px;
  5717. padding:2px 2px 2px 2px;
  5718. font-family:'Microsoft YaHei', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:10px;
  5722. letter-spacing:normal;
  5723. color:#000000;
  5724. vertical-align:none;
  5725. text-align:left;
  5726. text-transform:none;
  5727. background-color:transparent;
  5728. border-color:transparent;
  5729. }
  5730. #u9902_input.disabled {
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:127px;
  5735. height:25px;
  5736. padding:2px 2px 2px 2px;
  5737. font-family:'Microsoft YaHei', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:10px;
  5741. letter-spacing:normal;
  5742. color:#000000;
  5743. vertical-align:none;
  5744. text-align:left;
  5745. text-transform:none;
  5746. background-color:transparent;
  5747. border-color:transparent;
  5748. }
  5749. #u9902_div {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:127px;
  5755. height:25px;
  5756. background:inherit;
  5757. background-color:rgba(255, 255, 255, 1);
  5758. border:none;
  5759. border-radius:0px;
  5760. -moz-box-shadow:none;
  5761. -webkit-box-shadow:none;
  5762. box-shadow:none;
  5763. font-family:'Microsoft YaHei', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:10px;
  5767. }
  5768. #u9902 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:509px;
  5772. top:181px;
  5773. width:127px;
  5774. height:25px;
  5775. display:flex;
  5776. font-family:'Microsoft YaHei', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:10px;
  5780. }
  5781. #u9902 .text {
  5782. position:absolute;
  5783. align-self:center;
  5784. padding:2px 2px 2px 2px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u9902_div.disabled {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:127px;
  5794. height:25px;
  5795. background:inherit;
  5796. background-color:rgba(240, 240, 240, 1);
  5797. border:none;
  5798. border-radius:0px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. font-family:'Microsoft YaHei', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:10px;
  5806. }
  5807. #u9902.disabled {
  5808. }
  5809. #u9903 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:0px;
  5815. height:0px;
  5816. }
  5817. #u9904_div {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:140px;
  5823. height:30px;
  5824. background:inherit;
  5825. background-color:rgba(255, 255, 255, 1);
  5826. box-sizing:border-box;
  5827. border-width:1px;
  5828. border-style:solid;
  5829. border-color:rgba(215, 215, 215, 1);
  5830. border-radius:4px;
  5831. -moz-box-shadow:none;
  5832. -webkit-box-shadow:none;
  5833. box-shadow:none;
  5834. font-size:11px;
  5835. }
  5836. #u9904 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:351px;
  5840. top:180px;
  5841. width:140px;
  5842. height:30px;
  5843. display:flex;
  5844. font-size:11px;
  5845. }
  5846. #u9904 .text {
  5847. position:absolute;
  5848. align-self:center;
  5849. padding:2px 2px 2px 2px;
  5850. box-sizing:border-box;
  5851. width:100%;
  5852. }
  5853. #u9904_text {
  5854. border-width:0px;
  5855. word-wrap:break-word;
  5856. text-transform:none;
  5857. visibility:hidden;
  5858. }
  5859. #u9905_input {
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:120px;
  5864. height:23px;
  5865. padding:2px 2px 2px 2px;
  5866. font-family:'ArialMT', 'Arial', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:11px;
  5870. letter-spacing:normal;
  5871. color:#AAAAAA;
  5872. vertical-align:none;
  5873. text-align:left;
  5874. text-transform:none;
  5875. background-color:transparent;
  5876. border-color:transparent;
  5877. }
  5878. #u9905_input.disabled {
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:120px;
  5883. height:23px;
  5884. padding:2px 2px 2px 2px;
  5885. font-family:'ArialMT', 'Arial', sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. font-size:11px;
  5889. letter-spacing:normal;
  5890. color:#AAAAAA;
  5891. vertical-align:none;
  5892. text-align:left;
  5893. text-transform:none;
  5894. background-color:transparent;
  5895. border-color:transparent;
  5896. }
  5897. #u9905_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:120px;
  5903. height:23px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 1);
  5906. border:none;
  5907. border-radius:0px;
  5908. -moz-box-shadow:none;
  5909. -webkit-box-shadow:none;
  5910. box-shadow:none;
  5911. font-size:11px;
  5912. color:#AAAAAA;
  5913. }
  5914. #u9905 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:358px;
  5918. top:182px;
  5919. width:120px;
  5920. height:23px;
  5921. display:flex;
  5922. font-size:11px;
  5923. color:#AAAAAA;
  5924. }
  5925. #u9905 .text {
  5926. position:absolute;
  5927. align-self:flex-start;
  5928. padding:2px 2px 2px 2px;
  5929. box-sizing:border-box;
  5930. width:100%;
  5931. }
  5932. #u9905_div.disabled {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:120px;
  5938. height:23px;
  5939. background:inherit;
  5940. background-color:rgba(240, 240, 240, 1);
  5941. border:none;
  5942. border-radius:0px;
  5943. -moz-box-shadow:none;
  5944. -webkit-box-shadow:none;
  5945. box-shadow:none;
  5946. font-size:11px;
  5947. color:#AAAAAA;
  5948. }
  5949. #u9905.disabled {
  5950. }
  5951. .u9905_input_option {
  5952. font-size:11px;
  5953. }
  5954. #u9906 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:0px;
  5960. height:0px;
  5961. }
  5962. #u9907_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:200px;
  5968. height:1192px;
  5969. background:inherit;
  5970. background-color:rgba(255, 255, 255, 1);
  5971. border:none;
  5972. border-radius:0px;
  5973. -moz-box-shadow:none;
  5974. -webkit-box-shadow:none;
  5975. box-shadow:none;
  5976. }
  5977. #u9907 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:120px;
  5981. top:50px;
  5982. width:200px;
  5983. height:1192px;
  5984. display:flex;
  5985. }
  5986. #u9907 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 2px 2px 2px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u9907_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. visibility:hidden;
  5998. }
  5999. #u9908_div {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:200px;
  6005. height:60px;
  6006. background:inherit;
  6007. background-color:rgba(224, 231, 247, 1);
  6008. border:none;
  6009. border-radius:0px;
  6010. -moz-box-shadow:none;
  6011. -webkit-box-shadow:none;
  6012. box-shadow:none;
  6013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6014. font-weight:500;
  6015. font-style:normal;
  6016. font-size:18px;
  6017. }
  6018. #u9908 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:120px;
  6022. top:50px;
  6023. width:200px;
  6024. height:60px;
  6025. display:flex;
  6026. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6027. font-weight:500;
  6028. font-style:normal;
  6029. font-size:18px;
  6030. }
  6031. #u9908 .text {
  6032. position:absolute;
  6033. align-self:center;
  6034. padding:0px 0px 0px 20px;
  6035. box-sizing:border-box;
  6036. width:100%;
  6037. }
  6038. #u9908_text {
  6039. border-width:0px;
  6040. word-wrap:break-word;
  6041. text-transform:none;
  6042. }
  6043. #u9909_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:65px;
  6049. height:22px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 0);
  6052. border:none;
  6053. border-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:16px;
  6061. }
  6062. #u9909 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:147px;
  6066. top:274px;
  6067. width:65px;
  6068. height:22px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:16px;
  6074. }
  6075. #u9909 .text {
  6076. position:absolute;
  6077. align-self:flex-start;
  6078. padding:0px 0px 0px 0px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u9909_text {
  6083. border-width:0px;
  6084. white-space:nowrap;
  6085. text-transform:none;
  6086. }
  6087. #u9910_img {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:201px;
  6093. height:2px;
  6094. }
  6095. #u9910 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:120px;
  6099. top:212px;
  6100. width:200px;
  6101. height:1px;
  6102. display:flex;
  6103. }
  6104. #u9910 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 2px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u9910_text {
  6112. border-width:0px;
  6113. word-wrap:break-word;
  6114. text-transform:none;
  6115. visibility:hidden;
  6116. }
  6117. #u9911_div {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:65px;
  6123. height:22px;
  6124. background:inherit;
  6125. background-color:rgba(255, 255, 255, 0);
  6126. border:none;
  6127. border-radius:0px;
  6128. -moz-box-shadow:none;
  6129. -webkit-box-shadow:none;
  6130. box-shadow:none;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:16px;
  6135. }
  6136. #u9911 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:147px;
  6140. top:166px;
  6141. width:65px;
  6142. height:22px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:16px;
  6148. }
  6149. #u9911 .text {
  6150. position:absolute;
  6151. align-self:flex-start;
  6152. padding:0px 0px 0px 0px;
  6153. box-sizing:border-box;
  6154. width:100%;
  6155. }
  6156. #u9911_text {
  6157. border-width:0px;
  6158. white-space:nowrap;
  6159. text-transform:none;
  6160. }
  6161. #u9912_div {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:25px;
  6167. height:17px;
  6168. background:inherit;
  6169. background-color:rgba(255, 255, 255, 0);
  6170. border:none;
  6171. border-radius:0px;
  6172. -moz-box-shadow:none;
  6173. -webkit-box-shadow:none;
  6174. box-shadow:none;
  6175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:12px;
  6179. color:#AAAAAA;
  6180. }
  6181. #u9912 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:147px;
  6185. top:238px;
  6186. width:25px;
  6187. height:17px;
  6188. display:flex;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:12px;
  6193. color:#AAAAAA;
  6194. }
  6195. #u9912 .text {
  6196. position:absolute;
  6197. align-self:flex-start;
  6198. padding:0px 0px 0px 0px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u9912_text {
  6203. border-width:0px;
  6204. white-space:nowrap;
  6205. text-transform:none;
  6206. }
  6207. #u9913_div {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:25px;
  6213. height:17px;
  6214. background:inherit;
  6215. background-color:rgba(255, 255, 255, 0);
  6216. border:none;
  6217. border-radius:0px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:12px;
  6225. color:#AAAAAA;
  6226. }
  6227. #u9913 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:147px;
  6231. top:130px;
  6232. width:25px;
  6233. height:17px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:12px;
  6239. color:#AAAAAA;
  6240. }
  6241. #u9913 .text {
  6242. position:absolute;
  6243. align-self:flex-start;
  6244. padding:0px 0px 0px 0px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u9913_text {
  6249. border-width:0px;
  6250. white-space:nowrap;
  6251. text-transform:none;
  6252. }
  6253. #u9914_div {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:65px;
  6259. height:22px;
  6260. background:inherit;
  6261. background-color:rgba(255, 255, 255, 0);
  6262. border:none;
  6263. border-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:16px;
  6271. }
  6272. #u9914 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:147px;
  6276. top:423px;
  6277. width:65px;
  6278. height:22px;
  6279. display:flex;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:16px;
  6284. }
  6285. #u9914 .text {
  6286. position:absolute;
  6287. align-self:flex-start;
  6288. padding:0px 0px 0px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u9914_text {
  6293. border-width:0px;
  6294. white-space:nowrap;
  6295. text-transform:none;
  6296. }
  6297. #u9915_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:201px;
  6303. height:2px;
  6304. }
  6305. #u9915 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:120px;
  6309. top:361px;
  6310. width:200px;
  6311. height:1px;
  6312. display:flex;
  6313. }
  6314. #u9915 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 2px 2px 2px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u9915_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. visibility:hidden;
  6326. }
  6327. #u9916_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:25px;
  6333. height:17px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. color:#AAAAAA;
  6346. }
  6347. #u9916 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:147px;
  6351. top:387px;
  6352. width:25px;
  6353. height:17px;
  6354. display:flex;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:12px;
  6359. color:#AAAAAA;
  6360. }
  6361. #u9916 .text {
  6362. position:absolute;
  6363. align-self:flex-start;
  6364. padding:0px 0px 0px 0px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u9916_text {
  6369. border-width:0px;
  6370. white-space:nowrap;
  6371. text-transform:none;
  6372. }
  6373. #u9917_div {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:65px;
  6379. height:22px;
  6380. background:inherit;
  6381. background-color:rgba(255, 255, 255, 0);
  6382. border:none;
  6383. border-radius:0px;
  6384. -moz-box-shadow:none;
  6385. -webkit-box-shadow:none;
  6386. box-shadow:none;
  6387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:16px;
  6391. }
  6392. #u9917 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:147px;
  6396. top:465px;
  6397. width:65px;
  6398. height:22px;
  6399. display:flex;
  6400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. font-size:16px;
  6404. }
  6405. #u9917 .text {
  6406. position:absolute;
  6407. align-self:flex-start;
  6408. padding:0px 0px 0px 0px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u9917_text {
  6413. border-width:0px;
  6414. white-space:nowrap;
  6415. text-transform:none;
  6416. }
  6417. #u9918_div {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:49px;
  6423. height:22px;
  6424. background:inherit;
  6425. background-color:rgba(255, 255, 255, 0);
  6426. border:none;
  6427. border-radius:0px;
  6428. -moz-box-shadow:none;
  6429. -webkit-box-shadow:none;
  6430. box-shadow:none;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:16px;
  6435. }
  6436. #u9918 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:147px;
  6440. top:507px;
  6441. width:49px;
  6442. height:22px;
  6443. display:flex;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:16px;
  6448. }
  6449. #u9918 .text {
  6450. position:absolute;
  6451. align-self:flex-start;
  6452. padding:0px 0px 0px 0px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u9918_text {
  6457. border-width:0px;
  6458. white-space:nowrap;
  6459. text-transform:none;
  6460. }
  6461. #u9919_div {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:81px;
  6467. height:22px;
  6468. background:inherit;
  6469. background-color:rgba(255, 255, 255, 0);
  6470. border:none;
  6471. border-radius:0px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:16px;
  6479. }
  6480. #u9919 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:147px;
  6484. top:549px;
  6485. width:81px;
  6486. height:22px;
  6487. display:flex;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:16px;
  6492. }
  6493. #u9919 .text {
  6494. position:absolute;
  6495. align-self:flex-start;
  6496. padding:0px 0px 0px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u9919_text {
  6501. border-width:0px;
  6502. white-space:nowrap;
  6503. text-transform:none;
  6504. }
  6505. #u9920_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:81px;
  6511. height:22px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 0);
  6514. border:none;
  6515. border-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:16px;
  6523. }
  6524. #u9920 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:147px;
  6528. top:591px;
  6529. width:81px;
  6530. height:22px;
  6531. display:flex;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:16px;
  6536. }
  6537. #u9920 .text {
  6538. position:absolute;
  6539. align-self:flex-start;
  6540. padding:0px 0px 0px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u9920_text {
  6545. border-width:0px;
  6546. white-space:nowrap;
  6547. text-transform:none;
  6548. }
  6549. #u9921_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:65px;
  6555. height:22px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 0);
  6558. border:none;
  6559. border-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:16px;
  6567. }
  6568. #u9921 {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:147px;
  6572. top:316px;
  6573. width:65px;
  6574. height:22px;
  6575. display:flex;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:16px;
  6580. }
  6581. #u9921 .text {
  6582. position:absolute;
  6583. align-self:flex-start;
  6584. padding:0px 0px 0px 0px;
  6585. box-sizing:border-box;
  6586. width:100%;
  6587. }
  6588. #u9921_text {
  6589. border-width:0px;
  6590. white-space:nowrap;
  6591. text-transform:none;
  6592. }
  6593. #u9922_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:55px;
  6599. height:50px;
  6600. background:inherit;
  6601. background-color:rgba(255, 255, 255, 0);
  6602. border:none;
  6603. border-left:0px;
  6604. border-top:0px;
  6605. border-right:0px;
  6606. border-radius:0px;
  6607. border-bottom-right-radius:0px;
  6608. border-bottom-left-radius:0px;
  6609. -moz-box-shadow:none;
  6610. -webkit-box-shadow:none;
  6611. box-shadow:none;
  6612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6613. font-weight:500;
  6614. font-style:normal;
  6615. font-size:18px;
  6616. color:#298FFF;
  6617. }
  6618. #u9922 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:358px;
  6622. top:100px;
  6623. width:55px;
  6624. height:50px;
  6625. display:flex;
  6626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6627. font-weight:500;
  6628. font-style:normal;
  6629. font-size:18px;
  6630. color:#298FFF;
  6631. }
  6632. #u9922 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:0px 0px 0px 0px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u9922_text {
  6640. border-width:0px;
  6641. white-space:nowrap;
  6642. text-transform:none;
  6643. }
  6644. #u9923_div {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:55px;
  6650. height:50px;
  6651. background:inherit;
  6652. background-color:rgba(255, 255, 255, 0);
  6653. border:none;
  6654. border-left:0px;
  6655. border-top:0px;
  6656. border-right:0px;
  6657. border-radius:0px;
  6658. border-bottom-right-radius:0px;
  6659. border-bottom-left-radius:0px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6664. font-weight:500;
  6665. font-style:normal;
  6666. font-size:18px;
  6667. }
  6668. #u9923 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:443px;
  6672. top:100px;
  6673. width:55px;
  6674. height:50px;
  6675. display:flex;
  6676. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6677. font-weight:500;
  6678. font-style:normal;
  6679. font-size:18px;
  6680. }
  6681. #u9923 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:0px 0px 0px 0px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u9923_text {
  6689. border-width:0px;
  6690. white-space:nowrap;
  6691. text-transform:none;
  6692. }
  6693. #u9924_div {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:1260px;
  6699. height:1082px;
  6700. background:inherit;
  6701. background-color:rgba(255, 255, 255, 1);
  6702. border:none;
  6703. border-radius:0px;
  6704. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6705. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6706. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6707. color:#1890FF;
  6708. }
  6709. #u9924 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:1650px;
  6713. top:160px;
  6714. width:1260px;
  6715. height:1082px;
  6716. display:flex;
  6717. color:#1890FF;
  6718. }
  6719. #u9924 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 2px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u9924_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u9925_div {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:1260px;
  6738. height:100px;
  6739. background:inherit;
  6740. background-color:rgba(255, 255, 255, 1);
  6741. border:none;
  6742. border-radius:0px;
  6743. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6744. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6745. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6746. color:#1890FF;
  6747. }
  6748. #u9925 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:1650px;
  6752. top:50px;
  6753. width:1260px;
  6754. height:100px;
  6755. display:flex;
  6756. color:#1890FF;
  6757. }
  6758. #u9925 .text {
  6759. position:absolute;
  6760. align-self:center;
  6761. padding:2px 2px 2px 2px;
  6762. box-sizing:border-box;
  6763. width:100%;
  6764. }
  6765. #u9925_text {
  6766. border-width:0px;
  6767. word-wrap:break-word;
  6768. text-transform:none;
  6769. visibility:hidden;
  6770. }
  6771. #u9926_div {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:73px;
  6777. height:50px;
  6778. background:inherit;
  6779. background-color:rgba(255, 255, 255, 0);
  6780. border:none;
  6781. border-left:0px;
  6782. border-top:0px;
  6783. border-right:0px;
  6784. border-radius:0px;
  6785. border-bottom-right-radius:0px;
  6786. border-bottom-left-radius:0px;
  6787. -moz-box-shadow:none;
  6788. -webkit-box-shadow:none;
  6789. box-shadow:none;
  6790. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6791. font-weight:500;
  6792. font-style:normal;
  6793. font-size:18px;
  6794. }
  6795. #u9926 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:1669px;
  6799. top:50px;
  6800. width:73px;
  6801. height:50px;
  6802. display:flex;
  6803. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6804. font-weight:500;
  6805. font-style:normal;
  6806. font-size:18px;
  6807. }
  6808. #u9926 .text {
  6809. position:absolute;
  6810. align-self:center;
  6811. padding:0px 0px 0px 0px;
  6812. box-sizing:border-box;
  6813. width:100%;
  6814. }
  6815. #u9926_text {
  6816. border-width:0px;
  6817. white-space:nowrap;
  6818. text-transform:none;
  6819. }
  6820. #u9927_div {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:59px;
  6826. height:30px;
  6827. background:inherit;
  6828. background-color:rgba(41, 143, 255, 1);
  6829. border:none;
  6830. border-radius:4px;
  6831. -moz-box-shadow:none;
  6832. -webkit-box-shadow:none;
  6833. box-shadow:none;
  6834. font-family:'Microsoft YaHei', sans-serif;
  6835. font-weight:400;
  6836. font-style:normal;
  6837. font-size:14px;
  6838. color:#FFFFFF;
  6839. }
  6840. #u9927 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:1969px;
  6844. top:180px;
  6845. width:59px;
  6846. height:30px;
  6847. display:flex;
  6848. font-family:'Microsoft YaHei', sans-serif;
  6849. font-weight:400;
  6850. font-style:normal;
  6851. font-size:14px;
  6852. color:#FFFFFF;
  6853. }
  6854. #u9927 .text {
  6855. position:absolute;
  6856. align-self:center;
  6857. padding:5px 15px 5px 15px;
  6858. box-sizing:border-box;
  6859. width:100%;
  6860. }
  6861. #u9927_text {
  6862. border-width:0px;
  6863. white-space:nowrap;
  6864. text-transform:none;
  6865. }
  6866. #u9928_div {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:55px;
  6872. height:30px;
  6873. background:inherit;
  6874. background-color:rgba(255, 255, 255, 1);
  6875. box-sizing:border-box;
  6876. border-width:1px;
  6877. border-style:solid;
  6878. border-color:rgba(170, 170, 170, 1);
  6879. border-radius:4px;
  6880. -moz-box-shadow:none;
  6881. -webkit-box-shadow:none;
  6882. box-shadow:none;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:12px;
  6887. color:#555555;
  6888. }
  6889. #u9928 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:2038px;
  6893. top:180px;
  6894. width:55px;
  6895. height:30px;
  6896. display:flex;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:12px;
  6901. color:#555555;
  6902. }
  6903. #u9928 .text {
  6904. position:absolute;
  6905. align-self:center;
  6906. padding:5px 15px 5px 15px;
  6907. box-sizing:border-box;
  6908. width:100%;
  6909. }
  6910. #u9928_text {
  6911. border-width:0px;
  6912. white-space:nowrap;
  6913. text-transform:none;
  6914. }
  6915. #u9929 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:0px;
  6921. height:0px;
  6922. }
  6923. #u9930_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:140px;
  6929. height:30px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 1);
  6932. box-sizing:border-box;
  6933. border-width:1px;
  6934. border-style:solid;
  6935. border-color:rgba(201, 201, 201, 1);
  6936. border-radius:4px;
  6937. -moz-box-shadow:none;
  6938. -webkit-box-shadow:none;
  6939. box-shadow:none;
  6940. font-family:'Microsoft YaHei', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:14px;
  6944. color:#CCCCCC;
  6945. text-align:left;
  6946. }
  6947. #u9930 {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:1819px;
  6951. top:180px;
  6952. width:140px;
  6953. height:30px;
  6954. display:flex;
  6955. font-family:'Microsoft YaHei', sans-serif;
  6956. font-weight:400;
  6957. font-style:normal;
  6958. font-size:14px;
  6959. color:#CCCCCC;
  6960. text-align:left;
  6961. }
  6962. #u9930 .text {
  6963. position:absolute;
  6964. align-self:center;
  6965. padding:2px 8px 2px 8px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u9930_text {
  6970. border-width:0px;
  6971. word-wrap:break-word;
  6972. text-transform:none;
  6973. visibility:hidden;
  6974. }
  6975. #u9931_input {
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:127px;
  6980. height:25px;
  6981. padding:2px 2px 2px 2px;
  6982. font-family:'Microsoft YaHei', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:10px;
  6986. letter-spacing:normal;
  6987. color:#000000;
  6988. vertical-align:none;
  6989. text-align:left;
  6990. text-transform:none;
  6991. background-color:transparent;
  6992. border-color:transparent;
  6993. }
  6994. #u9931_input.disabled {
  6995. position:absolute;
  6996. left:0px;
  6997. top:0px;
  6998. width:127px;
  6999. height:25px;
  7000. padding:2px 2px 2px 2px;
  7001. font-family:'Microsoft YaHei', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:10px;
  7005. letter-spacing:normal;
  7006. color:#000000;
  7007. vertical-align:none;
  7008. text-align:left;
  7009. text-transform:none;
  7010. background-color:transparent;
  7011. border-color:transparent;
  7012. }
  7013. #u9931_div {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:0px;
  7017. top:0px;
  7018. width:127px;
  7019. height:25px;
  7020. background:inherit;
  7021. background-color:rgba(255, 255, 255, 1);
  7022. border:none;
  7023. border-radius:0px;
  7024. -moz-box-shadow:none;
  7025. -webkit-box-shadow:none;
  7026. box-shadow:none;
  7027. font-family:'Microsoft YaHei', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:10px;
  7031. }
  7032. #u9931 {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:1827px;
  7036. top:181px;
  7037. width:127px;
  7038. height:25px;
  7039. display:flex;
  7040. font-family:'Microsoft YaHei', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:10px;
  7044. }
  7045. #u9931 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 2px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u9931_div.disabled {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:127px;
  7058. height:25px;
  7059. background:inherit;
  7060. background-color:rgba(240, 240, 240, 1);
  7061. border:none;
  7062. border-radius:0px;
  7063. -moz-box-shadow:none;
  7064. -webkit-box-shadow:none;
  7065. box-shadow:none;
  7066. font-family:'Microsoft YaHei', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:10px;
  7070. }
  7071. #u9931.disabled {
  7072. }
  7073. #u9932 {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:0px;
  7079. height:0px;
  7080. }
  7081. #u9933_div {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:140px;
  7087. height:30px;
  7088. background:inherit;
  7089. background-color:rgba(255, 255, 255, 1);
  7090. box-sizing:border-box;
  7091. border-width:1px;
  7092. border-style:solid;
  7093. border-color:rgba(215, 215, 215, 1);
  7094. border-radius:4px;
  7095. -moz-box-shadow:none;
  7096. -webkit-box-shadow:none;
  7097. box-shadow:none;
  7098. font-size:11px;
  7099. }
  7100. #u9933 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:1669px;
  7104. top:180px;
  7105. width:140px;
  7106. height:30px;
  7107. display:flex;
  7108. font-size:11px;
  7109. }
  7110. #u9933 .text {
  7111. position:absolute;
  7112. align-self:center;
  7113. padding:2px 2px 2px 2px;
  7114. box-sizing:border-box;
  7115. width:100%;
  7116. }
  7117. #u9933_text {
  7118. border-width:0px;
  7119. word-wrap:break-word;
  7120. text-transform:none;
  7121. visibility:hidden;
  7122. }
  7123. #u9934_input {
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:120px;
  7128. height:23px;
  7129. padding:2px 2px 2px 2px;
  7130. font-family:'ArialMT', 'Arial', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:11px;
  7134. letter-spacing:normal;
  7135. color:#AAAAAA;
  7136. vertical-align:none;
  7137. text-align:left;
  7138. text-transform:none;
  7139. background-color:transparent;
  7140. border-color:transparent;
  7141. }
  7142. #u9934_input.disabled {
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:120px;
  7147. height:23px;
  7148. padding:2px 2px 2px 2px;
  7149. font-family:'ArialMT', 'Arial', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:11px;
  7153. letter-spacing:normal;
  7154. color:#AAAAAA;
  7155. vertical-align:none;
  7156. text-align:left;
  7157. text-transform:none;
  7158. background-color:transparent;
  7159. border-color:transparent;
  7160. }
  7161. #u9934_div {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:120px;
  7167. height:23px;
  7168. background:inherit;
  7169. background-color:rgba(255, 255, 255, 1);
  7170. border:none;
  7171. border-radius:0px;
  7172. -moz-box-shadow:none;
  7173. -webkit-box-shadow:none;
  7174. box-shadow:none;
  7175. font-size:11px;
  7176. color:#AAAAAA;
  7177. }
  7178. #u9934 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:1676px;
  7182. top:182px;
  7183. width:120px;
  7184. height:23px;
  7185. display:flex;
  7186. font-size:11px;
  7187. color:#AAAAAA;
  7188. }
  7189. #u9934 .text {
  7190. position:absolute;
  7191. align-self:flex-start;
  7192. padding:2px 2px 2px 2px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u9934_div.disabled {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:120px;
  7202. height:23px;
  7203. background:inherit;
  7204. background-color:rgba(240, 240, 240, 1);
  7205. border:none;
  7206. border-radius:0px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. font-size:11px;
  7211. color:#AAAAAA;
  7212. }
  7213. #u9934.disabled {
  7214. }
  7215. .u9934_input_option {
  7216. font-size:11px;
  7217. }
  7218. #u9935_div {
  7219. border-width:0px;
  7220. position:absolute;
  7221. left:0px;
  7222. top:0px;
  7223. width:55px;
  7224. height:50px;
  7225. background:inherit;
  7226. background-color:rgba(255, 255, 255, 0);
  7227. border:none;
  7228. border-left:0px;
  7229. border-top:0px;
  7230. border-right:0px;
  7231. border-radius:0px;
  7232. border-bottom-right-radius:0px;
  7233. border-bottom-left-radius:0px;
  7234. -moz-box-shadow:none;
  7235. -webkit-box-shadow:none;
  7236. box-shadow:none;
  7237. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7238. font-weight:500;
  7239. font-style:normal;
  7240. font-size:18px;
  7241. }
  7242. #u9935 {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:1676px;
  7246. top:100px;
  7247. width:55px;
  7248. height:50px;
  7249. display:flex;
  7250. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7251. font-weight:500;
  7252. font-style:normal;
  7253. font-size:18px;
  7254. }
  7255. #u9935 .text {
  7256. position:absolute;
  7257. align-self:center;
  7258. padding:0px 0px 0px 0px;
  7259. box-sizing:border-box;
  7260. width:100%;
  7261. }
  7262. #u9935_text {
  7263. border-width:0px;
  7264. white-space:nowrap;
  7265. text-transform:none;
  7266. }
  7267. #u9936_div {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:55px;
  7273. height:50px;
  7274. background:inherit;
  7275. background-color:rgba(255, 255, 255, 0);
  7276. border:none;
  7277. border-left:0px;
  7278. border-top:0px;
  7279. border-right:0px;
  7280. border-radius:0px;
  7281. border-bottom-right-radius:0px;
  7282. border-bottom-left-radius:0px;
  7283. -moz-box-shadow:none;
  7284. -webkit-box-shadow:none;
  7285. box-shadow:none;
  7286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7287. font-weight:500;
  7288. font-style:normal;
  7289. font-size:18px;
  7290. color:#298FFF;
  7291. }
  7292. #u9936 {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:1761px;
  7296. top:100px;
  7297. width:55px;
  7298. height:50px;
  7299. display:flex;
  7300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7301. font-weight:500;
  7302. font-style:normal;
  7303. font-size:18px;
  7304. color:#298FFF;
  7305. }
  7306. #u9936 .text {
  7307. position:absolute;
  7308. align-self:center;
  7309. padding:0px 0px 0px 0px;
  7310. box-sizing:border-box;
  7311. width:100%;
  7312. }
  7313. #u9936_text {
  7314. border-width:0px;
  7315. white-space:nowrap;
  7316. text-transform:none;
  7317. }
  7318. #u9937 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:1669px;
  7322. top:230px;
  7323. width:1332px;
  7324. height:364px;
  7325. }
  7326. #u9938_img {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:80px;
  7332. height:39px;
  7333. }
  7334. #u9938 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:80px;
  7340. height:39px;
  7341. display:flex;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:12px;
  7346. color:#FFFFFF;
  7347. }
  7348. #u9938 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u9938_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. }
  7360. #u9939_img {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:80px;
  7366. height:39px;
  7367. }
  7368. #u9939 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:80px;
  7372. top:0px;
  7373. width:80px;
  7374. height:39px;
  7375. display:flex;
  7376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7377. font-weight:400;
  7378. font-style:normal;
  7379. font-size:12px;
  7380. color:#FFFFFF;
  7381. }
  7382. #u9939 .text {
  7383. position:absolute;
  7384. align-self:center;
  7385. padding:2px 2px 2px 0px;
  7386. box-sizing:border-box;
  7387. width:100%;
  7388. }
  7389. #u9939_text {
  7390. border-width:0px;
  7391. word-wrap:break-word;
  7392. text-transform:none;
  7393. }
  7394. #u9940_img {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:80px;
  7400. height:39px;
  7401. }
  7402. #u9940 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:160px;
  7406. top:0px;
  7407. width:80px;
  7408. height:39px;
  7409. display:flex;
  7410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:12px;
  7414. color:#FFFFFF;
  7415. }
  7416. #u9940 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:2px 2px 2px 0px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u9940_text {
  7424. border-width:0px;
  7425. word-wrap:break-word;
  7426. text-transform:none;
  7427. }
  7428. #u9941_img {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:80px;
  7434. height:39px;
  7435. }
  7436. #u9941 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:240px;
  7440. top:0px;
  7441. width:80px;
  7442. height:39px;
  7443. display:flex;
  7444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:12px;
  7448. color:#FFFFFF;
  7449. }
  7450. #u9941 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:2px 2px 2px 0px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u9941_text {
  7458. border-width:0px;
  7459. word-wrap:break-word;
  7460. text-transform:none;
  7461. }
  7462. #u9942_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:80px;
  7468. height:39px;
  7469. }
  7470. #u9942 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:320px;
  7474. top:0px;
  7475. width:80px;
  7476. height:39px;
  7477. display:flex;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:12px;
  7482. color:#FFFFFF;
  7483. }
  7484. #u9942 .text {
  7485. position:absolute;
  7486. align-self:center;
  7487. padding:2px 2px 2px 0px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u9942_text {
  7492. border-width:0px;
  7493. word-wrap:break-word;
  7494. text-transform:none;
  7495. }
  7496. #u9943_img {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:80px;
  7502. height:39px;
  7503. }
  7504. #u9943 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:400px;
  7508. top:0px;
  7509. width:80px;
  7510. height:39px;
  7511. display:flex;
  7512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:12px;
  7516. color:#FFFFFF;
  7517. }
  7518. #u9943 .text {
  7519. position:absolute;
  7520. align-self:center;
  7521. padding:2px 2px 2px 0px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u9943_text {
  7526. border-width:0px;
  7527. word-wrap:break-word;
  7528. text-transform:none;
  7529. }
  7530. #u9944_img {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:80px;
  7536. height:39px;
  7537. }
  7538. #u9944 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:480px;
  7542. top:0px;
  7543. width:80px;
  7544. height:39px;
  7545. display:flex;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:12px;
  7550. color:#FFFFFF;
  7551. }
  7552. #u9944 .text {
  7553. position:absolute;
  7554. align-self:center;
  7555. padding:2px 2px 2px 0px;
  7556. box-sizing:border-box;
  7557. width:100%;
  7558. }
  7559. #u9944_text {
  7560. border-width:0px;
  7561. word-wrap:break-word;
  7562. text-transform:none;
  7563. }
  7564. #u9945_img {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:102px;
  7570. height:39px;
  7571. }
  7572. #u9945 {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:560px;
  7576. top:0px;
  7577. width:102px;
  7578. height:39px;
  7579. display:flex;
  7580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7581. font-weight:400;
  7582. font-style:normal;
  7583. font-size:12px;
  7584. color:#FFFFFF;
  7585. }
  7586. #u9945 .text {
  7587. position:absolute;
  7588. align-self:center;
  7589. padding:2px 2px 2px 0px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u9945_text {
  7594. border-width:0px;
  7595. word-wrap:break-word;
  7596. text-transform:none;
  7597. }
  7598. #u9946_img {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:90px;
  7604. height:39px;
  7605. }
  7606. #u9946 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:662px;
  7610. top:0px;
  7611. width:90px;
  7612. height:39px;
  7613. display:flex;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:12px;
  7618. color:#FFFFFF;
  7619. }
  7620. #u9946 .text {
  7621. position:absolute;
  7622. align-self:center;
  7623. padding:2px 2px 2px 0px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u9946_text {
  7628. border-width:0px;
  7629. word-wrap:break-word;
  7630. text-transform:none;
  7631. }
  7632. #u9947_img {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:80px;
  7638. height:39px;
  7639. }
  7640. #u9947 {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:752px;
  7644. top:0px;
  7645. width:80px;
  7646. height:39px;
  7647. display:flex;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:12px;
  7652. color:#FFFFFF;
  7653. }
  7654. #u9947 .text {
  7655. position:absolute;
  7656. align-self:center;
  7657. padding:2px 2px 2px 0px;
  7658. box-sizing:border-box;
  7659. width:100%;
  7660. }
  7661. #u9947_text {
  7662. border-width:0px;
  7663. word-wrap:break-word;
  7664. text-transform:none;
  7665. }
  7666. #u9948_img {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:80px;
  7672. height:39px;
  7673. }
  7674. #u9948 {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:832px;
  7678. top:0px;
  7679. width:80px;
  7680. height:39px;
  7681. display:flex;
  7682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:12px;
  7686. color:#FFFFFF;
  7687. }
  7688. #u9948 .text {
  7689. position:absolute;
  7690. align-self:center;
  7691. padding:2px 2px 2px 0px;
  7692. box-sizing:border-box;
  7693. width:100%;
  7694. }
  7695. #u9948_text {
  7696. border-width:0px;
  7697. word-wrap:break-word;
  7698. text-transform:none;
  7699. }
  7700. #u9949_img {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:0px;
  7704. top:0px;
  7705. width:80px;
  7706. height:39px;
  7707. }
  7708. #u9949 {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:912px;
  7712. top:0px;
  7713. width:80px;
  7714. height:39px;
  7715. display:flex;
  7716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:12px;
  7720. color:#FFFFFF;
  7721. }
  7722. #u9949 .text {
  7723. position:absolute;
  7724. align-self:center;
  7725. padding:2px 2px 2px 0px;
  7726. box-sizing:border-box;
  7727. width:100%;
  7728. }
  7729. #u9949_text {
  7730. border-width:0px;
  7731. word-wrap:break-word;
  7732. text-transform:none;
  7733. }
  7734. #u9950_img {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:80px;
  7740. height:39px;
  7741. }
  7742. #u9950 {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:992px;
  7746. top:0px;
  7747. width:80px;
  7748. height:39px;
  7749. display:flex;
  7750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:12px;
  7754. color:#FFFFFF;
  7755. }
  7756. #u9950 .text {
  7757. position:absolute;
  7758. align-self:center;
  7759. padding:2px 2px 2px 0px;
  7760. box-sizing:border-box;
  7761. width:100%;
  7762. }
  7763. #u9950_text {
  7764. border-width:0px;
  7765. word-wrap:break-word;
  7766. text-transform:none;
  7767. }
  7768. #u9951_img {
  7769. border-width:0px;
  7770. position:absolute;
  7771. left:0px;
  7772. top:0px;
  7773. width:80px;
  7774. height:39px;
  7775. }
  7776. #u9951 {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:1072px;
  7780. top:0px;
  7781. width:80px;
  7782. height:39px;
  7783. display:flex;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:12px;
  7788. color:#FFFFFF;
  7789. }
  7790. #u9951 .text {
  7791. position:absolute;
  7792. align-self:center;
  7793. padding:2px 2px 2px 0px;
  7794. box-sizing:border-box;
  7795. width:100%;
  7796. }
  7797. #u9951_text {
  7798. border-width:0px;
  7799. word-wrap:break-word;
  7800. text-transform:none;
  7801. }
  7802. #u9952_img {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:180px;
  7808. height:39px;
  7809. }
  7810. #u9952 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:1152px;
  7814. top:0px;
  7815. width:180px;
  7816. height:39px;
  7817. display:flex;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:12px;
  7822. color:#FFFFFF;
  7823. }
  7824. #u9952 .text {
  7825. position:absolute;
  7826. align-self:center;
  7827. padding:2px 2px 2px 0px;
  7828. box-sizing:border-box;
  7829. width:100%;
  7830. }
  7831. #u9952_text {
  7832. border-width:0px;
  7833. word-wrap:break-word;
  7834. text-transform:none;
  7835. }
  7836. #u9953_img {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:80px;
  7842. height:38px;
  7843. }
  7844. #u9953 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:0px;
  7848. top:39px;
  7849. width:80px;
  7850. height:38px;
  7851. display:flex;
  7852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:12px;
  7856. }
  7857. #u9953 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 0px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u9953_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. visibility:hidden;
  7869. }
  7870. #u9954_img {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:80px;
  7876. height:38px;
  7877. }
  7878. #u9954 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:80px;
  7882. top:39px;
  7883. width:80px;
  7884. height:38px;
  7885. display:flex;
  7886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:12px;
  7890. }
  7891. #u9954 .text {
  7892. position:absolute;
  7893. align-self:center;
  7894. padding:2px 2px 2px 0px;
  7895. box-sizing:border-box;
  7896. width:100%;
  7897. }
  7898. #u9954_text {
  7899. border-width:0px;
  7900. word-wrap:break-word;
  7901. text-transform:none;
  7902. visibility:hidden;
  7903. }
  7904. #u9955_img {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:80px;
  7910. height:38px;
  7911. }
  7912. #u9955 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:160px;
  7916. top:39px;
  7917. width:80px;
  7918. height:38px;
  7919. display:flex;
  7920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:12px;
  7924. }
  7925. #u9955 .text {
  7926. position:absolute;
  7927. align-self:center;
  7928. padding:2px 2px 2px 0px;
  7929. box-sizing:border-box;
  7930. width:100%;
  7931. }
  7932. #u9955_text {
  7933. border-width:0px;
  7934. word-wrap:break-word;
  7935. text-transform:none;
  7936. visibility:hidden;
  7937. }
  7938. #u9956_img {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:80px;
  7944. height:38px;
  7945. }
  7946. #u9956 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:240px;
  7950. top:39px;
  7951. width:80px;
  7952. height:38px;
  7953. display:flex;
  7954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7955. font-weight:400;
  7956. font-style:normal;
  7957. font-size:12px;
  7958. }
  7959. #u9956 .text {
  7960. position:absolute;
  7961. align-self:center;
  7962. padding:2px 2px 2px 0px;
  7963. box-sizing:border-box;
  7964. width:100%;
  7965. }
  7966. #u9956_text {
  7967. border-width:0px;
  7968. word-wrap:break-word;
  7969. text-transform:none;
  7970. }
  7971. #u9957_img {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:0px;
  7975. top:0px;
  7976. width:80px;
  7977. height:38px;
  7978. }
  7979. #u9957 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:320px;
  7983. top:39px;
  7984. width:80px;
  7985. height:38px;
  7986. display:flex;
  7987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7988. font-weight:400;
  7989. font-style:normal;
  7990. font-size:12px;
  7991. }
  7992. #u9957 .text {
  7993. position:absolute;
  7994. align-self:center;
  7995. padding:2px 2px 2px 0px;
  7996. box-sizing:border-box;
  7997. width:100%;
  7998. }
  7999. #u9957_text {
  8000. border-width:0px;
  8001. word-wrap:break-word;
  8002. text-transform:none;
  8003. visibility:hidden;
  8004. }
  8005. #u9958_img {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:80px;
  8011. height:38px;
  8012. }
  8013. #u9958 {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:400px;
  8017. top:39px;
  8018. width:80px;
  8019. height:38px;
  8020. display:flex;
  8021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:12px;
  8025. }
  8026. #u9958 .text {
  8027. position:absolute;
  8028. align-self:center;
  8029. padding:2px 2px 2px 0px;
  8030. box-sizing:border-box;
  8031. width:100%;
  8032. }
  8033. #u9958_text {
  8034. border-width:0px;
  8035. word-wrap:break-word;
  8036. text-transform:none;
  8037. visibility:hidden;
  8038. }
  8039. #u9959_img {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:0px;
  8043. top:0px;
  8044. width:80px;
  8045. height:38px;
  8046. }
  8047. #u9959 {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:480px;
  8051. top:39px;
  8052. width:80px;
  8053. height:38px;
  8054. display:flex;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:12px;
  8059. }
  8060. #u9959 .text {
  8061. position:absolute;
  8062. align-self:center;
  8063. padding:2px 2px 2px 0px;
  8064. box-sizing:border-box;
  8065. width:100%;
  8066. }
  8067. #u9959_text {
  8068. border-width:0px;
  8069. word-wrap:break-word;
  8070. text-transform:none;
  8071. }
  8072. #u9960_img {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:102px;
  8078. height:38px;
  8079. }
  8080. #u9960 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:560px;
  8084. top:39px;
  8085. width:102px;
  8086. height:38px;
  8087. display:flex;
  8088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8089. font-weight:400;
  8090. font-style:normal;
  8091. font-size:12px;
  8092. }
  8093. #u9960 .text {
  8094. position:absolute;
  8095. align-self:center;
  8096. padding:2px 2px 2px 0px;
  8097. box-sizing:border-box;
  8098. width:100%;
  8099. }
  8100. #u9960_text {
  8101. border-width:0px;
  8102. word-wrap:break-word;
  8103. text-transform:none;
  8104. }
  8105. #u9961_img {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:90px;
  8111. height:38px;
  8112. }
  8113. #u9961 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:662px;
  8117. top:39px;
  8118. width:90px;
  8119. height:38px;
  8120. display:flex;
  8121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:12px;
  8125. color:#333333;
  8126. }
  8127. #u9961 .text {
  8128. position:absolute;
  8129. align-self:center;
  8130. padding:2px 2px 2px 0px;
  8131. box-sizing:border-box;
  8132. width:100%;
  8133. }
  8134. #u9961_text {
  8135. border-width:0px;
  8136. word-wrap:break-word;
  8137. text-transform:none;
  8138. }
  8139. #u9962_img {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:80px;
  8145. height:38px;
  8146. }
  8147. #u9962 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:752px;
  8151. top:39px;
  8152. width:80px;
  8153. height:38px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:12px;
  8159. color:#AAAAAA;
  8160. }
  8161. #u9962 .text {
  8162. position:absolute;
  8163. align-self:center;
  8164. padding:2px 2px 2px 0px;
  8165. box-sizing:border-box;
  8166. width:100%;
  8167. }
  8168. #u9962_text {
  8169. border-width:0px;
  8170. word-wrap:break-word;
  8171. text-transform:none;
  8172. }
  8173. #u9963_img {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:80px;
  8179. height:38px;
  8180. }
  8181. #u9963 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:832px;
  8185. top:39px;
  8186. width:80px;
  8187. height:38px;
  8188. display:flex;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:12px;
  8193. color:#333333;
  8194. }
  8195. #u9963 .text {
  8196. position:absolute;
  8197. align-self:center;
  8198. padding:2px 2px 2px 0px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u9963_text {
  8203. border-width:0px;
  8204. word-wrap:break-word;
  8205. text-transform:none;
  8206. }
  8207. #u9964_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:80px;
  8213. height:38px;
  8214. }
  8215. #u9964 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:912px;
  8219. top:39px;
  8220. width:80px;
  8221. height:38px;
  8222. display:flex;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:12px;
  8227. color:#333333;
  8228. }
  8229. #u9964 .text {
  8230. position:absolute;
  8231. align-self:center;
  8232. padding:2px 2px 2px 0px;
  8233. box-sizing:border-box;
  8234. width:100%;
  8235. }
  8236. #u9964_text {
  8237. border-width:0px;
  8238. word-wrap:break-word;
  8239. text-transform:none;
  8240. }
  8241. #u9965_img {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:80px;
  8247. height:38px;
  8248. }
  8249. #u9965 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:992px;
  8253. top:39px;
  8254. width:80px;
  8255. height:38px;
  8256. display:flex;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:12px;
  8261. color:#AAAAAA;
  8262. }
  8263. #u9965 .text {
  8264. position:absolute;
  8265. align-self:center;
  8266. padding:2px 2px 2px 0px;
  8267. box-sizing:border-box;
  8268. width:100%;
  8269. }
  8270. #u9965_text {
  8271. border-width:0px;
  8272. word-wrap:break-word;
  8273. text-transform:none;
  8274. }
  8275. #u9966_img {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:80px;
  8281. height:38px;
  8282. }
  8283. #u9966 {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:1072px;
  8287. top:39px;
  8288. width:80px;
  8289. height:38px;
  8290. display:flex;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:12px;
  8295. color:#AAAAAA;
  8296. }
  8297. #u9966 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:2px 2px 2px 0px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u9966_text {
  8305. border-width:0px;
  8306. word-wrap:break-word;
  8307. text-transform:none;
  8308. }
  8309. #u9967_img {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:180px;
  8315. height:38px;
  8316. }
  8317. #u9967 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:1152px;
  8321. top:39px;
  8322. width:180px;
  8323. height:38px;
  8324. display:flex;
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:12px;
  8329. color:#1890FF;
  8330. }
  8331. #u9967 .text {
  8332. position:absolute;
  8333. align-self:center;
  8334. padding:2px 2px 2px 0px;
  8335. box-sizing:border-box;
  8336. width:100%;
  8337. }
  8338. #u9967_text {
  8339. border-width:0px;
  8340. word-wrap:break-word;
  8341. text-transform:none;
  8342. }
  8343. #u9968_img {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:80px;
  8349. height:38px;
  8350. }
  8351. #u9968 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:0px;
  8355. top:77px;
  8356. width:80px;
  8357. height:38px;
  8358. display:flex;
  8359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:12px;
  8363. }
  8364. #u9968 .text {
  8365. position:absolute;
  8366. align-self:center;
  8367. padding:2px 2px 2px 0px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u9968_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. visibility:hidden;
  8376. }
  8377. #u9969_img {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:80px;
  8383. height:38px;
  8384. }
  8385. #u9969 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:80px;
  8389. top:77px;
  8390. width:80px;
  8391. height:38px;
  8392. display:flex;
  8393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. font-size:12px;
  8397. }
  8398. #u9969 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:2px 2px 2px 0px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u9969_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. visibility:hidden;
  8410. }
  8411. #u9970_img {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:80px;
  8417. height:38px;
  8418. }
  8419. #u9970 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:160px;
  8423. top:77px;
  8424. width:80px;
  8425. height:38px;
  8426. display:flex;
  8427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:12px;
  8431. }
  8432. #u9970 .text {
  8433. position:absolute;
  8434. align-self:center;
  8435. padding:2px 2px 2px 0px;
  8436. box-sizing:border-box;
  8437. width:100%;
  8438. }
  8439. #u9970_text {
  8440. border-width:0px;
  8441. word-wrap:break-word;
  8442. text-transform:none;
  8443. visibility:hidden;
  8444. }
  8445. #u9971_img {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:0px;
  8449. top:0px;
  8450. width:80px;
  8451. height:38px;
  8452. }
  8453. #u9971 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:240px;
  8457. top:77px;
  8458. width:80px;
  8459. height:38px;
  8460. display:flex;
  8461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8462. font-weight:400;
  8463. font-style:normal;
  8464. font-size:12px;
  8465. }
  8466. #u9971 .text {
  8467. position:absolute;
  8468. align-self:center;
  8469. padding:2px 2px 2px 0px;
  8470. box-sizing:border-box;
  8471. width:100%;
  8472. }
  8473. #u9971_text {
  8474. border-width:0px;
  8475. word-wrap:break-word;
  8476. text-transform:none;
  8477. }
  8478. #u9972_img {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:80px;
  8484. height:38px;
  8485. }
  8486. #u9972 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:320px;
  8490. top:77px;
  8491. width:80px;
  8492. height:38px;
  8493. display:flex;
  8494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8495. font-weight:400;
  8496. font-style:normal;
  8497. font-size:12px;
  8498. }
  8499. #u9972 .text {
  8500. position:absolute;
  8501. align-self:center;
  8502. padding:2px 2px 2px 0px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u9972_text {
  8507. border-width:0px;
  8508. word-wrap:break-word;
  8509. text-transform:none;
  8510. visibility:hidden;
  8511. }
  8512. #u9973_img {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:80px;
  8518. height:38px;
  8519. }
  8520. #u9973 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:400px;
  8524. top:77px;
  8525. width:80px;
  8526. height:38px;
  8527. display:flex;
  8528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:12px;
  8532. }
  8533. #u9973 .text {
  8534. position:absolute;
  8535. align-self:center;
  8536. padding:2px 2px 2px 0px;
  8537. box-sizing:border-box;
  8538. width:100%;
  8539. }
  8540. #u9973_text {
  8541. border-width:0px;
  8542. word-wrap:break-word;
  8543. text-transform:none;
  8544. visibility:hidden;
  8545. }
  8546. #u9974_img {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:80px;
  8552. height:38px;
  8553. }
  8554. #u9974 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:480px;
  8558. top:77px;
  8559. width:80px;
  8560. height:38px;
  8561. display:flex;
  8562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:12px;
  8566. }
  8567. #u9974 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:2px 2px 2px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u9974_text {
  8575. border-width:0px;
  8576. word-wrap:break-word;
  8577. text-transform:none;
  8578. }
  8579. #u9975_img {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:102px;
  8585. height:38px;
  8586. }
  8587. #u9975 {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:560px;
  8591. top:77px;
  8592. width:102px;
  8593. height:38px;
  8594. display:flex;
  8595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8596. font-weight:400;
  8597. font-style:normal;
  8598. font-size:12px;
  8599. }
  8600. #u9975 .text {
  8601. position:absolute;
  8602. align-self:center;
  8603. padding:2px 2px 2px 0px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u9975_text {
  8608. border-width:0px;
  8609. word-wrap:break-word;
  8610. text-transform:none;
  8611. }
  8612. #u9976_img {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:90px;
  8618. height:38px;
  8619. }
  8620. #u9976 {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:662px;
  8624. top:77px;
  8625. width:90px;
  8626. height:38px;
  8627. display:flex;
  8628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8629. font-weight:400;
  8630. font-style:normal;
  8631. font-size:12px;
  8632. color:#333333;
  8633. }
  8634. #u9976 .text {
  8635. position:absolute;
  8636. align-self:center;
  8637. padding:2px 2px 2px 0px;
  8638. box-sizing:border-box;
  8639. width:100%;
  8640. }
  8641. #u9976_text {
  8642. border-width:0px;
  8643. word-wrap:break-word;
  8644. text-transform:none;
  8645. }
  8646. #u9977_img {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:0px;
  8650. top:0px;
  8651. width:80px;
  8652. height:38px;
  8653. }
  8654. #u9977 {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:752px;
  8658. top:77px;
  8659. width:80px;
  8660. height:38px;
  8661. display:flex;
  8662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:12px;
  8666. color:#AAAAAA;
  8667. }
  8668. #u9977 .text {
  8669. position:absolute;
  8670. align-self:center;
  8671. padding:2px 2px 2px 0px;
  8672. box-sizing:border-box;
  8673. width:100%;
  8674. }
  8675. #u9977_text {
  8676. border-width:0px;
  8677. word-wrap:break-word;
  8678. text-transform:none;
  8679. }
  8680. #u9978_img {
  8681. border-width:0px;
  8682. position:absolute;
  8683. left:0px;
  8684. top:0px;
  8685. width:80px;
  8686. height:38px;
  8687. }
  8688. #u9978 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:832px;
  8692. top:77px;
  8693. width:80px;
  8694. height:38px;
  8695. display:flex;
  8696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:12px;
  8700. color:#333333;
  8701. }
  8702. #u9978 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 0px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u9978_text {
  8710. border-width:0px;
  8711. word-wrap:break-word;
  8712. text-transform:none;
  8713. }
  8714. #u9979_img {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:80px;
  8720. height:38px;
  8721. }
  8722. #u9979 {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:912px;
  8726. top:77px;
  8727. width:80px;
  8728. height:38px;
  8729. display:flex;
  8730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:12px;
  8734. color:#333333;
  8735. }
  8736. #u9979 .text {
  8737. position:absolute;
  8738. align-self:center;
  8739. padding:2px 2px 2px 0px;
  8740. box-sizing:border-box;
  8741. width:100%;
  8742. }
  8743. #u9979_text {
  8744. border-width:0px;
  8745. word-wrap:break-word;
  8746. text-transform:none;
  8747. }
  8748. #u9980_img {
  8749. border-width:0px;
  8750. position:absolute;
  8751. left:0px;
  8752. top:0px;
  8753. width:80px;
  8754. height:38px;
  8755. }
  8756. #u9980 {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:992px;
  8760. top:77px;
  8761. width:80px;
  8762. height:38px;
  8763. display:flex;
  8764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8765. font-weight:400;
  8766. font-style:normal;
  8767. font-size:12px;
  8768. color:#333333;
  8769. }
  8770. #u9980 .text {
  8771. position:absolute;
  8772. align-self:center;
  8773. padding:2px 2px 2px 0px;
  8774. box-sizing:border-box;
  8775. width:100%;
  8776. }
  8777. #u9980_text {
  8778. border-width:0px;
  8779. word-wrap:break-word;
  8780. text-transform:none;
  8781. }
  8782. #u9981_img {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:0px;
  8786. top:0px;
  8787. width:80px;
  8788. height:38px;
  8789. }
  8790. #u9981 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:1072px;
  8794. top:77px;
  8795. width:80px;
  8796. height:38px;
  8797. display:flex;
  8798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8799. font-weight:400;
  8800. font-style:normal;
  8801. font-size:12px;
  8802. color:#AAAAAA;
  8803. }
  8804. #u9981 .text {
  8805. position:absolute;
  8806. align-self:center;
  8807. padding:2px 2px 2px 0px;
  8808. box-sizing:border-box;
  8809. width:100%;
  8810. }
  8811. #u9981_text {
  8812. border-width:0px;
  8813. word-wrap:break-word;
  8814. text-transform:none;
  8815. }
  8816. #u9982_img {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:180px;
  8822. height:38px;
  8823. }
  8824. #u9982 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:1152px;
  8828. top:77px;
  8829. width:180px;
  8830. height:38px;
  8831. display:flex;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:12px;
  8836. color:#1890FF;
  8837. }
  8838. #u9982 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 0px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u9982_text {
  8846. border-width:0px;
  8847. word-wrap:break-word;
  8848. text-transform:none;
  8849. }
  8850. #u9983_img {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:80px;
  8856. height:38px;
  8857. }
  8858. #u9983 {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:115px;
  8863. width:80px;
  8864. height:38px;
  8865. display:flex;
  8866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8867. font-weight:400;
  8868. font-style:normal;
  8869. font-size:12px;
  8870. }
  8871. #u9983 .text {
  8872. position:absolute;
  8873. align-self:center;
  8874. padding:2px 2px 2px 0px;
  8875. box-sizing:border-box;
  8876. width:100%;
  8877. }
  8878. #u9983_text {
  8879. border-width:0px;
  8880. word-wrap:break-word;
  8881. text-transform:none;
  8882. visibility:hidden;
  8883. }
  8884. #u9984_img {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:0px;
  8888. top:0px;
  8889. width:80px;
  8890. height:38px;
  8891. }
  8892. #u9984 {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:80px;
  8896. top:115px;
  8897. width:80px;
  8898. height:38px;
  8899. display:flex;
  8900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8901. font-weight:400;
  8902. font-style:normal;
  8903. font-size:12px;
  8904. }
  8905. #u9984 .text {
  8906. position:absolute;
  8907. align-self:center;
  8908. padding:2px 2px 2px 0px;
  8909. box-sizing:border-box;
  8910. width:100%;
  8911. }
  8912. #u9984_text {
  8913. border-width:0px;
  8914. word-wrap:break-word;
  8915. text-transform:none;
  8916. visibility:hidden;
  8917. }
  8918. #u9985_img {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:80px;
  8924. height:38px;
  8925. }
  8926. #u9985 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:160px;
  8930. top:115px;
  8931. width:80px;
  8932. height:38px;
  8933. display:flex;
  8934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8935. font-weight:400;
  8936. font-style:normal;
  8937. font-size:12px;
  8938. }
  8939. #u9985 .text {
  8940. position:absolute;
  8941. align-self:center;
  8942. padding:2px 2px 2px 0px;
  8943. box-sizing:border-box;
  8944. width:100%;
  8945. }
  8946. #u9985_text {
  8947. border-width:0px;
  8948. word-wrap:break-word;
  8949. text-transform:none;
  8950. visibility:hidden;
  8951. }
  8952. #u9986_img {
  8953. border-width:0px;
  8954. position:absolute;
  8955. left:0px;
  8956. top:0px;
  8957. width:80px;
  8958. height:38px;
  8959. }
  8960. #u9986 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:240px;
  8964. top:115px;
  8965. width:80px;
  8966. height:38px;
  8967. display:flex;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:12px;
  8972. }
  8973. #u9986 .text {
  8974. position:absolute;
  8975. align-self:center;
  8976. padding:2px 2px 2px 0px;
  8977. box-sizing:border-box;
  8978. width:100%;
  8979. }
  8980. #u9986_text {
  8981. border-width:0px;
  8982. word-wrap:break-word;
  8983. text-transform:none;
  8984. }
  8985. #u9987_img {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:0px;
  8989. top:0px;
  8990. width:80px;
  8991. height:38px;
  8992. }
  8993. #u9987 {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:320px;
  8997. top:115px;
  8998. width:80px;
  8999. height:38px;
  9000. display:flex;
  9001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9002. font-weight:400;
  9003. font-style:normal;
  9004. font-size:12px;
  9005. }
  9006. #u9987 .text {
  9007. position:absolute;
  9008. align-self:center;
  9009. padding:2px 2px 2px 0px;
  9010. box-sizing:border-box;
  9011. width:100%;
  9012. }
  9013. #u9987_text {
  9014. border-width:0px;
  9015. word-wrap:break-word;
  9016. text-transform:none;
  9017. visibility:hidden;
  9018. }
  9019. #u9988_img {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:80px;
  9025. height:38px;
  9026. }
  9027. #u9988 {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:400px;
  9031. top:115px;
  9032. width:80px;
  9033. height:38px;
  9034. display:flex;
  9035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9036. font-weight:400;
  9037. font-style:normal;
  9038. font-size:12px;
  9039. }
  9040. #u9988 .text {
  9041. position:absolute;
  9042. align-self:center;
  9043. padding:2px 2px 2px 0px;
  9044. box-sizing:border-box;
  9045. width:100%;
  9046. }
  9047. #u9988_text {
  9048. border-width:0px;
  9049. word-wrap:break-word;
  9050. text-transform:none;
  9051. visibility:hidden;
  9052. }
  9053. #u9989_img {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:80px;
  9059. height:38px;
  9060. }
  9061. #u9989 {
  9062. border-width:0px;
  9063. position:absolute;
  9064. left:480px;
  9065. top:115px;
  9066. width:80px;
  9067. height:38px;
  9068. display:flex;
  9069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:12px;
  9073. }
  9074. #u9989 .text {
  9075. position:absolute;
  9076. align-self:center;
  9077. padding:2px 2px 2px 0px;
  9078. box-sizing:border-box;
  9079. width:100%;
  9080. }
  9081. #u9989_text {
  9082. border-width:0px;
  9083. word-wrap:break-word;
  9084. text-transform:none;
  9085. visibility:hidden;
  9086. }
  9087. #u9990_img {
  9088. border-width:0px;
  9089. position:absolute;
  9090. left:0px;
  9091. top:0px;
  9092. width:102px;
  9093. height:38px;
  9094. }
  9095. #u9990 {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:560px;
  9099. top:115px;
  9100. width:102px;
  9101. height:38px;
  9102. display:flex;
  9103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9104. font-weight:400;
  9105. font-style:normal;
  9106. font-size:12px;
  9107. }
  9108. #u9990 .text {
  9109. position:absolute;
  9110. align-self:center;
  9111. padding:2px 2px 2px 0px;
  9112. box-sizing:border-box;
  9113. width:100%;
  9114. }
  9115. #u9990_text {
  9116. border-width:0px;
  9117. word-wrap:break-word;
  9118. text-transform:none;
  9119. }
  9120. #u9991_img {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:0px;
  9124. top:0px;
  9125. width:90px;
  9126. height:38px;
  9127. }
  9128. #u9991 {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:662px;
  9132. top:115px;
  9133. width:90px;
  9134. height:38px;
  9135. display:flex;
  9136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9137. font-weight:400;
  9138. font-style:normal;
  9139. font-size:12px;
  9140. color:#333333;
  9141. }
  9142. #u9991 .text {
  9143. position:absolute;
  9144. align-self:center;
  9145. padding:2px 2px 2px 0px;
  9146. box-sizing:border-box;
  9147. width:100%;
  9148. }
  9149. #u9991_text {
  9150. border-width:0px;
  9151. word-wrap:break-word;
  9152. text-transform:none;
  9153. }
  9154. #u9992_img {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:0px;
  9158. top:0px;
  9159. width:80px;
  9160. height:38px;
  9161. }
  9162. #u9992 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:752px;
  9166. top:115px;
  9167. width:80px;
  9168. height:38px;
  9169. display:flex;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:12px;
  9174. color:#AAAAAA;
  9175. }
  9176. #u9992 .text {
  9177. position:absolute;
  9178. align-self:center;
  9179. padding:2px 2px 2px 0px;
  9180. box-sizing:border-box;
  9181. width:100%;
  9182. }
  9183. #u9992_text {
  9184. border-width:0px;
  9185. word-wrap:break-word;
  9186. text-transform:none;
  9187. }
  9188. #u9993_img {
  9189. border-width:0px;
  9190. position:absolute;
  9191. left:0px;
  9192. top:0px;
  9193. width:80px;
  9194. height:38px;
  9195. }
  9196. #u9993 {
  9197. border-width:0px;
  9198. position:absolute;
  9199. left:832px;
  9200. top:115px;
  9201. width:80px;
  9202. height:38px;
  9203. display:flex;
  9204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9205. font-weight:400;
  9206. font-style:normal;
  9207. font-size:12px;
  9208. color:#333333;
  9209. }
  9210. #u9993 .text {
  9211. position:absolute;
  9212. align-self:center;
  9213. padding:2px 2px 2px 0px;
  9214. box-sizing:border-box;
  9215. width:100%;
  9216. }
  9217. #u9993_text {
  9218. border-width:0px;
  9219. word-wrap:break-word;
  9220. text-transform:none;
  9221. visibility:hidden;
  9222. }
  9223. #u9994_img {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:0px;
  9227. top:0px;
  9228. width:80px;
  9229. height:38px;
  9230. }
  9231. #u9994 {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:912px;
  9235. top:115px;
  9236. width:80px;
  9237. height:38px;
  9238. display:flex;
  9239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9240. font-weight:400;
  9241. font-style:normal;
  9242. font-size:12px;
  9243. color:#333333;
  9244. }
  9245. #u9994 .text {
  9246. position:absolute;
  9247. align-self:center;
  9248. padding:2px 2px 2px 0px;
  9249. box-sizing:border-box;
  9250. width:100%;
  9251. }
  9252. #u9994_text {
  9253. border-width:0px;
  9254. word-wrap:break-word;
  9255. text-transform:none;
  9256. }
  9257. #u9995_img {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:80px;
  9263. height:38px;
  9264. }
  9265. #u9995 {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:992px;
  9269. top:115px;
  9270. width:80px;
  9271. height:38px;
  9272. display:flex;
  9273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9274. font-weight:400;
  9275. font-style:normal;
  9276. font-size:12px;
  9277. color:#7F7F7F;
  9278. }
  9279. #u9995 .text {
  9280. position:absolute;
  9281. align-self:center;
  9282. padding:2px 2px 2px 0px;
  9283. box-sizing:border-box;
  9284. width:100%;
  9285. }
  9286. #u9995_text {
  9287. border-width:0px;
  9288. word-wrap:break-word;
  9289. text-transform:none;
  9290. }
  9291. #u9996_img {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:0px;
  9295. top:0px;
  9296. width:80px;
  9297. height:38px;
  9298. }
  9299. #u9996 {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:1072px;
  9303. top:115px;
  9304. width:80px;
  9305. height:38px;
  9306. display:flex;
  9307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9308. font-weight:400;
  9309. font-style:normal;
  9310. font-size:12px;
  9311. color:#AAAAAA;
  9312. }
  9313. #u9996 .text {
  9314. position:absolute;
  9315. align-self:center;
  9316. padding:2px 2px 2px 0px;
  9317. box-sizing:border-box;
  9318. width:100%;
  9319. }
  9320. #u9996_text {
  9321. border-width:0px;
  9322. word-wrap:break-word;
  9323. text-transform:none;
  9324. }
  9325. #u9997_img {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:180px;
  9331. height:38px;
  9332. }
  9333. #u9997 {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:1152px;
  9337. top:115px;
  9338. width:180px;
  9339. height:38px;
  9340. display:flex;
  9341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9342. font-weight:400;
  9343. font-style:normal;
  9344. font-size:12px;
  9345. color:#1890FF;
  9346. }
  9347. #u9997 .text {
  9348. position:absolute;
  9349. align-self:center;
  9350. padding:2px 2px 2px 0px;
  9351. box-sizing:border-box;
  9352. width:100%;
  9353. }
  9354. #u9997_text {
  9355. border-width:0px;
  9356. word-wrap:break-word;
  9357. text-transform:none;
  9358. }
  9359. #u9998_img {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:0px;
  9363. top:0px;
  9364. width:80px;
  9365. height:38px;
  9366. }
  9367. #u9998 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:0px;
  9371. top:153px;
  9372. width:80px;
  9373. height:38px;
  9374. display:flex;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:12px;
  9379. }
  9380. #u9998 .text {
  9381. position:absolute;
  9382. align-self:center;
  9383. padding:2px 2px 2px 0px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u9998_text {
  9388. border-width:0px;
  9389. word-wrap:break-word;
  9390. text-transform:none;
  9391. visibility:hidden;
  9392. }
  9393. #u9999_img {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:80px;
  9399. height:38px;
  9400. }
  9401. #u9999 {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:80px;
  9405. top:153px;
  9406. width:80px;
  9407. height:38px;
  9408. display:flex;
  9409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9410. font-weight:400;
  9411. font-style:normal;
  9412. font-size:12px;
  9413. }
  9414. #u9999 .text {
  9415. position:absolute;
  9416. align-self:center;
  9417. padding:2px 2px 2px 0px;
  9418. box-sizing:border-box;
  9419. width:100%;
  9420. }
  9421. #u9999_text {
  9422. border-width:0px;
  9423. word-wrap:break-word;
  9424. text-transform:none;
  9425. visibility:hidden;
  9426. }
  9427. #u10000_img {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:80px;
  9433. height:38px;
  9434. }
  9435. #u10000 {
  9436. border-width:0px;
  9437. position:absolute;
  9438. left:160px;
  9439. top:153px;
  9440. width:80px;
  9441. height:38px;
  9442. display:flex;
  9443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9444. font-weight:400;
  9445. font-style:normal;
  9446. font-size:12px;
  9447. }
  9448. #u10000 .text {
  9449. position:absolute;
  9450. align-self:center;
  9451. padding:2px 2px 2px 0px;
  9452. box-sizing:border-box;
  9453. width:100%;
  9454. }
  9455. #u10000_text {
  9456. border-width:0px;
  9457. word-wrap:break-word;
  9458. text-transform:none;
  9459. visibility:hidden;
  9460. }
  9461. #u10001_img {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:0px;
  9465. top:0px;
  9466. width:80px;
  9467. height:38px;
  9468. }
  9469. #u10001 {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:240px;
  9473. top:153px;
  9474. width:80px;
  9475. height:38px;
  9476. display:flex;
  9477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:12px;
  9481. }
  9482. #u10001 .text {
  9483. position:absolute;
  9484. align-self:center;
  9485. padding:2px 2px 2px 0px;
  9486. box-sizing:border-box;
  9487. width:100%;
  9488. }
  9489. #u10001_text {
  9490. border-width:0px;
  9491. word-wrap:break-word;
  9492. text-transform:none;
  9493. }
  9494. #u10002_img {
  9495. border-width:0px;
  9496. position:absolute;
  9497. left:0px;
  9498. top:0px;
  9499. width:80px;
  9500. height:38px;
  9501. }
  9502. #u10002 {
  9503. border-width:0px;
  9504. position:absolute;
  9505. left:320px;
  9506. top:153px;
  9507. width:80px;
  9508. height:38px;
  9509. display:flex;
  9510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9511. font-weight:400;
  9512. font-style:normal;
  9513. font-size:12px;
  9514. }
  9515. #u10002 .text {
  9516. position:absolute;
  9517. align-self:center;
  9518. padding:2px 2px 2px 0px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u10002_text {
  9523. border-width:0px;
  9524. word-wrap:break-word;
  9525. text-transform:none;
  9526. visibility:hidden;
  9527. }
  9528. #u10003_img {
  9529. border-width:0px;
  9530. position:absolute;
  9531. left:0px;
  9532. top:0px;
  9533. width:80px;
  9534. height:38px;
  9535. }
  9536. #u10003 {
  9537. border-width:0px;
  9538. position:absolute;
  9539. left:400px;
  9540. top:153px;
  9541. width:80px;
  9542. height:38px;
  9543. display:flex;
  9544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9545. font-weight:400;
  9546. font-style:normal;
  9547. font-size:12px;
  9548. }
  9549. #u10003 .text {
  9550. position:absolute;
  9551. align-self:center;
  9552. padding:2px 2px 2px 0px;
  9553. box-sizing:border-box;
  9554. width:100%;
  9555. }
  9556. #u10003_text {
  9557. border-width:0px;
  9558. word-wrap:break-word;
  9559. text-transform:none;
  9560. visibility:hidden;
  9561. }
  9562. #u10004_img {
  9563. border-width:0px;
  9564. position:absolute;
  9565. left:0px;
  9566. top:0px;
  9567. width:80px;
  9568. height:38px;
  9569. }
  9570. #u10004 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:480px;
  9574. top:153px;
  9575. width:80px;
  9576. height:38px;
  9577. display:flex;
  9578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9579. font-weight:400;
  9580. font-style:normal;
  9581. font-size:12px;
  9582. }
  9583. #u10004 .text {
  9584. position:absolute;
  9585. align-self:center;
  9586. padding:2px 2px 2px 0px;
  9587. box-sizing:border-box;
  9588. width:100%;
  9589. }
  9590. #u10004_text {
  9591. border-width:0px;
  9592. word-wrap:break-word;
  9593. text-transform:none;
  9594. visibility:hidden;
  9595. }
  9596. #u10005_img {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:102px;
  9602. height:38px;
  9603. }
  9604. #u10005 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:560px;
  9608. top:153px;
  9609. width:102px;
  9610. height:38px;
  9611. display:flex;
  9612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9613. font-weight:400;
  9614. font-style:normal;
  9615. font-size:12px;
  9616. }
  9617. #u10005 .text {
  9618. position:absolute;
  9619. align-self:center;
  9620. padding:2px 2px 2px 0px;
  9621. box-sizing:border-box;
  9622. width:100%;
  9623. }
  9624. #u10005_text {
  9625. border-width:0px;
  9626. word-wrap:break-word;
  9627. text-transform:none;
  9628. visibility:hidden;
  9629. }
  9630. #u10006_img {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:0px;
  9634. top:0px;
  9635. width:90px;
  9636. height:38px;
  9637. }
  9638. #u10006 {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:662px;
  9642. top:153px;
  9643. width:90px;
  9644. height:38px;
  9645. display:flex;
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:12px;
  9650. color:#D7D7D7;
  9651. }
  9652. #u10006 .text {
  9653. position:absolute;
  9654. align-self:center;
  9655. padding:2px 2px 2px 0px;
  9656. box-sizing:border-box;
  9657. width:100%;
  9658. }
  9659. #u10006_text {
  9660. border-width:0px;
  9661. word-wrap:break-word;
  9662. text-transform:none;
  9663. visibility:hidden;
  9664. }
  9665. #u10007_img {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:80px;
  9671. height:38px;
  9672. }
  9673. #u10007 {
  9674. border-width:0px;
  9675. position:absolute;
  9676. left:752px;
  9677. top:153px;
  9678. width:80px;
  9679. height:38px;
  9680. display:flex;
  9681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9682. font-weight:400;
  9683. font-style:normal;
  9684. font-size:12px;
  9685. color:#D7D7D7;
  9686. }
  9687. #u10007 .text {
  9688. position:absolute;
  9689. align-self:center;
  9690. padding:2px 2px 2px 0px;
  9691. box-sizing:border-box;
  9692. width:100%;
  9693. }
  9694. #u10007_text {
  9695. border-width:0px;
  9696. word-wrap:break-word;
  9697. text-transform:none;
  9698. visibility:hidden;
  9699. }
  9700. #u10008_img {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:80px;
  9706. height:38px;
  9707. }
  9708. #u10008 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:832px;
  9712. top:153px;
  9713. width:80px;
  9714. height:38px;
  9715. display:flex;
  9716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9717. font-weight:400;
  9718. font-style:normal;
  9719. font-size:12px;
  9720. color:#D7D7D7;
  9721. }
  9722. #u10008 .text {
  9723. position:absolute;
  9724. align-self:center;
  9725. padding:2px 2px 2px 0px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u10008_text {
  9730. border-width:0px;
  9731. word-wrap:break-word;
  9732. text-transform:none;
  9733. visibility:hidden;
  9734. }
  9735. #u10009_img {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:80px;
  9741. height:38px;
  9742. }
  9743. #u10009 {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:912px;
  9747. top:153px;
  9748. width:80px;
  9749. height:38px;
  9750. display:flex;
  9751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9752. font-weight:400;
  9753. font-style:normal;
  9754. font-size:12px;
  9755. color:#D7D7D7;
  9756. }
  9757. #u10009 .text {
  9758. position:absolute;
  9759. align-self:center;
  9760. padding:2px 2px 2px 0px;
  9761. box-sizing:border-box;
  9762. width:100%;
  9763. }
  9764. #u10009_text {
  9765. border-width:0px;
  9766. word-wrap:break-word;
  9767. text-transform:none;
  9768. }
  9769. #u10010_img {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:0px;
  9773. top:0px;
  9774. width:80px;
  9775. height:38px;
  9776. }
  9777. #u10010 {
  9778. border-width:0px;
  9779. position:absolute;
  9780. left:992px;
  9781. top:153px;
  9782. width:80px;
  9783. height:38px;
  9784. display:flex;
  9785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9786. font-weight:400;
  9787. font-style:normal;
  9788. font-size:12px;
  9789. color:#D7D7D7;
  9790. }
  9791. #u10010 .text {
  9792. position:absolute;
  9793. align-self:center;
  9794. padding:2px 2px 2px 0px;
  9795. box-sizing:border-box;
  9796. width:100%;
  9797. }
  9798. #u10010_text {
  9799. border-width:0px;
  9800. word-wrap:break-word;
  9801. text-transform:none;
  9802. visibility:hidden;
  9803. }
  9804. #u10011_img {
  9805. border-width:0px;
  9806. position:absolute;
  9807. left:0px;
  9808. top:0px;
  9809. width:80px;
  9810. height:38px;
  9811. }
  9812. #u10011 {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:1072px;
  9816. top:153px;
  9817. width:80px;
  9818. height:38px;
  9819. display:flex;
  9820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9821. font-weight:400;
  9822. font-style:normal;
  9823. font-size:12px;
  9824. color:#D7D7D7;
  9825. }
  9826. #u10011 .text {
  9827. position:absolute;
  9828. align-self:center;
  9829. padding:2px 2px 2px 0px;
  9830. box-sizing:border-box;
  9831. width:100%;
  9832. }
  9833. #u10011_text {
  9834. border-width:0px;
  9835. word-wrap:break-word;
  9836. text-transform:none;
  9837. visibility:hidden;
  9838. }
  9839. #u10012_img {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:0px;
  9843. top:0px;
  9844. width:180px;
  9845. height:38px;
  9846. }
  9847. #u10012 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:1152px;
  9851. top:153px;
  9852. width:180px;
  9853. height:38px;
  9854. display:flex;
  9855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9856. font-weight:400;
  9857. font-style:normal;
  9858. font-size:12px;
  9859. color:#1890FF;
  9860. }
  9861. #u10012 .text {
  9862. position:absolute;
  9863. align-self:center;
  9864. padding:2px 2px 2px 0px;
  9865. box-sizing:border-box;
  9866. width:100%;
  9867. }
  9868. #u10012_text {
  9869. border-width:0px;
  9870. word-wrap:break-word;
  9871. text-transform:none;
  9872. visibility:hidden;
  9873. }
  9874. #u10013_img {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:0px;
  9878. top:0px;
  9879. width:80px;
  9880. height:35px;
  9881. }
  9882. #u10013 {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:0px;
  9886. top:191px;
  9887. width:80px;
  9888. height:35px;
  9889. display:flex;
  9890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9891. font-weight:400;
  9892. font-style:normal;
  9893. font-size:12px;
  9894. color:#606266;
  9895. }
  9896. #u10013 .text {
  9897. position:absolute;
  9898. align-self:center;
  9899. padding:2px 2px 2px 0px;
  9900. box-sizing:border-box;
  9901. width:100%;
  9902. }
  9903. #u10013_text {
  9904. border-width:0px;
  9905. word-wrap:break-word;
  9906. text-transform:none;
  9907. visibility:hidden;
  9908. }
  9909. #u10014_img {
  9910. border-width:0px;
  9911. position:absolute;
  9912. left:0px;
  9913. top:0px;
  9914. width:80px;
  9915. height:35px;
  9916. }
  9917. #u10014 {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:80px;
  9921. top:191px;
  9922. width:80px;
  9923. height:35px;
  9924. display:flex;
  9925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9926. font-weight:400;
  9927. font-style:normal;
  9928. font-size:12px;
  9929. color:#606266;
  9930. }
  9931. #u10014 .text {
  9932. position:absolute;
  9933. align-self:center;
  9934. padding:2px 2px 2px 0px;
  9935. box-sizing:border-box;
  9936. width:100%;
  9937. }
  9938. #u10014_text {
  9939. border-width:0px;
  9940. word-wrap:break-word;
  9941. text-transform:none;
  9942. visibility:hidden;
  9943. }
  9944. #u10015_img {
  9945. border-width:0px;
  9946. position:absolute;
  9947. left:0px;
  9948. top:0px;
  9949. width:80px;
  9950. height:35px;
  9951. }
  9952. #u10015 {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:160px;
  9956. top:191px;
  9957. width:80px;
  9958. height:35px;
  9959. display:flex;
  9960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9961. font-weight:400;
  9962. font-style:normal;
  9963. font-size:12px;
  9964. color:#606266;
  9965. }
  9966. #u10015 .text {
  9967. position:absolute;
  9968. align-self:center;
  9969. padding:2px 2px 2px 0px;
  9970. box-sizing:border-box;
  9971. width:100%;
  9972. }
  9973. #u10015_text {
  9974. border-width:0px;
  9975. word-wrap:break-word;
  9976. text-transform:none;
  9977. visibility:hidden;
  9978. }
  9979. #u10016_img {
  9980. border-width:0px;
  9981. position:absolute;
  9982. left:0px;
  9983. top:0px;
  9984. width:80px;
  9985. height:35px;
  9986. }
  9987. #u10016 {
  9988. border-width:0px;
  9989. position:absolute;
  9990. left:240px;
  9991. top:191px;
  9992. width:80px;
  9993. height:35px;
  9994. display:flex;
  9995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9996. font-weight:400;
  9997. font-style:normal;
  9998. font-size:12px;
  9999. color:#606266;
  10000. }
  10001. #u10016 .text {
  10002. position:absolute;
  10003. align-self:center;
  10004. padding:2px 2px 2px 0px;
  10005. box-sizing:border-box;
  10006. width:100%;
  10007. }
  10008. #u10016_text {
  10009. border-width:0px;
  10010. word-wrap:break-word;
  10011. text-transform:none;
  10012. visibility:hidden;
  10013. }
  10014. #u10017_img {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:0px;
  10018. top:0px;
  10019. width:80px;
  10020. height:35px;
  10021. }
  10022. #u10017 {
  10023. border-width:0px;
  10024. position:absolute;
  10025. left:320px;
  10026. top:191px;
  10027. width:80px;
  10028. height:35px;
  10029. display:flex;
  10030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10031. font-weight:400;
  10032. font-style:normal;
  10033. font-size:12px;
  10034. color:#606266;
  10035. }
  10036. #u10017 .text {
  10037. position:absolute;
  10038. align-self:center;
  10039. padding:2px 2px 2px 0px;
  10040. box-sizing:border-box;
  10041. width:100%;
  10042. }
  10043. #u10017_text {
  10044. border-width:0px;
  10045. word-wrap:break-word;
  10046. text-transform:none;
  10047. visibility:hidden;
  10048. }
  10049. #u10018_img {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:80px;
  10055. height:35px;
  10056. }
  10057. #u10018 {
  10058. border-width:0px;
  10059. position:absolute;
  10060. left:400px;
  10061. top:191px;
  10062. width:80px;
  10063. height:35px;
  10064. display:flex;
  10065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10066. font-weight:400;
  10067. font-style:normal;
  10068. font-size:12px;
  10069. color:#606266;
  10070. }
  10071. #u10018 .text {
  10072. position:absolute;
  10073. align-self:center;
  10074. padding:2px 2px 2px 0px;
  10075. box-sizing:border-box;
  10076. width:100%;
  10077. }
  10078. #u10018_text {
  10079. border-width:0px;
  10080. word-wrap:break-word;
  10081. text-transform:none;
  10082. visibility:hidden;
  10083. }
  10084. #u10019_img {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:80px;
  10090. height:35px;
  10091. }
  10092. #u10019 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:480px;
  10096. top:191px;
  10097. width:80px;
  10098. height:35px;
  10099. display:flex;
  10100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10101. font-weight:400;
  10102. font-style:normal;
  10103. font-size:12px;
  10104. color:#606266;
  10105. }
  10106. #u10019 .text {
  10107. position:absolute;
  10108. align-self:center;
  10109. padding:2px 2px 2px 0px;
  10110. box-sizing:border-box;
  10111. width:100%;
  10112. }
  10113. #u10019_text {
  10114. border-width:0px;
  10115. word-wrap:break-word;
  10116. text-transform:none;
  10117. visibility:hidden;
  10118. }
  10119. #u10020_img {
  10120. border-width:0px;
  10121. position:absolute;
  10122. left:0px;
  10123. top:0px;
  10124. width:102px;
  10125. height:35px;
  10126. }
  10127. #u10020 {
  10128. border-width:0px;
  10129. position:absolute;
  10130. left:560px;
  10131. top:191px;
  10132. width:102px;
  10133. height:35px;
  10134. display:flex;
  10135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10136. font-weight:400;
  10137. font-style:normal;
  10138. font-size:12px;
  10139. color:#606266;
  10140. }
  10141. #u10020 .text {
  10142. position:absolute;
  10143. align-self:center;
  10144. padding:2px 2px 2px 0px;
  10145. box-sizing:border-box;
  10146. width:100%;
  10147. }
  10148. #u10020_text {
  10149. border-width:0px;
  10150. word-wrap:break-word;
  10151. text-transform:none;
  10152. visibility:hidden;
  10153. }
  10154. #u10021_img {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:0px;
  10158. top:0px;
  10159. width:90px;
  10160. height:35px;
  10161. }
  10162. #u10021 {
  10163. border-width:0px;
  10164. position:absolute;
  10165. left:662px;
  10166. top:191px;
  10167. width:90px;
  10168. height:35px;
  10169. display:flex;
  10170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10171. font-weight:400;
  10172. font-style:normal;
  10173. font-size:12px;
  10174. color:#606266;
  10175. }
  10176. #u10021 .text {
  10177. position:absolute;
  10178. align-self:center;
  10179. padding:2px 2px 2px 0px;
  10180. box-sizing:border-box;
  10181. width:100%;
  10182. }
  10183. #u10021_text {
  10184. border-width:0px;
  10185. word-wrap:break-word;
  10186. text-transform:none;
  10187. visibility:hidden;
  10188. }
  10189. #u10022_img {
  10190. border-width:0px;
  10191. position:absolute;
  10192. left:0px;
  10193. top:0px;
  10194. width:80px;
  10195. height:35px;
  10196. }
  10197. #u10022 {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:752px;
  10201. top:191px;
  10202. width:80px;
  10203. height:35px;
  10204. display:flex;
  10205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10206. font-weight:400;
  10207. font-style:normal;
  10208. font-size:12px;
  10209. color:#606266;
  10210. }
  10211. #u10022 .text {
  10212. position:absolute;
  10213. align-self:center;
  10214. padding:2px 2px 2px 0px;
  10215. box-sizing:border-box;
  10216. width:100%;
  10217. }
  10218. #u10022_text {
  10219. border-width:0px;
  10220. word-wrap:break-word;
  10221. text-transform:none;
  10222. visibility:hidden;
  10223. }
  10224. #u10023_img {
  10225. border-width:0px;
  10226. position:absolute;
  10227. left:0px;
  10228. top:0px;
  10229. width:80px;
  10230. height:35px;
  10231. }
  10232. #u10023 {
  10233. border-width:0px;
  10234. position:absolute;
  10235. left:832px;
  10236. top:191px;
  10237. width:80px;
  10238. height:35px;
  10239. display:flex;
  10240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10241. font-weight:400;
  10242. font-style:normal;
  10243. font-size:12px;
  10244. color:#606266;
  10245. }
  10246. #u10023 .text {
  10247. position:absolute;
  10248. align-self:center;
  10249. padding:2px 2px 2px 0px;
  10250. box-sizing:border-box;
  10251. width:100%;
  10252. }
  10253. #u10023_text {
  10254. border-width:0px;
  10255. word-wrap:break-word;
  10256. text-transform:none;
  10257. visibility:hidden;
  10258. }
  10259. #u10024_img {
  10260. border-width:0px;
  10261. position:absolute;
  10262. left:0px;
  10263. top:0px;
  10264. width:80px;
  10265. height:35px;
  10266. }
  10267. #u10024 {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:912px;
  10271. top:191px;
  10272. width:80px;
  10273. height:35px;
  10274. display:flex;
  10275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10276. font-weight:400;
  10277. font-style:normal;
  10278. font-size:12px;
  10279. color:#606266;
  10280. }
  10281. #u10024 .text {
  10282. position:absolute;
  10283. align-self:center;
  10284. padding:2px 2px 2px 0px;
  10285. box-sizing:border-box;
  10286. width:100%;
  10287. }
  10288. #u10024_text {
  10289. border-width:0px;
  10290. word-wrap:break-word;
  10291. text-transform:none;
  10292. visibility:hidden;
  10293. }
  10294. #u10025_img {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:0px;
  10298. top:0px;
  10299. width:80px;
  10300. height:35px;
  10301. }
  10302. #u10025 {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:992px;
  10306. top:191px;
  10307. width:80px;
  10308. height:35px;
  10309. display:flex;
  10310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10311. font-weight:400;
  10312. font-style:normal;
  10313. font-size:12px;
  10314. color:#606266;
  10315. }
  10316. #u10025 .text {
  10317. position:absolute;
  10318. align-self:center;
  10319. padding:2px 2px 2px 0px;
  10320. box-sizing:border-box;
  10321. width:100%;
  10322. }
  10323. #u10025_text {
  10324. border-width:0px;
  10325. word-wrap:break-word;
  10326. text-transform:none;
  10327. visibility:hidden;
  10328. }
  10329. #u10026_img {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:0px;
  10333. top:0px;
  10334. width:80px;
  10335. height:35px;
  10336. }
  10337. #u10026 {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:1072px;
  10341. top:191px;
  10342. width:80px;
  10343. height:35px;
  10344. display:flex;
  10345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10346. font-weight:400;
  10347. font-style:normal;
  10348. font-size:12px;
  10349. color:#606266;
  10350. }
  10351. #u10026 .text {
  10352. position:absolute;
  10353. align-self:center;
  10354. padding:2px 2px 2px 0px;
  10355. box-sizing:border-box;
  10356. width:100%;
  10357. }
  10358. #u10026_text {
  10359. border-width:0px;
  10360. word-wrap:break-word;
  10361. text-transform:none;
  10362. visibility:hidden;
  10363. }
  10364. #u10027_img {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:0px;
  10368. top:0px;
  10369. width:180px;
  10370. height:35px;
  10371. }
  10372. #u10027 {
  10373. border-width:0px;
  10374. position:absolute;
  10375. left:1152px;
  10376. top:191px;
  10377. width:180px;
  10378. height:35px;
  10379. display:flex;
  10380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10381. font-weight:400;
  10382. font-style:normal;
  10383. font-size:12px;
  10384. color:#02A7F0;
  10385. }
  10386. #u10027 .text {
  10387. position:absolute;
  10388. align-self:center;
  10389. padding:2px 2px 2px 0px;
  10390. box-sizing:border-box;
  10391. width:100%;
  10392. }
  10393. #u10027_text {
  10394. border-width:0px;
  10395. word-wrap:break-word;
  10396. text-transform:none;
  10397. visibility:hidden;
  10398. }
  10399. #u10028_img {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:0px;
  10403. top:0px;
  10404. width:80px;
  10405. height:35px;
  10406. }
  10407. #u10028 {
  10408. border-width:0px;
  10409. position:absolute;
  10410. left:0px;
  10411. top:226px;
  10412. width:80px;
  10413. height:35px;
  10414. display:flex;
  10415. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10416. font-weight:400;
  10417. font-style:normal;
  10418. font-size:12px;
  10419. color:#606266;
  10420. }
  10421. #u10028 .text {
  10422. position:absolute;
  10423. align-self:center;
  10424. padding:2px 2px 2px 0px;
  10425. box-sizing:border-box;
  10426. width:100%;
  10427. }
  10428. #u10028_text {
  10429. border-width:0px;
  10430. word-wrap:break-word;
  10431. text-transform:none;
  10432. visibility:hidden;
  10433. }
  10434. #u10029_img {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:0px;
  10438. top:0px;
  10439. width:80px;
  10440. height:35px;
  10441. }
  10442. #u10029 {
  10443. border-width:0px;
  10444. position:absolute;
  10445. left:80px;
  10446. top:226px;
  10447. width:80px;
  10448. height:35px;
  10449. display:flex;
  10450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10451. font-weight:400;
  10452. font-style:normal;
  10453. font-size:12px;
  10454. color:#606266;
  10455. }
  10456. #u10029 .text {
  10457. position:absolute;
  10458. align-self:center;
  10459. padding:2px 2px 2px 0px;
  10460. box-sizing:border-box;
  10461. width:100%;
  10462. }
  10463. #u10029_text {
  10464. border-width:0px;
  10465. word-wrap:break-word;
  10466. text-transform:none;
  10467. visibility:hidden;
  10468. }
  10469. #u10030_img {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:0px;
  10473. top:0px;
  10474. width:80px;
  10475. height:35px;
  10476. }
  10477. #u10030 {
  10478. border-width:0px;
  10479. position:absolute;
  10480. left:160px;
  10481. top:226px;
  10482. width:80px;
  10483. height:35px;
  10484. display:flex;
  10485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10486. font-weight:400;
  10487. font-style:normal;
  10488. font-size:12px;
  10489. color:#606266;
  10490. }
  10491. #u10030 .text {
  10492. position:absolute;
  10493. align-self:center;
  10494. padding:2px 2px 2px 0px;
  10495. box-sizing:border-box;
  10496. width:100%;
  10497. }
  10498. #u10030_text {
  10499. border-width:0px;
  10500. word-wrap:break-word;
  10501. text-transform:none;
  10502. visibility:hidden;
  10503. }
  10504. #u10031_img {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:80px;
  10510. height:35px;
  10511. }
  10512. #u10031 {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:240px;
  10516. top:226px;
  10517. width:80px;
  10518. height:35px;
  10519. display:flex;
  10520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. font-size:12px;
  10524. color:#606266;
  10525. }
  10526. #u10031 .text {
  10527. position:absolute;
  10528. align-self:center;
  10529. padding:2px 2px 2px 0px;
  10530. box-sizing:border-box;
  10531. width:100%;
  10532. }
  10533. #u10031_text {
  10534. border-width:0px;
  10535. word-wrap:break-word;
  10536. text-transform:none;
  10537. visibility:hidden;
  10538. }
  10539. #u10032_img {
  10540. border-width:0px;
  10541. position:absolute;
  10542. left:0px;
  10543. top:0px;
  10544. width:80px;
  10545. height:35px;
  10546. }
  10547. #u10032 {
  10548. border-width:0px;
  10549. position:absolute;
  10550. left:320px;
  10551. top:226px;
  10552. width:80px;
  10553. height:35px;
  10554. display:flex;
  10555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10556. font-weight:400;
  10557. font-style:normal;
  10558. font-size:12px;
  10559. color:#606266;
  10560. }
  10561. #u10032 .text {
  10562. position:absolute;
  10563. align-self:center;
  10564. padding:2px 2px 2px 0px;
  10565. box-sizing:border-box;
  10566. width:100%;
  10567. }
  10568. #u10032_text {
  10569. border-width:0px;
  10570. word-wrap:break-word;
  10571. text-transform:none;
  10572. visibility:hidden;
  10573. }
  10574. #u10033_img {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:0px;
  10578. top:0px;
  10579. width:80px;
  10580. height:35px;
  10581. }
  10582. #u10033 {
  10583. border-width:0px;
  10584. position:absolute;
  10585. left:400px;
  10586. top:226px;
  10587. width:80px;
  10588. height:35px;
  10589. display:flex;
  10590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:12px;
  10594. color:#606266;
  10595. }
  10596. #u10033 .text {
  10597. position:absolute;
  10598. align-self:center;
  10599. padding:2px 2px 2px 0px;
  10600. box-sizing:border-box;
  10601. width:100%;
  10602. }
  10603. #u10033_text {
  10604. border-width:0px;
  10605. word-wrap:break-word;
  10606. text-transform:none;
  10607. visibility:hidden;
  10608. }
  10609. #u10034_img {
  10610. border-width:0px;
  10611. position:absolute;
  10612. left:0px;
  10613. top:0px;
  10614. width:80px;
  10615. height:35px;
  10616. }
  10617. #u10034 {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:480px;
  10621. top:226px;
  10622. width:80px;
  10623. height:35px;
  10624. display:flex;
  10625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10626. font-weight:400;
  10627. font-style:normal;
  10628. font-size:12px;
  10629. color:#606266;
  10630. }
  10631. #u10034 .text {
  10632. position:absolute;
  10633. align-self:center;
  10634. padding:2px 2px 2px 0px;
  10635. box-sizing:border-box;
  10636. width:100%;
  10637. }
  10638. #u10034_text {
  10639. border-width:0px;
  10640. word-wrap:break-word;
  10641. text-transform:none;
  10642. visibility:hidden;
  10643. }
  10644. #u10035_img {
  10645. border-width:0px;
  10646. position:absolute;
  10647. left:0px;
  10648. top:0px;
  10649. width:102px;
  10650. height:35px;
  10651. }
  10652. #u10035 {
  10653. border-width:0px;
  10654. position:absolute;
  10655. left:560px;
  10656. top:226px;
  10657. width:102px;
  10658. height:35px;
  10659. display:flex;
  10660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10661. font-weight:400;
  10662. font-style:normal;
  10663. font-size:12px;
  10664. color:#606266;
  10665. }
  10666. #u10035 .text {
  10667. position:absolute;
  10668. align-self:center;
  10669. padding:2px 2px 2px 0px;
  10670. box-sizing:border-box;
  10671. width:100%;
  10672. }
  10673. #u10035_text {
  10674. border-width:0px;
  10675. word-wrap:break-word;
  10676. text-transform:none;
  10677. visibility:hidden;
  10678. }
  10679. #u10036_img {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:0px;
  10683. top:0px;
  10684. width:90px;
  10685. height:35px;
  10686. }
  10687. #u10036 {
  10688. border-width:0px;
  10689. position:absolute;
  10690. left:662px;
  10691. top:226px;
  10692. width:90px;
  10693. height:35px;
  10694. display:flex;
  10695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10696. font-weight:400;
  10697. font-style:normal;
  10698. font-size:12px;
  10699. color:#606266;
  10700. }
  10701. #u10036 .text {
  10702. position:absolute;
  10703. align-self:center;
  10704. padding:2px 2px 2px 0px;
  10705. box-sizing:border-box;
  10706. width:100%;
  10707. }
  10708. #u10036_text {
  10709. border-width:0px;
  10710. word-wrap:break-word;
  10711. text-transform:none;
  10712. visibility:hidden;
  10713. }
  10714. #u10037_img {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:0px;
  10718. top:0px;
  10719. width:80px;
  10720. height:35px;
  10721. }
  10722. #u10037 {
  10723. border-width:0px;
  10724. position:absolute;
  10725. left:752px;
  10726. top:226px;
  10727. width:80px;
  10728. height:35px;
  10729. display:flex;
  10730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10731. font-weight:400;
  10732. font-style:normal;
  10733. font-size:12px;
  10734. color:#606266;
  10735. }
  10736. #u10037 .text {
  10737. position:absolute;
  10738. align-self:center;
  10739. padding:2px 2px 2px 0px;
  10740. box-sizing:border-box;
  10741. width:100%;
  10742. }
  10743. #u10037_text {
  10744. border-width:0px;
  10745. word-wrap:break-word;
  10746. text-transform:none;
  10747. visibility:hidden;
  10748. }
  10749. #u10038_img {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:0px;
  10753. top:0px;
  10754. width:80px;
  10755. height:35px;
  10756. }
  10757. #u10038 {
  10758. border-width:0px;
  10759. position:absolute;
  10760. left:832px;
  10761. top:226px;
  10762. width:80px;
  10763. height:35px;
  10764. display:flex;
  10765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10766. font-weight:400;
  10767. font-style:normal;
  10768. font-size:12px;
  10769. color:#606266;
  10770. }
  10771. #u10038 .text {
  10772. position:absolute;
  10773. align-self:center;
  10774. padding:2px 2px 2px 0px;
  10775. box-sizing:border-box;
  10776. width:100%;
  10777. }
  10778. #u10038_text {
  10779. border-width:0px;
  10780. word-wrap:break-word;
  10781. text-transform:none;
  10782. visibility:hidden;
  10783. }
  10784. #u10039_img {
  10785. border-width:0px;
  10786. position:absolute;
  10787. left:0px;
  10788. top:0px;
  10789. width:80px;
  10790. height:35px;
  10791. }
  10792. #u10039 {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:912px;
  10796. top:226px;
  10797. width:80px;
  10798. height:35px;
  10799. display:flex;
  10800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10801. font-weight:400;
  10802. font-style:normal;
  10803. font-size:12px;
  10804. color:#606266;
  10805. }
  10806. #u10039 .text {
  10807. position:absolute;
  10808. align-self:center;
  10809. padding:2px 2px 2px 0px;
  10810. box-sizing:border-box;
  10811. width:100%;
  10812. }
  10813. #u10039_text {
  10814. border-width:0px;
  10815. word-wrap:break-word;
  10816. text-transform:none;
  10817. visibility:hidden;
  10818. }
  10819. #u10040_img {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:0px;
  10823. top:0px;
  10824. width:80px;
  10825. height:35px;
  10826. }
  10827. #u10040 {
  10828. border-width:0px;
  10829. position:absolute;
  10830. left:992px;
  10831. top:226px;
  10832. width:80px;
  10833. height:35px;
  10834. display:flex;
  10835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10836. font-weight:400;
  10837. font-style:normal;
  10838. font-size:12px;
  10839. color:#606266;
  10840. }
  10841. #u10040 .text {
  10842. position:absolute;
  10843. align-self:center;
  10844. padding:2px 2px 2px 0px;
  10845. box-sizing:border-box;
  10846. width:100%;
  10847. }
  10848. #u10040_text {
  10849. border-width:0px;
  10850. word-wrap:break-word;
  10851. text-transform:none;
  10852. visibility:hidden;
  10853. }
  10854. #u10041_img {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:0px;
  10858. top:0px;
  10859. width:80px;
  10860. height:35px;
  10861. }
  10862. #u10041 {
  10863. border-width:0px;
  10864. position:absolute;
  10865. left:1072px;
  10866. top:226px;
  10867. width:80px;
  10868. height:35px;
  10869. display:flex;
  10870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10871. font-weight:400;
  10872. font-style:normal;
  10873. font-size:12px;
  10874. color:#606266;
  10875. }
  10876. #u10041 .text {
  10877. position:absolute;
  10878. align-self:center;
  10879. padding:2px 2px 2px 0px;
  10880. box-sizing:border-box;
  10881. width:100%;
  10882. }
  10883. #u10041_text {
  10884. border-width:0px;
  10885. word-wrap:break-word;
  10886. text-transform:none;
  10887. visibility:hidden;
  10888. }
  10889. #u10042_img {
  10890. border-width:0px;
  10891. position:absolute;
  10892. left:0px;
  10893. top:0px;
  10894. width:180px;
  10895. height:35px;
  10896. }
  10897. #u10042 {
  10898. border-width:0px;
  10899. position:absolute;
  10900. left:1152px;
  10901. top:226px;
  10902. width:180px;
  10903. height:35px;
  10904. display:flex;
  10905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10906. font-weight:400;
  10907. font-style:normal;
  10908. font-size:12px;
  10909. color:#02A7F0;
  10910. }
  10911. #u10042 .text {
  10912. position:absolute;
  10913. align-self:center;
  10914. padding:2px 2px 2px 0px;
  10915. box-sizing:border-box;
  10916. width:100%;
  10917. }
  10918. #u10042_text {
  10919. border-width:0px;
  10920. word-wrap:break-word;
  10921. text-transform:none;
  10922. visibility:hidden;
  10923. }
  10924. #u10043_img {
  10925. border-width:0px;
  10926. position:absolute;
  10927. left:0px;
  10928. top:0px;
  10929. width:80px;
  10930. height:35px;
  10931. }
  10932. #u10043 {
  10933. border-width:0px;
  10934. position:absolute;
  10935. left:0px;
  10936. top:261px;
  10937. width:80px;
  10938. height:35px;
  10939. display:flex;
  10940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10941. font-weight:400;
  10942. font-style:normal;
  10943. font-size:12px;
  10944. color:#606266;
  10945. }
  10946. #u10043 .text {
  10947. position:absolute;
  10948. align-self:center;
  10949. padding:2px 2px 2px 0px;
  10950. box-sizing:border-box;
  10951. width:100%;
  10952. }
  10953. #u10043_text {
  10954. border-width:0px;
  10955. word-wrap:break-word;
  10956. text-transform:none;
  10957. visibility:hidden;
  10958. }
  10959. #u10044_img {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:0px;
  10963. top:0px;
  10964. width:80px;
  10965. height:35px;
  10966. }
  10967. #u10044 {
  10968. border-width:0px;
  10969. position:absolute;
  10970. left:80px;
  10971. top:261px;
  10972. width:80px;
  10973. height:35px;
  10974. display:flex;
  10975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10976. font-weight:400;
  10977. font-style:normal;
  10978. font-size:12px;
  10979. color:#606266;
  10980. }
  10981. #u10044 .text {
  10982. position:absolute;
  10983. align-self:center;
  10984. padding:2px 2px 2px 0px;
  10985. box-sizing:border-box;
  10986. width:100%;
  10987. }
  10988. #u10044_text {
  10989. border-width:0px;
  10990. word-wrap:break-word;
  10991. text-transform:none;
  10992. visibility:hidden;
  10993. }
  10994. #u10045_img {
  10995. border-width:0px;
  10996. position:absolute;
  10997. left:0px;
  10998. top:0px;
  10999. width:80px;
  11000. height:35px;
  11001. }
  11002. #u10045 {
  11003. border-width:0px;
  11004. position:absolute;
  11005. left:160px;
  11006. top:261px;
  11007. width:80px;
  11008. height:35px;
  11009. display:flex;
  11010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11011. font-weight:400;
  11012. font-style:normal;
  11013. font-size:12px;
  11014. color:#606266;
  11015. }
  11016. #u10045 .text {
  11017. position:absolute;
  11018. align-self:center;
  11019. padding:2px 2px 2px 0px;
  11020. box-sizing:border-box;
  11021. width:100%;
  11022. }
  11023. #u10045_text {
  11024. border-width:0px;
  11025. word-wrap:break-word;
  11026. text-transform:none;
  11027. visibility:hidden;
  11028. }
  11029. #u10046_img {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:0px;
  11033. top:0px;
  11034. width:80px;
  11035. height:35px;
  11036. }
  11037. #u10046 {
  11038. border-width:0px;
  11039. position:absolute;
  11040. left:240px;
  11041. top:261px;
  11042. width:80px;
  11043. height:35px;
  11044. display:flex;
  11045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11046. font-weight:400;
  11047. font-style:normal;
  11048. font-size:12px;
  11049. color:#606266;
  11050. }
  11051. #u10046 .text {
  11052. position:absolute;
  11053. align-self:center;
  11054. padding:2px 2px 2px 0px;
  11055. box-sizing:border-box;
  11056. width:100%;
  11057. }
  11058. #u10046_text {
  11059. border-width:0px;
  11060. word-wrap:break-word;
  11061. text-transform:none;
  11062. visibility:hidden;
  11063. }
  11064. #u10047_img {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:0px;
  11068. top:0px;
  11069. width:80px;
  11070. height:35px;
  11071. }
  11072. #u10047 {
  11073. border-width:0px;
  11074. position:absolute;
  11075. left:320px;
  11076. top:261px;
  11077. width:80px;
  11078. height:35px;
  11079. display:flex;
  11080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11081. font-weight:400;
  11082. font-style:normal;
  11083. font-size:12px;
  11084. color:#606266;
  11085. }
  11086. #u10047 .text {
  11087. position:absolute;
  11088. align-self:center;
  11089. padding:2px 2px 2px 0px;
  11090. box-sizing:border-box;
  11091. width:100%;
  11092. }
  11093. #u10047_text {
  11094. border-width:0px;
  11095. word-wrap:break-word;
  11096. text-transform:none;
  11097. visibility:hidden;
  11098. }
  11099. #u10048_img {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:0px;
  11103. top:0px;
  11104. width:80px;
  11105. height:35px;
  11106. }
  11107. #u10048 {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:400px;
  11111. top:261px;
  11112. width:80px;
  11113. height:35px;
  11114. display:flex;
  11115. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11116. font-weight:400;
  11117. font-style:normal;
  11118. font-size:12px;
  11119. color:#606266;
  11120. }
  11121. #u10048 .text {
  11122. position:absolute;
  11123. align-self:center;
  11124. padding:2px 2px 2px 0px;
  11125. box-sizing:border-box;
  11126. width:100%;
  11127. }
  11128. #u10048_text {
  11129. border-width:0px;
  11130. word-wrap:break-word;
  11131. text-transform:none;
  11132. visibility:hidden;
  11133. }
  11134. #u10049_img {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:0px;
  11138. top:0px;
  11139. width:80px;
  11140. height:35px;
  11141. }
  11142. #u10049 {
  11143. border-width:0px;
  11144. position:absolute;
  11145. left:480px;
  11146. top:261px;
  11147. width:80px;
  11148. height:35px;
  11149. display:flex;
  11150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11151. font-weight:400;
  11152. font-style:normal;
  11153. font-size:12px;
  11154. color:#606266;
  11155. }
  11156. #u10049 .text {
  11157. position:absolute;
  11158. align-self:center;
  11159. padding:2px 2px 2px 0px;
  11160. box-sizing:border-box;
  11161. width:100%;
  11162. }
  11163. #u10049_text {
  11164. border-width:0px;
  11165. word-wrap:break-word;
  11166. text-transform:none;
  11167. visibility:hidden;
  11168. }
  11169. #u10050_img {
  11170. border-width:0px;
  11171. position:absolute;
  11172. left:0px;
  11173. top:0px;
  11174. width:102px;
  11175. height:35px;
  11176. }
  11177. #u10050 {
  11178. border-width:0px;
  11179. position:absolute;
  11180. left:560px;
  11181. top:261px;
  11182. width:102px;
  11183. height:35px;
  11184. display:flex;
  11185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11186. font-weight:400;
  11187. font-style:normal;
  11188. font-size:12px;
  11189. color:#606266;
  11190. }
  11191. #u10050 .text {
  11192. position:absolute;
  11193. align-self:center;
  11194. padding:2px 2px 2px 0px;
  11195. box-sizing:border-box;
  11196. width:100%;
  11197. }
  11198. #u10050_text {
  11199. border-width:0px;
  11200. word-wrap:break-word;
  11201. text-transform:none;
  11202. visibility:hidden;
  11203. }
  11204. #u10051_img {
  11205. border-width:0px;
  11206. position:absolute;
  11207. left:0px;
  11208. top:0px;
  11209. width:90px;
  11210. height:35px;
  11211. }
  11212. #u10051 {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:662px;
  11216. top:261px;
  11217. width:90px;
  11218. height:35px;
  11219. display:flex;
  11220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11221. font-weight:400;
  11222. font-style:normal;
  11223. font-size:12px;
  11224. color:#606266;
  11225. }
  11226. #u10051 .text {
  11227. position:absolute;
  11228. align-self:center;
  11229. padding:2px 2px 2px 0px;
  11230. box-sizing:border-box;
  11231. width:100%;
  11232. }
  11233. #u10051_text {
  11234. border-width:0px;
  11235. word-wrap:break-word;
  11236. text-transform:none;
  11237. visibility:hidden;
  11238. }
  11239. #u10052_img {
  11240. border-width:0px;
  11241. position:absolute;
  11242. left:0px;
  11243. top:0px;
  11244. width:80px;
  11245. height:35px;
  11246. }
  11247. #u10052 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:752px;
  11251. top:261px;
  11252. width:80px;
  11253. height:35px;
  11254. display:flex;
  11255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11256. font-weight:400;
  11257. font-style:normal;
  11258. font-size:12px;
  11259. color:#606266;
  11260. }
  11261. #u10052 .text {
  11262. position:absolute;
  11263. align-self:center;
  11264. padding:2px 2px 2px 0px;
  11265. box-sizing:border-box;
  11266. width:100%;
  11267. }
  11268. #u10052_text {
  11269. border-width:0px;
  11270. word-wrap:break-word;
  11271. text-transform:none;
  11272. visibility:hidden;
  11273. }
  11274. #u10053_img {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:0px;
  11278. top:0px;
  11279. width:80px;
  11280. height:35px;
  11281. }
  11282. #u10053 {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:832px;
  11286. top:261px;
  11287. width:80px;
  11288. height:35px;
  11289. display:flex;
  11290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11291. font-weight:400;
  11292. font-style:normal;
  11293. font-size:12px;
  11294. color:#606266;
  11295. }
  11296. #u10053 .text {
  11297. position:absolute;
  11298. align-self:center;
  11299. padding:2px 2px 2px 0px;
  11300. box-sizing:border-box;
  11301. width:100%;
  11302. }
  11303. #u10053_text {
  11304. border-width:0px;
  11305. word-wrap:break-word;
  11306. text-transform:none;
  11307. visibility:hidden;
  11308. }
  11309. #u10054_img {
  11310. border-width:0px;
  11311. position:absolute;
  11312. left:0px;
  11313. top:0px;
  11314. width:80px;
  11315. height:35px;
  11316. }
  11317. #u10054 {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:912px;
  11321. top:261px;
  11322. width:80px;
  11323. height:35px;
  11324. display:flex;
  11325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11326. font-weight:400;
  11327. font-style:normal;
  11328. font-size:12px;
  11329. color:#606266;
  11330. }
  11331. #u10054 .text {
  11332. position:absolute;
  11333. align-self:center;
  11334. padding:2px 2px 2px 0px;
  11335. box-sizing:border-box;
  11336. width:100%;
  11337. }
  11338. #u10054_text {
  11339. border-width:0px;
  11340. word-wrap:break-word;
  11341. text-transform:none;
  11342. visibility:hidden;
  11343. }
  11344. #u10055_img {
  11345. border-width:0px;
  11346. position:absolute;
  11347. left:0px;
  11348. top:0px;
  11349. width:80px;
  11350. height:35px;
  11351. }
  11352. #u10055 {
  11353. border-width:0px;
  11354. position:absolute;
  11355. left:992px;
  11356. top:261px;
  11357. width:80px;
  11358. height:35px;
  11359. display:flex;
  11360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11361. font-weight:400;
  11362. font-style:normal;
  11363. font-size:12px;
  11364. color:#606266;
  11365. }
  11366. #u10055 .text {
  11367. position:absolute;
  11368. align-self:center;
  11369. padding:2px 2px 2px 0px;
  11370. box-sizing:border-box;
  11371. width:100%;
  11372. }
  11373. #u10055_text {
  11374. border-width:0px;
  11375. word-wrap:break-word;
  11376. text-transform:none;
  11377. visibility:hidden;
  11378. }
  11379. #u10056_img {
  11380. border-width:0px;
  11381. position:absolute;
  11382. left:0px;
  11383. top:0px;
  11384. width:80px;
  11385. height:35px;
  11386. }
  11387. #u10056 {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:1072px;
  11391. top:261px;
  11392. width:80px;
  11393. height:35px;
  11394. display:flex;
  11395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11396. font-weight:400;
  11397. font-style:normal;
  11398. font-size:12px;
  11399. color:#606266;
  11400. }
  11401. #u10056 .text {
  11402. position:absolute;
  11403. align-self:center;
  11404. padding:2px 2px 2px 0px;
  11405. box-sizing:border-box;
  11406. width:100%;
  11407. }
  11408. #u10056_text {
  11409. border-width:0px;
  11410. word-wrap:break-word;
  11411. text-transform:none;
  11412. visibility:hidden;
  11413. }
  11414. #u10057_img {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:180px;
  11420. height:35px;
  11421. }
  11422. #u10057 {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:1152px;
  11426. top:261px;
  11427. width:180px;
  11428. height:35px;
  11429. display:flex;
  11430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11431. font-weight:400;
  11432. font-style:normal;
  11433. font-size:12px;
  11434. color:#02A7F0;
  11435. }
  11436. #u10057 .text {
  11437. position:absolute;
  11438. align-self:center;
  11439. padding:2px 2px 2px 0px;
  11440. box-sizing:border-box;
  11441. width:100%;
  11442. }
  11443. #u10057_text {
  11444. border-width:0px;
  11445. word-wrap:break-word;
  11446. text-transform:none;
  11447. visibility:hidden;
  11448. }
  11449. #u10058_img {
  11450. border-width:0px;
  11451. position:absolute;
  11452. left:0px;
  11453. top:0px;
  11454. width:80px;
  11455. height:35px;
  11456. }
  11457. #u10058 {
  11458. border-width:0px;
  11459. position:absolute;
  11460. left:0px;
  11461. top:296px;
  11462. width:80px;
  11463. height:35px;
  11464. display:flex;
  11465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11466. font-weight:400;
  11467. font-style:normal;
  11468. font-size:12px;
  11469. color:#606266;
  11470. }
  11471. #u10058 .text {
  11472. position:absolute;
  11473. align-self:center;
  11474. padding:2px 2px 2px 0px;
  11475. box-sizing:border-box;
  11476. width:100%;
  11477. }
  11478. #u10058_text {
  11479. border-width:0px;
  11480. word-wrap:break-word;
  11481. text-transform:none;
  11482. visibility:hidden;
  11483. }
  11484. #u10059_img {
  11485. border-width:0px;
  11486. position:absolute;
  11487. left:0px;
  11488. top:0px;
  11489. width:80px;
  11490. height:35px;
  11491. }
  11492. #u10059 {
  11493. border-width:0px;
  11494. position:absolute;
  11495. left:80px;
  11496. top:296px;
  11497. width:80px;
  11498. height:35px;
  11499. display:flex;
  11500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11501. font-weight:400;
  11502. font-style:normal;
  11503. font-size:12px;
  11504. color:#606266;
  11505. }
  11506. #u10059 .text {
  11507. position:absolute;
  11508. align-self:center;
  11509. padding:2px 2px 2px 0px;
  11510. box-sizing:border-box;
  11511. width:100%;
  11512. }
  11513. #u10059_text {
  11514. border-width:0px;
  11515. word-wrap:break-word;
  11516. text-transform:none;
  11517. visibility:hidden;
  11518. }
  11519. #u10060_img {
  11520. border-width:0px;
  11521. position:absolute;
  11522. left:0px;
  11523. top:0px;
  11524. width:80px;
  11525. height:35px;
  11526. }
  11527. #u10060 {
  11528. border-width:0px;
  11529. position:absolute;
  11530. left:160px;
  11531. top:296px;
  11532. width:80px;
  11533. height:35px;
  11534. display:flex;
  11535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11536. font-weight:400;
  11537. font-style:normal;
  11538. font-size:12px;
  11539. color:#606266;
  11540. }
  11541. #u10060 .text {
  11542. position:absolute;
  11543. align-self:center;
  11544. padding:2px 2px 2px 0px;
  11545. box-sizing:border-box;
  11546. width:100%;
  11547. }
  11548. #u10060_text {
  11549. border-width:0px;
  11550. word-wrap:break-word;
  11551. text-transform:none;
  11552. visibility:hidden;
  11553. }
  11554. #u10061_img {
  11555. border-width:0px;
  11556. position:absolute;
  11557. left:0px;
  11558. top:0px;
  11559. width:80px;
  11560. height:35px;
  11561. }
  11562. #u10061 {
  11563. border-width:0px;
  11564. position:absolute;
  11565. left:240px;
  11566. top:296px;
  11567. width:80px;
  11568. height:35px;
  11569. display:flex;
  11570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:12px;
  11574. color:#606266;
  11575. }
  11576. #u10061 .text {
  11577. position:absolute;
  11578. align-self:center;
  11579. padding:2px 2px 2px 0px;
  11580. box-sizing:border-box;
  11581. width:100%;
  11582. }
  11583. #u10061_text {
  11584. border-width:0px;
  11585. word-wrap:break-word;
  11586. text-transform:none;
  11587. visibility:hidden;
  11588. }
  11589. #u10062_img {
  11590. border-width:0px;
  11591. position:absolute;
  11592. left:0px;
  11593. top:0px;
  11594. width:80px;
  11595. height:35px;
  11596. }
  11597. #u10062 {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:320px;
  11601. top:296px;
  11602. width:80px;
  11603. height:35px;
  11604. display:flex;
  11605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11606. font-weight:400;
  11607. font-style:normal;
  11608. font-size:12px;
  11609. color:#606266;
  11610. }
  11611. #u10062 .text {
  11612. position:absolute;
  11613. align-self:center;
  11614. padding:2px 2px 2px 0px;
  11615. box-sizing:border-box;
  11616. width:100%;
  11617. }
  11618. #u10062_text {
  11619. border-width:0px;
  11620. word-wrap:break-word;
  11621. text-transform:none;
  11622. visibility:hidden;
  11623. }
  11624. #u10063_img {
  11625. border-width:0px;
  11626. position:absolute;
  11627. left:0px;
  11628. top:0px;
  11629. width:80px;
  11630. height:35px;
  11631. }
  11632. #u10063 {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:400px;
  11636. top:296px;
  11637. width:80px;
  11638. height:35px;
  11639. display:flex;
  11640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11641. font-weight:400;
  11642. font-style:normal;
  11643. font-size:12px;
  11644. color:#606266;
  11645. }
  11646. #u10063 .text {
  11647. position:absolute;
  11648. align-self:center;
  11649. padding:2px 2px 2px 0px;
  11650. box-sizing:border-box;
  11651. width:100%;
  11652. }
  11653. #u10063_text {
  11654. border-width:0px;
  11655. word-wrap:break-word;
  11656. text-transform:none;
  11657. visibility:hidden;
  11658. }
  11659. #u10064_img {
  11660. border-width:0px;
  11661. position:absolute;
  11662. left:0px;
  11663. top:0px;
  11664. width:80px;
  11665. height:35px;
  11666. }
  11667. #u10064 {
  11668. border-width:0px;
  11669. position:absolute;
  11670. left:480px;
  11671. top:296px;
  11672. width:80px;
  11673. height:35px;
  11674. display:flex;
  11675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11676. font-weight:400;
  11677. font-style:normal;
  11678. font-size:12px;
  11679. color:#606266;
  11680. }
  11681. #u10064 .text {
  11682. position:absolute;
  11683. align-self:center;
  11684. padding:2px 2px 2px 0px;
  11685. box-sizing:border-box;
  11686. width:100%;
  11687. }
  11688. #u10064_text {
  11689. border-width:0px;
  11690. word-wrap:break-word;
  11691. text-transform:none;
  11692. visibility:hidden;
  11693. }
  11694. #u10065_img {
  11695. border-width:0px;
  11696. position:absolute;
  11697. left:0px;
  11698. top:0px;
  11699. width:102px;
  11700. height:35px;
  11701. }
  11702. #u10065 {
  11703. border-width:0px;
  11704. position:absolute;
  11705. left:560px;
  11706. top:296px;
  11707. width:102px;
  11708. height:35px;
  11709. display:flex;
  11710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11711. font-weight:400;
  11712. font-style:normal;
  11713. font-size:12px;
  11714. color:#606266;
  11715. }
  11716. #u10065 .text {
  11717. position:absolute;
  11718. align-self:center;
  11719. padding:2px 2px 2px 0px;
  11720. box-sizing:border-box;
  11721. width:100%;
  11722. }
  11723. #u10065_text {
  11724. border-width:0px;
  11725. word-wrap:break-word;
  11726. text-transform:none;
  11727. visibility:hidden;
  11728. }
  11729. #u10066_img {
  11730. border-width:0px;
  11731. position:absolute;
  11732. left:0px;
  11733. top:0px;
  11734. width:90px;
  11735. height:35px;
  11736. }
  11737. #u10066 {
  11738. border-width:0px;
  11739. position:absolute;
  11740. left:662px;
  11741. top:296px;
  11742. width:90px;
  11743. height:35px;
  11744. display:flex;
  11745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11746. font-weight:400;
  11747. font-style:normal;
  11748. font-size:12px;
  11749. color:#606266;
  11750. }
  11751. #u10066 .text {
  11752. position:absolute;
  11753. align-self:center;
  11754. padding:2px 2px 2px 0px;
  11755. box-sizing:border-box;
  11756. width:100%;
  11757. }
  11758. #u10066_text {
  11759. border-width:0px;
  11760. word-wrap:break-word;
  11761. text-transform:none;
  11762. visibility:hidden;
  11763. }
  11764. #u10067_img {
  11765. border-width:0px;
  11766. position:absolute;
  11767. left:0px;
  11768. top:0px;
  11769. width:80px;
  11770. height:35px;
  11771. }
  11772. #u10067 {
  11773. border-width:0px;
  11774. position:absolute;
  11775. left:752px;
  11776. top:296px;
  11777. width:80px;
  11778. height:35px;
  11779. display:flex;
  11780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11781. font-weight:400;
  11782. font-style:normal;
  11783. font-size:12px;
  11784. color:#606266;
  11785. }
  11786. #u10067 .text {
  11787. position:absolute;
  11788. align-self:center;
  11789. padding:2px 2px 2px 0px;
  11790. box-sizing:border-box;
  11791. width:100%;
  11792. }
  11793. #u10067_text {
  11794. border-width:0px;
  11795. word-wrap:break-word;
  11796. text-transform:none;
  11797. visibility:hidden;
  11798. }
  11799. #u10068_img {
  11800. border-width:0px;
  11801. position:absolute;
  11802. left:0px;
  11803. top:0px;
  11804. width:80px;
  11805. height:35px;
  11806. }
  11807. #u10068 {
  11808. border-width:0px;
  11809. position:absolute;
  11810. left:832px;
  11811. top:296px;
  11812. width:80px;
  11813. height:35px;
  11814. display:flex;
  11815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11816. font-weight:400;
  11817. font-style:normal;
  11818. font-size:12px;
  11819. color:#606266;
  11820. }
  11821. #u10068 .text {
  11822. position:absolute;
  11823. align-self:center;
  11824. padding:2px 2px 2px 0px;
  11825. box-sizing:border-box;
  11826. width:100%;
  11827. }
  11828. #u10068_text {
  11829. border-width:0px;
  11830. word-wrap:break-word;
  11831. text-transform:none;
  11832. visibility:hidden;
  11833. }
  11834. #u10069_img {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:80px;
  11840. height:35px;
  11841. }
  11842. #u10069 {
  11843. border-width:0px;
  11844. position:absolute;
  11845. left:912px;
  11846. top:296px;
  11847. width:80px;
  11848. height:35px;
  11849. display:flex;
  11850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11851. font-weight:400;
  11852. font-style:normal;
  11853. font-size:12px;
  11854. color:#606266;
  11855. }
  11856. #u10069 .text {
  11857. position:absolute;
  11858. align-self:center;
  11859. padding:2px 2px 2px 0px;
  11860. box-sizing:border-box;
  11861. width:100%;
  11862. }
  11863. #u10069_text {
  11864. border-width:0px;
  11865. word-wrap:break-word;
  11866. text-transform:none;
  11867. visibility:hidden;
  11868. }
  11869. #u10070_img {
  11870. border-width:0px;
  11871. position:absolute;
  11872. left:0px;
  11873. top:0px;
  11874. width:80px;
  11875. height:35px;
  11876. }
  11877. #u10070 {
  11878. border-width:0px;
  11879. position:absolute;
  11880. left:992px;
  11881. top:296px;
  11882. width:80px;
  11883. height:35px;
  11884. display:flex;
  11885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11886. font-weight:400;
  11887. font-style:normal;
  11888. font-size:12px;
  11889. color:#606266;
  11890. }
  11891. #u10070 .text {
  11892. position:absolute;
  11893. align-self:center;
  11894. padding:2px 2px 2px 0px;
  11895. box-sizing:border-box;
  11896. width:100%;
  11897. }
  11898. #u10070_text {
  11899. border-width:0px;
  11900. word-wrap:break-word;
  11901. text-transform:none;
  11902. visibility:hidden;
  11903. }
  11904. #u10071_img {
  11905. border-width:0px;
  11906. position:absolute;
  11907. left:0px;
  11908. top:0px;
  11909. width:80px;
  11910. height:35px;
  11911. }
  11912. #u10071 {
  11913. border-width:0px;
  11914. position:absolute;
  11915. left:1072px;
  11916. top:296px;
  11917. width:80px;
  11918. height:35px;
  11919. display:flex;
  11920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11921. font-weight:400;
  11922. font-style:normal;
  11923. font-size:12px;
  11924. color:#606266;
  11925. }
  11926. #u10071 .text {
  11927. position:absolute;
  11928. align-self:center;
  11929. padding:2px 2px 2px 0px;
  11930. box-sizing:border-box;
  11931. width:100%;
  11932. }
  11933. #u10071_text {
  11934. border-width:0px;
  11935. word-wrap:break-word;
  11936. text-transform:none;
  11937. visibility:hidden;
  11938. }
  11939. #u10072_img {
  11940. border-width:0px;
  11941. position:absolute;
  11942. left:0px;
  11943. top:0px;
  11944. width:180px;
  11945. height:35px;
  11946. }
  11947. #u10072 {
  11948. border-width:0px;
  11949. position:absolute;
  11950. left:1152px;
  11951. top:296px;
  11952. width:180px;
  11953. height:35px;
  11954. display:flex;
  11955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11956. font-weight:400;
  11957. font-style:normal;
  11958. font-size:12px;
  11959. color:#02A7F0;
  11960. }
  11961. #u10072 .text {
  11962. position:absolute;
  11963. align-self:center;
  11964. padding:2px 2px 2px 0px;
  11965. box-sizing:border-box;
  11966. width:100%;
  11967. }
  11968. #u10072_text {
  11969. border-width:0px;
  11970. word-wrap:break-word;
  11971. text-transform:none;
  11972. visibility:hidden;
  11973. }
  11974. #u10073_img {
  11975. border-width:0px;
  11976. position:absolute;
  11977. left:0px;
  11978. top:0px;
  11979. width:80px;
  11980. height:33px;
  11981. }
  11982. #u10073 {
  11983. border-width:0px;
  11984. position:absolute;
  11985. left:0px;
  11986. top:331px;
  11987. width:80px;
  11988. height:33px;
  11989. display:flex;
  11990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11991. font-weight:400;
  11992. font-style:normal;
  11993. font-size:12px;
  11994. color:#606266;
  11995. }
  11996. #u10073 .text {
  11997. position:absolute;
  11998. align-self:center;
  11999. padding:2px 2px 2px 0px;
  12000. box-sizing:border-box;
  12001. width:100%;
  12002. }
  12003. #u10073_text {
  12004. border-width:0px;
  12005. word-wrap:break-word;
  12006. text-transform:none;
  12007. visibility:hidden;
  12008. }
  12009. #u10074_img {
  12010. border-width:0px;
  12011. position:absolute;
  12012. left:0px;
  12013. top:0px;
  12014. width:80px;
  12015. height:33px;
  12016. }
  12017. #u10074 {
  12018. border-width:0px;
  12019. position:absolute;
  12020. left:80px;
  12021. top:331px;
  12022. width:80px;
  12023. height:33px;
  12024. display:flex;
  12025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12026. font-weight:400;
  12027. font-style:normal;
  12028. font-size:12px;
  12029. color:#606266;
  12030. }
  12031. #u10074 .text {
  12032. position:absolute;
  12033. align-self:center;
  12034. padding:2px 2px 2px 0px;
  12035. box-sizing:border-box;
  12036. width:100%;
  12037. }
  12038. #u10074_text {
  12039. border-width:0px;
  12040. word-wrap:break-word;
  12041. text-transform:none;
  12042. visibility:hidden;
  12043. }
  12044. #u10075_img {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:0px;
  12048. top:0px;
  12049. width:80px;
  12050. height:33px;
  12051. }
  12052. #u10075 {
  12053. border-width:0px;
  12054. position:absolute;
  12055. left:160px;
  12056. top:331px;
  12057. width:80px;
  12058. height:33px;
  12059. display:flex;
  12060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12061. font-weight:400;
  12062. font-style:normal;
  12063. font-size:12px;
  12064. color:#606266;
  12065. }
  12066. #u10075 .text {
  12067. position:absolute;
  12068. align-self:center;
  12069. padding:2px 2px 2px 0px;
  12070. box-sizing:border-box;
  12071. width:100%;
  12072. }
  12073. #u10075_text {
  12074. border-width:0px;
  12075. word-wrap:break-word;
  12076. text-transform:none;
  12077. visibility:hidden;
  12078. }
  12079. #u10076_img {
  12080. border-width:0px;
  12081. position:absolute;
  12082. left:0px;
  12083. top:0px;
  12084. width:80px;
  12085. height:33px;
  12086. }
  12087. #u10076 {
  12088. border-width:0px;
  12089. position:absolute;
  12090. left:240px;
  12091. top:331px;
  12092. width:80px;
  12093. height:33px;
  12094. display:flex;
  12095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12096. font-weight:400;
  12097. font-style:normal;
  12098. font-size:12px;
  12099. color:#606266;
  12100. }
  12101. #u10076 .text {
  12102. position:absolute;
  12103. align-self:center;
  12104. padding:2px 2px 2px 0px;
  12105. box-sizing:border-box;
  12106. width:100%;
  12107. }
  12108. #u10076_text {
  12109. border-width:0px;
  12110. word-wrap:break-word;
  12111. text-transform:none;
  12112. visibility:hidden;
  12113. }
  12114. #u10077_img {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:80px;
  12120. height:33px;
  12121. }
  12122. #u10077 {
  12123. border-width:0px;
  12124. position:absolute;
  12125. left:320px;
  12126. top:331px;
  12127. width:80px;
  12128. height:33px;
  12129. display:flex;
  12130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12131. font-weight:400;
  12132. font-style:normal;
  12133. font-size:12px;
  12134. color:#606266;
  12135. }
  12136. #u10077 .text {
  12137. position:absolute;
  12138. align-self:center;
  12139. padding:2px 2px 2px 0px;
  12140. box-sizing:border-box;
  12141. width:100%;
  12142. }
  12143. #u10077_text {
  12144. border-width:0px;
  12145. word-wrap:break-word;
  12146. text-transform:none;
  12147. visibility:hidden;
  12148. }
  12149. #u10078_img {
  12150. border-width:0px;
  12151. position:absolute;
  12152. left:0px;
  12153. top:0px;
  12154. width:80px;
  12155. height:33px;
  12156. }
  12157. #u10078 {
  12158. border-width:0px;
  12159. position:absolute;
  12160. left:400px;
  12161. top:331px;
  12162. width:80px;
  12163. height:33px;
  12164. display:flex;
  12165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12166. font-weight:400;
  12167. font-style:normal;
  12168. font-size:12px;
  12169. color:#606266;
  12170. }
  12171. #u10078 .text {
  12172. position:absolute;
  12173. align-self:center;
  12174. padding:2px 2px 2px 0px;
  12175. box-sizing:border-box;
  12176. width:100%;
  12177. }
  12178. #u10078_text {
  12179. border-width:0px;
  12180. word-wrap:break-word;
  12181. text-transform:none;
  12182. visibility:hidden;
  12183. }
  12184. #u10079_img {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:0px;
  12188. top:0px;
  12189. width:80px;
  12190. height:33px;
  12191. }
  12192. #u10079 {
  12193. border-width:0px;
  12194. position:absolute;
  12195. left:480px;
  12196. top:331px;
  12197. width:80px;
  12198. height:33px;
  12199. display:flex;
  12200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12201. font-weight:400;
  12202. font-style:normal;
  12203. font-size:12px;
  12204. color:#606266;
  12205. }
  12206. #u10079 .text {
  12207. position:absolute;
  12208. align-self:center;
  12209. padding:2px 2px 2px 0px;
  12210. box-sizing:border-box;
  12211. width:100%;
  12212. }
  12213. #u10079_text {
  12214. border-width:0px;
  12215. word-wrap:break-word;
  12216. text-transform:none;
  12217. visibility:hidden;
  12218. }
  12219. #u10080_img {
  12220. border-width:0px;
  12221. position:absolute;
  12222. left:0px;
  12223. top:0px;
  12224. width:102px;
  12225. height:33px;
  12226. }
  12227. #u10080 {
  12228. border-width:0px;
  12229. position:absolute;
  12230. left:560px;
  12231. top:331px;
  12232. width:102px;
  12233. height:33px;
  12234. display:flex;
  12235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  12236. font-weight:400;
  12237. font-style:normal;
  12238. font-size:12px;
  12239. color:#606266;
  12240. }
  12241. #u10080 .text {
  12242. position:absolute;
  12243. align-self:center;
  12244. padding:2px 2px 2px 0px;
  12245. box-sizing:border-box;
  12246. width:100%;
  12247. }
  12248. #u10080_text {
  12249. border-width:0px;
  12250. word-wrap:break-word;
  12251. text-transform:none;
  12252. visibility:hidden;
  12253. }
  12254. #u10081_img {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:0px;
  12258. top:0px;
  12259. width:90px;
  12260. height:33px;
  12261. }
  12262. #u10081 {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:662px;
  12266. top:331px;
  12267. width:90px;
  12268. height:33px;
  12269. display:flex;
  12270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12271. font-weight:400;
  12272. font-style:normal;
  12273. font-size:12px;
  12274. color:#606266;
  12275. }
  12276. #u10081 .text {
  12277. position:absolute;
  12278. align-self:center;
  12279. padding:2px 2px 2px 0px;
  12280. box-sizing:border-box;
  12281. width:100%;
  12282. }
  12283. #u10081_text {
  12284. border-width:0px;
  12285. word-wrap:break-word;
  12286. text-transform:none;
  12287. visibility:hidden;
  12288. }
  12289. #u10082_img {
  12290. border-width:0px;
  12291. position:absolute;
  12292. left:0px;
  12293. top:0px;
  12294. width:80px;
  12295. height:33px;
  12296. }
  12297. #u10082 {
  12298. border-width:0px;
  12299. position:absolute;
  12300. left:752px;
  12301. top:331px;
  12302. width:80px;
  12303. height:33px;
  12304. display:flex;
  12305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12306. font-weight:400;
  12307. font-style:normal;
  12308. font-size:12px;
  12309. color:#606266;
  12310. }
  12311. #u10082 .text {
  12312. position:absolute;
  12313. align-self:center;
  12314. padding:2px 2px 2px 0px;
  12315. box-sizing:border-box;
  12316. width:100%;
  12317. }
  12318. #u10082_text {
  12319. border-width:0px;
  12320. word-wrap:break-word;
  12321. text-transform:none;
  12322. visibility:hidden;
  12323. }
  12324. #u10083_img {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:80px;
  12330. height:33px;
  12331. }
  12332. #u10083 {
  12333. border-width:0px;
  12334. position:absolute;
  12335. left:832px;
  12336. top:331px;
  12337. width:80px;
  12338. height:33px;
  12339. display:flex;
  12340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12341. font-weight:400;
  12342. font-style:normal;
  12343. font-size:12px;
  12344. color:#606266;
  12345. }
  12346. #u10083 .text {
  12347. position:absolute;
  12348. align-self:center;
  12349. padding:2px 2px 2px 0px;
  12350. box-sizing:border-box;
  12351. width:100%;
  12352. }
  12353. #u10083_text {
  12354. border-width:0px;
  12355. word-wrap:break-word;
  12356. text-transform:none;
  12357. visibility:hidden;
  12358. }
  12359. #u10084_img {
  12360. border-width:0px;
  12361. position:absolute;
  12362. left:0px;
  12363. top:0px;
  12364. width:80px;
  12365. height:33px;
  12366. }
  12367. #u10084 {
  12368. border-width:0px;
  12369. position:absolute;
  12370. left:912px;
  12371. top:331px;
  12372. width:80px;
  12373. height:33px;
  12374. display:flex;
  12375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12376. font-weight:400;
  12377. font-style:normal;
  12378. font-size:12px;
  12379. color:#606266;
  12380. }
  12381. #u10084 .text {
  12382. position:absolute;
  12383. align-self:center;
  12384. padding:2px 2px 2px 0px;
  12385. box-sizing:border-box;
  12386. width:100%;
  12387. }
  12388. #u10084_text {
  12389. border-width:0px;
  12390. word-wrap:break-word;
  12391. text-transform:none;
  12392. visibility:hidden;
  12393. }
  12394. #u10085_img {
  12395. border-width:0px;
  12396. position:absolute;
  12397. left:0px;
  12398. top:0px;
  12399. width:80px;
  12400. height:33px;
  12401. }
  12402. #u10085 {
  12403. border-width:0px;
  12404. position:absolute;
  12405. left:992px;
  12406. top:331px;
  12407. width:80px;
  12408. height:33px;
  12409. display:flex;
  12410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12411. font-weight:400;
  12412. font-style:normal;
  12413. font-size:12px;
  12414. color:#606266;
  12415. }
  12416. #u10085 .text {
  12417. position:absolute;
  12418. align-self:center;
  12419. padding:2px 2px 2px 0px;
  12420. box-sizing:border-box;
  12421. width:100%;
  12422. }
  12423. #u10085_text {
  12424. border-width:0px;
  12425. word-wrap:break-word;
  12426. text-transform:none;
  12427. visibility:hidden;
  12428. }
  12429. #u10086_img {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:80px;
  12435. height:33px;
  12436. }
  12437. #u10086 {
  12438. border-width:0px;
  12439. position:absolute;
  12440. left:1072px;
  12441. top:331px;
  12442. width:80px;
  12443. height:33px;
  12444. display:flex;
  12445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12446. font-weight:400;
  12447. font-style:normal;
  12448. font-size:12px;
  12449. color:#606266;
  12450. }
  12451. #u10086 .text {
  12452. position:absolute;
  12453. align-self:center;
  12454. padding:2px 2px 2px 0px;
  12455. box-sizing:border-box;
  12456. width:100%;
  12457. }
  12458. #u10086_text {
  12459. border-width:0px;
  12460. word-wrap:break-word;
  12461. text-transform:none;
  12462. visibility:hidden;
  12463. }
  12464. #u10087_img {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:180px;
  12470. height:33px;
  12471. }
  12472. #u10087 {
  12473. border-width:0px;
  12474. position:absolute;
  12475. left:1152px;
  12476. top:331px;
  12477. width:180px;
  12478. height:33px;
  12479. display:flex;
  12480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12481. font-weight:400;
  12482. font-style:normal;
  12483. font-size:12px;
  12484. color:#02A7F0;
  12485. }
  12486. #u10087 .text {
  12487. position:absolute;
  12488. align-self:center;
  12489. padding:2px 2px 2px 0px;
  12490. box-sizing:border-box;
  12491. width:100%;
  12492. }
  12493. #u10087_text {
  12494. border-width:0px;
  12495. word-wrap:break-word;
  12496. text-transform:none;
  12497. visibility:hidden;
  12498. }
  12499. #u10088 {
  12500. border-width:0px;
  12501. position:absolute;
  12502. left:0px;
  12503. top:0px;
  12504. width:0px;
  12505. height:0px;
  12506. }
  12507. #u10089_div {
  12508. border-width:0px;
  12509. position:absolute;
  12510. left:0px;
  12511. top:0px;
  12512. width:120px;
  12513. height:140px;
  12514. background:inherit;
  12515. background-color:rgba(255, 255, 255, 1);
  12516. box-sizing:border-box;
  12517. border-width:1px;
  12518. border-style:solid;
  12519. border-color:rgba(242, 242, 242, 1);
  12520. border-radius:4px;
  12521. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12522. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12523. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12525. font-weight:400;
  12526. font-style:normal;
  12527. font-size:14px;
  12528. text-align:left;
  12529. }
  12530. #u10089 {
  12531. border-width:0px;
  12532. position:absolute;
  12533. left:2957px;
  12534. top:378px;
  12535. width:120px;
  12536. height:140px;
  12537. display:flex;
  12538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12539. font-weight:400;
  12540. font-style:normal;
  12541. font-size:14px;
  12542. text-align:left;
  12543. }
  12544. #u10089 .text {
  12545. position:absolute;
  12546. align-self:center;
  12547. padding:2px 2px 2px 2px;
  12548. box-sizing:border-box;
  12549. width:100%;
  12550. }
  12551. #u10089_text {
  12552. border-width:0px;
  12553. word-wrap:break-word;
  12554. text-transform:none;
  12555. visibility:hidden;
  12556. }
  12557. #u10090_div {
  12558. border-width:0px;
  12559. position:absolute;
  12560. left:0px;
  12561. top:0px;
  12562. width:100px;
  12563. height:40px;
  12564. background:inherit;
  12565. background-color:rgba(255, 255, 255, 1);
  12566. box-sizing:border-box;
  12567. border-width:1px;
  12568. border-style:solid;
  12569. border-color:rgba(215, 215, 215, 1);
  12570. border-left:0px;
  12571. border-top:0px;
  12572. border-right:0px;
  12573. border-radius:0px;
  12574. border-bottom-right-radius:0px;
  12575. border-bottom-left-radius:0px;
  12576. -moz-box-shadow:none;
  12577. -webkit-box-shadow:none;
  12578. box-shadow:none;
  12579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12580. font-weight:400;
  12581. font-style:normal;
  12582. font-size:14px;
  12583. }
  12584. #u10090 {
  12585. border-width:0px;
  12586. position:absolute;
  12587. left:2967px;
  12588. top:388px;
  12589. width:100px;
  12590. height:40px;
  12591. display:flex;
  12592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12593. font-weight:400;
  12594. font-style:normal;
  12595. font-size:14px;
  12596. }
  12597. #u10090 .text {
  12598. position:absolute;
  12599. align-self:center;
  12600. padding:2px 2px 2px 2px;
  12601. box-sizing:border-box;
  12602. width:100%;
  12603. }
  12604. #u10090_text {
  12605. border-width:0px;
  12606. word-wrap:break-word;
  12607. text-transform:none;
  12608. }
  12609. #u10091_div {
  12610. border-width:0px;
  12611. position:absolute;
  12612. left:0px;
  12613. top:0px;
  12614. width:100px;
  12615. height:40px;
  12616. background:inherit;
  12617. background-color:rgba(255, 255, 255, 1);
  12618. border:none;
  12619. border-left:0px;
  12620. border-top:0px;
  12621. border-right:0px;
  12622. border-radius:0px;
  12623. border-bottom-right-radius:0px;
  12624. border-bottom-left-radius:0px;
  12625. -moz-box-shadow:none;
  12626. -webkit-box-shadow:none;
  12627. box-shadow:none;
  12628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12629. font-weight:400;
  12630. font-style:normal;
  12631. font-size:14px;
  12632. }
  12633. #u10091 {
  12634. border-width:0px;
  12635. position:absolute;
  12636. left:2967px;
  12637. top:468px;
  12638. width:100px;
  12639. height:40px;
  12640. display:flex;
  12641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12642. font-weight:400;
  12643. font-style:normal;
  12644. font-size:14px;
  12645. }
  12646. #u10091 .text {
  12647. position:absolute;
  12648. align-self:center;
  12649. padding:2px 2px 2px 2px;
  12650. box-sizing:border-box;
  12651. width:100%;
  12652. }
  12653. #u10091_text {
  12654. border-width:0px;
  12655. word-wrap:break-word;
  12656. text-transform:none;
  12657. }
  12658. #u10092_div {
  12659. border-width:0px;
  12660. position:absolute;
  12661. left:0px;
  12662. top:0px;
  12663. width:100px;
  12664. height:40px;
  12665. background:inherit;
  12666. background-color:rgba(255, 255, 255, 1);
  12667. box-sizing:border-box;
  12668. border-width:1px;
  12669. border-style:solid;
  12670. border-color:rgba(215, 215, 215, 1);
  12671. border-left:0px;
  12672. border-top:0px;
  12673. border-right:0px;
  12674. border-radius:0px;
  12675. border-bottom-right-radius:0px;
  12676. border-bottom-left-radius:0px;
  12677. -moz-box-shadow:none;
  12678. -webkit-box-shadow:none;
  12679. box-shadow:none;
  12680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12681. font-weight:400;
  12682. font-style:normal;
  12683. font-size:14px;
  12684. }
  12685. #u10092 {
  12686. border-width:0px;
  12687. position:absolute;
  12688. left:2967px;
  12689. top:428px;
  12690. width:100px;
  12691. height:40px;
  12692. display:flex;
  12693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12694. font-weight:400;
  12695. font-style:normal;
  12696. font-size:14px;
  12697. }
  12698. #u10092 .text {
  12699. position:absolute;
  12700. align-self:center;
  12701. padding:2px 2px 2px 2px;
  12702. box-sizing:border-box;
  12703. width:100%;
  12704. }
  12705. #u10092_text {
  12706. border-width:0px;
  12707. word-wrap:break-word;
  12708. text-transform:none;
  12709. }
  12710. #u10093_div {
  12711. border-width:0px;
  12712. position:absolute;
  12713. left:0px;
  12714. top:0px;
  12715. width:505px;
  12716. height:120px;
  12717. background:inherit;
  12718. background-color:rgba(255, 255, 255, 0);
  12719. border:none;
  12720. border-radius:0px;
  12721. -moz-box-shadow:none;
  12722. -webkit-box-shadow:none;
  12723. box-shadow:none;
  12724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12725. font-weight:400;
  12726. font-style:normal;
  12727. font-size:12px;
  12728. color:#D9001B;
  12729. line-height:30px;
  12730. }
  12731. #u10093 {
  12732. border-width:0px;
  12733. position:absolute;
  12734. left:3127px;
  12735. top:328px;
  12736. width:505px;
  12737. height:120px;
  12738. display:flex;
  12739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12740. font-weight:400;
  12741. font-style:normal;
  12742. font-size:12px;
  12743. color:#D9001B;
  12744. line-height:30px;
  12745. }
  12746. #u10093 .text {
  12747. position:absolute;
  12748. align-self:flex-start;
  12749. padding:0px 0px 0px 0px;
  12750. box-sizing:border-box;
  12751. width:100%;
  12752. }
  12753. #u10093_text {
  12754. border-width:0px;
  12755. word-wrap:break-word;
  12756. text-transform:none;
  12757. }
  12758. #u10094 {
  12759. border-width:0px;
  12760. position:absolute;
  12761. left:0px;
  12762. top:0px;
  12763. width:0px;
  12764. height:0px;
  12765. }
  12766. #u10095_div {
  12767. border-width:0px;
  12768. position:absolute;
  12769. left:0px;
  12770. top:0px;
  12771. width:120px;
  12772. height:140px;
  12773. background:inherit;
  12774. background-color:rgba(255, 255, 255, 1);
  12775. box-sizing:border-box;
  12776. border-width:1px;
  12777. border-style:solid;
  12778. border-color:rgba(242, 242, 242, 1);
  12779. border-radius:4px;
  12780. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12781. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12782. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12784. font-weight:400;
  12785. font-style:normal;
  12786. font-size:14px;
  12787. text-align:left;
  12788. }
  12789. #u10095 {
  12790. border-width:0px;
  12791. position:absolute;
  12792. left:2808px;
  12793. top:378px;
  12794. width:120px;
  12795. height:140px;
  12796. display:flex;
  12797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12798. font-weight:400;
  12799. font-style:normal;
  12800. font-size:14px;
  12801. text-align:left;
  12802. }
  12803. #u10095 .text {
  12804. position:absolute;
  12805. align-self:center;
  12806. padding:2px 2px 2px 2px;
  12807. box-sizing:border-box;
  12808. width:100%;
  12809. }
  12810. #u10095_text {
  12811. border-width:0px;
  12812. word-wrap:break-word;
  12813. text-transform:none;
  12814. visibility:hidden;
  12815. }
  12816. #u10096_div {
  12817. border-width:0px;
  12818. position:absolute;
  12819. left:0px;
  12820. top:0px;
  12821. width:100px;
  12822. height:40px;
  12823. background:inherit;
  12824. background-color:rgba(255, 255, 255, 1);
  12825. box-sizing:border-box;
  12826. border-width:1px;
  12827. border-style:solid;
  12828. border-color:rgba(215, 215, 215, 1);
  12829. border-left:0px;
  12830. border-top:0px;
  12831. border-right:0px;
  12832. border-radius:0px;
  12833. border-bottom-right-radius:0px;
  12834. border-bottom-left-radius:0px;
  12835. -moz-box-shadow:none;
  12836. -webkit-box-shadow:none;
  12837. box-shadow:none;
  12838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12839. font-weight:400;
  12840. font-style:normal;
  12841. font-size:14px;
  12842. }
  12843. #u10096 {
  12844. border-width:0px;
  12845. position:absolute;
  12846. left:2818px;
  12847. top:388px;
  12848. width:100px;
  12849. height:40px;
  12850. display:flex;
  12851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12852. font-weight:400;
  12853. font-style:normal;
  12854. font-size:14px;
  12855. }
  12856. #u10096 .text {
  12857. position:absolute;
  12858. align-self:center;
  12859. padding:2px 2px 2px 2px;
  12860. box-sizing:border-box;
  12861. width:100%;
  12862. }
  12863. #u10096_text {
  12864. border-width:0px;
  12865. word-wrap:break-word;
  12866. text-transform:none;
  12867. }
  12868. #u10097_div {
  12869. border-width:0px;
  12870. position:absolute;
  12871. left:0px;
  12872. top:0px;
  12873. width:100px;
  12874. height:40px;
  12875. background:inherit;
  12876. background-color:rgba(255, 255, 255, 1);
  12877. border:none;
  12878. border-left:0px;
  12879. border-top:0px;
  12880. border-right:0px;
  12881. border-radius:0px;
  12882. border-bottom-right-radius:0px;
  12883. border-bottom-left-radius:0px;
  12884. -moz-box-shadow:none;
  12885. -webkit-box-shadow:none;
  12886. box-shadow:none;
  12887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12888. font-weight:400;
  12889. font-style:normal;
  12890. font-size:14px;
  12891. }
  12892. #u10097 {
  12893. border-width:0px;
  12894. position:absolute;
  12895. left:2818px;
  12896. top:468px;
  12897. width:100px;
  12898. height:40px;
  12899. display:flex;
  12900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12901. font-weight:400;
  12902. font-style:normal;
  12903. font-size:14px;
  12904. }
  12905. #u10097 .text {
  12906. position:absolute;
  12907. align-self:center;
  12908. padding:2px 2px 2px 2px;
  12909. box-sizing:border-box;
  12910. width:100%;
  12911. }
  12912. #u10097_text {
  12913. border-width:0px;
  12914. word-wrap:break-word;
  12915. text-transform:none;
  12916. }
  12917. #u10098_div {
  12918. border-width:0px;
  12919. position:absolute;
  12920. left:0px;
  12921. top:0px;
  12922. width:100px;
  12923. height:40px;
  12924. background:inherit;
  12925. background-color:rgba(255, 255, 255, 1);
  12926. box-sizing:border-box;
  12927. border-width:1px;
  12928. border-style:solid;
  12929. border-color:rgba(215, 215, 215, 1);
  12930. border-left:0px;
  12931. border-top:0px;
  12932. border-right:0px;
  12933. border-radius:0px;
  12934. border-bottom-right-radius:0px;
  12935. border-bottom-left-radius:0px;
  12936. -moz-box-shadow:none;
  12937. -webkit-box-shadow:none;
  12938. box-shadow:none;
  12939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12940. font-weight:400;
  12941. font-style:normal;
  12942. font-size:14px;
  12943. }
  12944. #u10098 {
  12945. border-width:0px;
  12946. position:absolute;
  12947. left:2818px;
  12948. top:428px;
  12949. width:100px;
  12950. height:40px;
  12951. display:flex;
  12952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12953. font-weight:400;
  12954. font-style:normal;
  12955. font-size:14px;
  12956. }
  12957. #u10098 .text {
  12958. position:absolute;
  12959. align-self:center;
  12960. padding:2px 2px 2px 2px;
  12961. box-sizing:border-box;
  12962. width:100%;
  12963. }
  12964. #u10098_text {
  12965. border-width:0px;
  12966. word-wrap:break-word;
  12967. text-transform:none;
  12968. }
  12969. #u10099 {
  12970. border-width:0px;
  12971. position:absolute;
  12972. left:0px;
  12973. top:0px;
  12974. width:0px;
  12975. height:0px;
  12976. }
  12977. #u10100 {
  12978. border-width:0px;
  12979. position:absolute;
  12980. left:0px;
  12981. top:0px;
  12982. width:0px;
  12983. height:0px;
  12984. }
  12985. #u10101_div {
  12986. border-width:0px;
  12987. position:absolute;
  12988. left:0px;
  12989. top:0px;
  12990. width:380px;
  12991. height:180px;
  12992. background:inherit;
  12993. background-color:rgba(255, 255, 255, 1);
  12994. border:none;
  12995. border-radius:4px;
  12996. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12997. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12998. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12999. font-family:'Microsoft YaHei', sans-serif;
  13000. font-weight:400;
  13001. font-style:normal;
  13002. }
  13003. #u10101 {
  13004. border-width:0px;
  13005. position:absolute;
  13006. left:2620px;
  13007. top:662px;
  13008. width:380px;
  13009. height:180px;
  13010. display:flex;
  13011. font-family:'Microsoft YaHei', sans-serif;
  13012. font-weight:400;
  13013. font-style:normal;
  13014. }
  13015. #u10101 .text {
  13016. position:absolute;
  13017. align-self:center;
  13018. padding:2px 2px 2px 2px;
  13019. box-sizing:border-box;
  13020. width:100%;
  13021. }
  13022. #u10101_text {
  13023. border-width:0px;
  13024. word-wrap:break-word;
  13025. text-transform:none;
  13026. visibility:hidden;
  13027. }
  13028. #u10102_div {
  13029. border-width:0px;
  13030. position:absolute;
  13031. left:0px;
  13032. top:0px;
  13033. width:302px;
  13034. height:66px;
  13035. background:inherit;
  13036. background-color:rgba(255, 255, 255, 0);
  13037. border:none;
  13038. border-radius:0px;
  13039. -moz-box-shadow:none;
  13040. -webkit-box-shadow:none;
  13041. box-shadow:none;
  13042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13043. font-weight:400;
  13044. font-style:normal;
  13045. font-size:14px;
  13046. color:#666666;
  13047. line-height:22px;
  13048. }
  13049. #u10102 {
  13050. border-width:0px;
  13051. position:absolute;
  13052. left:2670px;
  13053. top:717px;
  13054. width:302px;
  13055. height:66px;
  13056. display:flex;
  13057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13058. font-weight:400;
  13059. font-style:normal;
  13060. font-size:14px;
  13061. color:#666666;
  13062. line-height:22px;
  13063. }
  13064. #u10102 .text {
  13065. position:absolute;
  13066. align-self:flex-start;
  13067. padding:0px 0px 0px 0px;
  13068. box-sizing:border-box;
  13069. width:100%;
  13070. }
  13071. #u10102_text {
  13072. border-width:0px;
  13073. word-wrap:break-word;
  13074. text-transform:none;
  13075. }
  13076. #u10103_div {
  13077. border-width:0px;
  13078. position:absolute;
  13079. left:0px;
  13080. top:0px;
  13081. width:73px;
  13082. height:21px;
  13083. background:inherit;
  13084. background-color:rgba(255, 255, 255, 0);
  13085. border:none;
  13086. border-radius:0px;
  13087. -moz-box-shadow:none;
  13088. -webkit-box-shadow:none;
  13089. box-shadow:none;
  13090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13091. font-weight:500;
  13092. font-style:normal;
  13093. font-size:18px;
  13094. color:#000000;
  13095. line-height:22px;
  13096. }
  13097. #u10103 {
  13098. border-width:0px;
  13099. position:absolute;
  13100. left:2670px;
  13101. top:687px;
  13102. width:73px;
  13103. height:21px;
  13104. display:flex;
  13105. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13106. font-weight:500;
  13107. font-style:normal;
  13108. font-size:18px;
  13109. color:#000000;
  13110. line-height:22px;
  13111. }
  13112. #u10103 .text {
  13113. position:absolute;
  13114. align-self:flex-start;
  13115. padding:0px 0px 0px 0px;
  13116. box-sizing:border-box;
  13117. width:100%;
  13118. }
  13119. #u10103_text {
  13120. border-width:0px;
  13121. white-space:nowrap;
  13122. text-transform:none;
  13123. }
  13124. #u10104_div {
  13125. border-width:0px;
  13126. position:absolute;
  13127. left:0px;
  13128. top:0px;
  13129. width:61px;
  13130. height:32px;
  13131. background:inherit;
  13132. background-color:rgba(24, 144, 255, 1);
  13133. border:none;
  13134. border-radius:4px;
  13135. -moz-box-shadow:none;
  13136. -webkit-box-shadow:none;
  13137. box-shadow:none;
  13138. font-family:'Microsoft YaHei', sans-serif;
  13139. font-weight:400;
  13140. font-style:normal;
  13141. font-size:14px;
  13142. color:#FFFFFF;
  13143. }
  13144. #u10104 {
  13145. border-width:0px;
  13146. position:absolute;
  13147. left:2922px;
  13148. top:797px;
  13149. width:61px;
  13150. height:32px;
  13151. display:flex;
  13152. font-family:'Microsoft YaHei', sans-serif;
  13153. font-weight:400;
  13154. font-style:normal;
  13155. font-size:14px;
  13156. color:#FFFFFF;
  13157. }
  13158. #u10104 .text {
  13159. position:absolute;
  13160. align-self:center;
  13161. padding:2px 16px 2px 16px;
  13162. box-sizing:border-box;
  13163. width:100%;
  13164. }
  13165. #u10104_text {
  13166. border-width:0px;
  13167. white-space:nowrap;
  13168. text-transform:none;
  13169. }
  13170. #u10105_img {
  13171. border-width:0px;
  13172. position:absolute;
  13173. left:0px;
  13174. top:0px;
  13175. width:20px;
  13176. height:20px;
  13177. }
  13178. #u10105 {
  13179. border-width:0px;
  13180. position:absolute;
  13181. left:2639px;
  13182. top:687px;
  13183. width:20px;
  13184. height:20px;
  13185. display:flex;
  13186. }
  13187. #u10105 .text {
  13188. position:absolute;
  13189. align-self:center;
  13190. padding:2px 2px 2px 2px;
  13191. box-sizing:border-box;
  13192. width:100%;
  13193. }
  13194. #u10105_text {
  13195. border-width:0px;
  13196. word-wrap:break-word;
  13197. text-transform:none;
  13198. visibility:hidden;
  13199. }