styles.css 217 KB

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