styles.css 229 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247
  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. #u10077_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. #u10077 {
  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. #u10077 .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. #u10077_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u10078_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. #u10078 {
  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. #u10078 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u10078_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u10079 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u10080_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u10080 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u10080 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u10080_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u10081_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. #u10081 {
  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. #u10081 .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. #u10081_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u10082_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. #u10082 {
  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. #u10082 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u10082_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u10083_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. #u10083 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u10083 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u10083_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u10084 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u10085_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. #u10085 {
  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. #u10085 .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. #u10085_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u10086_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u10086 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u10086 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u10086_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u10087 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u10088_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. #u10088 {
  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. #u10088 .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. #u10088_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u10089_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u10089 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u10089 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u10089_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u10090 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u10091_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. #u10091 {
  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. #u10091 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u10091_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u10092_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u10092 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u10092 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u10092_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u10093 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u10094_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. #u10094 {
  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. #u10094 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u10094_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u10095_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u10095 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u10095 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u10095_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u10096 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u10097_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. #u10097 {
  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. #u10097 .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. #u10097_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u10098_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u10098 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u10098 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u10098_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u10099 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u10100_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. #u10100 {
  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. #u10100 .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. #u10100_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u10101_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u10101 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u10101 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u10101_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u10102 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u10103_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. #u10103 {
  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. #u10103 .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. #u10103_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u10104_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u10104 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u10104 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u10104_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u10105 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u10106_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. #u10106 {
  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. #u10106 .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. #u10106_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u10107_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u10107 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u10107 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u10107_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u10108 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u10109_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. #u10109 {
  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. #u10109 .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. #u10109_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u10110_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u10110 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u10110 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u10110_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u10111_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. #u10111_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. #u10111_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. #u10111 {
  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. #u10111 .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. #u10111_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. #u10111.disabled {
  1100. }
  1101. .u10111_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u10112_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u10112 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u10112 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u10112_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u10113_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. #u10113 {
  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. #u10113 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u10113_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u10114_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u10114 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u10114 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u10114_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u10115 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u10116_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. #u10116 {
  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. #u10116 .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. #u10116_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u10117_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u10117 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u10117 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u10117_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u10118 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u10119_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. #u10119 {
  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. #u10119 .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. #u10119_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u10120_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u10120 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u10120 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u10120_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u10121 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u10122_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. #u10122 {
  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. #u10122 .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. #u10122_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u10123_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u10123 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u10123 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u10123_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u10124 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u10125_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. #u10125 {
  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. #u10125 .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. #u10125_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u10126_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u10126 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u10126 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u10126_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u10127 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u10128_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. #u10128 {
  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. #u10128 .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. #u10128_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u10129_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u10129 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u10129 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u10129_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u10130_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. #u10130 {
  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. #u10130 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u10130_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. visibility:hidden;
  1668. }
  1669. #u10131_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. #u10131 {
  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. #u10131 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u10131_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u10132_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. #u10132 {
  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. #u10132 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:0px 0px 0px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u10132_text {
  1753. border-width:0px;
  1754. white-space:nowrap;
  1755. text-transform:none;
  1756. }
  1757. #u10133 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:351px;
  1761. top:230px;
  1762. width:1222px;
  1763. height:363px;
  1764. }
  1765. #u10134_img {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:112px;
  1771. height:38px;
  1772. }
  1773. #u10134 {
  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. #u10134 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u10134_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u10135_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:100px;
  1805. height:38px;
  1806. }
  1807. #u10135 {
  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. #u10135 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:2px 2px 2px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u10135_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. }
  1833. #u10136_img {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:100px;
  1839. height:38px;
  1840. }
  1841. #u10136 {
  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. #u10136 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 2px 2px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u10136_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u10137_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:114px;
  1873. height:38px;
  1874. }
  1875. #u10137 {
  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. #u10137 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u10137_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u10138_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:100px;
  1907. height:38px;
  1908. }
  1909. #u10138 {
  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. #u10138 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u10138_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u10139_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:112px;
  1941. height:38px;
  1942. }
  1943. #u10139 {
  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. #u10139 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u10139_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u10140_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:114px;
  1975. height:38px;
  1976. }
  1977. #u10140 {
  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. #u10140 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u10140_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u10141_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:112px;
  2009. height:38px;
  2010. }
  2011. #u10141 {
  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. #u10141 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u10141_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u10142_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:114px;
  2043. height:38px;
  2044. }
  2045. #u10142 {
  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. #u10142 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u10142_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u10143_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:114px;
  2077. height:38px;
  2078. }
  2079. #u10143 {
  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. #u10143 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u10143_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u10144_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:130px;
  2111. height:38px;
  2112. }
  2113. #u10144 {
  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. #u10144 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u10144_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u10145_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:112px;
  2145. height:38px;
  2146. }
  2147. #u10145 {
  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. #u10145 .text {
  2161. position:absolute;
  2162. align-self:center;
  2163. padding:2px 2px 2px 0px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u10145_text {
  2168. border-width:0px;
  2169. word-wrap:break-word;
  2170. text-transform:none;
  2171. visibility:hidden;
  2172. }
  2173. #u10146_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:100px;
  2179. height:38px;
  2180. }
  2181. #u10146 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:112px;
  2185. top:38px;
  2186. width:100px;
  2187. height:38px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. }
  2194. #u10146 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 2px 2px 0px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u10146_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u10147_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:100px;
  2213. height:38px;
  2214. }
  2215. #u10147 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:212px;
  2219. top:38px;
  2220. width:100px;
  2221. height:38px;
  2222. display:flex;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:12px;
  2227. }
  2228. #u10147 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 0px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u10147_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u10148_img {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:114px;
  2247. height:38px;
  2248. }
  2249. #u10148 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:312px;
  2253. top:38px;
  2254. width:114px;
  2255. height:38px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:12px;
  2261. }
  2262. #u10148 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 0px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u10148_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. visibility:hidden;
  2274. }
  2275. #u10149_img {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:100px;
  2281. height:38px;
  2282. }
  2283. #u10149 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:426px;
  2287. top:38px;
  2288. width:100px;
  2289. height:38px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:12px;
  2295. }
  2296. #u10149 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:2px 2px 2px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u10149_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. visibility:hidden;
  2308. }
  2309. #u10150_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:112px;
  2315. height:38px;
  2316. }
  2317. #u10150 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:526px;
  2321. top:38px;
  2322. width:112px;
  2323. height:38px;
  2324. display:flex;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:12px;
  2329. }
  2330. #u10150 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:2px 2px 2px 0px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u10150_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. visibility:hidden;
  2342. }
  2343. #u10151_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:114px;
  2349. height:38px;
  2350. }
  2351. #u10151 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:638px;
  2355. top:38px;
  2356. width:114px;
  2357. height:38px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. }
  2364. #u10151 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u10151_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. }
  2376. #u10152_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:112px;
  2382. height:38px;
  2383. }
  2384. #u10152 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:752px;
  2388. top:38px;
  2389. width:112px;
  2390. height:38px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. }
  2397. #u10152 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u10152_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. }
  2409. #u10153_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:114px;
  2415. height:38px;
  2416. }
  2417. #u10153 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:864px;
  2421. top:38px;
  2422. width:114px;
  2423. height:38px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. }
  2430. #u10153 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u10153_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u10154_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:114px;
  2448. height:38px;
  2449. }
  2450. #u10154 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:978px;
  2454. top:38px;
  2455. width:114px;
  2456. height:38px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:12px;
  2462. }
  2463. #u10154 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 0px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u10154_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. }
  2475. #u10155_img {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:130px;
  2481. height:38px;
  2482. }
  2483. #u10155 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:1092px;
  2487. top:38px;
  2488. width:130px;
  2489. height:38px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:12px;
  2495. color:#1890FF;
  2496. }
  2497. #u10155 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u10155_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. }
  2509. #u10156_img {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:112px;
  2515. height:38px;
  2516. }
  2517. #u10156 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:76px;
  2522. width:112px;
  2523. height:38px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:12px;
  2529. }
  2530. #u10156 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:2px 2px 2px 0px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u10156_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u10157_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:100px;
  2549. height:38px;
  2550. }
  2551. #u10157 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:112px;
  2555. top:76px;
  2556. width:100px;
  2557. height:38px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. }
  2564. #u10157 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 0px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u10157_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u10158_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:100px;
  2583. height:38px;
  2584. }
  2585. #u10158 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:212px;
  2589. top:76px;
  2590. width:100px;
  2591. height:38px;
  2592. display:flex;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:12px;
  2597. }
  2598. #u10158 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u10158_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u10159_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:114px;
  2617. height:38px;
  2618. }
  2619. #u10159 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:312px;
  2623. top:76px;
  2624. width:114px;
  2625. height:38px;
  2626. display:flex;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:12px;
  2631. }
  2632. #u10159 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u10159_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u10160_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:100px;
  2651. height:38px;
  2652. }
  2653. #u10160 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:426px;
  2657. top:76px;
  2658. width:100px;
  2659. height:38px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:12px;
  2665. }
  2666. #u10160 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u10160_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. visibility:hidden;
  2678. }
  2679. #u10161_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:112px;
  2685. height:38px;
  2686. }
  2687. #u10161 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:526px;
  2691. top:76px;
  2692. width:112px;
  2693. height:38px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:12px;
  2699. }
  2700. #u10161 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u10161_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u10162_img {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:114px;
  2719. height:38px;
  2720. }
  2721. #u10162 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:638px;
  2725. top:76px;
  2726. width:114px;
  2727. height:38px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. }
  2734. #u10162 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u10162_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u10163_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:112px;
  2753. height:38px;
  2754. }
  2755. #u10163 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:752px;
  2759. top:76px;
  2760. width:112px;
  2761. height:38px;
  2762. display:flex;
  2763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2764. font-weight:400;
  2765. font-style:normal;
  2766. font-size:12px;
  2767. }
  2768. #u10163 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 0px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u10163_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. }
  2780. #u10164_img {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:114px;
  2786. height:38px;
  2787. }
  2788. #u10164 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:864px;
  2792. top:76px;
  2793. width:114px;
  2794. height:38px;
  2795. display:flex;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:12px;
  2800. }
  2801. #u10164 .text {
  2802. position:absolute;
  2803. align-self:center;
  2804. padding:2px 2px 2px 0px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u10164_text {
  2809. border-width:0px;
  2810. word-wrap:break-word;
  2811. text-transform:none;
  2812. visibility:hidden;
  2813. }
  2814. #u10165_img {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:114px;
  2820. height:38px;
  2821. }
  2822. #u10165 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:978px;
  2826. top:76px;
  2827. width:114px;
  2828. height:38px;
  2829. display:flex;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. }
  2835. #u10165 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 0px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u10165_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. visibility:hidden;
  2847. }
  2848. #u10166_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:130px;
  2854. height:38px;
  2855. }
  2856. #u10166 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:1092px;
  2860. top:76px;
  2861. width:130px;
  2862. height:38px;
  2863. display:flex;
  2864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:12px;
  2868. color:#1890FF;
  2869. }
  2870. #u10166 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 0px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u10166_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. }
  2882. #u10167_img {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:112px;
  2888. height:38px;
  2889. }
  2890. #u10167 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:114px;
  2895. width:112px;
  2896. height:38px;
  2897. display:flex;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:12px;
  2902. }
  2903. #u10167 .text {
  2904. position:absolute;
  2905. align-self:center;
  2906. padding:2px 2px 2px 0px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u10167_text {
  2911. border-width:0px;
  2912. word-wrap:break-word;
  2913. text-transform:none;
  2914. visibility:hidden;
  2915. }
  2916. #u10168_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:100px;
  2922. height:38px;
  2923. }
  2924. #u10168 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:112px;
  2928. top:114px;
  2929. width:100px;
  2930. height:38px;
  2931. display:flex;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:12px;
  2936. }
  2937. #u10168 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 0px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u10168_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u10169_img {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:100px;
  2956. height:38px;
  2957. }
  2958. #u10169 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:212px;
  2962. top:114px;
  2963. width:100px;
  2964. height:38px;
  2965. display:flex;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:12px;
  2970. }
  2971. #u10169 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 2px 2px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u10169_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u10170_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:114px;
  2990. height:38px;
  2991. }
  2992. #u10170 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:312px;
  2996. top:114px;
  2997. width:114px;
  2998. height:38px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. }
  3005. #u10170 .text {
  3006. position:absolute;
  3007. align-self:center;
  3008. padding:2px 2px 2px 0px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u10170_text {
  3013. border-width:0px;
  3014. word-wrap:break-word;
  3015. text-transform:none;
  3016. visibility:hidden;
  3017. }
  3018. #u10171_img {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:100px;
  3024. height:38px;
  3025. }
  3026. #u10171 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:426px;
  3030. top:114px;
  3031. width:100px;
  3032. height:38px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:12px;
  3038. }
  3039. #u10171 .text {
  3040. position:absolute;
  3041. align-self:center;
  3042. padding:2px 2px 2px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u10171_text {
  3047. border-width:0px;
  3048. word-wrap:break-word;
  3049. text-transform:none;
  3050. visibility:hidden;
  3051. }
  3052. #u10172_img {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:112px;
  3058. height:38px;
  3059. }
  3060. #u10172 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:526px;
  3064. top:114px;
  3065. width:112px;
  3066. height:38px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:12px;
  3072. }
  3073. #u10172 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u10172_text {
  3081. border-width:0px;
  3082. word-wrap:break-word;
  3083. text-transform:none;
  3084. visibility:hidden;
  3085. }
  3086. #u10173_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:114px;
  3092. height:38px;
  3093. }
  3094. #u10173 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:638px;
  3098. top:114px;
  3099. width:114px;
  3100. height:38px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:12px;
  3106. }
  3107. #u10173 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 2px 2px 0px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u10173_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u10174_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:112px;
  3126. height:38px;
  3127. }
  3128. #u10174 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:752px;
  3132. top:114px;
  3133. width:112px;
  3134. height:38px;
  3135. display:flex;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:12px;
  3140. }
  3141. #u10174 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 0px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u10174_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. visibility:hidden;
  3153. }
  3154. #u10175_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:114px;
  3160. height:38px;
  3161. }
  3162. #u10175 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:864px;
  3166. top:114px;
  3167. width:114px;
  3168. height:38px;
  3169. display:flex;
  3170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3171. font-weight:400;
  3172. font-style:normal;
  3173. font-size:12px;
  3174. }
  3175. #u10175 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:2px 2px 2px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u10175_text {
  3183. border-width:0px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. visibility:hidden;
  3187. }
  3188. #u10176_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:114px;
  3194. height:38px;
  3195. }
  3196. #u10176 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:978px;
  3200. top:114px;
  3201. width:114px;
  3202. height:38px;
  3203. display:flex;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. }
  3209. #u10176 .text {
  3210. position:absolute;
  3211. align-self:center;
  3212. padding:2px 2px 2px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u10176_text {
  3217. border-width:0px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. visibility:hidden;
  3221. }
  3222. #u10177_img {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:130px;
  3228. height:38px;
  3229. }
  3230. #u10177 {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:1092px;
  3234. top:114px;
  3235. width:130px;
  3236. height:38px;
  3237. display:flex;
  3238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3239. font-weight:400;
  3240. font-style:normal;
  3241. font-size:12px;
  3242. color:#1890FF;
  3243. }
  3244. #u10177 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 0px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u10177_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u10178_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:112px;
  3263. height:38px;
  3264. }
  3265. #u10178 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:152px;
  3270. width:112px;
  3271. height:38px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. }
  3278. #u10178 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u10178_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u10179_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:100px;
  3297. height:38px;
  3298. }
  3299. #u10179 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:112px;
  3303. top:152px;
  3304. width:100px;
  3305. height:38px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. }
  3312. #u10179 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 0px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u10179_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u10180_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:100px;
  3331. height:38px;
  3332. }
  3333. #u10180 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:212px;
  3337. top:152px;
  3338. width:100px;
  3339. height:38px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. }
  3346. #u10180 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u10180_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u10181_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:114px;
  3365. height:38px;
  3366. }
  3367. #u10181 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:312px;
  3371. top:152px;
  3372. width:114px;
  3373. height:38px;
  3374. display:flex;
  3375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:12px;
  3379. }
  3380. #u10181 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 0px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u10181_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u10182_img {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:100px;
  3399. height:38px;
  3400. }
  3401. #u10182 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:426px;
  3405. top:152px;
  3406. width:100px;
  3407. height:38px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:12px;
  3413. }
  3414. #u10182 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u10182_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u10183_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:112px;
  3433. height:38px;
  3434. }
  3435. #u10183 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:526px;
  3439. top:152px;
  3440. width:112px;
  3441. height:38px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. }
  3448. #u10183 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:2px 2px 2px 0px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u10183_text {
  3456. border-width:0px;
  3457. word-wrap:break-word;
  3458. text-transform:none;
  3459. visibility:hidden;
  3460. }
  3461. #u10184_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:114px;
  3467. height:38px;
  3468. }
  3469. #u10184 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:638px;
  3473. top:152px;
  3474. width:114px;
  3475. height:38px;
  3476. display:flex;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. }
  3482. #u10184 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:2px 2px 2px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u10184_text {
  3490. border-width:0px;
  3491. word-wrap:break-word;
  3492. text-transform:none;
  3493. visibility:hidden;
  3494. }
  3495. #u10185_img {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:0px;
  3499. top:0px;
  3500. width:112px;
  3501. height:38px;
  3502. }
  3503. #u10185 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:752px;
  3507. top:152px;
  3508. width:112px;
  3509. height:38px;
  3510. display:flex;
  3511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3512. font-weight:400;
  3513. font-style:normal;
  3514. font-size:12px;
  3515. }
  3516. #u10185 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 0px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u10185_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u10186_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:114px;
  3535. height:38px;
  3536. }
  3537. #u10186 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:864px;
  3541. top:152px;
  3542. width:114px;
  3543. height:38px;
  3544. display:flex;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:12px;
  3549. }
  3550. #u10186 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u10186_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u10187_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:114px;
  3569. height:38px;
  3570. }
  3571. #u10187 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:978px;
  3575. top:152px;
  3576. width:114px;
  3577. height:38px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. }
  3584. #u10187 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 0px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u10187_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u10188_img {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:130px;
  3603. height:38px;
  3604. }
  3605. #u10188 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:1092px;
  3609. top:152px;
  3610. width:130px;
  3611. height:38px;
  3612. display:flex;
  3613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:12px;
  3617. color:#1890FF;
  3618. }
  3619. #u10188 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 0px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u10188_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u10189_img {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:112px;
  3638. height:35px;
  3639. }
  3640. #u10189 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:190px;
  3645. width:112px;
  3646. height:35px;
  3647. display:flex;
  3648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:12px;
  3652. color:#606266;
  3653. }
  3654. #u10189 .text {
  3655. position:absolute;
  3656. align-self:center;
  3657. padding:2px 2px 2px 0px;
  3658. box-sizing:border-box;
  3659. width:100%;
  3660. }
  3661. #u10189_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. visibility:hidden;
  3666. }
  3667. #u10190_img {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:100px;
  3673. height:35px;
  3674. }
  3675. #u10190 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:112px;
  3679. top:190px;
  3680. width:100px;
  3681. height:35px;
  3682. display:flex;
  3683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:12px;
  3687. color:#606266;
  3688. }
  3689. #u10190 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u10190_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u10191_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:100px;
  3708. height:35px;
  3709. }
  3710. #u10191 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:212px;
  3714. top:190px;
  3715. width:100px;
  3716. height:35px;
  3717. display:flex;
  3718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. color:#606266;
  3723. }
  3724. #u10191 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u10191_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u10192_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:114px;
  3743. height:35px;
  3744. }
  3745. #u10192 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:312px;
  3749. top:190px;
  3750. width:114px;
  3751. height:35px;
  3752. display:flex;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. color:#606266;
  3758. }
  3759. #u10192 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 0px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u10192_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. visibility:hidden;
  3771. }
  3772. #u10193_img {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:100px;
  3778. height:35px;
  3779. }
  3780. #u10193 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:426px;
  3784. top:190px;
  3785. width:100px;
  3786. height:35px;
  3787. display:flex;
  3788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3789. font-weight:400;
  3790. font-style:normal;
  3791. font-size:12px;
  3792. color:#606266;
  3793. }
  3794. #u10193 .text {
  3795. position:absolute;
  3796. align-self:center;
  3797. padding:2px 2px 2px 0px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u10193_text {
  3802. border-width:0px;
  3803. word-wrap:break-word;
  3804. text-transform:none;
  3805. visibility:hidden;
  3806. }
  3807. #u10194_img {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:112px;
  3813. height:35px;
  3814. }
  3815. #u10194 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:526px;
  3819. top:190px;
  3820. width:112px;
  3821. height:35px;
  3822. display:flex;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:12px;
  3827. color:#606266;
  3828. }
  3829. #u10194 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u10194_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u10195_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:114px;
  3848. height:35px;
  3849. }
  3850. #u10195 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:638px;
  3854. top:190px;
  3855. width:114px;
  3856. height:35px;
  3857. display:flex;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:12px;
  3862. color:#606266;
  3863. }
  3864. #u10195 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:2px 2px 2px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u10195_text {
  3872. border-width:0px;
  3873. word-wrap:break-word;
  3874. text-transform:none;
  3875. visibility:hidden;
  3876. }
  3877. #u10196_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:112px;
  3883. height:35px;
  3884. }
  3885. #u10196 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:752px;
  3889. top:190px;
  3890. width:112px;
  3891. height:35px;
  3892. display:flex;
  3893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. color:#606266;
  3898. }
  3899. #u10196 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 0px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u10196_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u10197_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:114px;
  3918. height:35px;
  3919. }
  3920. #u10197 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:864px;
  3924. top:190px;
  3925. width:114px;
  3926. height:35px;
  3927. display:flex;
  3928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:12px;
  3932. color:#606266;
  3933. }
  3934. #u10197 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u10197_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u10198_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:114px;
  3953. height:35px;
  3954. }
  3955. #u10198 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:978px;
  3959. top:190px;
  3960. width:114px;
  3961. height:35px;
  3962. display:flex;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:12px;
  3967. color:#606266;
  3968. }
  3969. #u10198 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:2px 2px 2px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u10198_text {
  3977. border-width:0px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. visibility:hidden;
  3981. }
  3982. #u10199_img {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:130px;
  3988. height:35px;
  3989. }
  3990. #u10199 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:1092px;
  3994. top:190px;
  3995. width:130px;
  3996. height:35px;
  3997. display:flex;
  3998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. color:#02A7F0;
  4003. }
  4004. #u10199 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:2px 2px 2px 0px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u10199_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. visibility:hidden;
  4016. }
  4017. #u10200_img {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:112px;
  4023. height:35px;
  4024. }
  4025. #u10200 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:225px;
  4030. width:112px;
  4031. height:35px;
  4032. display:flex;
  4033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:12px;
  4037. color:#606266;
  4038. }
  4039. #u10200 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u10200_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u10201_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:100px;
  4058. height:35px;
  4059. }
  4060. #u10201 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:112px;
  4064. top:225px;
  4065. width:100px;
  4066. height:35px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#606266;
  4073. }
  4074. #u10201 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 0px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u10201_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u10202_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:100px;
  4093. height:35px;
  4094. }
  4095. #u10202 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:212px;
  4099. top:225px;
  4100. width:100px;
  4101. height:35px;
  4102. display:flex;
  4103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:12px;
  4107. color:#606266;
  4108. }
  4109. #u10202 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u10202_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u10203_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:114px;
  4128. height:35px;
  4129. }
  4130. #u10203 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:312px;
  4134. top:225px;
  4135. width:114px;
  4136. height:35px;
  4137. display:flex;
  4138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:12px;
  4142. color:#606266;
  4143. }
  4144. #u10203 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 0px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u10203_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u10204_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:100px;
  4163. height:35px;
  4164. }
  4165. #u10204 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:426px;
  4169. top:225px;
  4170. width:100px;
  4171. height:35px;
  4172. display:flex;
  4173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:12px;
  4177. color:#606266;
  4178. }
  4179. #u10204 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 0px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u10204_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u10205_img {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:112px;
  4198. height:35px;
  4199. }
  4200. #u10205 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:526px;
  4204. top:225px;
  4205. width:112px;
  4206. height:35px;
  4207. display:flex;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:12px;
  4212. color:#606266;
  4213. }
  4214. #u10205 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 0px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u10205_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u10206_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:114px;
  4233. height:35px;
  4234. }
  4235. #u10206 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:638px;
  4239. top:225px;
  4240. width:114px;
  4241. height:35px;
  4242. display:flex;
  4243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:12px;
  4247. color:#606266;
  4248. }
  4249. #u10206 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u10206_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u10207_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:112px;
  4268. height:35px;
  4269. }
  4270. #u10207 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:752px;
  4274. top:225px;
  4275. width:112px;
  4276. height:35px;
  4277. display:flex;
  4278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. color:#606266;
  4283. }
  4284. #u10207 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u10207_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u10208_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:114px;
  4303. height:35px;
  4304. }
  4305. #u10208 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:864px;
  4309. top:225px;
  4310. width:114px;
  4311. height:35px;
  4312. display:flex;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:12px;
  4317. color:#606266;
  4318. }
  4319. #u10208 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u10208_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u10209_img {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:114px;
  4338. height:35px;
  4339. }
  4340. #u10209 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:978px;
  4344. top:225px;
  4345. width:114px;
  4346. height:35px;
  4347. display:flex;
  4348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:12px;
  4352. color:#606266;
  4353. }
  4354. #u10209 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 0px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u10209_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u10210_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:130px;
  4373. height:35px;
  4374. }
  4375. #u10210 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:1092px;
  4379. top:225px;
  4380. width:130px;
  4381. height:35px;
  4382. display:flex;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:12px;
  4387. color:#02A7F0;
  4388. }
  4389. #u10210 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 0px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u10210_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u10211_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:112px;
  4408. height:35px;
  4409. }
  4410. #u10211 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:260px;
  4415. width:112px;
  4416. height:35px;
  4417. display:flex;
  4418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:12px;
  4422. color:#606266;
  4423. }
  4424. #u10211 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 0px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u10211_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u10212_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:100px;
  4443. height:35px;
  4444. }
  4445. #u10212 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:112px;
  4449. top:260px;
  4450. width:100px;
  4451. height:35px;
  4452. display:flex;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:12px;
  4457. color:#606266;
  4458. }
  4459. #u10212 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 0px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u10212_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u10213_img {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:100px;
  4478. height:35px;
  4479. }
  4480. #u10213 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:212px;
  4484. top:260px;
  4485. width:100px;
  4486. height:35px;
  4487. display:flex;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:12px;
  4492. color:#606266;
  4493. }
  4494. #u10213 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 2px 2px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u10213_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u10214_img {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:114px;
  4513. height:35px;
  4514. }
  4515. #u10214 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:312px;
  4519. top:260px;
  4520. width:114px;
  4521. height:35px;
  4522. display:flex;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:12px;
  4527. color:#606266;
  4528. }
  4529. #u10214 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u10214_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. visibility:hidden;
  4541. }
  4542. #u10215_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:100px;
  4548. height:35px;
  4549. }
  4550. #u10215 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:426px;
  4554. top:260px;
  4555. width:100px;
  4556. height:35px;
  4557. display:flex;
  4558. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:12px;
  4562. color:#606266;
  4563. }
  4564. #u10215 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 0px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u10215_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u10216_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:112px;
  4583. height:35px;
  4584. }
  4585. #u10216 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:526px;
  4589. top:260px;
  4590. width:112px;
  4591. height:35px;
  4592. display:flex;
  4593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. color:#606266;
  4598. }
  4599. #u10216 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u10216_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. visibility:hidden;
  4611. }
  4612. #u10217_img {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:114px;
  4618. height:35px;
  4619. }
  4620. #u10217 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:638px;
  4624. top:260px;
  4625. width:114px;
  4626. height:35px;
  4627. display:flex;
  4628. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:12px;
  4632. color:#606266;
  4633. }
  4634. #u10217 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 0px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u10217_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u10218_img {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:112px;
  4653. height:35px;
  4654. }
  4655. #u10218 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:752px;
  4659. top:260px;
  4660. width:112px;
  4661. height:35px;
  4662. display:flex;
  4663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:12px;
  4667. color:#606266;
  4668. }
  4669. #u10218 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u10218_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. visibility:hidden;
  4681. }
  4682. #u10219_img {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:114px;
  4688. height:35px;
  4689. }
  4690. #u10219 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:864px;
  4694. top:260px;
  4695. width:114px;
  4696. height:35px;
  4697. display:flex;
  4698. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:12px;
  4702. color:#606266;
  4703. }
  4704. #u10219 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u10219_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u10220_img {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:114px;
  4723. height:35px;
  4724. }
  4725. #u10220 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:978px;
  4729. top:260px;
  4730. width:114px;
  4731. height:35px;
  4732. display:flex;
  4733. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:12px;
  4737. color:#606266;
  4738. }
  4739. #u10220 .text {
  4740. position:absolute;
  4741. align-self:center;
  4742. padding:2px 2px 2px 0px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u10220_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. visibility:hidden;
  4751. }
  4752. #u10221_img {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:130px;
  4758. height:35px;
  4759. }
  4760. #u10221 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:1092px;
  4764. top:260px;
  4765. width:130px;
  4766. height:35px;
  4767. display:flex;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. color:#02A7F0;
  4773. }
  4774. #u10221 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u10221_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u10222_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:112px;
  4793. height:35px;
  4794. }
  4795. #u10222 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:295px;
  4800. width:112px;
  4801. height:35px;
  4802. display:flex;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. color:#606266;
  4808. }
  4809. #u10222 .text {
  4810. position:absolute;
  4811. align-self:center;
  4812. padding:2px 2px 2px 0px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u10222_text {
  4817. border-width:0px;
  4818. word-wrap:break-word;
  4819. text-transform:none;
  4820. visibility:hidden;
  4821. }
  4822. #u10223_img {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:100px;
  4828. height:35px;
  4829. }
  4830. #u10223 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:112px;
  4834. top:295px;
  4835. width:100px;
  4836. height:35px;
  4837. display:flex;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#606266;
  4843. }
  4844. #u10223 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u10223_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u10224_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:100px;
  4863. height:35px;
  4864. }
  4865. #u10224 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:212px;
  4869. top:295px;
  4870. width:100px;
  4871. height:35px;
  4872. display:flex;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:12px;
  4877. color:#606266;
  4878. }
  4879. #u10224 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 2px 2px 0px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u10224_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. visibility:hidden;
  4891. }
  4892. #u10225_img {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:114px;
  4898. height:35px;
  4899. }
  4900. #u10225 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:312px;
  4904. top:295px;
  4905. width:114px;
  4906. height:35px;
  4907. display:flex;
  4908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:12px;
  4912. color:#606266;
  4913. }
  4914. #u10225 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 0px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u10225_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u10226_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:100px;
  4933. height:35px;
  4934. }
  4935. #u10226 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:426px;
  4939. top:295px;
  4940. width:100px;
  4941. height:35px;
  4942. display:flex;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. color:#606266;
  4948. }
  4949. #u10226 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u10226_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u10227_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:112px;
  4968. height:35px;
  4969. }
  4970. #u10227 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:526px;
  4974. top:295px;
  4975. width:112px;
  4976. height:35px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:12px;
  4982. color:#606266;
  4983. }
  4984. #u10227 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 0px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u10227_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u10228_img {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:114px;
  5003. height:35px;
  5004. }
  5005. #u10228 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:638px;
  5009. top:295px;
  5010. width:114px;
  5011. height:35px;
  5012. display:flex;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:12px;
  5017. color:#606266;
  5018. }
  5019. #u10228 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 0px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u10228_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. visibility:hidden;
  5031. }
  5032. #u10229_img {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:112px;
  5038. height:35px;
  5039. }
  5040. #u10229 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:752px;
  5044. top:295px;
  5045. width:112px;
  5046. height:35px;
  5047. display:flex;
  5048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. color:#606266;
  5053. }
  5054. #u10229 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 2px 2px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u10229_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u10230_img {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:114px;
  5073. height:35px;
  5074. }
  5075. #u10230 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:864px;
  5079. top:295px;
  5080. width:114px;
  5081. height:35px;
  5082. display:flex;
  5083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. font-size:12px;
  5087. color:#606266;
  5088. }
  5089. #u10230 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 0px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u10230_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. visibility:hidden;
  5101. }
  5102. #u10231_img {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:114px;
  5108. height:35px;
  5109. }
  5110. #u10231 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:978px;
  5114. top:295px;
  5115. width:114px;
  5116. height:35px;
  5117. display:flex;
  5118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. color:#606266;
  5123. }
  5124. #u10231 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:2px 2px 2px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u10231_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }
  5137. #u10232_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:130px;
  5143. height:35px;
  5144. }
  5145. #u10232 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:1092px;
  5149. top:295px;
  5150. width:130px;
  5151. height:35px;
  5152. display:flex;
  5153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. font-size:12px;
  5157. color:#02A7F0;
  5158. }
  5159. #u10232 .text {
  5160. position:absolute;
  5161. align-self:center;
  5162. padding:2px 2px 2px 0px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u10232_text {
  5167. border-width:0px;
  5168. word-wrap:break-word;
  5169. text-transform:none;
  5170. visibility:hidden;
  5171. }
  5172. #u10233_img {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:112px;
  5178. height:33px;
  5179. }
  5180. #u10233 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:330px;
  5185. width:112px;
  5186. height:33px;
  5187. display:flex;
  5188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:12px;
  5192. color:#606266;
  5193. }
  5194. #u10233 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:2px 2px 2px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u10233_text {
  5202. border-width:0px;
  5203. word-wrap:break-word;
  5204. text-transform:none;
  5205. visibility:hidden;
  5206. }
  5207. #u10234_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:100px;
  5213. height:33px;
  5214. }
  5215. #u10234 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:112px;
  5219. top:330px;
  5220. width:100px;
  5221. height:33px;
  5222. display:flex;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:12px;
  5227. color:#606266;
  5228. }
  5229. #u10234 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u10234_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. visibility:hidden;
  5241. }
  5242. #u10235_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:100px;
  5248. height:33px;
  5249. }
  5250. #u10235 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:212px;
  5254. top:330px;
  5255. width:100px;
  5256. height:33px;
  5257. display:flex;
  5258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:12px;
  5262. color:#606266;
  5263. }
  5264. #u10235 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 0px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u10235_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u10236_img {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:114px;
  5283. height:33px;
  5284. }
  5285. #u10236 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:312px;
  5289. top:330px;
  5290. width:114px;
  5291. height:33px;
  5292. display:flex;
  5293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:12px;
  5297. color:#606266;
  5298. }
  5299. #u10236 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 0px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u10236_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. visibility:hidden;
  5311. }
  5312. #u10237_img {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:100px;
  5318. height:33px;
  5319. }
  5320. #u10237 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:426px;
  5324. top:330px;
  5325. width:100px;
  5326. height:33px;
  5327. display:flex;
  5328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:12px;
  5332. color:#606266;
  5333. }
  5334. #u10237 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u10237_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u10238_img {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:112px;
  5353. height:33px;
  5354. }
  5355. #u10238 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:526px;
  5359. top:330px;
  5360. width:112px;
  5361. height:33px;
  5362. display:flex;
  5363. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:12px;
  5367. color:#606266;
  5368. }
  5369. #u10238 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 0px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u10238_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. visibility:hidden;
  5381. }
  5382. #u10239_img {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:114px;
  5388. height:33px;
  5389. }
  5390. #u10239 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:638px;
  5394. top:330px;
  5395. width:114px;
  5396. height:33px;
  5397. display:flex;
  5398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:12px;
  5402. color:#606266;
  5403. }
  5404. #u10239 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:2px 2px 2px 0px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u10239_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u10240_img {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:112px;
  5423. height:33px;
  5424. }
  5425. #u10240 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:752px;
  5429. top:330px;
  5430. width:112px;
  5431. height:33px;
  5432. display:flex;
  5433. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:12px;
  5437. color:#606266;
  5438. }
  5439. #u10240 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 0px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u10240_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u10241_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:114px;
  5458. height:33px;
  5459. }
  5460. #u10241 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:864px;
  5464. top:330px;
  5465. width:114px;
  5466. height:33px;
  5467. display:flex;
  5468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:12px;
  5472. color:#606266;
  5473. }
  5474. #u10241 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 0px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u10241_text {
  5482. border-width:0px;
  5483. word-wrap:break-word;
  5484. text-transform:none;
  5485. visibility:hidden;
  5486. }
  5487. #u10242_img {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:114px;
  5493. height:33px;
  5494. }
  5495. #u10242 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:978px;
  5499. top:330px;
  5500. width:114px;
  5501. height:33px;
  5502. display:flex;
  5503. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:12px;
  5507. color:#606266;
  5508. }
  5509. #u10242 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:2px 2px 2px 0px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u10242_text {
  5517. border-width:0px;
  5518. word-wrap:break-word;
  5519. text-transform:none;
  5520. visibility:hidden;
  5521. }
  5522. #u10243_img {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:130px;
  5528. height:33px;
  5529. }
  5530. #u10243 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:1092px;
  5534. top:330px;
  5535. width:130px;
  5536. height:33px;
  5537. display:flex;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:12px;
  5542. color:#02A7F0;
  5543. }
  5544. #u10243 .text {
  5545. position:absolute;
  5546. align-self:center;
  5547. padding:2px 2px 2px 0px;
  5548. box-sizing:border-box;
  5549. width:100%;
  5550. }
  5551. #u10243_text {
  5552. border-width:0px;
  5553. word-wrap:break-word;
  5554. text-transform:none;
  5555. visibility:hidden;
  5556. }
  5557. #u10244_div {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:59px;
  5563. height:30px;
  5564. background:inherit;
  5565. background-color:rgba(41, 143, 255, 1);
  5566. border:none;
  5567. border-radius:4px;
  5568. -moz-box-shadow:none;
  5569. -webkit-box-shadow:none;
  5570. box-shadow:none;
  5571. font-family:'Microsoft YaHei', sans-serif;
  5572. font-weight:400;
  5573. font-style:normal;
  5574. font-size:14px;
  5575. color:#FFFFFF;
  5576. }
  5577. #u10244 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:651px;
  5581. top:180px;
  5582. width:59px;
  5583. height:30px;
  5584. display:flex;
  5585. font-family:'Microsoft YaHei', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:14px;
  5589. color:#FFFFFF;
  5590. }
  5591. #u10244 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:5px 15px 5px 15px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u10244_text {
  5599. border-width:0px;
  5600. white-space:nowrap;
  5601. text-transform:none;
  5602. }
  5603. #u10245_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:55px;
  5609. height:30px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 1);
  5612. box-sizing:border-box;
  5613. border-width:1px;
  5614. border-style:solid;
  5615. border-color:rgba(170, 170, 170, 1);
  5616. border-radius:4px;
  5617. -moz-box-shadow:none;
  5618. -webkit-box-shadow:none;
  5619. box-shadow:none;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:12px;
  5624. color:#555555;
  5625. }
  5626. #u10245 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:720px;
  5630. top:180px;
  5631. width:55px;
  5632. height:30px;
  5633. display:flex;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:12px;
  5638. color:#555555;
  5639. }
  5640. #u10245 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:5px 15px 5px 15px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u10245_text {
  5648. border-width:0px;
  5649. white-space:nowrap;
  5650. text-transform:none;
  5651. }
  5652. #u10246 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:0px;
  5658. height:0px;
  5659. }
  5660. #u10247_div {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:140px;
  5666. height:30px;
  5667. background:inherit;
  5668. background-color:rgba(255, 255, 255, 1);
  5669. box-sizing:border-box;
  5670. border-width:1px;
  5671. border-style:solid;
  5672. border-color:rgba(201, 201, 201, 1);
  5673. border-radius:4px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. font-family:'Microsoft YaHei', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:14px;
  5681. color:#CCCCCC;
  5682. text-align:left;
  5683. }
  5684. #u10247 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:501px;
  5688. top:180px;
  5689. width:140px;
  5690. height:30px;
  5691. display:flex;
  5692. font-family:'Microsoft YaHei', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:14px;
  5696. color:#CCCCCC;
  5697. text-align:left;
  5698. }
  5699. #u10247 .text {
  5700. position:absolute;
  5701. align-self:center;
  5702. padding:2px 8px 2px 8px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u10247_text {
  5707. border-width:0px;
  5708. word-wrap:break-word;
  5709. text-transform:none;
  5710. visibility:hidden;
  5711. }
  5712. #u10248_input {
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:127px;
  5717. height:25px;
  5718. padding:2px 2px 2px 2px;
  5719. font-family:'Microsoft YaHei', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:10px;
  5723. letter-spacing:normal;
  5724. color:#000000;
  5725. vertical-align:none;
  5726. text-align:left;
  5727. text-transform:none;
  5728. background-color:transparent;
  5729. border-color:transparent;
  5730. }
  5731. #u10248_input.disabled {
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:127px;
  5736. height:25px;
  5737. padding:2px 2px 2px 2px;
  5738. font-family:'Microsoft YaHei', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:10px;
  5742. letter-spacing:normal;
  5743. color:#000000;
  5744. vertical-align:none;
  5745. text-align:left;
  5746. text-transform:none;
  5747. background-color:transparent;
  5748. border-color:transparent;
  5749. }
  5750. #u10248_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:127px;
  5756. height:25px;
  5757. background:inherit;
  5758. background-color:rgba(255, 255, 255, 1);
  5759. border:none;
  5760. border-radius:0px;
  5761. -moz-box-shadow:none;
  5762. -webkit-box-shadow:none;
  5763. box-shadow:none;
  5764. font-family:'Microsoft YaHei', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:10px;
  5768. }
  5769. #u10248 {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:509px;
  5773. top:181px;
  5774. width:127px;
  5775. height:25px;
  5776. display:flex;
  5777. font-family:'Microsoft YaHei', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:10px;
  5781. }
  5782. #u10248 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 2px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u10248_div.disabled {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:127px;
  5795. height:25px;
  5796. background:inherit;
  5797. background-color:rgba(240, 240, 240, 1);
  5798. border:none;
  5799. border-radius:0px;
  5800. -moz-box-shadow:none;
  5801. -webkit-box-shadow:none;
  5802. box-shadow:none;
  5803. font-family:'Microsoft YaHei', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:10px;
  5807. }
  5808. #u10248.disabled {
  5809. }
  5810. #u10249 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:0px;
  5816. height:0px;
  5817. }
  5818. #u10250_div {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:140px;
  5824. height:30px;
  5825. background:inherit;
  5826. background-color:rgba(255, 255, 255, 1);
  5827. box-sizing:border-box;
  5828. border-width:1px;
  5829. border-style:solid;
  5830. border-color:rgba(215, 215, 215, 1);
  5831. border-radius:4px;
  5832. -moz-box-shadow:none;
  5833. -webkit-box-shadow:none;
  5834. box-shadow:none;
  5835. font-size:11px;
  5836. }
  5837. #u10250 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:351px;
  5841. top:180px;
  5842. width:140px;
  5843. height:30px;
  5844. display:flex;
  5845. font-size:11px;
  5846. }
  5847. #u10250 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 2px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u10250_text {
  5855. border-width:0px;
  5856. word-wrap:break-word;
  5857. text-transform:none;
  5858. visibility:hidden;
  5859. }
  5860. #u10251_input {
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:120px;
  5865. height:23px;
  5866. padding:2px 2px 2px 2px;
  5867. font-family:'ArialMT', 'Arial', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:11px;
  5871. letter-spacing:normal;
  5872. color:#AAAAAA;
  5873. vertical-align:none;
  5874. text-align:left;
  5875. text-transform:none;
  5876. background-color:transparent;
  5877. border-color:transparent;
  5878. }
  5879. #u10251_input.disabled {
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:120px;
  5884. height:23px;
  5885. padding:2px 2px 2px 2px;
  5886. font-family:'ArialMT', 'Arial', sans-serif;
  5887. font-weight:400;
  5888. font-style:normal;
  5889. font-size:11px;
  5890. letter-spacing:normal;
  5891. color:#AAAAAA;
  5892. vertical-align:none;
  5893. text-align:left;
  5894. text-transform:none;
  5895. background-color:transparent;
  5896. border-color:transparent;
  5897. }
  5898. #u10251_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:120px;
  5904. height:23px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 1);
  5907. border:none;
  5908. border-radius:0px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-size:11px;
  5913. color:#AAAAAA;
  5914. }
  5915. #u10251 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:358px;
  5919. top:182px;
  5920. width:120px;
  5921. height:23px;
  5922. display:flex;
  5923. font-size:11px;
  5924. color:#AAAAAA;
  5925. }
  5926. #u10251 .text {
  5927. position:absolute;
  5928. align-self:flex-start;
  5929. padding:2px 2px 2px 2px;
  5930. box-sizing:border-box;
  5931. width:100%;
  5932. }
  5933. #u10251_div.disabled {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:120px;
  5939. height:23px;
  5940. background:inherit;
  5941. background-color:rgba(240, 240, 240, 1);
  5942. border:none;
  5943. border-radius:0px;
  5944. -moz-box-shadow:none;
  5945. -webkit-box-shadow:none;
  5946. box-shadow:none;
  5947. font-size:11px;
  5948. color:#AAAAAA;
  5949. }
  5950. #u10251.disabled {
  5951. }
  5952. .u10251_input_option {
  5953. font-size:11px;
  5954. }
  5955. #u10252 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:0px;
  5961. height:0px;
  5962. }
  5963. #u10253_div {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:0px;
  5967. top:0px;
  5968. width:200px;
  5969. height:1192px;
  5970. background:inherit;
  5971. background-color:rgba(255, 255, 255, 1);
  5972. border:none;
  5973. border-radius:0px;
  5974. -moz-box-shadow:none;
  5975. -webkit-box-shadow:none;
  5976. box-shadow:none;
  5977. }
  5978. #u10253 {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:120px;
  5982. top:50px;
  5983. width:200px;
  5984. height:1192px;
  5985. display:flex;
  5986. }
  5987. #u10253 .text {
  5988. position:absolute;
  5989. align-self:center;
  5990. padding:2px 2px 2px 2px;
  5991. box-sizing:border-box;
  5992. width:100%;
  5993. }
  5994. #u10253_text {
  5995. border-width:0px;
  5996. word-wrap:break-word;
  5997. text-transform:none;
  5998. visibility:hidden;
  5999. }
  6000. #u10254_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:200px;
  6006. height:60px;
  6007. background:inherit;
  6008. background-color:rgba(224, 231, 247, 1);
  6009. border:none;
  6010. border-radius:0px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6015. font-weight:500;
  6016. font-style:normal;
  6017. font-size:18px;
  6018. }
  6019. #u10254 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:120px;
  6023. top:50px;
  6024. width:200px;
  6025. height:60px;
  6026. display:flex;
  6027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6028. font-weight:500;
  6029. font-style:normal;
  6030. font-size:18px;
  6031. }
  6032. #u10254 .text {
  6033. position:absolute;
  6034. align-self:center;
  6035. padding:0px 0px 0px 20px;
  6036. box-sizing:border-box;
  6037. width:100%;
  6038. }
  6039. #u10254_text {
  6040. border-width:0px;
  6041. word-wrap:break-word;
  6042. text-transform:none;
  6043. }
  6044. #u10255_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:65px;
  6050. height:22px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 0);
  6053. border:none;
  6054. border-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:16px;
  6062. }
  6063. #u10255 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:147px;
  6067. top:274px;
  6068. width:65px;
  6069. height:22px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:16px;
  6075. }
  6076. #u10255 .text {
  6077. position:absolute;
  6078. align-self:flex-start;
  6079. padding:0px 0px 0px 0px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u10255_text {
  6084. border-width:0px;
  6085. white-space:nowrap;
  6086. text-transform:none;
  6087. }
  6088. #u10256_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:201px;
  6094. height:2px;
  6095. }
  6096. #u10256 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:120px;
  6100. top:212px;
  6101. width:200px;
  6102. height:1px;
  6103. display:flex;
  6104. }
  6105. #u10256 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 2px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u10256_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. visibility:hidden;
  6117. }
  6118. #u10257_div {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:65px;
  6124. height:22px;
  6125. background:inherit;
  6126. background-color:rgba(255, 255, 255, 0);
  6127. border:none;
  6128. border-radius:0px;
  6129. -moz-box-shadow:none;
  6130. -webkit-box-shadow:none;
  6131. box-shadow:none;
  6132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:16px;
  6136. }
  6137. #u10257 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:147px;
  6141. top:166px;
  6142. width:65px;
  6143. height:22px;
  6144. display:flex;
  6145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6146. font-weight:400;
  6147. font-style:normal;
  6148. font-size:16px;
  6149. }
  6150. #u10257 .text {
  6151. position:absolute;
  6152. align-self:flex-start;
  6153. padding:0px 0px 0px 0px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u10257_text {
  6158. border-width:0px;
  6159. white-space:nowrap;
  6160. text-transform:none;
  6161. }
  6162. #u10258_div {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:25px;
  6168. height:17px;
  6169. background:inherit;
  6170. background-color:rgba(255, 255, 255, 0);
  6171. border:none;
  6172. border-radius:0px;
  6173. -moz-box-shadow:none;
  6174. -webkit-box-shadow:none;
  6175. box-shadow:none;
  6176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:12px;
  6180. color:#AAAAAA;
  6181. }
  6182. #u10258 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:147px;
  6186. top:238px;
  6187. width:25px;
  6188. height:17px;
  6189. display:flex;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:12px;
  6194. color:#AAAAAA;
  6195. }
  6196. #u10258 .text {
  6197. position:absolute;
  6198. align-self:flex-start;
  6199. padding:0px 0px 0px 0px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u10258_text {
  6204. border-width:0px;
  6205. white-space:nowrap;
  6206. text-transform:none;
  6207. }
  6208. #u10259_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:25px;
  6214. height:17px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 0);
  6217. border:none;
  6218. border-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:12px;
  6226. color:#AAAAAA;
  6227. }
  6228. #u10259 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:147px;
  6232. top:130px;
  6233. width:25px;
  6234. height:17px;
  6235. display:flex;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:12px;
  6240. color:#AAAAAA;
  6241. }
  6242. #u10259 .text {
  6243. position:absolute;
  6244. align-self:flex-start;
  6245. padding:0px 0px 0px 0px;
  6246. box-sizing:border-box;
  6247. width:100%;
  6248. }
  6249. #u10259_text {
  6250. border-width:0px;
  6251. white-space:nowrap;
  6252. text-transform:none;
  6253. }
  6254. #u10260_div {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:0px;
  6258. top:0px;
  6259. width:65px;
  6260. height:22px;
  6261. background:inherit;
  6262. background-color:rgba(255, 255, 255, 0);
  6263. border:none;
  6264. border-radius:0px;
  6265. -moz-box-shadow:none;
  6266. -webkit-box-shadow:none;
  6267. box-shadow:none;
  6268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:16px;
  6272. }
  6273. #u10260 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:147px;
  6277. top:423px;
  6278. width:65px;
  6279. height:22px;
  6280. display:flex;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:16px;
  6285. }
  6286. #u10260 .text {
  6287. position:absolute;
  6288. align-self:flex-start;
  6289. padding:0px 0px 0px 0px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u10260_text {
  6294. border-width:0px;
  6295. white-space:nowrap;
  6296. text-transform:none;
  6297. }
  6298. #u10261_img {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:201px;
  6304. height:2px;
  6305. }
  6306. #u10261 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:120px;
  6310. top:361px;
  6311. width:200px;
  6312. height:1px;
  6313. display:flex;
  6314. }
  6315. #u10261 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u10261_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. visibility:hidden;
  6327. }
  6328. #u10262_div {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:25px;
  6334. height:17px;
  6335. background:inherit;
  6336. background-color:rgba(255, 255, 255, 0);
  6337. border:none;
  6338. border-radius:0px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:12px;
  6346. color:#AAAAAA;
  6347. }
  6348. #u10262 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:147px;
  6352. top:387px;
  6353. width:25px;
  6354. height:17px;
  6355. display:flex;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:12px;
  6360. color:#AAAAAA;
  6361. }
  6362. #u10262 .text {
  6363. position:absolute;
  6364. align-self:flex-start;
  6365. padding:0px 0px 0px 0px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u10262_text {
  6370. border-width:0px;
  6371. white-space:nowrap;
  6372. text-transform:none;
  6373. }
  6374. #u10263_div {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:65px;
  6380. height:22px;
  6381. background:inherit;
  6382. background-color:rgba(255, 255, 255, 0);
  6383. border:none;
  6384. border-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:16px;
  6392. }
  6393. #u10263 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:147px;
  6397. top:465px;
  6398. width:65px;
  6399. height:22px;
  6400. display:flex;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:16px;
  6405. }
  6406. #u10263 .text {
  6407. position:absolute;
  6408. align-self:flex-start;
  6409. padding:0px 0px 0px 0px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u10263_text {
  6414. border-width:0px;
  6415. white-space:nowrap;
  6416. text-transform:none;
  6417. }
  6418. #u10264_div {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:49px;
  6424. height:22px;
  6425. background:inherit;
  6426. background-color:rgba(255, 255, 255, 0);
  6427. border:none;
  6428. border-radius:0px;
  6429. -moz-box-shadow:none;
  6430. -webkit-box-shadow:none;
  6431. box-shadow:none;
  6432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6433. font-weight:400;
  6434. font-style:normal;
  6435. font-size:16px;
  6436. }
  6437. #u10264 {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:147px;
  6441. top:507px;
  6442. width:49px;
  6443. height:22px;
  6444. display:flex;
  6445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6446. font-weight:400;
  6447. font-style:normal;
  6448. font-size:16px;
  6449. }
  6450. #u10264 .text {
  6451. position:absolute;
  6452. align-self:flex-start;
  6453. padding:0px 0px 0px 0px;
  6454. box-sizing:border-box;
  6455. width:100%;
  6456. }
  6457. #u10264_text {
  6458. border-width:0px;
  6459. white-space:nowrap;
  6460. text-transform:none;
  6461. }
  6462. #u10265_div {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:81px;
  6468. height:22px;
  6469. background:inherit;
  6470. background-color:rgba(255, 255, 255, 0);
  6471. border:none;
  6472. border-radius:0px;
  6473. -moz-box-shadow:none;
  6474. -webkit-box-shadow:none;
  6475. box-shadow:none;
  6476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:16px;
  6480. }
  6481. #u10265 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:147px;
  6485. top:549px;
  6486. width:81px;
  6487. height:22px;
  6488. display:flex;
  6489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6490. font-weight:400;
  6491. font-style:normal;
  6492. font-size:16px;
  6493. }
  6494. #u10265 .text {
  6495. position:absolute;
  6496. align-self:flex-start;
  6497. padding:0px 0px 0px 0px;
  6498. box-sizing:border-box;
  6499. width:100%;
  6500. }
  6501. #u10265_text {
  6502. border-width:0px;
  6503. white-space:nowrap;
  6504. text-transform:none;
  6505. }
  6506. #u10266_div {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:81px;
  6512. height:22px;
  6513. background:inherit;
  6514. background-color:rgba(255, 255, 255, 0);
  6515. border:none;
  6516. border-radius:0px;
  6517. -moz-box-shadow:none;
  6518. -webkit-box-shadow:none;
  6519. box-shadow:none;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:16px;
  6524. }
  6525. #u10266 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:147px;
  6529. top:591px;
  6530. width:81px;
  6531. height:22px;
  6532. display:flex;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:16px;
  6537. }
  6538. #u10266 .text {
  6539. position:absolute;
  6540. align-self:flex-start;
  6541. padding:0px 0px 0px 0px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u10266_text {
  6546. border-width:0px;
  6547. white-space:nowrap;
  6548. text-transform:none;
  6549. }
  6550. #u10267_div {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:0px;
  6554. top:0px;
  6555. width:65px;
  6556. height:22px;
  6557. background:inherit;
  6558. background-color:rgba(255, 255, 255, 0);
  6559. border:none;
  6560. border-radius:0px;
  6561. -moz-box-shadow:none;
  6562. -webkit-box-shadow:none;
  6563. box-shadow:none;
  6564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6565. font-weight:400;
  6566. font-style:normal;
  6567. font-size:16px;
  6568. }
  6569. #u10267 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:147px;
  6573. top:316px;
  6574. width:65px;
  6575. height:22px;
  6576. display:flex;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:16px;
  6581. }
  6582. #u10267 .text {
  6583. position:absolute;
  6584. align-self:flex-start;
  6585. padding:0px 0px 0px 0px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u10267_text {
  6590. border-width:0px;
  6591. white-space:nowrap;
  6592. text-transform:none;
  6593. }
  6594. #u10268_div {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:55px;
  6600. height:50px;
  6601. background:inherit;
  6602. background-color:rgba(255, 255, 255, 0);
  6603. border:none;
  6604. border-left:0px;
  6605. border-top:0px;
  6606. border-right:0px;
  6607. border-radius:0px;
  6608. border-bottom-right-radius:0px;
  6609. border-bottom-left-radius:0px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6614. font-weight:500;
  6615. font-style:normal;
  6616. font-size:18px;
  6617. color:#298FFF;
  6618. }
  6619. #u10268 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:358px;
  6623. top:100px;
  6624. width:55px;
  6625. height:50px;
  6626. display:flex;
  6627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6628. font-weight:500;
  6629. font-style:normal;
  6630. font-size:18px;
  6631. color:#298FFF;
  6632. }
  6633. #u10268 .text {
  6634. position:absolute;
  6635. align-self:center;
  6636. padding:0px 0px 0px 0px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u10268_text {
  6641. border-width:0px;
  6642. white-space:nowrap;
  6643. text-transform:none;
  6644. }
  6645. #u10269_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:55px;
  6651. height:50px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 0);
  6654. border:none;
  6655. border-left:0px;
  6656. border-top:0px;
  6657. border-right:0px;
  6658. border-radius:0px;
  6659. border-bottom-right-radius:0px;
  6660. border-bottom-left-radius:0px;
  6661. -moz-box-shadow:none;
  6662. -webkit-box-shadow:none;
  6663. box-shadow:none;
  6664. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6665. font-weight:500;
  6666. font-style:normal;
  6667. font-size:18px;
  6668. }
  6669. #u10269 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:443px;
  6673. top:100px;
  6674. width:55px;
  6675. height:50px;
  6676. display:flex;
  6677. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6678. font-weight:500;
  6679. font-style:normal;
  6680. font-size:18px;
  6681. }
  6682. #u10269 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:0px 0px 0px 0px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u10269_text {
  6690. border-width:0px;
  6691. white-space:nowrap;
  6692. text-transform:none;
  6693. }
  6694. #u10270_div {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:1260px;
  6700. height:1082px;
  6701. background:inherit;
  6702. background-color:rgba(255, 255, 255, 1);
  6703. border:none;
  6704. border-radius:0px;
  6705. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6706. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6707. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6708. color:#1890FF;
  6709. }
  6710. #u10270 {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:1650px;
  6714. top:160px;
  6715. width:1260px;
  6716. height:1082px;
  6717. display:flex;
  6718. color:#1890FF;
  6719. }
  6720. #u10270 .text {
  6721. position:absolute;
  6722. align-self:center;
  6723. padding:2px 2px 2px 2px;
  6724. box-sizing:border-box;
  6725. width:100%;
  6726. }
  6727. #u10270_text {
  6728. border-width:0px;
  6729. word-wrap:break-word;
  6730. text-transform:none;
  6731. visibility:hidden;
  6732. }
  6733. #u10271_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:1260px;
  6739. height:100px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 1);
  6742. border:none;
  6743. border-radius:0px;
  6744. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6745. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6746. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6747. color:#1890FF;
  6748. }
  6749. #u10271 {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:1650px;
  6753. top:50px;
  6754. width:1260px;
  6755. height:100px;
  6756. display:flex;
  6757. color:#1890FF;
  6758. }
  6759. #u10271 .text {
  6760. position:absolute;
  6761. align-self:center;
  6762. padding:2px 2px 2px 2px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u10271_text {
  6767. border-width:0px;
  6768. word-wrap:break-word;
  6769. text-transform:none;
  6770. visibility:hidden;
  6771. }
  6772. #u10272_div {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:73px;
  6778. height:50px;
  6779. background:inherit;
  6780. background-color:rgba(255, 255, 255, 0);
  6781. border:none;
  6782. border-left:0px;
  6783. border-top:0px;
  6784. border-right:0px;
  6785. border-radius:0px;
  6786. border-bottom-right-radius:0px;
  6787. border-bottom-left-radius:0px;
  6788. -moz-box-shadow:none;
  6789. -webkit-box-shadow:none;
  6790. box-shadow:none;
  6791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6792. font-weight:500;
  6793. font-style:normal;
  6794. font-size:18px;
  6795. }
  6796. #u10272 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:1669px;
  6800. top:50px;
  6801. width:73px;
  6802. height:50px;
  6803. display:flex;
  6804. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6805. font-weight:500;
  6806. font-style:normal;
  6807. font-size:18px;
  6808. }
  6809. #u10272 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:0px 0px 0px 0px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u10272_text {
  6817. border-width:0px;
  6818. white-space:nowrap;
  6819. text-transform:none;
  6820. }
  6821. #u10273_div {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:59px;
  6827. height:30px;
  6828. background:inherit;
  6829. background-color:rgba(41, 143, 255, 1);
  6830. border:none;
  6831. border-radius:4px;
  6832. -moz-box-shadow:none;
  6833. -webkit-box-shadow:none;
  6834. box-shadow:none;
  6835. font-family:'Microsoft YaHei', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:14px;
  6839. color:#FFFFFF;
  6840. }
  6841. #u10273 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:1969px;
  6845. top:180px;
  6846. width:59px;
  6847. height:30px;
  6848. display:flex;
  6849. font-family:'Microsoft YaHei', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:14px;
  6853. color:#FFFFFF;
  6854. }
  6855. #u10273 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:5px 15px 5px 15px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u10273_text {
  6863. border-width:0px;
  6864. white-space:nowrap;
  6865. text-transform:none;
  6866. }
  6867. #u10274_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:55px;
  6873. height:30px;
  6874. background:inherit;
  6875. background-color:rgba(255, 255, 255, 1);
  6876. box-sizing:border-box;
  6877. border-width:1px;
  6878. border-style:solid;
  6879. border-color:rgba(170, 170, 170, 1);
  6880. border-radius:4px;
  6881. -moz-box-shadow:none;
  6882. -webkit-box-shadow:none;
  6883. box-shadow:none;
  6884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6885. font-weight:400;
  6886. font-style:normal;
  6887. font-size:12px;
  6888. color:#555555;
  6889. }
  6890. #u10274 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:2038px;
  6894. top:180px;
  6895. width:55px;
  6896. height:30px;
  6897. display:flex;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:12px;
  6902. color:#555555;
  6903. }
  6904. #u10274 .text {
  6905. position:absolute;
  6906. align-self:center;
  6907. padding:5px 15px 5px 15px;
  6908. box-sizing:border-box;
  6909. width:100%;
  6910. }
  6911. #u10274_text {
  6912. border-width:0px;
  6913. white-space:nowrap;
  6914. text-transform:none;
  6915. }
  6916. #u10275 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:0px;
  6920. top:0px;
  6921. width:0px;
  6922. height:0px;
  6923. }
  6924. #u10276_div {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:140px;
  6930. height:30px;
  6931. background:inherit;
  6932. background-color:rgba(255, 255, 255, 1);
  6933. box-sizing:border-box;
  6934. border-width:1px;
  6935. border-style:solid;
  6936. border-color:rgba(201, 201, 201, 1);
  6937. border-radius:4px;
  6938. -moz-box-shadow:none;
  6939. -webkit-box-shadow:none;
  6940. box-shadow:none;
  6941. font-family:'Microsoft YaHei', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:14px;
  6945. color:#CCCCCC;
  6946. text-align:left;
  6947. }
  6948. #u10276 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:1819px;
  6952. top:180px;
  6953. width:140px;
  6954. height:30px;
  6955. display:flex;
  6956. font-family:'Microsoft YaHei', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. color:#CCCCCC;
  6961. text-align:left;
  6962. }
  6963. #u10276 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:2px 8px 2px 8px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u10276_text {
  6971. border-width:0px;
  6972. word-wrap:break-word;
  6973. text-transform:none;
  6974. visibility:hidden;
  6975. }
  6976. #u10277_input {
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:127px;
  6981. height:25px;
  6982. padding:2px 2px 2px 2px;
  6983. font-family:'Microsoft YaHei', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:10px;
  6987. letter-spacing:normal;
  6988. color:#000000;
  6989. vertical-align:none;
  6990. text-align:left;
  6991. text-transform:none;
  6992. background-color:transparent;
  6993. border-color:transparent;
  6994. }
  6995. #u10277_input.disabled {
  6996. position:absolute;
  6997. left:0px;
  6998. top:0px;
  6999. width:127px;
  7000. height:25px;
  7001. padding:2px 2px 2px 2px;
  7002. font-family:'Microsoft YaHei', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:10px;
  7006. letter-spacing:normal;
  7007. color:#000000;
  7008. vertical-align:none;
  7009. text-align:left;
  7010. text-transform:none;
  7011. background-color:transparent;
  7012. border-color:transparent;
  7013. }
  7014. #u10277_div {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:127px;
  7020. height:25px;
  7021. background:inherit;
  7022. background-color:rgba(255, 255, 255, 1);
  7023. border:none;
  7024. border-radius:0px;
  7025. -moz-box-shadow:none;
  7026. -webkit-box-shadow:none;
  7027. box-shadow:none;
  7028. font-family:'Microsoft YaHei', sans-serif;
  7029. font-weight:400;
  7030. font-style:normal;
  7031. font-size:10px;
  7032. }
  7033. #u10277 {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:1827px;
  7037. top:181px;
  7038. width:127px;
  7039. height:25px;
  7040. display:flex;
  7041. font-family:'Microsoft YaHei', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:10px;
  7045. }
  7046. #u10277 .text {
  7047. position:absolute;
  7048. align-self:center;
  7049. padding:2px 2px 2px 2px;
  7050. box-sizing:border-box;
  7051. width:100%;
  7052. }
  7053. #u10277_div.disabled {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:127px;
  7059. height:25px;
  7060. background:inherit;
  7061. background-color:rgba(240, 240, 240, 1);
  7062. border:none;
  7063. border-radius:0px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'Microsoft YaHei', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:10px;
  7071. }
  7072. #u10277.disabled {
  7073. }
  7074. #u10278 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:0px;
  7080. height:0px;
  7081. }
  7082. #u10279_div {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:140px;
  7088. height:30px;
  7089. background:inherit;
  7090. background-color:rgba(255, 255, 255, 1);
  7091. box-sizing:border-box;
  7092. border-width:1px;
  7093. border-style:solid;
  7094. border-color:rgba(215, 215, 215, 1);
  7095. border-radius:4px;
  7096. -moz-box-shadow:none;
  7097. -webkit-box-shadow:none;
  7098. box-shadow:none;
  7099. font-size:11px;
  7100. }
  7101. #u10279 {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:1669px;
  7105. top:180px;
  7106. width:140px;
  7107. height:30px;
  7108. display:flex;
  7109. font-size:11px;
  7110. }
  7111. #u10279 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u10279_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u10280_input {
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:120px;
  7129. height:23px;
  7130. padding:2px 2px 2px 2px;
  7131. font-family:'ArialMT', 'Arial', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:11px;
  7135. letter-spacing:normal;
  7136. color:#AAAAAA;
  7137. vertical-align:none;
  7138. text-align:left;
  7139. text-transform:none;
  7140. background-color:transparent;
  7141. border-color:transparent;
  7142. }
  7143. #u10280_input.disabled {
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:120px;
  7148. height:23px;
  7149. padding:2px 2px 2px 2px;
  7150. font-family:'ArialMT', 'Arial', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:11px;
  7154. letter-spacing:normal;
  7155. color:#AAAAAA;
  7156. vertical-align:none;
  7157. text-align:left;
  7158. text-transform:none;
  7159. background-color:transparent;
  7160. border-color:transparent;
  7161. }
  7162. #u10280_div {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:120px;
  7168. height:23px;
  7169. background:inherit;
  7170. background-color:rgba(255, 255, 255, 1);
  7171. border:none;
  7172. border-radius:0px;
  7173. -moz-box-shadow:none;
  7174. -webkit-box-shadow:none;
  7175. box-shadow:none;
  7176. font-size:11px;
  7177. color:#AAAAAA;
  7178. }
  7179. #u10280 {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:1676px;
  7183. top:182px;
  7184. width:120px;
  7185. height:23px;
  7186. display:flex;
  7187. font-size:11px;
  7188. color:#AAAAAA;
  7189. }
  7190. #u10280 .text {
  7191. position:absolute;
  7192. align-self:flex-start;
  7193. padding:2px 2px 2px 2px;
  7194. box-sizing:border-box;
  7195. width:100%;
  7196. }
  7197. #u10280_div.disabled {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:0px;
  7201. top:0px;
  7202. width:120px;
  7203. height:23px;
  7204. background:inherit;
  7205. background-color:rgba(240, 240, 240, 1);
  7206. border:none;
  7207. border-radius:0px;
  7208. -moz-box-shadow:none;
  7209. -webkit-box-shadow:none;
  7210. box-shadow:none;
  7211. font-size:11px;
  7212. color:#AAAAAA;
  7213. }
  7214. #u10280.disabled {
  7215. }
  7216. .u10280_input_option {
  7217. font-size:11px;
  7218. }
  7219. #u10281_div {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:55px;
  7225. height:50px;
  7226. background:inherit;
  7227. background-color:rgba(255, 255, 255, 0);
  7228. border:none;
  7229. border-left:0px;
  7230. border-top:0px;
  7231. border-right:0px;
  7232. border-radius:0px;
  7233. border-bottom-right-radius:0px;
  7234. border-bottom-left-radius:0px;
  7235. -moz-box-shadow:none;
  7236. -webkit-box-shadow:none;
  7237. box-shadow:none;
  7238. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7239. font-weight:500;
  7240. font-style:normal;
  7241. font-size:18px;
  7242. }
  7243. #u10281 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:1676px;
  7247. top:100px;
  7248. width:55px;
  7249. height:50px;
  7250. display:flex;
  7251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7252. font-weight:500;
  7253. font-style:normal;
  7254. font-size:18px;
  7255. }
  7256. #u10281 .text {
  7257. position:absolute;
  7258. align-self:center;
  7259. padding:0px 0px 0px 0px;
  7260. box-sizing:border-box;
  7261. width:100%;
  7262. }
  7263. #u10281_text {
  7264. border-width:0px;
  7265. white-space:nowrap;
  7266. text-transform:none;
  7267. }
  7268. #u10282_div {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:0px;
  7273. width:55px;
  7274. height:50px;
  7275. background:inherit;
  7276. background-color:rgba(255, 255, 255, 0);
  7277. border:none;
  7278. border-left:0px;
  7279. border-top:0px;
  7280. border-right:0px;
  7281. border-radius:0px;
  7282. border-bottom-right-radius:0px;
  7283. border-bottom-left-radius:0px;
  7284. -moz-box-shadow:none;
  7285. -webkit-box-shadow:none;
  7286. box-shadow:none;
  7287. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7288. font-weight:500;
  7289. font-style:normal;
  7290. font-size:18px;
  7291. color:#298FFF;
  7292. }
  7293. #u10282 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:1761px;
  7297. top:100px;
  7298. width:55px;
  7299. height:50px;
  7300. display:flex;
  7301. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7302. font-weight:500;
  7303. font-style:normal;
  7304. font-size:18px;
  7305. color:#298FFF;
  7306. }
  7307. #u10282 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:0px 0px 0px 0px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u10282_text {
  7315. border-width:0px;
  7316. white-space:nowrap;
  7317. text-transform:none;
  7318. }
  7319. #u10283 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:1669px;
  7323. top:230px;
  7324. width:1332px;
  7325. height:364px;
  7326. }
  7327. #u10284_img {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:80px;
  7333. height:39px;
  7334. }
  7335. #u10284 {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:80px;
  7341. height:39px;
  7342. display:flex;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:12px;
  7347. color:#FFFFFF;
  7348. }
  7349. #u10284 .text {
  7350. position:absolute;
  7351. align-self:center;
  7352. padding:2px 2px 2px 0px;
  7353. box-sizing:border-box;
  7354. width:100%;
  7355. }
  7356. #u10284_text {
  7357. border-width:0px;
  7358. word-wrap:break-word;
  7359. text-transform:none;
  7360. }
  7361. #u10285_img {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:80px;
  7367. height:39px;
  7368. }
  7369. #u10285 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:80px;
  7373. top:0px;
  7374. width:80px;
  7375. height:39px;
  7376. display:flex;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:12px;
  7381. color:#FFFFFF;
  7382. }
  7383. #u10285 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:2px 2px 2px 0px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u10285_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. }
  7395. #u10286_img {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:80px;
  7401. height:39px;
  7402. }
  7403. #u10286 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:160px;
  7407. top:0px;
  7408. width:80px;
  7409. height:39px;
  7410. display:flex;
  7411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. font-size:12px;
  7415. color:#FFFFFF;
  7416. }
  7417. #u10286 .text {
  7418. position:absolute;
  7419. align-self:center;
  7420. padding:2px 2px 2px 0px;
  7421. box-sizing:border-box;
  7422. width:100%;
  7423. }
  7424. #u10286_text {
  7425. border-width:0px;
  7426. word-wrap:break-word;
  7427. text-transform:none;
  7428. }
  7429. #u10287_img {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:80px;
  7435. height:39px;
  7436. }
  7437. #u10287 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:240px;
  7441. top:0px;
  7442. width:80px;
  7443. height:39px;
  7444. display:flex;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:12px;
  7449. color:#FFFFFF;
  7450. }
  7451. #u10287 .text {
  7452. position:absolute;
  7453. align-self:center;
  7454. padding:2px 2px 2px 0px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u10287_text {
  7459. border-width:0px;
  7460. word-wrap:break-word;
  7461. text-transform:none;
  7462. }
  7463. #u10288_img {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:80px;
  7469. height:39px;
  7470. }
  7471. #u10288 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:320px;
  7475. top:0px;
  7476. width:80px;
  7477. height:39px;
  7478. display:flex;
  7479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7480. font-weight:400;
  7481. font-style:normal;
  7482. font-size:12px;
  7483. color:#FFFFFF;
  7484. }
  7485. #u10288 .text {
  7486. position:absolute;
  7487. align-self:center;
  7488. padding:2px 2px 2px 0px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u10288_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. }
  7497. #u10289_img {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:80px;
  7503. height:39px;
  7504. }
  7505. #u10289 {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:400px;
  7509. top:0px;
  7510. width:80px;
  7511. height:39px;
  7512. display:flex;
  7513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7514. font-weight:400;
  7515. font-style:normal;
  7516. font-size:12px;
  7517. color:#FFFFFF;
  7518. }
  7519. #u10289 .text {
  7520. position:absolute;
  7521. align-self:center;
  7522. padding:2px 2px 2px 0px;
  7523. box-sizing:border-box;
  7524. width:100%;
  7525. }
  7526. #u10289_text {
  7527. border-width:0px;
  7528. word-wrap:break-word;
  7529. text-transform:none;
  7530. }
  7531. #u10290_img {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:80px;
  7537. height:39px;
  7538. }
  7539. #u10290 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:480px;
  7543. top:0px;
  7544. width:80px;
  7545. height:39px;
  7546. display:flex;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:12px;
  7551. color:#FFFFFF;
  7552. }
  7553. #u10290 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 0px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u10290_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. }
  7565. #u10291_img {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:102px;
  7571. height:39px;
  7572. }
  7573. #u10291 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:560px;
  7577. top:0px;
  7578. width:102px;
  7579. height:39px;
  7580. display:flex;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:12px;
  7585. color:#FFFFFF;
  7586. }
  7587. #u10291 .text {
  7588. position:absolute;
  7589. align-self:center;
  7590. padding:2px 2px 2px 0px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u10291_text {
  7595. border-width:0px;
  7596. word-wrap:break-word;
  7597. text-transform:none;
  7598. }
  7599. #u10292_img {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:90px;
  7605. height:39px;
  7606. }
  7607. #u10292 {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:662px;
  7611. top:0px;
  7612. width:90px;
  7613. height:39px;
  7614. display:flex;
  7615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:12px;
  7619. color:#FFFFFF;
  7620. }
  7621. #u10292 .text {
  7622. position:absolute;
  7623. align-self:center;
  7624. padding:2px 2px 2px 0px;
  7625. box-sizing:border-box;
  7626. width:100%;
  7627. }
  7628. #u10292_text {
  7629. border-width:0px;
  7630. word-wrap:break-word;
  7631. text-transform:none;
  7632. }
  7633. #u10293_img {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:0px;
  7637. top:0px;
  7638. width:80px;
  7639. height:39px;
  7640. }
  7641. #u10293 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:752px;
  7645. top:0px;
  7646. width:80px;
  7647. height:39px;
  7648. display:flex;
  7649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:12px;
  7653. color:#FFFFFF;
  7654. }
  7655. #u10293 .text {
  7656. position:absolute;
  7657. align-self:center;
  7658. padding:2px 2px 2px 0px;
  7659. box-sizing:border-box;
  7660. width:100%;
  7661. }
  7662. #u10293_text {
  7663. border-width:0px;
  7664. word-wrap:break-word;
  7665. text-transform:none;
  7666. }
  7667. #u10294_img {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:80px;
  7673. height:39px;
  7674. }
  7675. #u10294 {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:832px;
  7679. top:0px;
  7680. width:80px;
  7681. height:39px;
  7682. display:flex;
  7683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7684. font-weight:400;
  7685. font-style:normal;
  7686. font-size:12px;
  7687. color:#FFFFFF;
  7688. }
  7689. #u10294 .text {
  7690. position:absolute;
  7691. align-self:center;
  7692. padding:2px 2px 2px 0px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u10294_text {
  7697. border-width:0px;
  7698. word-wrap:break-word;
  7699. text-transform:none;
  7700. }
  7701. #u10295_img {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:80px;
  7707. height:39px;
  7708. }
  7709. #u10295 {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:912px;
  7713. top:0px;
  7714. width:80px;
  7715. height:39px;
  7716. display:flex;
  7717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7718. font-weight:400;
  7719. font-style:normal;
  7720. font-size:12px;
  7721. color:#FFFFFF;
  7722. }
  7723. #u10295 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 0px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u10295_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. }
  7735. #u10296_img {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:0px;
  7739. top:0px;
  7740. width:80px;
  7741. height:39px;
  7742. }
  7743. #u10296 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:992px;
  7747. top:0px;
  7748. width:80px;
  7749. height:39px;
  7750. display:flex;
  7751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:12px;
  7755. color:#FFFFFF;
  7756. }
  7757. #u10296 .text {
  7758. position:absolute;
  7759. align-self:center;
  7760. padding:2px 2px 2px 0px;
  7761. box-sizing:border-box;
  7762. width:100%;
  7763. }
  7764. #u10296_text {
  7765. border-width:0px;
  7766. word-wrap:break-word;
  7767. text-transform:none;
  7768. }
  7769. #u10297_img {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:80px;
  7775. height:39px;
  7776. }
  7777. #u10297 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:1072px;
  7781. top:0px;
  7782. width:80px;
  7783. height:39px;
  7784. display:flex;
  7785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:12px;
  7789. color:#FFFFFF;
  7790. }
  7791. #u10297 .text {
  7792. position:absolute;
  7793. align-self:center;
  7794. padding:2px 2px 2px 0px;
  7795. box-sizing:border-box;
  7796. width:100%;
  7797. }
  7798. #u10297_text {
  7799. border-width:0px;
  7800. word-wrap:break-word;
  7801. text-transform:none;
  7802. }
  7803. #u10298_img {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:180px;
  7809. height:39px;
  7810. }
  7811. #u10298 {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:1152px;
  7815. top:0px;
  7816. width:180px;
  7817. height:39px;
  7818. display:flex;
  7819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7820. font-weight:400;
  7821. font-style:normal;
  7822. font-size:12px;
  7823. color:#FFFFFF;
  7824. }
  7825. #u10298 .text {
  7826. position:absolute;
  7827. align-self:center;
  7828. padding:2px 2px 2px 0px;
  7829. box-sizing:border-box;
  7830. width:100%;
  7831. }
  7832. #u10298_text {
  7833. border-width:0px;
  7834. word-wrap:break-word;
  7835. text-transform:none;
  7836. }
  7837. #u10299_img {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:80px;
  7843. height:38px;
  7844. }
  7845. #u10299 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:39px;
  7850. width:80px;
  7851. height:38px;
  7852. display:flex;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:12px;
  7857. }
  7858. #u10299 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:2px 2px 2px 0px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u10299_text {
  7866. border-width:0px;
  7867. word-wrap:break-word;
  7868. text-transform:none;
  7869. visibility:hidden;
  7870. }
  7871. #u10300_img {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:0px;
  7875. top:0px;
  7876. width:80px;
  7877. height:38px;
  7878. }
  7879. #u10300 {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:80px;
  7883. top:39px;
  7884. width:80px;
  7885. height:38px;
  7886. display:flex;
  7887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7888. font-weight:400;
  7889. font-style:normal;
  7890. font-size:12px;
  7891. }
  7892. #u10300 .text {
  7893. position:absolute;
  7894. align-self:center;
  7895. padding:2px 2px 2px 0px;
  7896. box-sizing:border-box;
  7897. width:100%;
  7898. }
  7899. #u10300_text {
  7900. border-width:0px;
  7901. word-wrap:break-word;
  7902. text-transform:none;
  7903. visibility:hidden;
  7904. }
  7905. #u10301_img {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:80px;
  7911. height:38px;
  7912. }
  7913. #u10301 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:160px;
  7917. top:39px;
  7918. width:80px;
  7919. height:38px;
  7920. display:flex;
  7921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7922. font-weight:400;
  7923. font-style:normal;
  7924. font-size:12px;
  7925. }
  7926. #u10301 .text {
  7927. position:absolute;
  7928. align-self:center;
  7929. padding:2px 2px 2px 0px;
  7930. box-sizing:border-box;
  7931. width:100%;
  7932. }
  7933. #u10301_text {
  7934. border-width:0px;
  7935. word-wrap:break-word;
  7936. text-transform:none;
  7937. visibility:hidden;
  7938. }
  7939. #u10302_img {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:80px;
  7945. height:38px;
  7946. }
  7947. #u10302 {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:240px;
  7951. top:39px;
  7952. width:80px;
  7953. height:38px;
  7954. display:flex;
  7955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:12px;
  7959. }
  7960. #u10302 .text {
  7961. position:absolute;
  7962. align-self:center;
  7963. padding:2px 2px 2px 0px;
  7964. box-sizing:border-box;
  7965. width:100%;
  7966. }
  7967. #u10302_text {
  7968. border-width:0px;
  7969. word-wrap:break-word;
  7970. text-transform:none;
  7971. }
  7972. #u10303_img {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:0px;
  7976. top:0px;
  7977. width:80px;
  7978. height:38px;
  7979. }
  7980. #u10303 {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:320px;
  7984. top:39px;
  7985. width:80px;
  7986. height:38px;
  7987. display:flex;
  7988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7989. font-weight:400;
  7990. font-style:normal;
  7991. font-size:12px;
  7992. }
  7993. #u10303 .text {
  7994. position:absolute;
  7995. align-self:center;
  7996. padding:2px 2px 2px 0px;
  7997. box-sizing:border-box;
  7998. width:100%;
  7999. }
  8000. #u10303_text {
  8001. border-width:0px;
  8002. word-wrap:break-word;
  8003. text-transform:none;
  8004. visibility:hidden;
  8005. }
  8006. #u10304_img {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:80px;
  8012. height:38px;
  8013. }
  8014. #u10304 {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:400px;
  8018. top:39px;
  8019. width:80px;
  8020. height:38px;
  8021. display:flex;
  8022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8023. font-weight:400;
  8024. font-style:normal;
  8025. font-size:12px;
  8026. }
  8027. #u10304 .text {
  8028. position:absolute;
  8029. align-self:center;
  8030. padding:2px 2px 2px 0px;
  8031. box-sizing:border-box;
  8032. width:100%;
  8033. }
  8034. #u10304_text {
  8035. border-width:0px;
  8036. word-wrap:break-word;
  8037. text-transform:none;
  8038. visibility:hidden;
  8039. }
  8040. #u10305_img {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:80px;
  8046. height:38px;
  8047. }
  8048. #u10305 {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:480px;
  8052. top:39px;
  8053. width:80px;
  8054. height:38px;
  8055. display:flex;
  8056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8057. font-weight:400;
  8058. font-style:normal;
  8059. font-size:12px;
  8060. }
  8061. #u10305 .text {
  8062. position:absolute;
  8063. align-self:center;
  8064. padding:2px 2px 2px 0px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u10305_text {
  8069. border-width:0px;
  8070. word-wrap:break-word;
  8071. text-transform:none;
  8072. visibility:hidden;
  8073. }
  8074. #u10306_img {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:0px;
  8078. top:0px;
  8079. width:102px;
  8080. height:38px;
  8081. }
  8082. #u10306 {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:560px;
  8086. top:39px;
  8087. width:102px;
  8088. height:38px;
  8089. display:flex;
  8090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:12px;
  8094. }
  8095. #u10306 .text {
  8096. position:absolute;
  8097. align-self:center;
  8098. padding:2px 2px 2px 0px;
  8099. box-sizing:border-box;
  8100. width:100%;
  8101. }
  8102. #u10306_text {
  8103. border-width:0px;
  8104. word-wrap:break-word;
  8105. text-transform:none;
  8106. }
  8107. #u10307_img {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:0px;
  8111. top:0px;
  8112. width:90px;
  8113. height:38px;
  8114. }
  8115. #u10307 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:662px;
  8119. top:39px;
  8120. width:90px;
  8121. height:38px;
  8122. display:flex;
  8123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8124. font-weight:400;
  8125. font-style:normal;
  8126. font-size:12px;
  8127. color:#333333;
  8128. }
  8129. #u10307 .text {
  8130. position:absolute;
  8131. align-self:center;
  8132. padding:2px 2px 2px 0px;
  8133. box-sizing:border-box;
  8134. width:100%;
  8135. }
  8136. #u10307_text {
  8137. border-width:0px;
  8138. word-wrap:break-word;
  8139. text-transform:none;
  8140. }
  8141. #u10308_img {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:80px;
  8147. height:38px;
  8148. }
  8149. #u10308 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:752px;
  8153. top:39px;
  8154. width:80px;
  8155. height:38px;
  8156. display:flex;
  8157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. font-size:12px;
  8161. color:#AAAAAA;
  8162. }
  8163. #u10308 .text {
  8164. position:absolute;
  8165. align-self:center;
  8166. padding:2px 2px 2px 0px;
  8167. box-sizing:border-box;
  8168. width:100%;
  8169. }
  8170. #u10308_text {
  8171. border-width:0px;
  8172. word-wrap:break-word;
  8173. text-transform:none;
  8174. }
  8175. #u10309_img {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:0px;
  8179. top:0px;
  8180. width:80px;
  8181. height:38px;
  8182. }
  8183. #u10309 {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:832px;
  8187. top:39px;
  8188. width:80px;
  8189. height:38px;
  8190. display:flex;
  8191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:12px;
  8195. color:#333333;
  8196. }
  8197. #u10309 .text {
  8198. position:absolute;
  8199. align-self:center;
  8200. padding:2px 2px 2px 0px;
  8201. box-sizing:border-box;
  8202. width:100%;
  8203. }
  8204. #u10309_text {
  8205. border-width:0px;
  8206. word-wrap:break-word;
  8207. text-transform:none;
  8208. }
  8209. #u10310_img {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:0px;
  8213. top:0px;
  8214. width:80px;
  8215. height:38px;
  8216. }
  8217. #u10310 {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:912px;
  8221. top:39px;
  8222. width:80px;
  8223. height:38px;
  8224. display:flex;
  8225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8226. font-weight:400;
  8227. font-style:normal;
  8228. font-size:12px;
  8229. color:#333333;
  8230. }
  8231. #u10310 .text {
  8232. position:absolute;
  8233. align-self:center;
  8234. padding:2px 2px 2px 0px;
  8235. box-sizing:border-box;
  8236. width:100%;
  8237. }
  8238. #u10310_text {
  8239. border-width:0px;
  8240. word-wrap:break-word;
  8241. text-transform:none;
  8242. }
  8243. #u10311_img {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:80px;
  8249. height:38px;
  8250. }
  8251. #u10311 {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:992px;
  8255. top:39px;
  8256. width:80px;
  8257. height:38px;
  8258. display:flex;
  8259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8260. font-weight:400;
  8261. font-style:normal;
  8262. font-size:12px;
  8263. color:#AAAAAA;
  8264. }
  8265. #u10311 .text {
  8266. position:absolute;
  8267. align-self:center;
  8268. padding:2px 2px 2px 0px;
  8269. box-sizing:border-box;
  8270. width:100%;
  8271. }
  8272. #u10311_text {
  8273. border-width:0px;
  8274. word-wrap:break-word;
  8275. text-transform:none;
  8276. }
  8277. #u10312_img {
  8278. border-width:0px;
  8279. position:absolute;
  8280. left:0px;
  8281. top:0px;
  8282. width:80px;
  8283. height:38px;
  8284. }
  8285. #u10312 {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:1072px;
  8289. top:39px;
  8290. width:80px;
  8291. height:38px;
  8292. display:flex;
  8293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8294. font-weight:400;
  8295. font-style:normal;
  8296. font-size:12px;
  8297. color:#AAAAAA;
  8298. }
  8299. #u10312 .text {
  8300. position:absolute;
  8301. align-self:center;
  8302. padding:2px 2px 2px 0px;
  8303. box-sizing:border-box;
  8304. width:100%;
  8305. }
  8306. #u10312_text {
  8307. border-width:0px;
  8308. word-wrap:break-word;
  8309. text-transform:none;
  8310. }
  8311. #u10313_img {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:180px;
  8317. height:38px;
  8318. }
  8319. #u10313 {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:1152px;
  8323. top:39px;
  8324. width:180px;
  8325. height:38px;
  8326. display:flex;
  8327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8328. font-weight:400;
  8329. font-style:normal;
  8330. font-size:12px;
  8331. color:#1890FF;
  8332. }
  8333. #u10313 .text {
  8334. position:absolute;
  8335. align-self:center;
  8336. padding:2px 2px 2px 0px;
  8337. box-sizing:border-box;
  8338. width:100%;
  8339. }
  8340. #u10313_text {
  8341. border-width:0px;
  8342. word-wrap:break-word;
  8343. text-transform:none;
  8344. }
  8345. #u10314_img {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:80px;
  8351. height:38px;
  8352. }
  8353. #u10314 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:0px;
  8357. top:77px;
  8358. width:80px;
  8359. height:38px;
  8360. display:flex;
  8361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8362. font-weight:400;
  8363. font-style:normal;
  8364. font-size:12px;
  8365. }
  8366. #u10314 .text {
  8367. position:absolute;
  8368. align-self:center;
  8369. padding:2px 2px 2px 0px;
  8370. box-sizing:border-box;
  8371. width:100%;
  8372. }
  8373. #u10314_text {
  8374. border-width:0px;
  8375. word-wrap:break-word;
  8376. text-transform:none;
  8377. visibility:hidden;
  8378. }
  8379. #u10315_img {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:0px;
  8383. top:0px;
  8384. width:80px;
  8385. height:38px;
  8386. }
  8387. #u10315 {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:80px;
  8391. top:77px;
  8392. width:80px;
  8393. height:38px;
  8394. display:flex;
  8395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8396. font-weight:400;
  8397. font-style:normal;
  8398. font-size:12px;
  8399. }
  8400. #u10315 .text {
  8401. position:absolute;
  8402. align-self:center;
  8403. padding:2px 2px 2px 0px;
  8404. box-sizing:border-box;
  8405. width:100%;
  8406. }
  8407. #u10315_text {
  8408. border-width:0px;
  8409. word-wrap:break-word;
  8410. text-transform:none;
  8411. visibility:hidden;
  8412. }
  8413. #u10316_img {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:0px;
  8417. top:0px;
  8418. width:80px;
  8419. height:38px;
  8420. }
  8421. #u10316 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:160px;
  8425. top:77px;
  8426. width:80px;
  8427. height:38px;
  8428. display:flex;
  8429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:12px;
  8433. }
  8434. #u10316 .text {
  8435. position:absolute;
  8436. align-self:center;
  8437. padding:2px 2px 2px 0px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u10316_text {
  8442. border-width:0px;
  8443. word-wrap:break-word;
  8444. text-transform:none;
  8445. visibility:hidden;
  8446. }
  8447. #u10317_img {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:0px;
  8451. top:0px;
  8452. width:80px;
  8453. height:38px;
  8454. }
  8455. #u10317 {
  8456. border-width:0px;
  8457. position:absolute;
  8458. left:240px;
  8459. top:77px;
  8460. width:80px;
  8461. height:38px;
  8462. display:flex;
  8463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8464. font-weight:400;
  8465. font-style:normal;
  8466. font-size:12px;
  8467. }
  8468. #u10317 .text {
  8469. position:absolute;
  8470. align-self:center;
  8471. padding:2px 2px 2px 0px;
  8472. box-sizing:border-box;
  8473. width:100%;
  8474. }
  8475. #u10317_text {
  8476. border-width:0px;
  8477. word-wrap:break-word;
  8478. text-transform:none;
  8479. }
  8480. #u10318_img {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:0px;
  8484. top:0px;
  8485. width:80px;
  8486. height:38px;
  8487. }
  8488. #u10318 {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:320px;
  8492. top:77px;
  8493. width:80px;
  8494. height:38px;
  8495. display:flex;
  8496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8497. font-weight:400;
  8498. font-style:normal;
  8499. font-size:12px;
  8500. }
  8501. #u10318 .text {
  8502. position:absolute;
  8503. align-self:center;
  8504. padding:2px 2px 2px 0px;
  8505. box-sizing:border-box;
  8506. width:100%;
  8507. }
  8508. #u10318_text {
  8509. border-width:0px;
  8510. word-wrap:break-word;
  8511. text-transform:none;
  8512. visibility:hidden;
  8513. }
  8514. #u10319_img {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:80px;
  8520. height:38px;
  8521. }
  8522. #u10319 {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:400px;
  8526. top:77px;
  8527. width:80px;
  8528. height:38px;
  8529. display:flex;
  8530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8531. font-weight:400;
  8532. font-style:normal;
  8533. font-size:12px;
  8534. }
  8535. #u10319 .text {
  8536. position:absolute;
  8537. align-self:center;
  8538. padding:2px 2px 2px 0px;
  8539. box-sizing:border-box;
  8540. width:100%;
  8541. }
  8542. #u10319_text {
  8543. border-width:0px;
  8544. word-wrap:break-word;
  8545. text-transform:none;
  8546. visibility:hidden;
  8547. }
  8548. #u10320_img {
  8549. border-width:0px;
  8550. position:absolute;
  8551. left:0px;
  8552. top:0px;
  8553. width:80px;
  8554. height:38px;
  8555. }
  8556. #u10320 {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:480px;
  8560. top:77px;
  8561. width:80px;
  8562. height:38px;
  8563. display:flex;
  8564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8565. font-weight:400;
  8566. font-style:normal;
  8567. font-size:12px;
  8568. }
  8569. #u10320 .text {
  8570. position:absolute;
  8571. align-self:center;
  8572. padding:2px 2px 2px 0px;
  8573. box-sizing:border-box;
  8574. width:100%;
  8575. }
  8576. #u10320_text {
  8577. border-width:0px;
  8578. word-wrap:break-word;
  8579. text-transform:none;
  8580. visibility:hidden;
  8581. }
  8582. #u10321_img {
  8583. border-width:0px;
  8584. position:absolute;
  8585. left:0px;
  8586. top:0px;
  8587. width:102px;
  8588. height:38px;
  8589. }
  8590. #u10321 {
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:560px;
  8594. top:77px;
  8595. width:102px;
  8596. height:38px;
  8597. display:flex;
  8598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8599. font-weight:400;
  8600. font-style:normal;
  8601. font-size:12px;
  8602. }
  8603. #u10321 .text {
  8604. position:absolute;
  8605. align-self:center;
  8606. padding:2px 2px 2px 0px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u10321_text {
  8611. border-width:0px;
  8612. word-wrap:break-word;
  8613. text-transform:none;
  8614. }
  8615. #u10322_img {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:0px;
  8619. top:0px;
  8620. width:90px;
  8621. height:38px;
  8622. }
  8623. #u10322 {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:662px;
  8627. top:77px;
  8628. width:90px;
  8629. height:38px;
  8630. display:flex;
  8631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8632. font-weight:400;
  8633. font-style:normal;
  8634. font-size:12px;
  8635. color:#333333;
  8636. }
  8637. #u10322 .text {
  8638. position:absolute;
  8639. align-self:center;
  8640. padding:2px 2px 2px 0px;
  8641. box-sizing:border-box;
  8642. width:100%;
  8643. }
  8644. #u10322_text {
  8645. border-width:0px;
  8646. word-wrap:break-word;
  8647. text-transform:none;
  8648. }
  8649. #u10323_img {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:0px;
  8653. top:0px;
  8654. width:80px;
  8655. height:38px;
  8656. }
  8657. #u10323 {
  8658. border-width:0px;
  8659. position:absolute;
  8660. left:752px;
  8661. top:77px;
  8662. width:80px;
  8663. height:38px;
  8664. display:flex;
  8665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8666. font-weight:400;
  8667. font-style:normal;
  8668. font-size:12px;
  8669. color:#AAAAAA;
  8670. }
  8671. #u10323 .text {
  8672. position:absolute;
  8673. align-self:center;
  8674. padding:2px 2px 2px 0px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u10323_text {
  8679. border-width:0px;
  8680. word-wrap:break-word;
  8681. text-transform:none;
  8682. }
  8683. #u10324_img {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:80px;
  8689. height:38px;
  8690. }
  8691. #u10324 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:832px;
  8695. top:77px;
  8696. width:80px;
  8697. height:38px;
  8698. display:flex;
  8699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8700. font-weight:400;
  8701. font-style:normal;
  8702. font-size:12px;
  8703. color:#333333;
  8704. }
  8705. #u10324 .text {
  8706. position:absolute;
  8707. align-self:center;
  8708. padding:2px 2px 2px 0px;
  8709. box-sizing:border-box;
  8710. width:100%;
  8711. }
  8712. #u10324_text {
  8713. border-width:0px;
  8714. word-wrap:break-word;
  8715. text-transform:none;
  8716. }
  8717. #u10325_img {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:0px;
  8721. top:0px;
  8722. width:80px;
  8723. height:38px;
  8724. }
  8725. #u10325 {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:912px;
  8729. top:77px;
  8730. width:80px;
  8731. height:38px;
  8732. display:flex;
  8733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8734. font-weight:400;
  8735. font-style:normal;
  8736. font-size:12px;
  8737. color:#333333;
  8738. }
  8739. #u10325 .text {
  8740. position:absolute;
  8741. align-self:center;
  8742. padding:2px 2px 2px 0px;
  8743. box-sizing:border-box;
  8744. width:100%;
  8745. }
  8746. #u10325_text {
  8747. border-width:0px;
  8748. word-wrap:break-word;
  8749. text-transform:none;
  8750. }
  8751. #u10326_img {
  8752. border-width:0px;
  8753. position:absolute;
  8754. left:0px;
  8755. top:0px;
  8756. width:80px;
  8757. height:38px;
  8758. }
  8759. #u10326 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:992px;
  8763. top:77px;
  8764. width:80px;
  8765. height:38px;
  8766. display:flex;
  8767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:12px;
  8771. color:#333333;
  8772. }
  8773. #u10326 .text {
  8774. position:absolute;
  8775. align-self:center;
  8776. padding:2px 2px 2px 0px;
  8777. box-sizing:border-box;
  8778. width:100%;
  8779. }
  8780. #u10326_text {
  8781. border-width:0px;
  8782. word-wrap:break-word;
  8783. text-transform:none;
  8784. }
  8785. #u10327_img {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:80px;
  8791. height:38px;
  8792. }
  8793. #u10327 {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:1072px;
  8797. top:77px;
  8798. width:80px;
  8799. height:38px;
  8800. display:flex;
  8801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8802. font-weight:400;
  8803. font-style:normal;
  8804. font-size:12px;
  8805. color:#AAAAAA;
  8806. }
  8807. #u10327 .text {
  8808. position:absolute;
  8809. align-self:center;
  8810. padding:2px 2px 2px 0px;
  8811. box-sizing:border-box;
  8812. width:100%;
  8813. }
  8814. #u10327_text {
  8815. border-width:0px;
  8816. word-wrap:break-word;
  8817. text-transform:none;
  8818. }
  8819. #u10328_img {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:180px;
  8825. height:38px;
  8826. }
  8827. #u10328 {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:1152px;
  8831. top:77px;
  8832. width:180px;
  8833. height:38px;
  8834. display:flex;
  8835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8836. font-weight:400;
  8837. font-style:normal;
  8838. font-size:12px;
  8839. color:#1890FF;
  8840. }
  8841. #u10328 .text {
  8842. position:absolute;
  8843. align-self:center;
  8844. padding:2px 2px 2px 0px;
  8845. box-sizing:border-box;
  8846. width:100%;
  8847. }
  8848. #u10328_text {
  8849. border-width:0px;
  8850. word-wrap:break-word;
  8851. text-transform:none;
  8852. }
  8853. #u10329_img {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:0px;
  8857. top:0px;
  8858. width:80px;
  8859. height:38px;
  8860. }
  8861. #u10329 {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:115px;
  8866. width:80px;
  8867. height:38px;
  8868. display:flex;
  8869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8870. font-weight:400;
  8871. font-style:normal;
  8872. font-size:12px;
  8873. }
  8874. #u10329 .text {
  8875. position:absolute;
  8876. align-self:center;
  8877. padding:2px 2px 2px 0px;
  8878. box-sizing:border-box;
  8879. width:100%;
  8880. }
  8881. #u10329_text {
  8882. border-width:0px;
  8883. word-wrap:break-word;
  8884. text-transform:none;
  8885. visibility:hidden;
  8886. }
  8887. #u10330_img {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:0px;
  8891. top:0px;
  8892. width:80px;
  8893. height:38px;
  8894. }
  8895. #u10330 {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:80px;
  8899. top:115px;
  8900. width:80px;
  8901. height:38px;
  8902. display:flex;
  8903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8904. font-weight:400;
  8905. font-style:normal;
  8906. font-size:12px;
  8907. }
  8908. #u10330 .text {
  8909. position:absolute;
  8910. align-self:center;
  8911. padding:2px 2px 2px 0px;
  8912. box-sizing:border-box;
  8913. width:100%;
  8914. }
  8915. #u10330_text {
  8916. border-width:0px;
  8917. word-wrap:break-word;
  8918. text-transform:none;
  8919. visibility:hidden;
  8920. }
  8921. #u10331_img {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:0px;
  8925. top:0px;
  8926. width:80px;
  8927. height:38px;
  8928. }
  8929. #u10331 {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:160px;
  8933. top:115px;
  8934. width:80px;
  8935. height:38px;
  8936. display:flex;
  8937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8938. font-weight:400;
  8939. font-style:normal;
  8940. font-size:12px;
  8941. }
  8942. #u10331 .text {
  8943. position:absolute;
  8944. align-self:center;
  8945. padding:2px 2px 2px 0px;
  8946. box-sizing:border-box;
  8947. width:100%;
  8948. }
  8949. #u10331_text {
  8950. border-width:0px;
  8951. word-wrap:break-word;
  8952. text-transform:none;
  8953. visibility:hidden;
  8954. }
  8955. #u10332_img {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:0px;
  8959. top:0px;
  8960. width:80px;
  8961. height:38px;
  8962. }
  8963. #u10332 {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:240px;
  8967. top:115px;
  8968. width:80px;
  8969. height:38px;
  8970. display:flex;
  8971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8972. font-weight:400;
  8973. font-style:normal;
  8974. font-size:12px;
  8975. }
  8976. #u10332 .text {
  8977. position:absolute;
  8978. align-self:center;
  8979. padding:2px 2px 2px 0px;
  8980. box-sizing:border-box;
  8981. width:100%;
  8982. }
  8983. #u10332_text {
  8984. border-width:0px;
  8985. word-wrap:break-word;
  8986. text-transform:none;
  8987. }
  8988. #u10333_img {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:80px;
  8994. height:38px;
  8995. }
  8996. #u10333 {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:320px;
  9000. top:115px;
  9001. width:80px;
  9002. height:38px;
  9003. display:flex;
  9004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9005. font-weight:400;
  9006. font-style:normal;
  9007. font-size:12px;
  9008. }
  9009. #u10333 .text {
  9010. position:absolute;
  9011. align-self:center;
  9012. padding:2px 2px 2px 0px;
  9013. box-sizing:border-box;
  9014. width:100%;
  9015. }
  9016. #u10333_text {
  9017. border-width:0px;
  9018. word-wrap:break-word;
  9019. text-transform:none;
  9020. visibility:hidden;
  9021. }
  9022. #u10334_img {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:0px;
  9026. top:0px;
  9027. width:80px;
  9028. height:38px;
  9029. }
  9030. #u10334 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:400px;
  9034. top:115px;
  9035. width:80px;
  9036. height:38px;
  9037. display:flex;
  9038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9039. font-weight:400;
  9040. font-style:normal;
  9041. font-size:12px;
  9042. }
  9043. #u10334 .text {
  9044. position:absolute;
  9045. align-self:center;
  9046. padding:2px 2px 2px 0px;
  9047. box-sizing:border-box;
  9048. width:100%;
  9049. }
  9050. #u10334_text {
  9051. border-width:0px;
  9052. word-wrap:break-word;
  9053. text-transform:none;
  9054. visibility:hidden;
  9055. }
  9056. #u10335_img {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:0px;
  9060. top:0px;
  9061. width:80px;
  9062. height:38px;
  9063. }
  9064. #u10335 {
  9065. border-width:0px;
  9066. position:absolute;
  9067. left:480px;
  9068. top:115px;
  9069. width:80px;
  9070. height:38px;
  9071. display:flex;
  9072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9073. font-weight:400;
  9074. font-style:normal;
  9075. font-size:12px;
  9076. }
  9077. #u10335 .text {
  9078. position:absolute;
  9079. align-self:center;
  9080. padding:2px 2px 2px 0px;
  9081. box-sizing:border-box;
  9082. width:100%;
  9083. }
  9084. #u10335_text {
  9085. border-width:0px;
  9086. word-wrap:break-word;
  9087. text-transform:none;
  9088. visibility:hidden;
  9089. }
  9090. #u10336_img {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:0px;
  9094. top:0px;
  9095. width:102px;
  9096. height:38px;
  9097. }
  9098. #u10336 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:560px;
  9102. top:115px;
  9103. width:102px;
  9104. height:38px;
  9105. display:flex;
  9106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9107. font-weight:400;
  9108. font-style:normal;
  9109. font-size:12px;
  9110. }
  9111. #u10336 .text {
  9112. position:absolute;
  9113. align-self:center;
  9114. padding:2px 2px 2px 0px;
  9115. box-sizing:border-box;
  9116. width:100%;
  9117. }
  9118. #u10336_text {
  9119. border-width:0px;
  9120. word-wrap:break-word;
  9121. text-transform:none;
  9122. }
  9123. #u10337_img {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:0px;
  9127. top:0px;
  9128. width:90px;
  9129. height:38px;
  9130. }
  9131. #u10337 {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:662px;
  9135. top:115px;
  9136. width:90px;
  9137. height:38px;
  9138. display:flex;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:12px;
  9143. color:#333333;
  9144. }
  9145. #u10337 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:2px 2px 2px 0px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u10337_text {
  9153. border-width:0px;
  9154. word-wrap:break-word;
  9155. text-transform:none;
  9156. }
  9157. #u10338_img {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:80px;
  9163. height:38px;
  9164. }
  9165. #u10338 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:752px;
  9169. top:115px;
  9170. width:80px;
  9171. height:38px;
  9172. display:flex;
  9173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9174. font-weight:400;
  9175. font-style:normal;
  9176. font-size:12px;
  9177. color:#AAAAAA;
  9178. }
  9179. #u10338 .text {
  9180. position:absolute;
  9181. align-self:center;
  9182. padding:2px 2px 2px 0px;
  9183. box-sizing:border-box;
  9184. width:100%;
  9185. }
  9186. #u10338_text {
  9187. border-width:0px;
  9188. word-wrap:break-word;
  9189. text-transform:none;
  9190. }
  9191. #u10339_img {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:0px;
  9195. top:0px;
  9196. width:80px;
  9197. height:38px;
  9198. }
  9199. #u10339 {
  9200. border-width:0px;
  9201. position:absolute;
  9202. left:832px;
  9203. top:115px;
  9204. width:80px;
  9205. height:38px;
  9206. display:flex;
  9207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9208. font-weight:400;
  9209. font-style:normal;
  9210. font-size:12px;
  9211. color:#333333;
  9212. }
  9213. #u10339 .text {
  9214. position:absolute;
  9215. align-self:center;
  9216. padding:2px 2px 2px 0px;
  9217. box-sizing:border-box;
  9218. width:100%;
  9219. }
  9220. #u10339_text {
  9221. border-width:0px;
  9222. word-wrap:break-word;
  9223. text-transform:none;
  9224. visibility:hidden;
  9225. }
  9226. #u10340_img {
  9227. border-width:0px;
  9228. position:absolute;
  9229. left:0px;
  9230. top:0px;
  9231. width:80px;
  9232. height:38px;
  9233. }
  9234. #u10340 {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:912px;
  9238. top:115px;
  9239. width:80px;
  9240. height:38px;
  9241. display:flex;
  9242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9243. font-weight:400;
  9244. font-style:normal;
  9245. font-size:12px;
  9246. color:#333333;
  9247. }
  9248. #u10340 .text {
  9249. position:absolute;
  9250. align-self:center;
  9251. padding:2px 2px 2px 0px;
  9252. box-sizing:border-box;
  9253. width:100%;
  9254. }
  9255. #u10340_text {
  9256. border-width:0px;
  9257. word-wrap:break-word;
  9258. text-transform:none;
  9259. }
  9260. #u10341_img {
  9261. border-width:0px;
  9262. position:absolute;
  9263. left:0px;
  9264. top:0px;
  9265. width:80px;
  9266. height:38px;
  9267. }
  9268. #u10341 {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:992px;
  9272. top:115px;
  9273. width:80px;
  9274. height:38px;
  9275. display:flex;
  9276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:12px;
  9280. color:#7F7F7F;
  9281. }
  9282. #u10341 .text {
  9283. position:absolute;
  9284. align-self:center;
  9285. padding:2px 2px 2px 0px;
  9286. box-sizing:border-box;
  9287. width:100%;
  9288. }
  9289. #u10341_text {
  9290. border-width:0px;
  9291. word-wrap:break-word;
  9292. text-transform:none;
  9293. }
  9294. #u10342_img {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:0px;
  9298. top:0px;
  9299. width:80px;
  9300. height:38px;
  9301. }
  9302. #u10342 {
  9303. border-width:0px;
  9304. position:absolute;
  9305. left:1072px;
  9306. top:115px;
  9307. width:80px;
  9308. height:38px;
  9309. display:flex;
  9310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9311. font-weight:400;
  9312. font-style:normal;
  9313. font-size:12px;
  9314. color:#AAAAAA;
  9315. }
  9316. #u10342 .text {
  9317. position:absolute;
  9318. align-self:center;
  9319. padding:2px 2px 2px 0px;
  9320. box-sizing:border-box;
  9321. width:100%;
  9322. }
  9323. #u10342_text {
  9324. border-width:0px;
  9325. word-wrap:break-word;
  9326. text-transform:none;
  9327. }
  9328. #u10343_img {
  9329. border-width:0px;
  9330. position:absolute;
  9331. left:0px;
  9332. top:0px;
  9333. width:180px;
  9334. height:38px;
  9335. }
  9336. #u10343 {
  9337. border-width:0px;
  9338. position:absolute;
  9339. left:1152px;
  9340. top:115px;
  9341. width:180px;
  9342. height:38px;
  9343. display:flex;
  9344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9345. font-weight:400;
  9346. font-style:normal;
  9347. font-size:12px;
  9348. color:#1890FF;
  9349. }
  9350. #u10343 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:2px 2px 2px 0px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u10343_text {
  9358. border-width:0px;
  9359. word-wrap:break-word;
  9360. text-transform:none;
  9361. }
  9362. #u10344_img {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:0px;
  9366. top:0px;
  9367. width:80px;
  9368. height:38px;
  9369. }
  9370. #u10344 {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:0px;
  9374. top:153px;
  9375. width:80px;
  9376. height:38px;
  9377. display:flex;
  9378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9379. font-weight:400;
  9380. font-style:normal;
  9381. font-size:12px;
  9382. }
  9383. #u10344 .text {
  9384. position:absolute;
  9385. align-self:center;
  9386. padding:2px 2px 2px 0px;
  9387. box-sizing:border-box;
  9388. width:100%;
  9389. }
  9390. #u10344_text {
  9391. border-width:0px;
  9392. word-wrap:break-word;
  9393. text-transform:none;
  9394. visibility:hidden;
  9395. }
  9396. #u10345_img {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:0px;
  9400. top:0px;
  9401. width:80px;
  9402. height:38px;
  9403. }
  9404. #u10345 {
  9405. border-width:0px;
  9406. position:absolute;
  9407. left:80px;
  9408. top:153px;
  9409. width:80px;
  9410. height:38px;
  9411. display:flex;
  9412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9413. font-weight:400;
  9414. font-style:normal;
  9415. font-size:12px;
  9416. }
  9417. #u10345 .text {
  9418. position:absolute;
  9419. align-self:center;
  9420. padding:2px 2px 2px 0px;
  9421. box-sizing:border-box;
  9422. width:100%;
  9423. }
  9424. #u10345_text {
  9425. border-width:0px;
  9426. word-wrap:break-word;
  9427. text-transform:none;
  9428. visibility:hidden;
  9429. }
  9430. #u10346_img {
  9431. border-width:0px;
  9432. position:absolute;
  9433. left:0px;
  9434. top:0px;
  9435. width:80px;
  9436. height:38px;
  9437. }
  9438. #u10346 {
  9439. border-width:0px;
  9440. position:absolute;
  9441. left:160px;
  9442. top:153px;
  9443. width:80px;
  9444. height:38px;
  9445. display:flex;
  9446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:12px;
  9450. }
  9451. #u10346 .text {
  9452. position:absolute;
  9453. align-self:center;
  9454. padding:2px 2px 2px 0px;
  9455. box-sizing:border-box;
  9456. width:100%;
  9457. }
  9458. #u10346_text {
  9459. border-width:0px;
  9460. word-wrap:break-word;
  9461. text-transform:none;
  9462. visibility:hidden;
  9463. }
  9464. #u10347_img {
  9465. border-width:0px;
  9466. position:absolute;
  9467. left:0px;
  9468. top:0px;
  9469. width:80px;
  9470. height:38px;
  9471. }
  9472. #u10347 {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:240px;
  9476. top:153px;
  9477. width:80px;
  9478. height:38px;
  9479. display:flex;
  9480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9481. font-weight:400;
  9482. font-style:normal;
  9483. font-size:12px;
  9484. }
  9485. #u10347 .text {
  9486. position:absolute;
  9487. align-self:center;
  9488. padding:2px 2px 2px 0px;
  9489. box-sizing:border-box;
  9490. width:100%;
  9491. }
  9492. #u10347_text {
  9493. border-width:0px;
  9494. word-wrap:break-word;
  9495. text-transform:none;
  9496. }
  9497. #u10348_img {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:0px;
  9501. top:0px;
  9502. width:80px;
  9503. height:38px;
  9504. }
  9505. #u10348 {
  9506. border-width:0px;
  9507. position:absolute;
  9508. left:320px;
  9509. top:153px;
  9510. width:80px;
  9511. height:38px;
  9512. display:flex;
  9513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9514. font-weight:400;
  9515. font-style:normal;
  9516. font-size:12px;
  9517. }
  9518. #u10348 .text {
  9519. position:absolute;
  9520. align-self:center;
  9521. padding:2px 2px 2px 0px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u10348_text {
  9526. border-width:0px;
  9527. word-wrap:break-word;
  9528. text-transform:none;
  9529. visibility:hidden;
  9530. }
  9531. #u10349_img {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:80px;
  9537. height:38px;
  9538. }
  9539. #u10349 {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:400px;
  9543. top:153px;
  9544. width:80px;
  9545. height:38px;
  9546. display:flex;
  9547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9548. font-weight:400;
  9549. font-style:normal;
  9550. font-size:12px;
  9551. }
  9552. #u10349 .text {
  9553. position:absolute;
  9554. align-self:center;
  9555. padding:2px 2px 2px 0px;
  9556. box-sizing:border-box;
  9557. width:100%;
  9558. }
  9559. #u10349_text {
  9560. border-width:0px;
  9561. word-wrap:break-word;
  9562. text-transform:none;
  9563. visibility:hidden;
  9564. }
  9565. #u10350_img {
  9566. border-width:0px;
  9567. position:absolute;
  9568. left:0px;
  9569. top:0px;
  9570. width:80px;
  9571. height:38px;
  9572. }
  9573. #u10350 {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:480px;
  9577. top:153px;
  9578. width:80px;
  9579. height:38px;
  9580. display:flex;
  9581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9582. font-weight:400;
  9583. font-style:normal;
  9584. font-size:12px;
  9585. }
  9586. #u10350 .text {
  9587. position:absolute;
  9588. align-self:center;
  9589. padding:2px 2px 2px 0px;
  9590. box-sizing:border-box;
  9591. width:100%;
  9592. }
  9593. #u10350_text {
  9594. border-width:0px;
  9595. word-wrap:break-word;
  9596. text-transform:none;
  9597. visibility:hidden;
  9598. }
  9599. #u10351_img {
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:0px;
  9603. top:0px;
  9604. width:102px;
  9605. height:38px;
  9606. }
  9607. #u10351 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:560px;
  9611. top:153px;
  9612. width:102px;
  9613. height:38px;
  9614. display:flex;
  9615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9616. font-weight:400;
  9617. font-style:normal;
  9618. font-size:12px;
  9619. }
  9620. #u10351 .text {
  9621. position:absolute;
  9622. align-self:center;
  9623. padding:2px 2px 2px 0px;
  9624. box-sizing:border-box;
  9625. width:100%;
  9626. }
  9627. #u10351_text {
  9628. border-width:0px;
  9629. word-wrap:break-word;
  9630. text-transform:none;
  9631. visibility:hidden;
  9632. }
  9633. #u10352_img {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:90px;
  9639. height:38px;
  9640. }
  9641. #u10352 {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:662px;
  9645. top:153px;
  9646. width:90px;
  9647. height:38px;
  9648. display:flex;
  9649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9650. font-weight:400;
  9651. font-style:normal;
  9652. font-size:12px;
  9653. color:#333333;
  9654. }
  9655. #u10352 .text {
  9656. position:absolute;
  9657. align-self:center;
  9658. padding:2px 2px 2px 0px;
  9659. box-sizing:border-box;
  9660. width:100%;
  9661. }
  9662. #u10352_text {
  9663. border-width:0px;
  9664. word-wrap:break-word;
  9665. text-transform:none;
  9666. }
  9667. #u10353_img {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:0px;
  9671. top:0px;
  9672. width:80px;
  9673. height:38px;
  9674. }
  9675. #u10353 {
  9676. border-width:0px;
  9677. position:absolute;
  9678. left:752px;
  9679. top:153px;
  9680. width:80px;
  9681. height:38px;
  9682. display:flex;
  9683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9684. font-weight:400;
  9685. font-style:normal;
  9686. font-size:12px;
  9687. color:#D7D7D7;
  9688. }
  9689. #u10353 .text {
  9690. position:absolute;
  9691. align-self:center;
  9692. padding:2px 2px 2px 0px;
  9693. box-sizing:border-box;
  9694. width:100%;
  9695. }
  9696. #u10353_text {
  9697. border-width:0px;
  9698. word-wrap:break-word;
  9699. text-transform:none;
  9700. visibility:hidden;
  9701. }
  9702. #u10354_img {
  9703. border-width:0px;
  9704. position:absolute;
  9705. left:0px;
  9706. top:0px;
  9707. width:80px;
  9708. height:38px;
  9709. }
  9710. #u10354 {
  9711. border-width:0px;
  9712. position:absolute;
  9713. left:832px;
  9714. top:153px;
  9715. width:80px;
  9716. height:38px;
  9717. display:flex;
  9718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9719. font-weight:400;
  9720. font-style:normal;
  9721. font-size:12px;
  9722. color:#D7D7D7;
  9723. }
  9724. #u10354 .text {
  9725. position:absolute;
  9726. align-self:center;
  9727. padding:2px 2px 2px 0px;
  9728. box-sizing:border-box;
  9729. width:100%;
  9730. }
  9731. #u10354_text {
  9732. border-width:0px;
  9733. word-wrap:break-word;
  9734. text-transform:none;
  9735. visibility:hidden;
  9736. }
  9737. #u10355_img {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:0px;
  9741. top:0px;
  9742. width:80px;
  9743. height:38px;
  9744. }
  9745. #u10355 {
  9746. border-width:0px;
  9747. position:absolute;
  9748. left:912px;
  9749. top:153px;
  9750. width:80px;
  9751. height:38px;
  9752. display:flex;
  9753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9754. font-weight:400;
  9755. font-style:normal;
  9756. font-size:12px;
  9757. color:#D7D7D7;
  9758. }
  9759. #u10355 .text {
  9760. position:absolute;
  9761. align-self:center;
  9762. padding:2px 2px 2px 0px;
  9763. box-sizing:border-box;
  9764. width:100%;
  9765. }
  9766. #u10355_text {
  9767. border-width:0px;
  9768. word-wrap:break-word;
  9769. text-transform:none;
  9770. }
  9771. #u10356_img {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:80px;
  9777. height:38px;
  9778. }
  9779. #u10356 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:992px;
  9783. top:153px;
  9784. width:80px;
  9785. height:38px;
  9786. display:flex;
  9787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9788. font-weight:400;
  9789. font-style:normal;
  9790. font-size:12px;
  9791. color:#D7D7D7;
  9792. }
  9793. #u10356 .text {
  9794. position:absolute;
  9795. align-self:center;
  9796. padding:2px 2px 2px 0px;
  9797. box-sizing:border-box;
  9798. width:100%;
  9799. }
  9800. #u10356_text {
  9801. border-width:0px;
  9802. word-wrap:break-word;
  9803. text-transform:none;
  9804. visibility:hidden;
  9805. }
  9806. #u10357_img {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:0px;
  9810. top:0px;
  9811. width:80px;
  9812. height:38px;
  9813. }
  9814. #u10357 {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:1072px;
  9818. top:153px;
  9819. width:80px;
  9820. height:38px;
  9821. display:flex;
  9822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9823. font-weight:400;
  9824. font-style:normal;
  9825. font-size:12px;
  9826. color:#D7D7D7;
  9827. }
  9828. #u10357 .text {
  9829. position:absolute;
  9830. align-self:center;
  9831. padding:2px 2px 2px 0px;
  9832. box-sizing:border-box;
  9833. width:100%;
  9834. }
  9835. #u10357_text {
  9836. border-width:0px;
  9837. word-wrap:break-word;
  9838. text-transform:none;
  9839. visibility:hidden;
  9840. }
  9841. #u10358_img {
  9842. border-width:0px;
  9843. position:absolute;
  9844. left:0px;
  9845. top:0px;
  9846. width:180px;
  9847. height:38px;
  9848. }
  9849. #u10358 {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:1152px;
  9853. top:153px;
  9854. width:180px;
  9855. height:38px;
  9856. display:flex;
  9857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9858. font-weight:400;
  9859. font-style:normal;
  9860. font-size:12px;
  9861. }
  9862. #u10358 .text {
  9863. position:absolute;
  9864. align-self:center;
  9865. padding:2px 2px 2px 0px;
  9866. box-sizing:border-box;
  9867. width:100%;
  9868. }
  9869. #u10358_text {
  9870. border-width:0px;
  9871. word-wrap:break-word;
  9872. text-transform:none;
  9873. }
  9874. #u10359_img {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:0px;
  9878. top:0px;
  9879. width:80px;
  9880. height:35px;
  9881. }
  9882. #u10359 {
  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. #u10359 .text {
  9897. position:absolute;
  9898. align-self:center;
  9899. padding:2px 2px 2px 0px;
  9900. box-sizing:border-box;
  9901. width:100%;
  9902. }
  9903. #u10359_text {
  9904. border-width:0px;
  9905. word-wrap:break-word;
  9906. text-transform:none;
  9907. visibility:hidden;
  9908. }
  9909. #u10360_img {
  9910. border-width:0px;
  9911. position:absolute;
  9912. left:0px;
  9913. top:0px;
  9914. width:80px;
  9915. height:35px;
  9916. }
  9917. #u10360 {
  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. #u10360 .text {
  9932. position:absolute;
  9933. align-self:center;
  9934. padding:2px 2px 2px 0px;
  9935. box-sizing:border-box;
  9936. width:100%;
  9937. }
  9938. #u10360_text {
  9939. border-width:0px;
  9940. word-wrap:break-word;
  9941. text-transform:none;
  9942. visibility:hidden;
  9943. }
  9944. #u10361_img {
  9945. border-width:0px;
  9946. position:absolute;
  9947. left:0px;
  9948. top:0px;
  9949. width:80px;
  9950. height:35px;
  9951. }
  9952. #u10361 {
  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. #u10361 .text {
  9967. position:absolute;
  9968. align-self:center;
  9969. padding:2px 2px 2px 0px;
  9970. box-sizing:border-box;
  9971. width:100%;
  9972. }
  9973. #u10361_text {
  9974. border-width:0px;
  9975. word-wrap:break-word;
  9976. text-transform:none;
  9977. visibility:hidden;
  9978. }
  9979. #u10362_img {
  9980. border-width:0px;
  9981. position:absolute;
  9982. left:0px;
  9983. top:0px;
  9984. width:80px;
  9985. height:35px;
  9986. }
  9987. #u10362 {
  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. #u10362 .text {
  10002. position:absolute;
  10003. align-self:center;
  10004. padding:2px 2px 2px 0px;
  10005. box-sizing:border-box;
  10006. width:100%;
  10007. }
  10008. #u10362_text {
  10009. border-width:0px;
  10010. word-wrap:break-word;
  10011. text-transform:none;
  10012. visibility:hidden;
  10013. }
  10014. #u10363_img {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:0px;
  10018. top:0px;
  10019. width:80px;
  10020. height:35px;
  10021. }
  10022. #u10363 {
  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. #u10363 .text {
  10037. position:absolute;
  10038. align-self:center;
  10039. padding:2px 2px 2px 0px;
  10040. box-sizing:border-box;
  10041. width:100%;
  10042. }
  10043. #u10363_text {
  10044. border-width:0px;
  10045. word-wrap:break-word;
  10046. text-transform:none;
  10047. visibility:hidden;
  10048. }
  10049. #u10364_img {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:80px;
  10055. height:35px;
  10056. }
  10057. #u10364 {
  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. #u10364 .text {
  10072. position:absolute;
  10073. align-self:center;
  10074. padding:2px 2px 2px 0px;
  10075. box-sizing:border-box;
  10076. width:100%;
  10077. }
  10078. #u10364_text {
  10079. border-width:0px;
  10080. word-wrap:break-word;
  10081. text-transform:none;
  10082. visibility:hidden;
  10083. }
  10084. #u10365_img {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:80px;
  10090. height:35px;
  10091. }
  10092. #u10365 {
  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. #u10365 .text {
  10107. position:absolute;
  10108. align-self:center;
  10109. padding:2px 2px 2px 0px;
  10110. box-sizing:border-box;
  10111. width:100%;
  10112. }
  10113. #u10365_text {
  10114. border-width:0px;
  10115. word-wrap:break-word;
  10116. text-transform:none;
  10117. visibility:hidden;
  10118. }
  10119. #u10366_img {
  10120. border-width:0px;
  10121. position:absolute;
  10122. left:0px;
  10123. top:0px;
  10124. width:102px;
  10125. height:35px;
  10126. }
  10127. #u10366 {
  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. #u10366 .text {
  10142. position:absolute;
  10143. align-self:center;
  10144. padding:2px 2px 2px 0px;
  10145. box-sizing:border-box;
  10146. width:100%;
  10147. }
  10148. #u10366_text {
  10149. border-width:0px;
  10150. word-wrap:break-word;
  10151. text-transform:none;
  10152. visibility:hidden;
  10153. }
  10154. #u10367_img {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:0px;
  10158. top:0px;
  10159. width:90px;
  10160. height:35px;
  10161. }
  10162. #u10367 {
  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. #u10367 .text {
  10177. position:absolute;
  10178. align-self:center;
  10179. padding:2px 2px 2px 0px;
  10180. box-sizing:border-box;
  10181. width:100%;
  10182. }
  10183. #u10367_text {
  10184. border-width:0px;
  10185. word-wrap:break-word;
  10186. text-transform:none;
  10187. visibility:hidden;
  10188. }
  10189. #u10368_img {
  10190. border-width:0px;
  10191. position:absolute;
  10192. left:0px;
  10193. top:0px;
  10194. width:80px;
  10195. height:35px;
  10196. }
  10197. #u10368 {
  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. #u10368 .text {
  10212. position:absolute;
  10213. align-self:center;
  10214. padding:2px 2px 2px 0px;
  10215. box-sizing:border-box;
  10216. width:100%;
  10217. }
  10218. #u10368_text {
  10219. border-width:0px;
  10220. word-wrap:break-word;
  10221. text-transform:none;
  10222. visibility:hidden;
  10223. }
  10224. #u10369_img {
  10225. border-width:0px;
  10226. position:absolute;
  10227. left:0px;
  10228. top:0px;
  10229. width:80px;
  10230. height:35px;
  10231. }
  10232. #u10369 {
  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. #u10369 .text {
  10247. position:absolute;
  10248. align-self:center;
  10249. padding:2px 2px 2px 0px;
  10250. box-sizing:border-box;
  10251. width:100%;
  10252. }
  10253. #u10369_text {
  10254. border-width:0px;
  10255. word-wrap:break-word;
  10256. text-transform:none;
  10257. visibility:hidden;
  10258. }
  10259. #u10370_img {
  10260. border-width:0px;
  10261. position:absolute;
  10262. left:0px;
  10263. top:0px;
  10264. width:80px;
  10265. height:35px;
  10266. }
  10267. #u10370 {
  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. #u10370 .text {
  10282. position:absolute;
  10283. align-self:center;
  10284. padding:2px 2px 2px 0px;
  10285. box-sizing:border-box;
  10286. width:100%;
  10287. }
  10288. #u10370_text {
  10289. border-width:0px;
  10290. word-wrap:break-word;
  10291. text-transform:none;
  10292. visibility:hidden;
  10293. }
  10294. #u10371_img {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:0px;
  10298. top:0px;
  10299. width:80px;
  10300. height:35px;
  10301. }
  10302. #u10371 {
  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. #u10371 .text {
  10317. position:absolute;
  10318. align-self:center;
  10319. padding:2px 2px 2px 0px;
  10320. box-sizing:border-box;
  10321. width:100%;
  10322. }
  10323. #u10371_text {
  10324. border-width:0px;
  10325. word-wrap:break-word;
  10326. text-transform:none;
  10327. visibility:hidden;
  10328. }
  10329. #u10372_img {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:0px;
  10333. top:0px;
  10334. width:80px;
  10335. height:35px;
  10336. }
  10337. #u10372 {
  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. #u10372 .text {
  10352. position:absolute;
  10353. align-self:center;
  10354. padding:2px 2px 2px 0px;
  10355. box-sizing:border-box;
  10356. width:100%;
  10357. }
  10358. #u10372_text {
  10359. border-width:0px;
  10360. word-wrap:break-word;
  10361. text-transform:none;
  10362. visibility:hidden;
  10363. }
  10364. #u10373_img {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:0px;
  10368. top:0px;
  10369. width:180px;
  10370. height:35px;
  10371. }
  10372. #u10373 {
  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. #u10373 .text {
  10387. position:absolute;
  10388. align-self:center;
  10389. padding:2px 2px 2px 0px;
  10390. box-sizing:border-box;
  10391. width:100%;
  10392. }
  10393. #u10373_text {
  10394. border-width:0px;
  10395. word-wrap:break-word;
  10396. text-transform:none;
  10397. visibility:hidden;
  10398. }
  10399. #u10374_img {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:0px;
  10403. top:0px;
  10404. width:80px;
  10405. height:35px;
  10406. }
  10407. #u10374 {
  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. #u10374 .text {
  10422. position:absolute;
  10423. align-self:center;
  10424. padding:2px 2px 2px 0px;
  10425. box-sizing:border-box;
  10426. width:100%;
  10427. }
  10428. #u10374_text {
  10429. border-width:0px;
  10430. word-wrap:break-word;
  10431. text-transform:none;
  10432. visibility:hidden;
  10433. }
  10434. #u10375_img {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:0px;
  10438. top:0px;
  10439. width:80px;
  10440. height:35px;
  10441. }
  10442. #u10375 {
  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. #u10375 .text {
  10457. position:absolute;
  10458. align-self:center;
  10459. padding:2px 2px 2px 0px;
  10460. box-sizing:border-box;
  10461. width:100%;
  10462. }
  10463. #u10375_text {
  10464. border-width:0px;
  10465. word-wrap:break-word;
  10466. text-transform:none;
  10467. visibility:hidden;
  10468. }
  10469. #u10376_img {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:0px;
  10473. top:0px;
  10474. width:80px;
  10475. height:35px;
  10476. }
  10477. #u10376 {
  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. #u10376 .text {
  10492. position:absolute;
  10493. align-self:center;
  10494. padding:2px 2px 2px 0px;
  10495. box-sizing:border-box;
  10496. width:100%;
  10497. }
  10498. #u10376_text {
  10499. border-width:0px;
  10500. word-wrap:break-word;
  10501. text-transform:none;
  10502. visibility:hidden;
  10503. }
  10504. #u10377_img {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:80px;
  10510. height:35px;
  10511. }
  10512. #u10377 {
  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. #u10377 .text {
  10527. position:absolute;
  10528. align-self:center;
  10529. padding:2px 2px 2px 0px;
  10530. box-sizing:border-box;
  10531. width:100%;
  10532. }
  10533. #u10377_text {
  10534. border-width:0px;
  10535. word-wrap:break-word;
  10536. text-transform:none;
  10537. visibility:hidden;
  10538. }
  10539. #u10378_img {
  10540. border-width:0px;
  10541. position:absolute;
  10542. left:0px;
  10543. top:0px;
  10544. width:80px;
  10545. height:35px;
  10546. }
  10547. #u10378 {
  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. #u10378 .text {
  10562. position:absolute;
  10563. align-self:center;
  10564. padding:2px 2px 2px 0px;
  10565. box-sizing:border-box;
  10566. width:100%;
  10567. }
  10568. #u10378_text {
  10569. border-width:0px;
  10570. word-wrap:break-word;
  10571. text-transform:none;
  10572. visibility:hidden;
  10573. }
  10574. #u10379_img {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:0px;
  10578. top:0px;
  10579. width:80px;
  10580. height:35px;
  10581. }
  10582. #u10379 {
  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. #u10379 .text {
  10597. position:absolute;
  10598. align-self:center;
  10599. padding:2px 2px 2px 0px;
  10600. box-sizing:border-box;
  10601. width:100%;
  10602. }
  10603. #u10379_text {
  10604. border-width:0px;
  10605. word-wrap:break-word;
  10606. text-transform:none;
  10607. visibility:hidden;
  10608. }
  10609. #u10380_img {
  10610. border-width:0px;
  10611. position:absolute;
  10612. left:0px;
  10613. top:0px;
  10614. width:80px;
  10615. height:35px;
  10616. }
  10617. #u10380 {
  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. #u10380 .text {
  10632. position:absolute;
  10633. align-self:center;
  10634. padding:2px 2px 2px 0px;
  10635. box-sizing:border-box;
  10636. width:100%;
  10637. }
  10638. #u10380_text {
  10639. border-width:0px;
  10640. word-wrap:break-word;
  10641. text-transform:none;
  10642. visibility:hidden;
  10643. }
  10644. #u10381_img {
  10645. border-width:0px;
  10646. position:absolute;
  10647. left:0px;
  10648. top:0px;
  10649. width:102px;
  10650. height:35px;
  10651. }
  10652. #u10381 {
  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. #u10381 .text {
  10667. position:absolute;
  10668. align-self:center;
  10669. padding:2px 2px 2px 0px;
  10670. box-sizing:border-box;
  10671. width:100%;
  10672. }
  10673. #u10381_text {
  10674. border-width:0px;
  10675. word-wrap:break-word;
  10676. text-transform:none;
  10677. visibility:hidden;
  10678. }
  10679. #u10382_img {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:0px;
  10683. top:0px;
  10684. width:90px;
  10685. height:35px;
  10686. }
  10687. #u10382 {
  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. #u10382 .text {
  10702. position:absolute;
  10703. align-self:center;
  10704. padding:2px 2px 2px 0px;
  10705. box-sizing:border-box;
  10706. width:100%;
  10707. }
  10708. #u10382_text {
  10709. border-width:0px;
  10710. word-wrap:break-word;
  10711. text-transform:none;
  10712. visibility:hidden;
  10713. }
  10714. #u10383_img {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:0px;
  10718. top:0px;
  10719. width:80px;
  10720. height:35px;
  10721. }
  10722. #u10383 {
  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. #u10383 .text {
  10737. position:absolute;
  10738. align-self:center;
  10739. padding:2px 2px 2px 0px;
  10740. box-sizing:border-box;
  10741. width:100%;
  10742. }
  10743. #u10383_text {
  10744. border-width:0px;
  10745. word-wrap:break-word;
  10746. text-transform:none;
  10747. visibility:hidden;
  10748. }
  10749. #u10384_img {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:0px;
  10753. top:0px;
  10754. width:80px;
  10755. height:35px;
  10756. }
  10757. #u10384 {
  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. #u10384 .text {
  10772. position:absolute;
  10773. align-self:center;
  10774. padding:2px 2px 2px 0px;
  10775. box-sizing:border-box;
  10776. width:100%;
  10777. }
  10778. #u10384_text {
  10779. border-width:0px;
  10780. word-wrap:break-word;
  10781. text-transform:none;
  10782. visibility:hidden;
  10783. }
  10784. #u10385_img {
  10785. border-width:0px;
  10786. position:absolute;
  10787. left:0px;
  10788. top:0px;
  10789. width:80px;
  10790. height:35px;
  10791. }
  10792. #u10385 {
  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. #u10385 .text {
  10807. position:absolute;
  10808. align-self:center;
  10809. padding:2px 2px 2px 0px;
  10810. box-sizing:border-box;
  10811. width:100%;
  10812. }
  10813. #u10385_text {
  10814. border-width:0px;
  10815. word-wrap:break-word;
  10816. text-transform:none;
  10817. visibility:hidden;
  10818. }
  10819. #u10386_img {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:0px;
  10823. top:0px;
  10824. width:80px;
  10825. height:35px;
  10826. }
  10827. #u10386 {
  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. #u10386 .text {
  10842. position:absolute;
  10843. align-self:center;
  10844. padding:2px 2px 2px 0px;
  10845. box-sizing:border-box;
  10846. width:100%;
  10847. }
  10848. #u10386_text {
  10849. border-width:0px;
  10850. word-wrap:break-word;
  10851. text-transform:none;
  10852. visibility:hidden;
  10853. }
  10854. #u10387_img {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:0px;
  10858. top:0px;
  10859. width:80px;
  10860. height:35px;
  10861. }
  10862. #u10387 {
  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. #u10387 .text {
  10877. position:absolute;
  10878. align-self:center;
  10879. padding:2px 2px 2px 0px;
  10880. box-sizing:border-box;
  10881. width:100%;
  10882. }
  10883. #u10387_text {
  10884. border-width:0px;
  10885. word-wrap:break-word;
  10886. text-transform:none;
  10887. visibility:hidden;
  10888. }
  10889. #u10388_img {
  10890. border-width:0px;
  10891. position:absolute;
  10892. left:0px;
  10893. top:0px;
  10894. width:180px;
  10895. height:35px;
  10896. }
  10897. #u10388 {
  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. #u10388 .text {
  10912. position:absolute;
  10913. align-self:center;
  10914. padding:2px 2px 2px 0px;
  10915. box-sizing:border-box;
  10916. width:100%;
  10917. }
  10918. #u10388_text {
  10919. border-width:0px;
  10920. word-wrap:break-word;
  10921. text-transform:none;
  10922. visibility:hidden;
  10923. }
  10924. #u10389_img {
  10925. border-width:0px;
  10926. position:absolute;
  10927. left:0px;
  10928. top:0px;
  10929. width:80px;
  10930. height:35px;
  10931. }
  10932. #u10389 {
  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. #u10389 .text {
  10947. position:absolute;
  10948. align-self:center;
  10949. padding:2px 2px 2px 0px;
  10950. box-sizing:border-box;
  10951. width:100%;
  10952. }
  10953. #u10389_text {
  10954. border-width:0px;
  10955. word-wrap:break-word;
  10956. text-transform:none;
  10957. visibility:hidden;
  10958. }
  10959. #u10390_img {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:0px;
  10963. top:0px;
  10964. width:80px;
  10965. height:35px;
  10966. }
  10967. #u10390 {
  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. #u10390 .text {
  10982. position:absolute;
  10983. align-self:center;
  10984. padding:2px 2px 2px 0px;
  10985. box-sizing:border-box;
  10986. width:100%;
  10987. }
  10988. #u10390_text {
  10989. border-width:0px;
  10990. word-wrap:break-word;
  10991. text-transform:none;
  10992. visibility:hidden;
  10993. }
  10994. #u10391_img {
  10995. border-width:0px;
  10996. position:absolute;
  10997. left:0px;
  10998. top:0px;
  10999. width:80px;
  11000. height:35px;
  11001. }
  11002. #u10391 {
  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. #u10391 .text {
  11017. position:absolute;
  11018. align-self:center;
  11019. padding:2px 2px 2px 0px;
  11020. box-sizing:border-box;
  11021. width:100%;
  11022. }
  11023. #u10391_text {
  11024. border-width:0px;
  11025. word-wrap:break-word;
  11026. text-transform:none;
  11027. visibility:hidden;
  11028. }
  11029. #u10392_img {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:0px;
  11033. top:0px;
  11034. width:80px;
  11035. height:35px;
  11036. }
  11037. #u10392 {
  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. #u10392 .text {
  11052. position:absolute;
  11053. align-self:center;
  11054. padding:2px 2px 2px 0px;
  11055. box-sizing:border-box;
  11056. width:100%;
  11057. }
  11058. #u10392_text {
  11059. border-width:0px;
  11060. word-wrap:break-word;
  11061. text-transform:none;
  11062. visibility:hidden;
  11063. }
  11064. #u10393_img {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:0px;
  11068. top:0px;
  11069. width:80px;
  11070. height:35px;
  11071. }
  11072. #u10393 {
  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. #u10393 .text {
  11087. position:absolute;
  11088. align-self:center;
  11089. padding:2px 2px 2px 0px;
  11090. box-sizing:border-box;
  11091. width:100%;
  11092. }
  11093. #u10393_text {
  11094. border-width:0px;
  11095. word-wrap:break-word;
  11096. text-transform:none;
  11097. visibility:hidden;
  11098. }
  11099. #u10394_img {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:0px;
  11103. top:0px;
  11104. width:80px;
  11105. height:35px;
  11106. }
  11107. #u10394 {
  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. #u10394 .text {
  11122. position:absolute;
  11123. align-self:center;
  11124. padding:2px 2px 2px 0px;
  11125. box-sizing:border-box;
  11126. width:100%;
  11127. }
  11128. #u10394_text {
  11129. border-width:0px;
  11130. word-wrap:break-word;
  11131. text-transform:none;
  11132. visibility:hidden;
  11133. }
  11134. #u10395_img {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:0px;
  11138. top:0px;
  11139. width:80px;
  11140. height:35px;
  11141. }
  11142. #u10395 {
  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. #u10395 .text {
  11157. position:absolute;
  11158. align-self:center;
  11159. padding:2px 2px 2px 0px;
  11160. box-sizing:border-box;
  11161. width:100%;
  11162. }
  11163. #u10395_text {
  11164. border-width:0px;
  11165. word-wrap:break-word;
  11166. text-transform:none;
  11167. visibility:hidden;
  11168. }
  11169. #u10396_img {
  11170. border-width:0px;
  11171. position:absolute;
  11172. left:0px;
  11173. top:0px;
  11174. width:102px;
  11175. height:35px;
  11176. }
  11177. #u10396 {
  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. #u10396 .text {
  11192. position:absolute;
  11193. align-self:center;
  11194. padding:2px 2px 2px 0px;
  11195. box-sizing:border-box;
  11196. width:100%;
  11197. }
  11198. #u10396_text {
  11199. border-width:0px;
  11200. word-wrap:break-word;
  11201. text-transform:none;
  11202. visibility:hidden;
  11203. }
  11204. #u10397_img {
  11205. border-width:0px;
  11206. position:absolute;
  11207. left:0px;
  11208. top:0px;
  11209. width:90px;
  11210. height:35px;
  11211. }
  11212. #u10397 {
  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. #u10397 .text {
  11227. position:absolute;
  11228. align-self:center;
  11229. padding:2px 2px 2px 0px;
  11230. box-sizing:border-box;
  11231. width:100%;
  11232. }
  11233. #u10397_text {
  11234. border-width:0px;
  11235. word-wrap:break-word;
  11236. text-transform:none;
  11237. visibility:hidden;
  11238. }
  11239. #u10398_img {
  11240. border-width:0px;
  11241. position:absolute;
  11242. left:0px;
  11243. top:0px;
  11244. width:80px;
  11245. height:35px;
  11246. }
  11247. #u10398 {
  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. #u10398 .text {
  11262. position:absolute;
  11263. align-self:center;
  11264. padding:2px 2px 2px 0px;
  11265. box-sizing:border-box;
  11266. width:100%;
  11267. }
  11268. #u10398_text {
  11269. border-width:0px;
  11270. word-wrap:break-word;
  11271. text-transform:none;
  11272. visibility:hidden;
  11273. }
  11274. #u10399_img {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:0px;
  11278. top:0px;
  11279. width:80px;
  11280. height:35px;
  11281. }
  11282. #u10399 {
  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. #u10399 .text {
  11297. position:absolute;
  11298. align-self:center;
  11299. padding:2px 2px 2px 0px;
  11300. box-sizing:border-box;
  11301. width:100%;
  11302. }
  11303. #u10399_text {
  11304. border-width:0px;
  11305. word-wrap:break-word;
  11306. text-transform:none;
  11307. visibility:hidden;
  11308. }
  11309. #u10400_img {
  11310. border-width:0px;
  11311. position:absolute;
  11312. left:0px;
  11313. top:0px;
  11314. width:80px;
  11315. height:35px;
  11316. }
  11317. #u10400 {
  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. #u10400 .text {
  11332. position:absolute;
  11333. align-self:center;
  11334. padding:2px 2px 2px 0px;
  11335. box-sizing:border-box;
  11336. width:100%;
  11337. }
  11338. #u10400_text {
  11339. border-width:0px;
  11340. word-wrap:break-word;
  11341. text-transform:none;
  11342. visibility:hidden;
  11343. }
  11344. #u10401_img {
  11345. border-width:0px;
  11346. position:absolute;
  11347. left:0px;
  11348. top:0px;
  11349. width:80px;
  11350. height:35px;
  11351. }
  11352. #u10401 {
  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. #u10401 .text {
  11367. position:absolute;
  11368. align-self:center;
  11369. padding:2px 2px 2px 0px;
  11370. box-sizing:border-box;
  11371. width:100%;
  11372. }
  11373. #u10401_text {
  11374. border-width:0px;
  11375. word-wrap:break-word;
  11376. text-transform:none;
  11377. visibility:hidden;
  11378. }
  11379. #u10402_img {
  11380. border-width:0px;
  11381. position:absolute;
  11382. left:0px;
  11383. top:0px;
  11384. width:80px;
  11385. height:35px;
  11386. }
  11387. #u10402 {
  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. #u10402 .text {
  11402. position:absolute;
  11403. align-self:center;
  11404. padding:2px 2px 2px 0px;
  11405. box-sizing:border-box;
  11406. width:100%;
  11407. }
  11408. #u10402_text {
  11409. border-width:0px;
  11410. word-wrap:break-word;
  11411. text-transform:none;
  11412. visibility:hidden;
  11413. }
  11414. #u10403_img {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:180px;
  11420. height:35px;
  11421. }
  11422. #u10403 {
  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. #u10403 .text {
  11437. position:absolute;
  11438. align-self:center;
  11439. padding:2px 2px 2px 0px;
  11440. box-sizing:border-box;
  11441. width:100%;
  11442. }
  11443. #u10403_text {
  11444. border-width:0px;
  11445. word-wrap:break-word;
  11446. text-transform:none;
  11447. visibility:hidden;
  11448. }
  11449. #u10404_img {
  11450. border-width:0px;
  11451. position:absolute;
  11452. left:0px;
  11453. top:0px;
  11454. width:80px;
  11455. height:35px;
  11456. }
  11457. #u10404 {
  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. #u10404 .text {
  11472. position:absolute;
  11473. align-self:center;
  11474. padding:2px 2px 2px 0px;
  11475. box-sizing:border-box;
  11476. width:100%;
  11477. }
  11478. #u10404_text {
  11479. border-width:0px;
  11480. word-wrap:break-word;
  11481. text-transform:none;
  11482. visibility:hidden;
  11483. }
  11484. #u10405_img {
  11485. border-width:0px;
  11486. position:absolute;
  11487. left:0px;
  11488. top:0px;
  11489. width:80px;
  11490. height:35px;
  11491. }
  11492. #u10405 {
  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. #u10405 .text {
  11507. position:absolute;
  11508. align-self:center;
  11509. padding:2px 2px 2px 0px;
  11510. box-sizing:border-box;
  11511. width:100%;
  11512. }
  11513. #u10405_text {
  11514. border-width:0px;
  11515. word-wrap:break-word;
  11516. text-transform:none;
  11517. visibility:hidden;
  11518. }
  11519. #u10406_img {
  11520. border-width:0px;
  11521. position:absolute;
  11522. left:0px;
  11523. top:0px;
  11524. width:80px;
  11525. height:35px;
  11526. }
  11527. #u10406 {
  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. #u10406 .text {
  11542. position:absolute;
  11543. align-self:center;
  11544. padding:2px 2px 2px 0px;
  11545. box-sizing:border-box;
  11546. width:100%;
  11547. }
  11548. #u10406_text {
  11549. border-width:0px;
  11550. word-wrap:break-word;
  11551. text-transform:none;
  11552. visibility:hidden;
  11553. }
  11554. #u10407_img {
  11555. border-width:0px;
  11556. position:absolute;
  11557. left:0px;
  11558. top:0px;
  11559. width:80px;
  11560. height:35px;
  11561. }
  11562. #u10407 {
  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. #u10407 .text {
  11577. position:absolute;
  11578. align-self:center;
  11579. padding:2px 2px 2px 0px;
  11580. box-sizing:border-box;
  11581. width:100%;
  11582. }
  11583. #u10407_text {
  11584. border-width:0px;
  11585. word-wrap:break-word;
  11586. text-transform:none;
  11587. visibility:hidden;
  11588. }
  11589. #u10408_img {
  11590. border-width:0px;
  11591. position:absolute;
  11592. left:0px;
  11593. top:0px;
  11594. width:80px;
  11595. height:35px;
  11596. }
  11597. #u10408 {
  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. #u10408 .text {
  11612. position:absolute;
  11613. align-self:center;
  11614. padding:2px 2px 2px 0px;
  11615. box-sizing:border-box;
  11616. width:100%;
  11617. }
  11618. #u10408_text {
  11619. border-width:0px;
  11620. word-wrap:break-word;
  11621. text-transform:none;
  11622. visibility:hidden;
  11623. }
  11624. #u10409_img {
  11625. border-width:0px;
  11626. position:absolute;
  11627. left:0px;
  11628. top:0px;
  11629. width:80px;
  11630. height:35px;
  11631. }
  11632. #u10409 {
  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. #u10409 .text {
  11647. position:absolute;
  11648. align-self:center;
  11649. padding:2px 2px 2px 0px;
  11650. box-sizing:border-box;
  11651. width:100%;
  11652. }
  11653. #u10409_text {
  11654. border-width:0px;
  11655. word-wrap:break-word;
  11656. text-transform:none;
  11657. visibility:hidden;
  11658. }
  11659. #u10410_img {
  11660. border-width:0px;
  11661. position:absolute;
  11662. left:0px;
  11663. top:0px;
  11664. width:80px;
  11665. height:35px;
  11666. }
  11667. #u10410 {
  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. #u10410 .text {
  11682. position:absolute;
  11683. align-self:center;
  11684. padding:2px 2px 2px 0px;
  11685. box-sizing:border-box;
  11686. width:100%;
  11687. }
  11688. #u10410_text {
  11689. border-width:0px;
  11690. word-wrap:break-word;
  11691. text-transform:none;
  11692. visibility:hidden;
  11693. }
  11694. #u10411_img {
  11695. border-width:0px;
  11696. position:absolute;
  11697. left:0px;
  11698. top:0px;
  11699. width:102px;
  11700. height:35px;
  11701. }
  11702. #u10411 {
  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. #u10411 .text {
  11717. position:absolute;
  11718. align-self:center;
  11719. padding:2px 2px 2px 0px;
  11720. box-sizing:border-box;
  11721. width:100%;
  11722. }
  11723. #u10411_text {
  11724. border-width:0px;
  11725. word-wrap:break-word;
  11726. text-transform:none;
  11727. visibility:hidden;
  11728. }
  11729. #u10412_img {
  11730. border-width:0px;
  11731. position:absolute;
  11732. left:0px;
  11733. top:0px;
  11734. width:90px;
  11735. height:35px;
  11736. }
  11737. #u10412 {
  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. #u10412 .text {
  11752. position:absolute;
  11753. align-self:center;
  11754. padding:2px 2px 2px 0px;
  11755. box-sizing:border-box;
  11756. width:100%;
  11757. }
  11758. #u10412_text {
  11759. border-width:0px;
  11760. word-wrap:break-word;
  11761. text-transform:none;
  11762. visibility:hidden;
  11763. }
  11764. #u10413_img {
  11765. border-width:0px;
  11766. position:absolute;
  11767. left:0px;
  11768. top:0px;
  11769. width:80px;
  11770. height:35px;
  11771. }
  11772. #u10413 {
  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. #u10413 .text {
  11787. position:absolute;
  11788. align-self:center;
  11789. padding:2px 2px 2px 0px;
  11790. box-sizing:border-box;
  11791. width:100%;
  11792. }
  11793. #u10413_text {
  11794. border-width:0px;
  11795. word-wrap:break-word;
  11796. text-transform:none;
  11797. visibility:hidden;
  11798. }
  11799. #u10414_img {
  11800. border-width:0px;
  11801. position:absolute;
  11802. left:0px;
  11803. top:0px;
  11804. width:80px;
  11805. height:35px;
  11806. }
  11807. #u10414 {
  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. #u10414 .text {
  11822. position:absolute;
  11823. align-self:center;
  11824. padding:2px 2px 2px 0px;
  11825. box-sizing:border-box;
  11826. width:100%;
  11827. }
  11828. #u10414_text {
  11829. border-width:0px;
  11830. word-wrap:break-word;
  11831. text-transform:none;
  11832. visibility:hidden;
  11833. }
  11834. #u10415_img {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:80px;
  11840. height:35px;
  11841. }
  11842. #u10415 {
  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. #u10415 .text {
  11857. position:absolute;
  11858. align-self:center;
  11859. padding:2px 2px 2px 0px;
  11860. box-sizing:border-box;
  11861. width:100%;
  11862. }
  11863. #u10415_text {
  11864. border-width:0px;
  11865. word-wrap:break-word;
  11866. text-transform:none;
  11867. visibility:hidden;
  11868. }
  11869. #u10416_img {
  11870. border-width:0px;
  11871. position:absolute;
  11872. left:0px;
  11873. top:0px;
  11874. width:80px;
  11875. height:35px;
  11876. }
  11877. #u10416 {
  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. #u10416 .text {
  11892. position:absolute;
  11893. align-self:center;
  11894. padding:2px 2px 2px 0px;
  11895. box-sizing:border-box;
  11896. width:100%;
  11897. }
  11898. #u10416_text {
  11899. border-width:0px;
  11900. word-wrap:break-word;
  11901. text-transform:none;
  11902. visibility:hidden;
  11903. }
  11904. #u10417_img {
  11905. border-width:0px;
  11906. position:absolute;
  11907. left:0px;
  11908. top:0px;
  11909. width:80px;
  11910. height:35px;
  11911. }
  11912. #u10417 {
  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. #u10417 .text {
  11927. position:absolute;
  11928. align-self:center;
  11929. padding:2px 2px 2px 0px;
  11930. box-sizing:border-box;
  11931. width:100%;
  11932. }
  11933. #u10417_text {
  11934. border-width:0px;
  11935. word-wrap:break-word;
  11936. text-transform:none;
  11937. visibility:hidden;
  11938. }
  11939. #u10418_img {
  11940. border-width:0px;
  11941. position:absolute;
  11942. left:0px;
  11943. top:0px;
  11944. width:180px;
  11945. height:35px;
  11946. }
  11947. #u10418 {
  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. #u10418 .text {
  11962. position:absolute;
  11963. align-self:center;
  11964. padding:2px 2px 2px 0px;
  11965. box-sizing:border-box;
  11966. width:100%;
  11967. }
  11968. #u10418_text {
  11969. border-width:0px;
  11970. word-wrap:break-word;
  11971. text-transform:none;
  11972. visibility:hidden;
  11973. }
  11974. #u10419_img {
  11975. border-width:0px;
  11976. position:absolute;
  11977. left:0px;
  11978. top:0px;
  11979. width:80px;
  11980. height:33px;
  11981. }
  11982. #u10419 {
  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. #u10419 .text {
  11997. position:absolute;
  11998. align-self:center;
  11999. padding:2px 2px 2px 0px;
  12000. box-sizing:border-box;
  12001. width:100%;
  12002. }
  12003. #u10419_text {
  12004. border-width:0px;
  12005. word-wrap:break-word;
  12006. text-transform:none;
  12007. visibility:hidden;
  12008. }
  12009. #u10420_img {
  12010. border-width:0px;
  12011. position:absolute;
  12012. left:0px;
  12013. top:0px;
  12014. width:80px;
  12015. height:33px;
  12016. }
  12017. #u10420 {
  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. #u10420 .text {
  12032. position:absolute;
  12033. align-self:center;
  12034. padding:2px 2px 2px 0px;
  12035. box-sizing:border-box;
  12036. width:100%;
  12037. }
  12038. #u10420_text {
  12039. border-width:0px;
  12040. word-wrap:break-word;
  12041. text-transform:none;
  12042. visibility:hidden;
  12043. }
  12044. #u10421_img {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:0px;
  12048. top:0px;
  12049. width:80px;
  12050. height:33px;
  12051. }
  12052. #u10421 {
  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. #u10421 .text {
  12067. position:absolute;
  12068. align-self:center;
  12069. padding:2px 2px 2px 0px;
  12070. box-sizing:border-box;
  12071. width:100%;
  12072. }
  12073. #u10421_text {
  12074. border-width:0px;
  12075. word-wrap:break-word;
  12076. text-transform:none;
  12077. visibility:hidden;
  12078. }
  12079. #u10422_img {
  12080. border-width:0px;
  12081. position:absolute;
  12082. left:0px;
  12083. top:0px;
  12084. width:80px;
  12085. height:33px;
  12086. }
  12087. #u10422 {
  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. #u10422 .text {
  12102. position:absolute;
  12103. align-self:center;
  12104. padding:2px 2px 2px 0px;
  12105. box-sizing:border-box;
  12106. width:100%;
  12107. }
  12108. #u10422_text {
  12109. border-width:0px;
  12110. word-wrap:break-word;
  12111. text-transform:none;
  12112. visibility:hidden;
  12113. }
  12114. #u10423_img {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:80px;
  12120. height:33px;
  12121. }
  12122. #u10423 {
  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. #u10423 .text {
  12137. position:absolute;
  12138. align-self:center;
  12139. padding:2px 2px 2px 0px;
  12140. box-sizing:border-box;
  12141. width:100%;
  12142. }
  12143. #u10423_text {
  12144. border-width:0px;
  12145. word-wrap:break-word;
  12146. text-transform:none;
  12147. visibility:hidden;
  12148. }
  12149. #u10424_img {
  12150. border-width:0px;
  12151. position:absolute;
  12152. left:0px;
  12153. top:0px;
  12154. width:80px;
  12155. height:33px;
  12156. }
  12157. #u10424 {
  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. #u10424 .text {
  12172. position:absolute;
  12173. align-self:center;
  12174. padding:2px 2px 2px 0px;
  12175. box-sizing:border-box;
  12176. width:100%;
  12177. }
  12178. #u10424_text {
  12179. border-width:0px;
  12180. word-wrap:break-word;
  12181. text-transform:none;
  12182. visibility:hidden;
  12183. }
  12184. #u10425_img {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:0px;
  12188. top:0px;
  12189. width:80px;
  12190. height:33px;
  12191. }
  12192. #u10425 {
  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. #u10425 .text {
  12207. position:absolute;
  12208. align-self:center;
  12209. padding:2px 2px 2px 0px;
  12210. box-sizing:border-box;
  12211. width:100%;
  12212. }
  12213. #u10425_text {
  12214. border-width:0px;
  12215. word-wrap:break-word;
  12216. text-transform:none;
  12217. visibility:hidden;
  12218. }
  12219. #u10426_img {
  12220. border-width:0px;
  12221. position:absolute;
  12222. left:0px;
  12223. top:0px;
  12224. width:102px;
  12225. height:33px;
  12226. }
  12227. #u10426 {
  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. #u10426 .text {
  12242. position:absolute;
  12243. align-self:center;
  12244. padding:2px 2px 2px 0px;
  12245. box-sizing:border-box;
  12246. width:100%;
  12247. }
  12248. #u10426_text {
  12249. border-width:0px;
  12250. word-wrap:break-word;
  12251. text-transform:none;
  12252. visibility:hidden;
  12253. }
  12254. #u10427_img {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:0px;
  12258. top:0px;
  12259. width:90px;
  12260. height:33px;
  12261. }
  12262. #u10427 {
  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. #u10427 .text {
  12277. position:absolute;
  12278. align-self:center;
  12279. padding:2px 2px 2px 0px;
  12280. box-sizing:border-box;
  12281. width:100%;
  12282. }
  12283. #u10427_text {
  12284. border-width:0px;
  12285. word-wrap:break-word;
  12286. text-transform:none;
  12287. visibility:hidden;
  12288. }
  12289. #u10428_img {
  12290. border-width:0px;
  12291. position:absolute;
  12292. left:0px;
  12293. top:0px;
  12294. width:80px;
  12295. height:33px;
  12296. }
  12297. #u10428 {
  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. #u10428 .text {
  12312. position:absolute;
  12313. align-self:center;
  12314. padding:2px 2px 2px 0px;
  12315. box-sizing:border-box;
  12316. width:100%;
  12317. }
  12318. #u10428_text {
  12319. border-width:0px;
  12320. word-wrap:break-word;
  12321. text-transform:none;
  12322. visibility:hidden;
  12323. }
  12324. #u10429_img {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:80px;
  12330. height:33px;
  12331. }
  12332. #u10429 {
  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. #u10429 .text {
  12347. position:absolute;
  12348. align-self:center;
  12349. padding:2px 2px 2px 0px;
  12350. box-sizing:border-box;
  12351. width:100%;
  12352. }
  12353. #u10429_text {
  12354. border-width:0px;
  12355. word-wrap:break-word;
  12356. text-transform:none;
  12357. visibility:hidden;
  12358. }
  12359. #u10430_img {
  12360. border-width:0px;
  12361. position:absolute;
  12362. left:0px;
  12363. top:0px;
  12364. width:80px;
  12365. height:33px;
  12366. }
  12367. #u10430 {
  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. #u10430 .text {
  12382. position:absolute;
  12383. align-self:center;
  12384. padding:2px 2px 2px 0px;
  12385. box-sizing:border-box;
  12386. width:100%;
  12387. }
  12388. #u10430_text {
  12389. border-width:0px;
  12390. word-wrap:break-word;
  12391. text-transform:none;
  12392. visibility:hidden;
  12393. }
  12394. #u10431_img {
  12395. border-width:0px;
  12396. position:absolute;
  12397. left:0px;
  12398. top:0px;
  12399. width:80px;
  12400. height:33px;
  12401. }
  12402. #u10431 {
  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. #u10431 .text {
  12417. position:absolute;
  12418. align-self:center;
  12419. padding:2px 2px 2px 0px;
  12420. box-sizing:border-box;
  12421. width:100%;
  12422. }
  12423. #u10431_text {
  12424. border-width:0px;
  12425. word-wrap:break-word;
  12426. text-transform:none;
  12427. visibility:hidden;
  12428. }
  12429. #u10432_img {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:80px;
  12435. height:33px;
  12436. }
  12437. #u10432 {
  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. #u10432 .text {
  12452. position:absolute;
  12453. align-self:center;
  12454. padding:2px 2px 2px 0px;
  12455. box-sizing:border-box;
  12456. width:100%;
  12457. }
  12458. #u10432_text {
  12459. border-width:0px;
  12460. word-wrap:break-word;
  12461. text-transform:none;
  12462. visibility:hidden;
  12463. }
  12464. #u10433_img {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:180px;
  12470. height:33px;
  12471. }
  12472. #u10433 {
  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. #u10433 .text {
  12487. position:absolute;
  12488. align-self:center;
  12489. padding:2px 2px 2px 0px;
  12490. box-sizing:border-box;
  12491. width:100%;
  12492. }
  12493. #u10433_text {
  12494. border-width:0px;
  12495. word-wrap:break-word;
  12496. text-transform:none;
  12497. visibility:hidden;
  12498. }
  12499. #u10434 {
  12500. border-width:0px;
  12501. position:absolute;
  12502. left:0px;
  12503. top:0px;
  12504. width:0px;
  12505. height:0px;
  12506. }
  12507. #u10435_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. #u10435 {
  12531. border-width:0px;
  12532. position:absolute;
  12533. left:2947px;
  12534. top:431px;
  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. #u10435 .text {
  12545. position:absolute;
  12546. align-self:center;
  12547. padding:2px 2px 2px 2px;
  12548. box-sizing:border-box;
  12549. width:100%;
  12550. }
  12551. #u10435_text {
  12552. border-width:0px;
  12553. word-wrap:break-word;
  12554. text-transform:none;
  12555. visibility:hidden;
  12556. }
  12557. #u10436_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. #u10436 {
  12585. border-width:0px;
  12586. position:absolute;
  12587. left:2957px;
  12588. top:441px;
  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. #u10436 .text {
  12598. position:absolute;
  12599. align-self:center;
  12600. padding:2px 2px 2px 2px;
  12601. box-sizing:border-box;
  12602. width:100%;
  12603. }
  12604. #u10436_text {
  12605. border-width:0px;
  12606. word-wrap:break-word;
  12607. text-transform:none;
  12608. }
  12609. #u10437_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. #u10437 {
  12634. border-width:0px;
  12635. position:absolute;
  12636. left:2957px;
  12637. top:521px;
  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. #u10437 .text {
  12647. position:absolute;
  12648. align-self:center;
  12649. padding:2px 2px 2px 2px;
  12650. box-sizing:border-box;
  12651. width:100%;
  12652. }
  12653. #u10437_text {
  12654. border-width:0px;
  12655. word-wrap:break-word;
  12656. text-transform:none;
  12657. }
  12658. #u10438_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. #u10438 {
  12686. border-width:0px;
  12687. position:absolute;
  12688. left:2957px;
  12689. top:481px;
  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. #u10438 .text {
  12699. position:absolute;
  12700. align-self:center;
  12701. padding:2px 2px 2px 2px;
  12702. box-sizing:border-box;
  12703. width:100%;
  12704. }
  12705. #u10438_text {
  12706. border-width:0px;
  12707. word-wrap:break-word;
  12708. text-transform:none;
  12709. }
  12710. #u10439_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. #u10439 {
  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. #u10439 .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. #u10439_text {
  12754. border-width:0px;
  12755. word-wrap:break-word;
  12756. text-transform:none;
  12757. }
  12758. #u10440 {
  12759. border-width:0px;
  12760. position:absolute;
  12761. left:0px;
  12762. top:0px;
  12763. width:0px;
  12764. height:0px;
  12765. }
  12766. #u10441_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. #u10441 {
  12790. border-width:0px;
  12791. position:absolute;
  12792. left:2798px;
  12793. top:431px;
  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. #u10441 .text {
  12804. position:absolute;
  12805. align-self:center;
  12806. padding:2px 2px 2px 2px;
  12807. box-sizing:border-box;
  12808. width:100%;
  12809. }
  12810. #u10441_text {
  12811. border-width:0px;
  12812. word-wrap:break-word;
  12813. text-transform:none;
  12814. visibility:hidden;
  12815. }
  12816. #u10442_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. #u10442 {
  12844. border-width:0px;
  12845. position:absolute;
  12846. left:2808px;
  12847. top:441px;
  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. #u10442 .text {
  12857. position:absolute;
  12858. align-self:center;
  12859. padding:2px 2px 2px 2px;
  12860. box-sizing:border-box;
  12861. width:100%;
  12862. }
  12863. #u10442_text {
  12864. border-width:0px;
  12865. word-wrap:break-word;
  12866. text-transform:none;
  12867. }
  12868. #u10443_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. #u10443 {
  12893. border-width:0px;
  12894. position:absolute;
  12895. left:2808px;
  12896. top:521px;
  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. #u10443 .text {
  12906. position:absolute;
  12907. align-self:center;
  12908. padding:2px 2px 2px 2px;
  12909. box-sizing:border-box;
  12910. width:100%;
  12911. }
  12912. #u10443_text {
  12913. border-width:0px;
  12914. word-wrap:break-word;
  12915. text-transform:none;
  12916. }
  12917. #u10444_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. #u10444 {
  12945. border-width:0px;
  12946. position:absolute;
  12947. left:2808px;
  12948. top:481px;
  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. #u10444 .text {
  12958. position:absolute;
  12959. align-self:center;
  12960. padding:2px 2px 2px 2px;
  12961. box-sizing:border-box;
  12962. width:100%;
  12963. }
  12964. #u10444_text {
  12965. border-width:0px;
  12966. word-wrap:break-word;
  12967. text-transform:none;
  12968. }
  12969. #u10445 {
  12970. border-width:0px;
  12971. position:absolute;
  12972. left:0px;
  12973. top:0px;
  12974. width:0px;
  12975. height:0px;
  12976. }
  12977. #u10446 {
  12978. border-width:0px;
  12979. position:absolute;
  12980. left:0px;
  12981. top:0px;
  12982. width:0px;
  12983. height:0px;
  12984. }
  12985. #u10447_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. #u10447 {
  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. #u10447 .text {
  13016. position:absolute;
  13017. align-self:center;
  13018. padding:2px 2px 2px 2px;
  13019. box-sizing:border-box;
  13020. width:100%;
  13021. }
  13022. #u10447_text {
  13023. border-width:0px;
  13024. word-wrap:break-word;
  13025. text-transform:none;
  13026. visibility:hidden;
  13027. }
  13028. #u10448_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. #u10448 {
  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. #u10448 .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. #u10448_text {
  13072. border-width:0px;
  13073. word-wrap:break-word;
  13074. text-transform:none;
  13075. }
  13076. #u10449_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. #u10449 {
  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. #u10449 .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. #u10449_text {
  13120. border-width:0px;
  13121. white-space:nowrap;
  13122. text-transform:none;
  13123. }
  13124. #u10450_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. #u10450 {
  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. #u10450 .text {
  13159. position:absolute;
  13160. align-self:center;
  13161. padding:2px 16px 2px 16px;
  13162. box-sizing:border-box;
  13163. width:100%;
  13164. }
  13165. #u10450_text {
  13166. border-width:0px;
  13167. white-space:nowrap;
  13168. text-transform:none;
  13169. }
  13170. #u10451_img {
  13171. border-width:0px;
  13172. position:absolute;
  13173. left:0px;
  13174. top:0px;
  13175. width:20px;
  13176. height:20px;
  13177. }
  13178. #u10451 {
  13179. border-width:0px;
  13180. position:absolute;
  13181. left:2639px;
  13182. top:687px;
  13183. width:20px;
  13184. height:20px;
  13185. display:flex;
  13186. }
  13187. #u10451 .text {
  13188. position:absolute;
  13189. align-self:center;
  13190. padding:2px 2px 2px 2px;
  13191. box-sizing:border-box;
  13192. width:100%;
  13193. }
  13194. #u10451_text {
  13195. border-width:0px;
  13196. word-wrap:break-word;
  13197. text-transform:none;
  13198. visibility:hidden;
  13199. }
  13200. #u10452_div {
  13201. border-width:0px;
  13202. position:absolute;
  13203. left:0px;
  13204. top:0px;
  13205. width:349px;
  13206. height:60px;
  13207. background:inherit;
  13208. background-color:rgba(255, 255, 255, 0);
  13209. border:none;
  13210. border-radius:0px;
  13211. -moz-box-shadow:none;
  13212. -webkit-box-shadow:none;
  13213. box-shadow:none;
  13214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13215. font-weight:400;
  13216. font-style:normal;
  13217. font-size:12px;
  13218. color:#D9001B;
  13219. line-height:30px;
  13220. }
  13221. #u10452 {
  13222. border-width:0px;
  13223. position:absolute;
  13224. left:2467px;
  13225. top:388px;
  13226. width:349px;
  13227. height:60px;
  13228. display:flex;
  13229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13230. font-weight:400;
  13231. font-style:normal;
  13232. font-size:12px;
  13233. color:#D9001B;
  13234. line-height:30px;
  13235. }
  13236. #u10452 .text {
  13237. position:absolute;
  13238. align-self:flex-start;
  13239. padding:0px 0px 0px 0px;
  13240. box-sizing:border-box;
  13241. width:100%;
  13242. }
  13243. #u10452_text {
  13244. border-width:0px;
  13245. white-space:nowrap;
  13246. text-transform:none;
  13247. }