styles.css 138 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u9639_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u9639 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u9639 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u9639_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u9640_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u9640 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u9640 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u9640_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u9641_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u9641 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u9641 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u9641_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u9642 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u9643_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u9643 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u9643 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u9643_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u9644_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u9644 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u9644 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u9644_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u9645_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u9645 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u9645 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u9645_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u9646 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u9647_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u9647 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u9647 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u9647_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u9648_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u9648 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u9648 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u9648_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u9649 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u9650_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u9650 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u9650 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u9650_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u9651_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u9651 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u9651 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u9651_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u9652 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u9653_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u9653 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u9653 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u9653_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u9654_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u9654 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u9654 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u9654_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u9655 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u9656_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u9656 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u9656 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u9656_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u9657_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u9657 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u9657 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u9657_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u9658 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u9659_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u9659 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u9659 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u9659_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u9660_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u9660 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u9660 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u9660_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u9661 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u9662_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u9662 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u9662 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u9662_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u9663_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u9663 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u9663 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u9663_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u9664 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u9665_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u9665 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u9665 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u9665_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u9666_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u9666 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u9666 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u9666_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u9667 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u9668_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u9668 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u9668 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u9668_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u9669_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u9669 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u9669 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u9669_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u9670 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u9671_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u9671 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u9671 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u9671_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u9672_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u9672 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u9672 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u9672_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u9673 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u9674_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u9674 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u9674 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u9674_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u9675_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u9675 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u9675 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u9675_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u9676 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u9677_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u9677 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u9677 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u9677_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u9678_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u9678 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u9678 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u9678_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u9679 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u9680_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u9680_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u9680_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u9680 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u9680 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u9680_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u9680.disabled {
  1276. }
  1277. .u9680_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u9681_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u9681 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u9681 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u9681_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u9682_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u9682 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u9682 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u9682_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u9683_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u9683 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u9683 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u9683_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u9684 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u9685_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u9685 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u9685 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u9685_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u9686_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u9686 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u9686 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u9686_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u9687_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u9687 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u9687 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u9687_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u9688_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u9688 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u9688 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u9688_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u9689_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u9689 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u9689 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u9689_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u9690 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u9691_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u9691 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u9691 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u9691_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u9692_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u9692 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u9692 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u9692_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u9693_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1193px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1656. color:#1890FF;
  1657. }
  1658. #u9693 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:329px;
  1662. top:50px;
  1663. width:1265px;
  1664. height:1193px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u9693 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u9693_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u9694_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:109px;
  1687. height:50px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. }
  1705. #u9694 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:348px;
  1709. top:50px;
  1710. width:109px;
  1711. height:50px;
  1712. display:flex;
  1713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1714. font-weight:500;
  1715. font-style:normal;
  1716. font-size:18px;
  1717. }
  1718. #u9694 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u9694_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u9695 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:348px;
  1734. top:191px;
  1735. width:1228px;
  1736. height:364px;
  1737. }
  1738. #u9696_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:136px;
  1744. height:39px;
  1745. }
  1746. #u9696 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:136px;
  1752. height:39px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:12px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u9696 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 0px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u9696_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. }
  1772. #u9697_img {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:136px;
  1778. height:39px;
  1779. }
  1780. #u9697 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:136px;
  1784. top:0px;
  1785. width:136px;
  1786. height:39px;
  1787. display:flex;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:12px;
  1792. color:#FFFFFF;
  1793. }
  1794. #u9697 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 0px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u9697_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. }
  1806. #u9698_img {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:136px;
  1812. height:39px;
  1813. }
  1814. #u9698 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:272px;
  1818. top:0px;
  1819. width:136px;
  1820. height:39px;
  1821. display:flex;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. font-size:12px;
  1826. color:#FFFFFF;
  1827. }
  1828. #u9698 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 2px 2px 0px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u9698_text {
  1836. border-width:0px;
  1837. word-wrap:break-word;
  1838. text-transform:none;
  1839. }
  1840. #u9699_img {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:136px;
  1846. height:39px;
  1847. }
  1848. #u9699 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:408px;
  1852. top:0px;
  1853. width:136px;
  1854. height:39px;
  1855. display:flex;
  1856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1857. font-weight:400;
  1858. font-style:normal;
  1859. font-size:12px;
  1860. color:#FFFFFF;
  1861. }
  1862. #u9699 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 2px 2px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u9699_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u9700_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:138px;
  1880. height:39px;
  1881. }
  1882. #u9700 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:544px;
  1886. top:0px;
  1887. width:138px;
  1888. height:39px;
  1889. display:flex;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:12px;
  1894. color:#FFFFFF;
  1895. }
  1896. #u9700 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 0px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u9700_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. }
  1908. #u9701_img {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:0px;
  1912. top:0px;
  1913. width:138px;
  1914. height:39px;
  1915. }
  1916. #u9701 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:682px;
  1920. top:0px;
  1921. width:138px;
  1922. height:39px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:12px;
  1928. color:#FFFFFF;
  1929. }
  1930. #u9701 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 0px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u9701_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. }
  1942. #u9702_img {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:138px;
  1948. height:39px;
  1949. }
  1950. #u9702 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:820px;
  1954. top:0px;
  1955. width:138px;
  1956. height:39px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:12px;
  1962. color:#FFFFFF;
  1963. }
  1964. #u9702 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u9702_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u9703_img {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:136px;
  1982. height:39px;
  1983. }
  1984. #u9703 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:958px;
  1988. top:0px;
  1989. width:136px;
  1990. height:39px;
  1991. display:flex;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:12px;
  1996. color:#FFFFFF;
  1997. }
  1998. #u9703 .text {
  1999. position:absolute;
  2000. align-self:center;
  2001. padding:2px 2px 2px 0px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u9703_text {
  2006. border-width:0px;
  2007. word-wrap:break-word;
  2008. text-transform:none;
  2009. }
  2010. #u9704_img {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:134px;
  2016. height:39px;
  2017. }
  2018. #u9704 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:1094px;
  2022. top:0px;
  2023. width:134px;
  2024. height:39px;
  2025. display:flex;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:12px;
  2030. color:#FFFFFF;
  2031. }
  2032. #u9704 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:2px 2px 2px 0px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u9704_text {
  2040. border-width:0px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u9705_img {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:136px;
  2050. height:36px;
  2051. }
  2052. #u9705 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:39px;
  2057. width:136px;
  2058. height:36px;
  2059. display:flex;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:12px;
  2064. }
  2065. #u9705 .text {
  2066. position:absolute;
  2067. align-self:center;
  2068. padding:2px 2px 2px 0px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u9705_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. visibility:hidden;
  2077. }
  2078. #u9706_img {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:136px;
  2084. height:36px;
  2085. }
  2086. #u9706 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:136px;
  2090. top:39px;
  2091. width:136px;
  2092. height:36px;
  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. }
  2099. #u9706 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:2px 2px 2px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u9706_text {
  2107. border-width:0px;
  2108. word-wrap:break-word;
  2109. text-transform:none;
  2110. visibility:hidden;
  2111. }
  2112. #u9707_img {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:136px;
  2118. height:36px;
  2119. }
  2120. #u9707 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:272px;
  2124. top:39px;
  2125. width:136px;
  2126. height:36px;
  2127. display:flex;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:12px;
  2132. }
  2133. #u9707 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:2px 2px 2px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u9707_text {
  2141. border-width:0px;
  2142. word-wrap:break-word;
  2143. text-transform:none;
  2144. visibility:hidden;
  2145. }
  2146. #u9708_img {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:136px;
  2152. height:36px;
  2153. }
  2154. #u9708 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:408px;
  2158. top:39px;
  2159. width:136px;
  2160. height:36px;
  2161. display:flex;
  2162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:12px;
  2166. }
  2167. #u9708 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 2px 2px 0px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u9708_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. visibility:hidden;
  2179. }
  2180. #u9709_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:138px;
  2186. height:36px;
  2187. }
  2188. #u9709 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:544px;
  2192. top:39px;
  2193. width:138px;
  2194. height:36px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:12px;
  2200. }
  2201. #u9709 .text {
  2202. position:absolute;
  2203. align-self:center;
  2204. padding:2px 2px 2px 0px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u9709_text {
  2209. border-width:0px;
  2210. word-wrap:break-word;
  2211. text-transform:none;
  2212. visibility:hidden;
  2213. }
  2214. #u9710_img {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:138px;
  2220. height:36px;
  2221. }
  2222. #u9710 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:682px;
  2226. top:39px;
  2227. width:138px;
  2228. height:36px;
  2229. display:flex;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:12px;
  2234. }
  2235. #u9710 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u9710_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u9711_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:138px;
  2254. height:36px;
  2255. }
  2256. #u9711 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:820px;
  2260. top:39px;
  2261. width:138px;
  2262. height:36px;
  2263. display:flex;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:12px;
  2268. }
  2269. #u9711 .text {
  2270. position:absolute;
  2271. align-self:center;
  2272. padding:2px 2px 2px 0px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u9711_text {
  2277. border-width:0px;
  2278. word-wrap:break-word;
  2279. text-transform:none;
  2280. visibility:hidden;
  2281. }
  2282. #u9712_img {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:136px;
  2288. height:36px;
  2289. }
  2290. #u9712 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:958px;
  2294. top:39px;
  2295. width:136px;
  2296. height:36px;
  2297. display:flex;
  2298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:12px;
  2302. }
  2303. #u9712 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u9712_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u9713_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:134px;
  2322. height:36px;
  2323. }
  2324. #u9713 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:1094px;
  2328. top:39px;
  2329. width:134px;
  2330. height:36px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:12px;
  2336. }
  2337. #u9713 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:2px 2px 2px 0px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u9713_text {
  2345. border-width:0px;
  2346. word-wrap:break-word;
  2347. text-transform:none;
  2348. visibility:hidden;
  2349. }
  2350. #u9714_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:136px;
  2356. height:38px;
  2357. }
  2358. #u9714 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:75px;
  2363. width:136px;
  2364. height:38px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:12px;
  2370. }
  2371. #u9714 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 0px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u9714_text {
  2379. border-width:0px;
  2380. word-wrap:break-word;
  2381. text-transform:none;
  2382. visibility:hidden;
  2383. }
  2384. #u9715_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:136px;
  2390. height:38px;
  2391. }
  2392. #u9715 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:136px;
  2396. top:75px;
  2397. width:136px;
  2398. height:38px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. }
  2405. #u9715 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u9715_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. visibility:hidden;
  2417. }
  2418. #u9716_img {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:136px;
  2424. height:38px;
  2425. }
  2426. #u9716 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:272px;
  2430. top:75px;
  2431. width:136px;
  2432. height:38px;
  2433. display:flex;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:12px;
  2438. }
  2439. #u9716 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 0px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u9716_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u9717_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:136px;
  2458. height:38px;
  2459. }
  2460. #u9717 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:408px;
  2464. top:75px;
  2465. width:136px;
  2466. height:38px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:12px;
  2472. }
  2473. #u9717 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u9717_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. visibility:hidden;
  2485. }
  2486. #u9718_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:138px;
  2492. height:38px;
  2493. }
  2494. #u9718 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:544px;
  2498. top:75px;
  2499. width:138px;
  2500. height:38px;
  2501. display:flex;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:12px;
  2506. }
  2507. #u9718 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:2px 2px 2px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u9718_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. visibility:hidden;
  2519. }
  2520. #u9719_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:138px;
  2526. height:38px;
  2527. }
  2528. #u9719 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:682px;
  2532. top:75px;
  2533. width:138px;
  2534. height:38px;
  2535. display:flex;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:12px;
  2540. }
  2541. #u9719 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 0px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u9719_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. visibility:hidden;
  2553. }
  2554. #u9720_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:138px;
  2560. height:38px;
  2561. }
  2562. #u9720 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:820px;
  2566. top:75px;
  2567. width:138px;
  2568. height:38px;
  2569. display:flex;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:12px;
  2574. }
  2575. #u9720 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 0px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u9720_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u9721_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:136px;
  2594. height:38px;
  2595. }
  2596. #u9721 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:958px;
  2600. top:75px;
  2601. width:136px;
  2602. height:38px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. }
  2609. #u9721 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u9721_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u9722_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:134px;
  2628. height:38px;
  2629. }
  2630. #u9722 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:1094px;
  2634. top:75px;
  2635. width:134px;
  2636. height:38px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. }
  2643. #u9722 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u9722_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. visibility:hidden;
  2655. }
  2656. #u9723_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:136px;
  2662. height:38px;
  2663. }
  2664. #u9723 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:113px;
  2669. width:136px;
  2670. height:38px;
  2671. display:flex;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:12px;
  2676. }
  2677. #u9723 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u9723_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u9724_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:136px;
  2696. height:38px;
  2697. }
  2698. #u9724 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:136px;
  2702. top:113px;
  2703. width:136px;
  2704. height:38px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:12px;
  2710. }
  2711. #u9724 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u9724_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u9725_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:136px;
  2730. height:38px;
  2731. }
  2732. #u9725 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:272px;
  2736. top:113px;
  2737. width:136px;
  2738. height:38px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:12px;
  2744. }
  2745. #u9725 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 0px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u9725_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u9726_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:136px;
  2764. height:38px;
  2765. }
  2766. #u9726 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:408px;
  2770. top:113px;
  2771. width:136px;
  2772. height:38px;
  2773. display:flex;
  2774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. }
  2779. #u9726 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:2px 2px 2px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u9726_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. visibility:hidden;
  2791. }
  2792. #u9727_img {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:138px;
  2798. height:38px;
  2799. }
  2800. #u9727 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:544px;
  2804. top:113px;
  2805. width:138px;
  2806. height:38px;
  2807. display:flex;
  2808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2809. font-weight:400;
  2810. font-style:normal;
  2811. font-size:12px;
  2812. }
  2813. #u9727 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u9727_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u9728_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:138px;
  2832. height:38px;
  2833. }
  2834. #u9728 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:682px;
  2838. top:113px;
  2839. width:138px;
  2840. height:38px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. }
  2847. #u9728 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u9728_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. visibility:hidden;
  2859. }
  2860. #u9729_img {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:138px;
  2866. height:38px;
  2867. }
  2868. #u9729 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:820px;
  2872. top:113px;
  2873. width:138px;
  2874. height:38px;
  2875. display:flex;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:12px;
  2880. }
  2881. #u9729 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u9729_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. visibility:hidden;
  2893. }
  2894. #u9730_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:136px;
  2900. height:38px;
  2901. }
  2902. #u9730 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:958px;
  2906. top:113px;
  2907. width:136px;
  2908. height:38px;
  2909. display:flex;
  2910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:12px;
  2914. }
  2915. #u9730 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u9730_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u9731_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:134px;
  2934. height:38px;
  2935. }
  2936. #u9731 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:1094px;
  2940. top:113px;
  2941. width:134px;
  2942. height:38px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. }
  2949. #u9731 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 0px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u9731_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. visibility:hidden;
  2961. }
  2962. #u9732_img {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:136px;
  2968. height:38px;
  2969. }
  2970. #u9732 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:151px;
  2975. width:136px;
  2976. height:38px;
  2977. display:flex;
  2978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2979. font-weight:400;
  2980. font-style:normal;
  2981. font-size:12px;
  2982. }
  2983. #u9732 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u9732_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u9733_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:136px;
  3002. height:38px;
  3003. }
  3004. #u9733 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:136px;
  3008. top:151px;
  3009. width:136px;
  3010. height:38px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:12px;
  3016. }
  3017. #u9733 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u9733_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u9734_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:136px;
  3036. height:38px;
  3037. }
  3038. #u9734 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:272px;
  3042. top:151px;
  3043. width:136px;
  3044. height:38px;
  3045. display:flex;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. }
  3051. #u9734 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 0px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u9734_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u9735_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:136px;
  3070. height:38px;
  3071. }
  3072. #u9735 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:408px;
  3076. top:151px;
  3077. width:136px;
  3078. height:38px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:12px;
  3084. }
  3085. #u9735 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u9735_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u9736_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:138px;
  3104. height:38px;
  3105. }
  3106. #u9736 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:544px;
  3110. top:151px;
  3111. width:138px;
  3112. height:38px;
  3113. display:flex;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:12px;
  3118. }
  3119. #u9736 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u9736_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u9737_img {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:138px;
  3138. height:38px;
  3139. }
  3140. #u9737 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:682px;
  3144. top:151px;
  3145. width:138px;
  3146. height:38px;
  3147. display:flex;
  3148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:12px;
  3152. }
  3153. #u9737 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:2px 2px 2px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u9737_text {
  3161. border-width:0px;
  3162. word-wrap:break-word;
  3163. text-transform:none;
  3164. visibility:hidden;
  3165. }
  3166. #u9738_img {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:138px;
  3172. height:38px;
  3173. }
  3174. #u9738 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:820px;
  3178. top:151px;
  3179. width:138px;
  3180. height:38px;
  3181. display:flex;
  3182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. font-size:12px;
  3186. }
  3187. #u9738 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:2px 2px 2px 0px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u9738_text {
  3195. border-width:0px;
  3196. word-wrap:break-word;
  3197. text-transform:none;
  3198. visibility:hidden;
  3199. }
  3200. #u9739_img {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:136px;
  3206. height:38px;
  3207. }
  3208. #u9739 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:958px;
  3212. top:151px;
  3213. width:136px;
  3214. height:38px;
  3215. display:flex;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:12px;
  3220. }
  3221. #u9739 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u9739_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u9740_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:134px;
  3240. height:38px;
  3241. }
  3242. #u9740 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:1094px;
  3246. top:151px;
  3247. width:134px;
  3248. height:38px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. }
  3255. #u9740 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u9740_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u9741_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:136px;
  3274. height:35px;
  3275. }
  3276. #u9741 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:189px;
  3281. width:136px;
  3282. height:35px;
  3283. display:flex;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:12px;
  3288. color:#606266;
  3289. }
  3290. #u9741 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 0px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u9741_text {
  3298. border-width:0px;
  3299. word-wrap:break-word;
  3300. text-transform:none;
  3301. visibility:hidden;
  3302. }
  3303. #u9742_img {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:136px;
  3309. height:35px;
  3310. }
  3311. #u9742 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:136px;
  3315. top:189px;
  3316. width:136px;
  3317. height:35px;
  3318. display:flex;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:12px;
  3323. color:#606266;
  3324. }
  3325. #u9742 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u9742_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. visibility:hidden;
  3337. }
  3338. #u9743_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:136px;
  3344. height:35px;
  3345. }
  3346. #u9743 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:272px;
  3350. top:189px;
  3351. width:136px;
  3352. height:35px;
  3353. display:flex;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. color:#606266;
  3359. }
  3360. #u9743 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u9743_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u9744_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:136px;
  3379. height:35px;
  3380. }
  3381. #u9744 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:408px;
  3385. top:189px;
  3386. width:136px;
  3387. height:35px;
  3388. display:flex;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. color:#606266;
  3394. }
  3395. #u9744 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 0px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u9744_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. visibility:hidden;
  3407. }
  3408. #u9745_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:138px;
  3414. height:35px;
  3415. }
  3416. #u9745 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:544px;
  3420. top:189px;
  3421. width:138px;
  3422. height:35px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. color:#606266;
  3429. }
  3430. #u9745 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u9745_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u9746_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:138px;
  3449. height:35px;
  3450. }
  3451. #u9746 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:682px;
  3455. top:189px;
  3456. width:138px;
  3457. height:35px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. color:#606266;
  3464. }
  3465. #u9746 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 0px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u9746_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. visibility:hidden;
  3477. }
  3478. #u9747_img {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:138px;
  3484. height:35px;
  3485. }
  3486. #u9747 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:820px;
  3490. top:189px;
  3491. width:138px;
  3492. height:35px;
  3493. display:flex;
  3494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:12px;
  3498. color:#606266;
  3499. }
  3500. #u9747 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:2px 2px 2px 0px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u9747_text {
  3508. border-width:0px;
  3509. word-wrap:break-word;
  3510. text-transform:none;
  3511. visibility:hidden;
  3512. }
  3513. #u9748_img {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:136px;
  3519. height:35px;
  3520. }
  3521. #u9748 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:958px;
  3525. top:189px;
  3526. width:136px;
  3527. height:35px;
  3528. display:flex;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:12px;
  3533. color:#606266;
  3534. }
  3535. #u9748 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 0px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u9748_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. visibility:hidden;
  3547. }
  3548. #u9749_img {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:134px;
  3554. height:35px;
  3555. }
  3556. #u9749 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:1094px;
  3560. top:189px;
  3561. width:134px;
  3562. height:35px;
  3563. display:flex;
  3564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3565. font-weight:400;
  3566. font-style:normal;
  3567. font-size:12px;
  3568. color:#606266;
  3569. }
  3570. #u9749 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 0px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u9749_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u9750_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:136px;
  3589. height:35px;
  3590. }
  3591. #u9750 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:224px;
  3596. width:136px;
  3597. height:35px;
  3598. display:flex;
  3599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:12px;
  3603. color:#606266;
  3604. }
  3605. #u9750 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 0px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u9750_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. visibility:hidden;
  3617. }
  3618. #u9751_img {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:136px;
  3624. height:35px;
  3625. }
  3626. #u9751 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:136px;
  3630. top:224px;
  3631. width:136px;
  3632. height:35px;
  3633. display:flex;
  3634. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:12px;
  3638. color:#606266;
  3639. }
  3640. #u9751 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 0px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u9751_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. visibility:hidden;
  3652. }
  3653. #u9752_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:136px;
  3659. height:35px;
  3660. }
  3661. #u9752 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:272px;
  3665. top:224px;
  3666. width:136px;
  3667. height:35px;
  3668. display:flex;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:12px;
  3673. color:#606266;
  3674. }
  3675. #u9752 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 2px 2px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u9752_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u9753_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:136px;
  3694. height:35px;
  3695. }
  3696. #u9753 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:408px;
  3700. top:224px;
  3701. width:136px;
  3702. height:35px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. color:#606266;
  3709. }
  3710. #u9753 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u9753_text {
  3718. border-width:0px;
  3719. word-wrap:break-word;
  3720. text-transform:none;
  3721. visibility:hidden;
  3722. }
  3723. #u9754_img {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:138px;
  3729. height:35px;
  3730. }
  3731. #u9754 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:544px;
  3735. top:224px;
  3736. width:138px;
  3737. height:35px;
  3738. display:flex;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:12px;
  3743. color:#606266;
  3744. }
  3745. #u9754 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u9754_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u9755_img {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:138px;
  3764. height:35px;
  3765. }
  3766. #u9755 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:682px;
  3770. top:224px;
  3771. width:138px;
  3772. height:35px;
  3773. display:flex;
  3774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:12px;
  3778. color:#606266;
  3779. }
  3780. #u9755 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 0px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u9755_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u9756_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:138px;
  3799. height:35px;
  3800. }
  3801. #u9756 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:820px;
  3805. top:224px;
  3806. width:138px;
  3807. height:35px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. font-size:12px;
  3813. color:#606266;
  3814. }
  3815. #u9756 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 0px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u9756_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u9757_img {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:136px;
  3834. height:35px;
  3835. }
  3836. #u9757 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:958px;
  3840. top:224px;
  3841. width:136px;
  3842. height:35px;
  3843. display:flex;
  3844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:12px;
  3848. color:#606266;
  3849. }
  3850. #u9757 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 0px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u9757_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. visibility:hidden;
  3862. }
  3863. #u9758_img {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:134px;
  3869. height:35px;
  3870. }
  3871. #u9758 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:1094px;
  3875. top:224px;
  3876. width:134px;
  3877. height:35px;
  3878. display:flex;
  3879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:12px;
  3883. color:#606266;
  3884. }
  3885. #u9758 .text {
  3886. position:absolute;
  3887. align-self:center;
  3888. padding:2px 2px 2px 0px;
  3889. box-sizing:border-box;
  3890. width:100%;
  3891. }
  3892. #u9758_text {
  3893. border-width:0px;
  3894. word-wrap:break-word;
  3895. text-transform:none;
  3896. visibility:hidden;
  3897. }
  3898. #u9759_img {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:136px;
  3904. height:35px;
  3905. }
  3906. #u9759 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:259px;
  3911. width:136px;
  3912. height:35px;
  3913. display:flex;
  3914. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:12px;
  3918. color:#606266;
  3919. }
  3920. #u9759 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 2px 2px 0px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u9759_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u9760_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:136px;
  3939. height:35px;
  3940. }
  3941. #u9760 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:136px;
  3945. top:259px;
  3946. width:136px;
  3947. height:35px;
  3948. display:flex;
  3949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. color:#606266;
  3954. }
  3955. #u9760 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u9760_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u9761_img {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:136px;
  3974. height:35px;
  3975. }
  3976. #u9761 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:272px;
  3980. top:259px;
  3981. width:136px;
  3982. height:35px;
  3983. display:flex;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:12px;
  3988. color:#606266;
  3989. }
  3990. #u9761 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 0px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u9761_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u9762_img {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:136px;
  4009. height:35px;
  4010. }
  4011. #u9762 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:408px;
  4015. top:259px;
  4016. width:136px;
  4017. height:35px;
  4018. display:flex;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:12px;
  4023. color:#606266;
  4024. }
  4025. #u9762 .text {
  4026. position:absolute;
  4027. align-self:center;
  4028. padding:2px 2px 2px 0px;
  4029. box-sizing:border-box;
  4030. width:100%;
  4031. }
  4032. #u9762_text {
  4033. border-width:0px;
  4034. word-wrap:break-word;
  4035. text-transform:none;
  4036. visibility:hidden;
  4037. }
  4038. #u9763_img {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:138px;
  4044. height:35px;
  4045. }
  4046. #u9763 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:544px;
  4050. top:259px;
  4051. width:138px;
  4052. height:35px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:12px;
  4058. color:#606266;
  4059. }
  4060. #u9763 .text {
  4061. position:absolute;
  4062. align-self:center;
  4063. padding:2px 2px 2px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u9763_text {
  4068. border-width:0px;
  4069. word-wrap:break-word;
  4070. text-transform:none;
  4071. visibility:hidden;
  4072. }
  4073. #u9764_img {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:0px;
  4077. top:0px;
  4078. width:138px;
  4079. height:35px;
  4080. }
  4081. #u9764 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:682px;
  4085. top:259px;
  4086. width:138px;
  4087. height:35px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:12px;
  4093. color:#606266;
  4094. }
  4095. #u9764 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 0px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u9764_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. visibility:hidden;
  4107. }
  4108. #u9765_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:138px;
  4114. height:35px;
  4115. }
  4116. #u9765 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:820px;
  4120. top:259px;
  4121. width:138px;
  4122. height:35px;
  4123. display:flex;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:12px;
  4128. color:#606266;
  4129. }
  4130. #u9765 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 0px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u9765_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u9766_img {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:136px;
  4149. height:35px;
  4150. }
  4151. #u9766 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:958px;
  4155. top:259px;
  4156. width:136px;
  4157. height:35px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. color:#606266;
  4164. }
  4165. #u9766 .text {
  4166. position:absolute;
  4167. align-self:center;
  4168. padding:2px 2px 2px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u9766_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. visibility:hidden;
  4177. }
  4178. #u9767_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:134px;
  4184. height:35px;
  4185. }
  4186. #u9767 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:1094px;
  4190. top:259px;
  4191. width:134px;
  4192. height:35px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:12px;
  4198. color:#606266;
  4199. }
  4200. #u9767 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u9767_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u9768_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:136px;
  4219. height:35px;
  4220. }
  4221. #u9768 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:294px;
  4226. width:136px;
  4227. height:35px;
  4228. display:flex;
  4229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. color:#606266;
  4234. }
  4235. #u9768 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u9768_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. visibility:hidden;
  4247. }
  4248. #u9769_img {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:136px;
  4254. height:35px;
  4255. }
  4256. #u9769 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:136px;
  4260. top:294px;
  4261. width:136px;
  4262. height:35px;
  4263. display:flex;
  4264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:12px;
  4268. color:#606266;
  4269. }
  4270. #u9769 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u9769_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. visibility:hidden;
  4282. }
  4283. #u9770_img {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:136px;
  4289. height:35px;
  4290. }
  4291. #u9770 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:272px;
  4295. top:294px;
  4296. width:136px;
  4297. height:35px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:12px;
  4303. color:#606266;
  4304. }
  4305. #u9770 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 0px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u9770_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. visibility:hidden;
  4317. }
  4318. #u9771_img {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:136px;
  4324. height:35px;
  4325. }
  4326. #u9771 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:408px;
  4330. top:294px;
  4331. width:136px;
  4332. height:35px;
  4333. display:flex;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:12px;
  4338. color:#606266;
  4339. }
  4340. #u9771 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 0px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u9771_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u9772_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:138px;
  4359. height:35px;
  4360. }
  4361. #u9772 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:544px;
  4365. top:294px;
  4366. width:138px;
  4367. height:35px;
  4368. display:flex;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:12px;
  4373. color:#606266;
  4374. }
  4375. #u9772 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:2px 2px 2px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u9772_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. visibility:hidden;
  4387. }
  4388. #u9773_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:138px;
  4394. height:35px;
  4395. }
  4396. #u9773 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:682px;
  4400. top:294px;
  4401. width:138px;
  4402. height:35px;
  4403. display:flex;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:12px;
  4408. color:#606266;
  4409. }
  4410. #u9773 .text {
  4411. position:absolute;
  4412. align-self:center;
  4413. padding:2px 2px 2px 0px;
  4414. box-sizing:border-box;
  4415. width:100%;
  4416. }
  4417. #u9773_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u9774_img {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:138px;
  4429. height:35px;
  4430. }
  4431. #u9774 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:820px;
  4435. top:294px;
  4436. width:138px;
  4437. height:35px;
  4438. display:flex;
  4439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:12px;
  4443. color:#606266;
  4444. }
  4445. #u9774 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 0px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u9774_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u9775_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:136px;
  4464. height:35px;
  4465. }
  4466. #u9775 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:958px;
  4470. top:294px;
  4471. width:136px;
  4472. height:35px;
  4473. display:flex;
  4474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. color:#606266;
  4479. }
  4480. #u9775 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 0px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u9775_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. visibility:hidden;
  4492. }
  4493. #u9776_img {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:134px;
  4499. height:35px;
  4500. }
  4501. #u9776 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:1094px;
  4505. top:294px;
  4506. width:134px;
  4507. height:35px;
  4508. display:flex;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:12px;
  4513. color:#606266;
  4514. }
  4515. #u9776 .text {
  4516. position:absolute;
  4517. align-self:center;
  4518. padding:2px 2px 2px 0px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u9776_text {
  4523. border-width:0px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. visibility:hidden;
  4527. }
  4528. #u9777_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:136px;
  4534. height:35px;
  4535. }
  4536. #u9777 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:329px;
  4541. width:136px;
  4542. height:35px;
  4543. display:flex;
  4544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. color:#606266;
  4549. }
  4550. #u9777 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 0px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u9777_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. visibility:hidden;
  4562. }
  4563. #u9778_img {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:136px;
  4569. height:35px;
  4570. }
  4571. #u9778 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:136px;
  4575. top:329px;
  4576. width:136px;
  4577. height:35px;
  4578. display:flex;
  4579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:12px;
  4583. color:#606266;
  4584. }
  4585. #u9778 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 2px 2px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u9778_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. visibility:hidden;
  4597. }
  4598. #u9779_img {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:136px;
  4604. height:35px;
  4605. }
  4606. #u9779 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:272px;
  4610. top:329px;
  4611. width:136px;
  4612. height:35px;
  4613. display:flex;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:12px;
  4618. color:#606266;
  4619. }
  4620. #u9779 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 0px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u9779_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. visibility:hidden;
  4632. }
  4633. #u9780_img {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:136px;
  4639. height:35px;
  4640. }
  4641. #u9780 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:408px;
  4645. top:329px;
  4646. width:136px;
  4647. height:35px;
  4648. display:flex;
  4649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:12px;
  4653. color:#606266;
  4654. }
  4655. #u9780 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u9780_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u9781_img {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:138px;
  4674. height:35px;
  4675. }
  4676. #u9781 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:544px;
  4680. top:329px;
  4681. width:138px;
  4682. height:35px;
  4683. display:flex;
  4684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#606266;
  4689. }
  4690. #u9781 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u9781_text {
  4698. border-width:0px;
  4699. word-wrap:break-word;
  4700. text-transform:none;
  4701. visibility:hidden;
  4702. }
  4703. #u9782_img {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:138px;
  4709. height:35px;
  4710. }
  4711. #u9782 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:682px;
  4715. top:329px;
  4716. width:138px;
  4717. height:35px;
  4718. display:flex;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:12px;
  4723. color:#606266;
  4724. }
  4725. #u9782 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 0px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u9782_text {
  4733. border-width:0px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. visibility:hidden;
  4737. }
  4738. #u9783_img {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:138px;
  4744. height:35px;
  4745. }
  4746. #u9783 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:820px;
  4750. top:329px;
  4751. width:138px;
  4752. height:35px;
  4753. display:flex;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:12px;
  4758. color:#606266;
  4759. }
  4760. #u9783 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 0px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u9783_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. visibility:hidden;
  4772. }
  4773. #u9784_img {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:136px;
  4779. height:35px;
  4780. }
  4781. #u9784 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:958px;
  4785. top:329px;
  4786. width:136px;
  4787. height:35px;
  4788. display:flex;
  4789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4790. font-weight:400;
  4791. font-style:normal;
  4792. font-size:12px;
  4793. color:#606266;
  4794. }
  4795. #u9784 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 0px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u9784_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u9785_img {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:134px;
  4814. height:35px;
  4815. }
  4816. #u9785 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:1094px;
  4820. top:329px;
  4821. width:134px;
  4822. height:35px;
  4823. display:flex;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:12px;
  4828. color:#606266;
  4829. }
  4830. #u9785 .text {
  4831. position:absolute;
  4832. align-self:center;
  4833. padding:2px 2px 2px 0px;
  4834. box-sizing:border-box;
  4835. width:100%;
  4836. }
  4837. #u9785_text {
  4838. border-width:0px;
  4839. word-wrap:break-word;
  4840. text-transform:none;
  4841. visibility:hidden;
  4842. }
  4843. #u9786 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:0px;
  4849. height:0px;
  4850. }
  4851. #u9787_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:59px;
  4857. height:30px;
  4858. background:inherit;
  4859. background-color:rgba(24, 144, 255, 1);
  4860. box-sizing:border-box;
  4861. border-width:1px;
  4862. border-style:solid;
  4863. border-color:rgba(0, 153, 255, 1);
  4864. border-radius:4px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'Microsoft YaHei', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:14px;
  4872. color:#FFFFFF;
  4873. }
  4874. #u9787 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:1400px;
  4878. top:142px;
  4879. width:59px;
  4880. height:30px;
  4881. display:flex;
  4882. font-family:'Microsoft YaHei', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:14px;
  4886. color:#FFFFFF;
  4887. }
  4888. #u9787 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:5px 15px 5px 15px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u9787_text {
  4896. border-width:0px;
  4897. white-space:nowrap;
  4898. text-transform:none;
  4899. }
  4900. #u9788_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:55px;
  4906. height:30px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 1);
  4909. box-sizing:border-box;
  4910. border-width:1px;
  4911. border-style:solid;
  4912. border-color:rgba(170, 170, 170, 1);
  4913. border-radius:4px;
  4914. -moz-box-shadow:none;
  4915. -webkit-box-shadow:none;
  4916. box-shadow:none;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:12px;
  4921. color:#555555;
  4922. }
  4923. #u9788 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:1469px;
  4927. top:142px;
  4928. width:55px;
  4929. height:30px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:12px;
  4935. color:#555555;
  4936. }
  4937. #u9788 .text {
  4938. position:absolute;
  4939. align-self:center;
  4940. padding:5px 15px 5px 15px;
  4941. box-sizing:border-box;
  4942. width:100%;
  4943. }
  4944. #u9788_text {
  4945. border-width:0px;
  4946. white-space:nowrap;
  4947. text-transform:none;
  4948. }
  4949. #u9789 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:0px;
  4955. height:0px;
  4956. }
  4957. #u9790_div {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:140px;
  4963. height:30px;
  4964. background:inherit;
  4965. background-color:rgba(255, 255, 255, 1);
  4966. box-sizing:border-box;
  4967. border-width:1px;
  4968. border-style:solid;
  4969. border-color:rgba(201, 201, 201, 1);
  4970. border-radius:4px;
  4971. -moz-box-shadow:none;
  4972. -webkit-box-shadow:none;
  4973. box-shadow:none;
  4974. font-family:'Microsoft YaHei', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:14px;
  4978. color:#CCCCCC;
  4979. text-align:left;
  4980. }
  4981. #u9790 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:800px;
  4985. top:140px;
  4986. width:140px;
  4987. height:30px;
  4988. display:flex;
  4989. font-family:'Microsoft YaHei', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:14px;
  4993. color:#CCCCCC;
  4994. text-align:left;
  4995. }
  4996. #u9790 .text {
  4997. position:absolute;
  4998. align-self:center;
  4999. padding:2px 8px 2px 8px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u9790_text {
  5004. border-width:0px;
  5005. word-wrap:break-word;
  5006. text-transform:none;
  5007. visibility:hidden;
  5008. }
  5009. #u9791_input {
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:127px;
  5014. height:25px;
  5015. padding:2px 2px 2px 2px;
  5016. font-family:'Microsoft YaHei', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:10px;
  5020. letter-spacing:normal;
  5021. color:#000000;
  5022. vertical-align:none;
  5023. text-align:left;
  5024. text-transform:none;
  5025. background-color:transparent;
  5026. border-color:transparent;
  5027. }
  5028. #u9791_input.disabled {
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:127px;
  5033. height:25px;
  5034. padding:2px 2px 2px 2px;
  5035. font-family:'Microsoft YaHei', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:10px;
  5039. letter-spacing:normal;
  5040. color:#000000;
  5041. vertical-align:none;
  5042. text-align:left;
  5043. text-transform:none;
  5044. background-color:transparent;
  5045. border-color:transparent;
  5046. }
  5047. #u9791_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:127px;
  5053. height:25px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 1);
  5056. border:none;
  5057. border-radius:0px;
  5058. -moz-box-shadow:none;
  5059. -webkit-box-shadow:none;
  5060. box-shadow:none;
  5061. font-family:'Microsoft YaHei', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:10px;
  5065. }
  5066. #u9791 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:808px;
  5070. top:141px;
  5071. width:127px;
  5072. height:25px;
  5073. display:flex;
  5074. font-family:'Microsoft YaHei', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:10px;
  5078. }
  5079. #u9791 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:2px 2px 2px 2px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u9791_div.disabled {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:127px;
  5092. height:25px;
  5093. background:inherit;
  5094. background-color:rgba(240, 240, 240, 1);
  5095. border:none;
  5096. border-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'Microsoft YaHei', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:10px;
  5104. }
  5105. #u9791.disabled {
  5106. }
  5107. #u9792 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:0px;
  5113. height:0px;
  5114. }
  5115. #u9793_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:140px;
  5121. height:30px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 1);
  5124. box-sizing:border-box;
  5125. border-width:1px;
  5126. border-style:solid;
  5127. border-color:rgba(215, 215, 215, 1);
  5128. border-radius:4px;
  5129. -moz-box-shadow:none;
  5130. -webkit-box-shadow:none;
  5131. box-shadow:none;
  5132. font-size:11px;
  5133. }
  5134. #u9793 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:650px;
  5138. top:140px;
  5139. width:140px;
  5140. height:30px;
  5141. display:flex;
  5142. font-size:11px;
  5143. }
  5144. #u9793 .text {
  5145. position:absolute;
  5146. align-self:center;
  5147. padding:2px 2px 2px 2px;
  5148. box-sizing:border-box;
  5149. width:100%;
  5150. }
  5151. #u9793_text {
  5152. border-width:0px;
  5153. word-wrap:break-word;
  5154. text-transform:none;
  5155. visibility:hidden;
  5156. }
  5157. #u9794_input {
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:120px;
  5162. height:23px;
  5163. padding:2px 2px 2px 2px;
  5164. font-family:'ArialMT', 'Arial', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:11px;
  5168. letter-spacing:normal;
  5169. color:#AAAAAA;
  5170. vertical-align:none;
  5171. text-align:left;
  5172. text-transform:none;
  5173. background-color:transparent;
  5174. border-color:transparent;
  5175. }
  5176. #u9794_input.disabled {
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:120px;
  5181. height:23px;
  5182. padding:2px 2px 2px 2px;
  5183. font-family:'ArialMT', 'Arial', sans-serif;
  5184. font-weight:400;
  5185. font-style:normal;
  5186. font-size:11px;
  5187. letter-spacing:normal;
  5188. color:#AAAAAA;
  5189. vertical-align:none;
  5190. text-align:left;
  5191. text-transform:none;
  5192. background-color:transparent;
  5193. border-color:transparent;
  5194. }
  5195. #u9794_div {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:120px;
  5201. height:23px;
  5202. background:inherit;
  5203. background-color:rgba(255, 255, 255, 1);
  5204. border:none;
  5205. border-radius:0px;
  5206. -moz-box-shadow:none;
  5207. -webkit-box-shadow:none;
  5208. box-shadow:none;
  5209. font-size:11px;
  5210. color:#AAAAAA;
  5211. }
  5212. #u9794 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:657px;
  5216. top:142px;
  5217. width:120px;
  5218. height:23px;
  5219. display:flex;
  5220. font-size:11px;
  5221. color:#AAAAAA;
  5222. }
  5223. #u9794 .text {
  5224. position:absolute;
  5225. align-self:flex-start;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u9794_div.disabled {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:120px;
  5236. height:23px;
  5237. background:inherit;
  5238. background-color:rgba(240, 240, 240, 1);
  5239. border:none;
  5240. border-radius:0px;
  5241. -moz-box-shadow:none;
  5242. -webkit-box-shadow:none;
  5243. box-shadow:none;
  5244. font-size:11px;
  5245. color:#AAAAAA;
  5246. }
  5247. #u9794.disabled {
  5248. }
  5249. .u9794_input_option {
  5250. font-size:11px;
  5251. }
  5252. #u9795 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:0px;
  5258. height:0px;
  5259. }
  5260. #u9796_div {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:140px;
  5266. height:30px;
  5267. background:inherit;
  5268. background-color:rgba(255, 255, 255, 1);
  5269. box-sizing:border-box;
  5270. border-width:1px;
  5271. border-style:solid;
  5272. border-color:rgba(215, 215, 215, 1);
  5273. border-radius:4px;
  5274. -moz-box-shadow:none;
  5275. -webkit-box-shadow:none;
  5276. box-shadow:none;
  5277. font-size:11px;
  5278. }
  5279. #u9796 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:500px;
  5283. top:140px;
  5284. width:140px;
  5285. height:30px;
  5286. display:flex;
  5287. font-size:11px;
  5288. }
  5289. #u9796 .text {
  5290. position:absolute;
  5291. align-self:center;
  5292. padding:2px 2px 2px 2px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u9796_text {
  5297. border-width:0px;
  5298. word-wrap:break-word;
  5299. text-transform:none;
  5300. visibility:hidden;
  5301. }
  5302. #u9797_input {
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:120px;
  5307. height:23px;
  5308. padding:2px 2px 2px 2px;
  5309. font-family:'ArialMT', 'Arial', sans-serif;
  5310. font-weight:400;
  5311. font-style:normal;
  5312. font-size:11px;
  5313. letter-spacing:normal;
  5314. color:#AAAAAA;
  5315. vertical-align:none;
  5316. text-align:left;
  5317. text-transform:none;
  5318. background-color:transparent;
  5319. border-color:transparent;
  5320. }
  5321. #u9797_input.disabled {
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:120px;
  5326. height:23px;
  5327. padding:2px 2px 2px 2px;
  5328. font-family:'ArialMT', 'Arial', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:11px;
  5332. letter-spacing:normal;
  5333. color:#AAAAAA;
  5334. vertical-align:none;
  5335. text-align:left;
  5336. text-transform:none;
  5337. background-color:transparent;
  5338. border-color:transparent;
  5339. }
  5340. #u9797_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:120px;
  5346. height:23px;
  5347. background:inherit;
  5348. background-color:rgba(255, 255, 255, 1);
  5349. border:none;
  5350. border-radius:0px;
  5351. -moz-box-shadow:none;
  5352. -webkit-box-shadow:none;
  5353. box-shadow:none;
  5354. font-size:11px;
  5355. color:#AAAAAA;
  5356. }
  5357. #u9797 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:507px;
  5361. top:142px;
  5362. width:120px;
  5363. height:23px;
  5364. display:flex;
  5365. font-size:11px;
  5366. color:#AAAAAA;
  5367. }
  5368. #u9797 .text {
  5369. position:absolute;
  5370. align-self:flex-start;
  5371. padding:2px 2px 2px 2px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u9797_div.disabled {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:120px;
  5381. height:23px;
  5382. background:inherit;
  5383. background-color:rgba(240, 240, 240, 1);
  5384. border:none;
  5385. border-radius:0px;
  5386. -moz-box-shadow:none;
  5387. -webkit-box-shadow:none;
  5388. box-shadow:none;
  5389. font-size:11px;
  5390. color:#AAAAAA;
  5391. }
  5392. #u9797.disabled {
  5393. }
  5394. .u9797_input_option {
  5395. font-size:11px;
  5396. }
  5397. #u9798 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:0px;
  5403. height:0px;
  5404. }
  5405. #u9799_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:140px;
  5411. height:30px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 1);
  5414. box-sizing:border-box;
  5415. border-width:1px;
  5416. border-style:solid;
  5417. border-color:rgba(215, 215, 215, 1);
  5418. border-radius:4px;
  5419. -moz-box-shadow:none;
  5420. -webkit-box-shadow:none;
  5421. box-shadow:none;
  5422. font-size:14px;
  5423. }
  5424. #u9799 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:350px;
  5428. top:140px;
  5429. width:140px;
  5430. height:30px;
  5431. display:flex;
  5432. font-size:14px;
  5433. }
  5434. #u9799 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u9799_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. visibility:hidden;
  5446. }
  5447. #u9800_input {
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:134px;
  5452. height:23px;
  5453. padding:2px 2px 2px 2px;
  5454. font-family:'ArialMT', 'Arial', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:14px;
  5458. letter-spacing:normal;
  5459. color:#AAAAAA;
  5460. vertical-align:none;
  5461. text-align:left;
  5462. text-transform:none;
  5463. background-color:transparent;
  5464. border-color:transparent;
  5465. }
  5466. #u9800_input.disabled {
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:134px;
  5471. height:23px;
  5472. padding:2px 2px 2px 2px;
  5473. font-family:'ArialMT', 'Arial', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:14px;
  5477. letter-spacing:normal;
  5478. color:#AAAAAA;
  5479. vertical-align:none;
  5480. text-align:left;
  5481. text-transform:none;
  5482. background-color:transparent;
  5483. border-color:transparent;
  5484. }
  5485. #u9800_div {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:134px;
  5491. height:23px;
  5492. background:inherit;
  5493. background-color:rgba(255, 255, 255, 1);
  5494. border:none;
  5495. border-radius:0px;
  5496. -moz-box-shadow:none;
  5497. -webkit-box-shadow:none;
  5498. box-shadow:none;
  5499. font-size:14px;
  5500. color:#AAAAAA;
  5501. }
  5502. #u9800 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:354px;
  5506. top:142px;
  5507. width:134px;
  5508. height:23px;
  5509. display:flex;
  5510. font-size:14px;
  5511. color:#AAAAAA;
  5512. }
  5513. #u9800 .text {
  5514. position:absolute;
  5515. align-self:flex-start;
  5516. padding:2px 2px 2px 2px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u9800_div.disabled {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:134px;
  5526. height:23px;
  5527. background:inherit;
  5528. background-color:rgba(240, 240, 240, 1);
  5529. border:none;
  5530. border-radius:0px;
  5531. -moz-box-shadow:none;
  5532. -webkit-box-shadow:none;
  5533. box-shadow:none;
  5534. font-size:14px;
  5535. color:#AAAAAA;
  5536. }
  5537. #u9800.disabled {
  5538. }
  5539. .u9800_input_option {
  5540. font-size:14px;
  5541. }
  5542. #u9801 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:0px;
  5548. height:0px;
  5549. }
  5550. #u9802_div {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:140px;
  5556. height:30px;
  5557. background:inherit;
  5558. background-color:rgba(255, 255, 255, 1);
  5559. box-sizing:border-box;
  5560. border-width:1px;
  5561. border-style:solid;
  5562. border-color:rgba(201, 201, 201, 1);
  5563. border-radius:4px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. font-family:'Microsoft YaHei', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:14px;
  5571. color:#CCCCCC;
  5572. text-align:left;
  5573. }
  5574. #u9802 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:950px;
  5578. top:140px;
  5579. width:140px;
  5580. height:30px;
  5581. display:flex;
  5582. font-family:'Microsoft YaHei', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:14px;
  5586. color:#CCCCCC;
  5587. text-align:left;
  5588. }
  5589. #u9802 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 8px 2px 8px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u9802_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. visibility:hidden;
  5601. }
  5602. #u9803_input {
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:127px;
  5607. height:25px;
  5608. padding:2px 2px 2px 2px;
  5609. font-family:'Microsoft YaHei', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:10px;
  5613. letter-spacing:normal;
  5614. color:#000000;
  5615. vertical-align:none;
  5616. text-align:left;
  5617. text-transform:none;
  5618. background-color:transparent;
  5619. border-color:transparent;
  5620. }
  5621. #u9803_input.disabled {
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:127px;
  5626. height:25px;
  5627. padding:2px 2px 2px 2px;
  5628. font-family:'Microsoft YaHei', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:10px;
  5632. letter-spacing:normal;
  5633. color:#000000;
  5634. vertical-align:none;
  5635. text-align:left;
  5636. text-transform:none;
  5637. background-color:transparent;
  5638. border-color:transparent;
  5639. }
  5640. #u9803_div {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:127px;
  5646. height:25px;
  5647. background:inherit;
  5648. background-color:rgba(255, 255, 255, 1);
  5649. border:none;
  5650. border-radius:0px;
  5651. -moz-box-shadow:none;
  5652. -webkit-box-shadow:none;
  5653. box-shadow:none;
  5654. font-family:'Microsoft YaHei', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:10px;
  5658. }
  5659. #u9803 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:958px;
  5663. top:141px;
  5664. width:127px;
  5665. height:25px;
  5666. display:flex;
  5667. font-family:'Microsoft YaHei', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:10px;
  5671. }
  5672. #u9803 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:2px 2px 2px 2px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u9803_div.disabled {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:127px;
  5685. height:25px;
  5686. background:inherit;
  5687. background-color:rgba(240, 240, 240, 1);
  5688. border:none;
  5689. border-radius:0px;
  5690. -moz-box-shadow:none;
  5691. -webkit-box-shadow:none;
  5692. box-shadow:none;
  5693. font-family:'Microsoft YaHei', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. font-size:10px;
  5697. }
  5698. #u9803.disabled {
  5699. }
  5700. #u9804 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:0px;
  5706. height:0px;
  5707. }
  5708. #u9805_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:140px;
  5714. height:30px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 1);
  5717. box-sizing:border-box;
  5718. border-width:1px;
  5719. border-style:solid;
  5720. border-color:rgba(215, 215, 215, 1);
  5721. border-radius:4px;
  5722. -moz-box-shadow:none;
  5723. -webkit-box-shadow:none;
  5724. box-shadow:none;
  5725. font-size:11px;
  5726. }
  5727. #u9805 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:1100px;
  5731. top:140px;
  5732. width:140px;
  5733. height:30px;
  5734. display:flex;
  5735. font-size:11px;
  5736. }
  5737. #u9805 .text {
  5738. position:absolute;
  5739. align-self:center;
  5740. padding:2px 2px 2px 2px;
  5741. box-sizing:border-box;
  5742. width:100%;
  5743. }
  5744. #u9805_text {
  5745. border-width:0px;
  5746. word-wrap:break-word;
  5747. text-transform:none;
  5748. visibility:hidden;
  5749. }
  5750. #u9806_input {
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:120px;
  5755. height:23px;
  5756. padding:2px 2px 2px 2px;
  5757. font-family:'ArialMT', 'Arial', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:11px;
  5761. letter-spacing:normal;
  5762. color:#AAAAAA;
  5763. vertical-align:none;
  5764. text-align:left;
  5765. text-transform:none;
  5766. background-color:transparent;
  5767. border-color:transparent;
  5768. }
  5769. #u9806_input.disabled {
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:120px;
  5774. height:23px;
  5775. padding:2px 2px 2px 2px;
  5776. font-family:'ArialMT', 'Arial', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:11px;
  5780. letter-spacing:normal;
  5781. color:#AAAAAA;
  5782. vertical-align:none;
  5783. text-align:left;
  5784. text-transform:none;
  5785. background-color:transparent;
  5786. border-color:transparent;
  5787. }
  5788. #u9806_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:120px;
  5794. height:23px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 1);
  5797. border:none;
  5798. border-radius:0px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. font-size:11px;
  5803. color:#AAAAAA;
  5804. }
  5805. #u9806 {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:1107px;
  5809. top:142px;
  5810. width:120px;
  5811. height:23px;
  5812. display:flex;
  5813. font-size:11px;
  5814. color:#AAAAAA;
  5815. }
  5816. #u9806 .text {
  5817. position:absolute;
  5818. align-self:flex-start;
  5819. padding:2px 2px 2px 2px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u9806_div.disabled {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:120px;
  5829. height:23px;
  5830. background:inherit;
  5831. background-color:rgba(240, 240, 240, 1);
  5832. border:none;
  5833. border-radius:0px;
  5834. -moz-box-shadow:none;
  5835. -webkit-box-shadow:none;
  5836. box-shadow:none;
  5837. font-size:11px;
  5838. color:#AAAAAA;
  5839. }
  5840. #u9806.disabled {
  5841. }
  5842. .u9806_input_option {
  5843. font-size:11px;
  5844. }
  5845. #u9807 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:0px;
  5851. height:0px;
  5852. }
  5853. #u9808_div {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:140px;
  5859. height:30px;
  5860. background:inherit;
  5861. background-color:rgba(255, 255, 255, 1);
  5862. box-sizing:border-box;
  5863. border-width:1px;
  5864. border-style:solid;
  5865. border-color:rgba(215, 215, 215, 1);
  5866. border-radius:4px;
  5867. -moz-box-shadow:none;
  5868. -webkit-box-shadow:none;
  5869. box-shadow:none;
  5870. font-size:11px;
  5871. }
  5872. #u9808 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:1250px;
  5876. top:140px;
  5877. width:140px;
  5878. height:30px;
  5879. display:flex;
  5880. font-size:11px;
  5881. }
  5882. #u9808 .text {
  5883. position:absolute;
  5884. align-self:center;
  5885. padding:2px 2px 2px 2px;
  5886. box-sizing:border-box;
  5887. width:100%;
  5888. }
  5889. #u9808_text {
  5890. border-width:0px;
  5891. word-wrap:break-word;
  5892. text-transform:none;
  5893. visibility:hidden;
  5894. }
  5895. #u9809_input {
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:120px;
  5900. height:23px;
  5901. padding:2px 2px 2px 2px;
  5902. font-family:'ArialMT', 'Arial', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:11px;
  5906. letter-spacing:normal;
  5907. color:#AAAAAA;
  5908. vertical-align:none;
  5909. text-align:left;
  5910. text-transform:none;
  5911. background-color:transparent;
  5912. border-color:transparent;
  5913. }
  5914. #u9809_input.disabled {
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:120px;
  5919. height:23px;
  5920. padding:2px 2px 2px 2px;
  5921. font-family:'ArialMT', 'Arial', sans-serif;
  5922. font-weight:400;
  5923. font-style:normal;
  5924. font-size:11px;
  5925. letter-spacing:normal;
  5926. color:#AAAAAA;
  5927. vertical-align:none;
  5928. text-align:left;
  5929. text-transform:none;
  5930. background-color:transparent;
  5931. border-color:transparent;
  5932. }
  5933. #u9809_div {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:120px;
  5939. height:23px;
  5940. background:inherit;
  5941. background-color:rgba(255, 255, 255, 1);
  5942. border:none;
  5943. border-radius:0px;
  5944. -moz-box-shadow:none;
  5945. -webkit-box-shadow:none;
  5946. box-shadow:none;
  5947. font-size:11px;
  5948. color:#AAAAAA;
  5949. }
  5950. #u9809 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:1257px;
  5954. top:142px;
  5955. width:120px;
  5956. height:23px;
  5957. display:flex;
  5958. font-size:11px;
  5959. color:#AAAAAA;
  5960. }
  5961. #u9809 .text {
  5962. position:absolute;
  5963. align-self:flex-start;
  5964. padding:2px 2px 2px 2px;
  5965. box-sizing:border-box;
  5966. width:100%;
  5967. }
  5968. #u9809_div.disabled {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:120px;
  5974. height:23px;
  5975. background:inherit;
  5976. background-color:rgba(240, 240, 240, 1);
  5977. border:none;
  5978. border-radius:0px;
  5979. -moz-box-shadow:none;
  5980. -webkit-box-shadow:none;
  5981. box-shadow:none;
  5982. font-size:11px;
  5983. color:#AAAAAA;
  5984. }
  5985. #u9809.disabled {
  5986. }
  5987. .u9809_input_option {
  5988. font-size:11px;
  5989. }
  5990. #u9811 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:0px;
  5996. height:0px;
  5997. }
  5998. #u9812_div {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:200px;
  6004. height:1193px;
  6005. background:inherit;
  6006. background-color:rgba(255, 255, 255, 1);
  6007. border:none;
  6008. border-radius:0px;
  6009. -moz-box-shadow:none;
  6010. -webkit-box-shadow:none;
  6011. box-shadow:none;
  6012. }
  6013. #u9812 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:120px;
  6017. top:50px;
  6018. width:200px;
  6019. height:1193px;
  6020. display:flex;
  6021. }
  6022. #u9812 .text {
  6023. position:absolute;
  6024. align-self:center;
  6025. padding:2px 2px 2px 2px;
  6026. box-sizing:border-box;
  6027. width:100%;
  6028. }
  6029. #u9812_text {
  6030. border-width:0px;
  6031. word-wrap:break-word;
  6032. text-transform:none;
  6033. visibility:hidden;
  6034. }
  6035. #u9813_div {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:200px;
  6041. height:60px;
  6042. background:inherit;
  6043. background-color:rgba(224, 231, 247, 1);
  6044. border:none;
  6045. border-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6050. font-weight:500;
  6051. font-style:normal;
  6052. font-size:18px;
  6053. }
  6054. #u9813 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:120px;
  6058. top:50px;
  6059. width:200px;
  6060. height:60px;
  6061. display:flex;
  6062. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6063. font-weight:500;
  6064. font-style:normal;
  6065. font-size:18px;
  6066. }
  6067. #u9813 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:0px 0px 0px 20px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u9813_text {
  6075. border-width:0px;
  6076. word-wrap:break-word;
  6077. text-transform:none;
  6078. }
  6079. #u9814_div {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:0px;
  6083. top:0px;
  6084. width:65px;
  6085. height:22px;
  6086. background:inherit;
  6087. background-color:rgba(255, 255, 255, 0);
  6088. border:none;
  6089. border-radius:0px;
  6090. -moz-box-shadow:none;
  6091. -webkit-box-shadow:none;
  6092. box-shadow:none;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:16px;
  6097. }
  6098. #u9814 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:147px;
  6102. top:387px;
  6103. width:65px;
  6104. height:22px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:16px;
  6110. }
  6111. #u9814 .text {
  6112. position:absolute;
  6113. align-self:flex-start;
  6114. padding:0px 0px 0px 0px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u9814_text {
  6119. border-width:0px;
  6120. white-space:nowrap;
  6121. text-transform:none;
  6122. }
  6123. #u9815_div {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:65px;
  6129. height:22px;
  6130. background:inherit;
  6131. background-color:rgba(255, 255, 255, 0);
  6132. border:none;
  6133. border-radius:0px;
  6134. -moz-box-shadow:none;
  6135. -webkit-box-shadow:none;
  6136. box-shadow:none;
  6137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6138. font-weight:400;
  6139. font-style:normal;
  6140. font-size:16px;
  6141. }
  6142. #u9815 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:147px;
  6146. top:166px;
  6147. width:65px;
  6148. height:22px;
  6149. display:flex;
  6150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:16px;
  6154. }
  6155. #u9815 .text {
  6156. position:absolute;
  6157. align-self:flex-start;
  6158. padding:0px 0px 0px 0px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u9815_text {
  6163. border-width:0px;
  6164. white-space:nowrap;
  6165. text-transform:none;
  6166. }
  6167. #u9816_div {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:49px;
  6173. height:17px;
  6174. background:inherit;
  6175. background-color:rgba(255, 255, 255, 0);
  6176. border:none;
  6177. border-radius:0px;
  6178. -moz-box-shadow:none;
  6179. -webkit-box-shadow:none;
  6180. box-shadow:none;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:12px;
  6185. color:#AAAAAA;
  6186. }
  6187. #u9816 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:147px;
  6191. top:130px;
  6192. width:49px;
  6193. height:17px;
  6194. display:flex;
  6195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6196. font-weight:400;
  6197. font-style:normal;
  6198. font-size:12px;
  6199. color:#AAAAAA;
  6200. }
  6201. #u9816 .text {
  6202. position:absolute;
  6203. align-self:flex-start;
  6204. padding:0px 0px 0px 0px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u9816_text {
  6209. border-width:0px;
  6210. white-space:nowrap;
  6211. text-transform:none;
  6212. }
  6213. #u9817_div {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:65px;
  6219. height:22px;
  6220. background:inherit;
  6221. background-color:rgba(255, 255, 255, 0);
  6222. border:none;
  6223. border-radius:0px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:16px;
  6231. }
  6232. #u9817 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:147px;
  6236. top:208px;
  6237. width:65px;
  6238. height:22px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:16px;
  6244. }
  6245. #u9817 .text {
  6246. position:absolute;
  6247. align-self:flex-start;
  6248. padding:0px 0px 0px 0px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u9817_text {
  6253. border-width:0px;
  6254. white-space:nowrap;
  6255. text-transform:none;
  6256. }
  6257. #u9818_img {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:201px;
  6263. height:2px;
  6264. }
  6265. #u9818 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:120px;
  6269. top:246px;
  6270. width:200px;
  6271. height:1px;
  6272. display:flex;
  6273. }
  6274. #u9818 .text {
  6275. position:absolute;
  6276. align-self:center;
  6277. padding:2px 2px 2px 2px;
  6278. box-sizing:border-box;
  6279. width:100%;
  6280. }
  6281. #u9818_text {
  6282. border-width:0px;
  6283. word-wrap:break-word;
  6284. text-transform:none;
  6285. visibility:hidden;
  6286. }
  6287. #u9819_div {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:0px;
  6291. top:0px;
  6292. width:49px;
  6293. height:22px;
  6294. background:inherit;
  6295. background-color:rgba(255, 255, 255, 0);
  6296. border:none;
  6297. border-radius:0px;
  6298. -moz-box-shadow:none;
  6299. -webkit-box-shadow:none;
  6300. box-shadow:none;
  6301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6302. font-weight:400;
  6303. font-style:normal;
  6304. font-size:16px;
  6305. }
  6306. #u9819 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:147px;
  6310. top:529px;
  6311. width:49px;
  6312. height:22px;
  6313. display:flex;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:16px;
  6318. }
  6319. #u9819 .text {
  6320. position:absolute;
  6321. align-self:flex-start;
  6322. padding:0px 0px 0px 0px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u9819_text {
  6327. border-width:0px;
  6328. white-space:nowrap;
  6329. text-transform:none;
  6330. }
  6331. #u9820_div {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:49px;
  6337. height:17px;
  6338. background:inherit;
  6339. background-color:rgba(255, 255, 255, 0);
  6340. border:none;
  6341. border-radius:0px;
  6342. -moz-box-shadow:none;
  6343. -webkit-box-shadow:none;
  6344. box-shadow:none;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:12px;
  6349. color:#AAAAAA;
  6350. }
  6351. #u9820 {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:147px;
  6355. top:493px;
  6356. width:49px;
  6357. height:17px;
  6358. display:flex;
  6359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:12px;
  6363. color:#AAAAAA;
  6364. }
  6365. #u9820 .text {
  6366. position:absolute;
  6367. align-self:flex-start;
  6368. padding:0px 0px 0px 0px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u9820_text {
  6373. border-width:0px;
  6374. white-space:nowrap;
  6375. text-transform:none;
  6376. }
  6377. #u9821_div {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:97px;
  6383. height:22px;
  6384. background:inherit;
  6385. background-color:rgba(255, 255, 255, 0);
  6386. border:none;
  6387. border-radius:0px;
  6388. -moz-box-shadow:none;
  6389. -webkit-box-shadow:none;
  6390. box-shadow:none;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:16px;
  6395. }
  6396. #u9821 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:147px;
  6400. top:756px;
  6401. width:97px;
  6402. height:22px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:16px;
  6408. }
  6409. #u9821 .text {
  6410. position:absolute;
  6411. align-self:flex-start;
  6412. padding:0px 0px 0px 0px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u9821_text {
  6417. border-width:0px;
  6418. white-space:nowrap;
  6419. text-transform:none;
  6420. }
  6421. #u9822_img {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:201px;
  6427. height:2px;
  6428. }
  6429. #u9822 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:120px;
  6433. top:615px;
  6434. width:200px;
  6435. height:1px;
  6436. display:flex;
  6437. }
  6438. #u9822 .text {
  6439. position:absolute;
  6440. align-self:center;
  6441. padding:2px 2px 2px 2px;
  6442. box-sizing:border-box;
  6443. width:100%;
  6444. }
  6445. #u9822_text {
  6446. border-width:0px;
  6447. word-wrap:break-word;
  6448. text-transform:none;
  6449. visibility:hidden;
  6450. }
  6451. #u9823_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:97px;
  6457. height:22px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:16px;
  6469. }
  6470. #u9823 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:147px;
  6474. top:714px;
  6475. width:97px;
  6476. height:22px;
  6477. display:flex;
  6478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. font-size:16px;
  6482. }
  6483. #u9823 .text {
  6484. position:absolute;
  6485. align-self:flex-start;
  6486. padding:0px 0px 0px 0px;
  6487. box-sizing:border-box;
  6488. width:100%;
  6489. }
  6490. #u9823_text {
  6491. border-width:0px;
  6492. white-space:nowrap;
  6493. text-transform:none;
  6494. }
  6495. #u9824_div {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:49px;
  6501. height:17px;
  6502. background:inherit;
  6503. background-color:rgba(255, 255, 255, 0);
  6504. border:none;
  6505. border-radius:0px;
  6506. -moz-box-shadow:none;
  6507. -webkit-box-shadow:none;
  6508. box-shadow:none;
  6509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:12px;
  6513. color:#AAAAAA;
  6514. }
  6515. #u9824 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:147px;
  6519. top:636px;
  6520. width:49px;
  6521. height:17px;
  6522. display:flex;
  6523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:12px;
  6527. color:#AAAAAA;
  6528. }
  6529. #u9824 .text {
  6530. position:absolute;
  6531. align-self:flex-start;
  6532. padding:0px 0px 0px 0px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u9824_text {
  6537. border-width:0px;
  6538. white-space:nowrap;
  6539. text-transform:none;
  6540. }
  6541. #u9825_div {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:49px;
  6547. height:22px;
  6548. background:inherit;
  6549. background-color:rgba(255, 255, 255, 0);
  6550. border:none;
  6551. border-radius:0px;
  6552. -moz-box-shadow:none;
  6553. -webkit-box-shadow:none;
  6554. box-shadow:none;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:16px;
  6559. }
  6560. #u9825 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:147px;
  6564. top:571px;
  6565. width:49px;
  6566. height:22px;
  6567. display:flex;
  6568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:16px;
  6572. }
  6573. #u9825 .text {
  6574. position:absolute;
  6575. align-self:flex-start;
  6576. padding:0px 0px 0px 0px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u9825_text {
  6581. border-width:0px;
  6582. white-space:nowrap;
  6583. text-transform:none;
  6584. }
  6585. #u9826_div {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:65px;
  6591. height:22px;
  6592. background:inherit;
  6593. background-color:rgba(255, 255, 255, 0);
  6594. border:none;
  6595. border-radius:0px;
  6596. -moz-box-shadow:none;
  6597. -webkit-box-shadow:none;
  6598. box-shadow:none;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:16px;
  6603. }
  6604. #u9826 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:147px;
  6608. top:303px;
  6609. width:65px;
  6610. height:22px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:16px;
  6616. }
  6617. #u9826 .text {
  6618. position:absolute;
  6619. align-self:flex-start;
  6620. padding:0px 0px 0px 0px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u9826_text {
  6625. border-width:0px;
  6626. white-space:nowrap;
  6627. text-transform:none;
  6628. }
  6629. #u9827_div {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:49px;
  6635. height:17px;
  6636. background:inherit;
  6637. background-color:rgba(255, 255, 255, 0);
  6638. border:none;
  6639. border-radius:0px;
  6640. -moz-box-shadow:none;
  6641. -webkit-box-shadow:none;
  6642. box-shadow:none;
  6643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:12px;
  6647. color:#AAAAAA;
  6648. }
  6649. #u9827 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:147px;
  6653. top:267px;
  6654. width:49px;
  6655. height:17px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:12px;
  6661. color:#AAAAAA;
  6662. }
  6663. #u9827 .text {
  6664. position:absolute;
  6665. align-self:flex-start;
  6666. padding:0px 0px 0px 0px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u9827_text {
  6671. border-width:0px;
  6672. white-space:nowrap;
  6673. text-transform:none;
  6674. }
  6675. #u9828_div {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:65px;
  6681. height:22px;
  6682. background:inherit;
  6683. background-color:rgba(255, 255, 255, 0);
  6684. border:none;
  6685. border-radius:0px;
  6686. -moz-box-shadow:none;
  6687. -webkit-box-shadow:none;
  6688. box-shadow:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:16px;
  6693. }
  6694. #u9828 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:147px;
  6698. top:345px;
  6699. width:65px;
  6700. height:22px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:16px;
  6706. }
  6707. #u9828 .text {
  6708. position:absolute;
  6709. align-self:flex-start;
  6710. padding:0px 0px 0px 0px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u9828_text {
  6715. border-width:0px;
  6716. white-space:nowrap;
  6717. text-transform:none;
  6718. }
  6719. #u9829_img {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:201px;
  6725. height:2px;
  6726. }
  6727. #u9829 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:120px;
  6731. top:474px;
  6732. width:200px;
  6733. height:1px;
  6734. display:flex;
  6735. }
  6736. #u9829 .text {
  6737. position:absolute;
  6738. align-self:center;
  6739. padding:2px 2px 2px 2px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u9829_text {
  6744. border-width:0px;
  6745. word-wrap:break-word;
  6746. text-transform:none;
  6747. visibility:hidden;
  6748. }
  6749. #u9830_div {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:65px;
  6755. height:22px;
  6756. background:inherit;
  6757. background-color:rgba(255, 255, 255, 0);
  6758. border:none;
  6759. border-radius:0px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:16px;
  6767. }
  6768. #u9830 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:147px;
  6772. top:429px;
  6773. width:65px;
  6774. height:22px;
  6775. display:flex;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:16px;
  6780. }
  6781. #u9830 .text {
  6782. position:absolute;
  6783. align-self:flex-start;
  6784. padding:0px 0px 0px 0px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u9830_text {
  6789. border-width:0px;
  6790. white-space:nowrap;
  6791. text-transform:none;
  6792. }
  6793. #u9831_div {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:113px;
  6799. height:22px;
  6800. background:inherit;
  6801. background-color:rgba(255, 255, 255, 0);
  6802. border:none;
  6803. border-radius:0px;
  6804. -moz-box-shadow:none;
  6805. -webkit-box-shadow:none;
  6806. box-shadow:none;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:16px;
  6811. }
  6812. #u9831 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:147px;
  6816. top:673px;
  6817. width:113px;
  6818. height:22px;
  6819. display:flex;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:16px;
  6824. }
  6825. #u9831 .text {
  6826. position:absolute;
  6827. align-self:flex-start;
  6828. padding:0px 0px 0px 0px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u9831_text {
  6833. border-width:0px;
  6834. white-space:nowrap;
  6835. text-transform:none;
  6836. }
  6837. #u9832_div {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:253px;
  6843. height:20px;
  6844. background:inherit;
  6845. background-color:rgba(255, 255, 255, 0);
  6846. border:none;
  6847. border-left:0px;
  6848. border-top:0px;
  6849. border-right:0px;
  6850. border-radius:0px;
  6851. border-bottom-right-radius:0px;
  6852. border-bottom-left-radius:0px;
  6853. -moz-box-shadow:none;
  6854. -webkit-box-shadow:none;
  6855. box-shadow:none;
  6856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6857. font-weight:400;
  6858. font-style:normal;
  6859. font-size:14px;
  6860. color:#7F7F7F;
  6861. }
  6862. #u9832 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:352px;
  6866. top:100px;
  6867. width:253px;
  6868. height:20px;
  6869. display:flex;
  6870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:14px;
  6874. color:#7F7F7F;
  6875. }
  6876. #u9832 .text {
  6877. position:absolute;
  6878. align-self:center;
  6879. padding:0px 0px 0px 0px;
  6880. box-sizing:border-box;
  6881. width:100%;
  6882. }
  6883. #u9832_text {
  6884. border-width:0px;
  6885. white-space:nowrap;
  6886. text-transform:none;
  6887. }
  6888. #u9834 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:0px;
  6894. height:0px;
  6895. }
  6896. #u9835_div {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:30px;
  6902. height:30px;
  6903. background:inherit;
  6904. background-color:rgba(255, 255, 255, 1);
  6905. box-sizing:border-box;
  6906. border-width:1px;
  6907. border-style:solid;
  6908. border-color:rgba(228, 228, 228, 1);
  6909. border-radius:4px;
  6910. -moz-box-shadow:none;
  6911. -webkit-box-shadow:none;
  6912. box-shadow:none;
  6913. font-family:'Microsoft YaHei', sans-serif;
  6914. font-weight:400;
  6915. font-style:normal;
  6916. font-size:14px;
  6917. }
  6918. #u9835 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:1005px;
  6922. top:1189px;
  6923. width:30px;
  6924. height:30px;
  6925. display:flex;
  6926. font-family:'Microsoft YaHei', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:14px;
  6930. }
  6931. #u9835 .text {
  6932. position:absolute;
  6933. align-self:center;
  6934. padding:2px 2px 2px 2px;
  6935. box-sizing:border-box;
  6936. width:100%;
  6937. }
  6938. #u9835_text {
  6939. border-width:0px;
  6940. word-wrap:break-word;
  6941. text-transform:none;
  6942. }
  6943. #u9836_div {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:49px;
  6949. height:30px;
  6950. background:inherit;
  6951. background-color:rgba(255, 255, 255, 0);
  6952. box-sizing:border-box;
  6953. border-width:1px;
  6954. border-style:solid;
  6955. border-color:rgba(188, 188, 188, 1);
  6956. border-radius:4px;
  6957. -moz-box-shadow:none;
  6958. -webkit-box-shadow:none;
  6959. box-shadow:none;
  6960. font-family:'Microsoft YaHei', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:14px;
  6964. color:#1E1E1E;
  6965. }
  6966. #u9836 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:1521px;
  6970. top:1189px;
  6971. width:49px;
  6972. height:30px;
  6973. display:flex;
  6974. font-family:'Microsoft YaHei', sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:14px;
  6978. color:#1E1E1E;
  6979. }
  6980. #u9836 .text {
  6981. position:absolute;
  6982. align-self:center;
  6983. padding:5px 10px 5px 10px;
  6984. box-sizing:border-box;
  6985. width:100%;
  6986. }
  6987. #u9836_text {
  6988. border-width:0px;
  6989. white-space:nowrap;
  6990. text-transform:none;
  6991. }
  6992. #u9837 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:0px;
  6998. height:0px;
  6999. }
  7000. #u9838_div {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:33px;
  7006. height:24px;
  7007. background:inherit;
  7008. background-color:rgba(255, 255, 255, 1);
  7009. border:none;
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:14px;
  7018. color:#BCBCBC;
  7019. text-align:left;
  7020. }
  7021. #u9838 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:1289px;
  7025. top:1192px;
  7026. width:33px;
  7027. height:24px;
  7028. display:flex;
  7029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:14px;
  7033. color:#BCBCBC;
  7034. text-align:left;
  7035. }
  7036. #u9838 .text {
  7037. position:absolute;
  7038. align-self:center;
  7039. padding:2px 2px 2px 2px;
  7040. box-sizing:border-box;
  7041. width:100%;
  7042. }
  7043. #u9838_text {
  7044. border-width:0px;
  7045. white-space:nowrap;
  7046. text-transform:none;
  7047. }
  7048. #u9839_div {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:40px;
  7054. height:30px;
  7055. background:inherit;
  7056. background-color:rgba(255, 255, 255, 1);
  7057. box-sizing:border-box;
  7058. border-width:1px;
  7059. border-style:solid;
  7060. border-color:rgba(228, 228, 228, 1);
  7061. border-radius:4px;
  7062. -moz-box-shadow:none;
  7063. -webkit-box-shadow:none;
  7064. box-shadow:none;
  7065. font-family:'Microsoft YaHei', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:14px;
  7069. }
  7070. #u9839 {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:1324px;
  7074. top:1189px;
  7075. width:40px;
  7076. height:30px;
  7077. display:flex;
  7078. font-family:'Microsoft YaHei', sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. font-size:14px;
  7082. }
  7083. #u9839 .text {
  7084. position:absolute;
  7085. align-self:center;
  7086. padding:2px 2px 2px 2px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u9839_text {
  7091. border-width:0px;
  7092. word-wrap:break-word;
  7093. text-transform:none;
  7094. visibility:hidden;
  7095. }
  7096. #u9840_div {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:19px;
  7102. height:24px;
  7103. background:inherit;
  7104. background-color:rgba(255, 255, 255, 1);
  7105. border:none;
  7106. border-radius:0px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'Microsoft YaHei', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:14px;
  7114. color:#BCBCBC;
  7115. text-align:left;
  7116. }
  7117. #u9840 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:1366px;
  7121. top:1193px;
  7122. width:19px;
  7123. height:24px;
  7124. display:flex;
  7125. font-family:'Microsoft YaHei', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:14px;
  7129. color:#BCBCBC;
  7130. text-align:left;
  7131. }
  7132. #u9840 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:2px 2px 2px 2px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u9840_text {
  7140. border-width:0px;
  7141. white-space:nowrap;
  7142. text-transform:none;
  7143. }
  7144. #u9841_input {
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:34px;
  7149. height:25px;
  7150. padding:2px 2px 2px 2px;
  7151. font-family:'Microsoft YaHei', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:13px;
  7155. letter-spacing:normal;
  7156. color:#000000;
  7157. vertical-align:none;
  7158. text-align:left;
  7159. text-transform:none;
  7160. background-color:transparent;
  7161. border-color:transparent;
  7162. }
  7163. #u9841_input.disabled {
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:34px;
  7168. height:25px;
  7169. padding:2px 2px 2px 2px;
  7170. font-family:'Microsoft YaHei', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:13px;
  7174. letter-spacing:normal;
  7175. color:#000000;
  7176. vertical-align:none;
  7177. text-align:left;
  7178. text-transform:none;
  7179. background-color:transparent;
  7180. border-color:transparent;
  7181. }
  7182. #u9841_div {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:0px;
  7186. top:0px;
  7187. width:34px;
  7188. height:25px;
  7189. background:inherit;
  7190. background-color:rgba(255, 255, 255, 1);
  7191. border:none;
  7192. border-radius:0px;
  7193. -moz-box-shadow:none;
  7194. -webkit-box-shadow:none;
  7195. box-shadow:none;
  7196. font-family:'Microsoft YaHei', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. }
  7200. #u9841 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:1327px;
  7204. top:1191px;
  7205. width:34px;
  7206. height:25px;
  7207. display:flex;
  7208. font-family:'Microsoft YaHei', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. }
  7212. #u9841 .text {
  7213. position:absolute;
  7214. align-self:center;
  7215. padding:2px 2px 2px 2px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u9841_div.disabled {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:34px;
  7225. height:25px;
  7226. background:inherit;
  7227. background-color:rgba(240, 240, 240, 1);
  7228. border:none;
  7229. border-radius:0px;
  7230. -moz-box-shadow:none;
  7231. -webkit-box-shadow:none;
  7232. box-shadow:none;
  7233. font-family:'Microsoft YaHei', sans-serif;
  7234. font-weight:400;
  7235. font-style:normal;
  7236. }
  7237. #u9841.disabled {
  7238. }
  7239. #u9842_div {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:30px;
  7245. height:30px;
  7246. background:inherit;
  7247. background-color:rgba(41, 143, 255, 1);
  7248. border:none;
  7249. border-radius:4px;
  7250. -moz-box-shadow:none;
  7251. -webkit-box-shadow:none;
  7252. box-shadow:none;
  7253. font-family:'Microsoft YaHei', sans-serif;
  7254. font-weight:400;
  7255. font-style:normal;
  7256. font-size:14px;
  7257. color:#FFFFFF;
  7258. }
  7259. #u9842 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:1039px;
  7263. top:1189px;
  7264. width:30px;
  7265. height:30px;
  7266. display:flex;
  7267. font-family:'Microsoft YaHei', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:14px;
  7271. color:#FFFFFF;
  7272. }
  7273. #u9842 .text {
  7274. position:absolute;
  7275. align-self:center;
  7276. padding:2px 2px 2px 2px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u9842_text {
  7281. border-width:0px;
  7282. word-wrap:break-word;
  7283. text-transform:none;
  7284. }
  7285. #u9843_div {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:30px;
  7291. height:30px;
  7292. background:inherit;
  7293. background-color:rgba(255, 255, 255, 1);
  7294. box-sizing:border-box;
  7295. border-width:1px;
  7296. border-style:solid;
  7297. border-color:rgba(228, 228, 228, 1);
  7298. border-radius:4px;
  7299. -moz-box-shadow:none;
  7300. -webkit-box-shadow:none;
  7301. box-shadow:none;
  7302. font-family:'Microsoft YaHei', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:14px;
  7306. }
  7307. #u9843 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:1073px;
  7311. top:1189px;
  7312. width:30px;
  7313. height:30px;
  7314. display:flex;
  7315. font-family:'Microsoft YaHei', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. }
  7320. #u9843 .text {
  7321. position:absolute;
  7322. align-self:center;
  7323. padding:2px 2px 2px 2px;
  7324. box-sizing:border-box;
  7325. width:100%;
  7326. }
  7327. #u9843_text {
  7328. border-width:0px;
  7329. word-wrap:break-word;
  7330. text-transform:none;
  7331. }
  7332. #u9844_div {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:0px;
  7336. top:0px;
  7337. width:30px;
  7338. height:30px;
  7339. background:inherit;
  7340. background-color:rgba(255, 255, 255, 1);
  7341. box-sizing:border-box;
  7342. border-width:1px;
  7343. border-style:solid;
  7344. border-color:rgba(228, 228, 228, 1);
  7345. border-radius:4px;
  7346. -moz-box-shadow:none;
  7347. -webkit-box-shadow:none;
  7348. box-shadow:none;
  7349. font-family:'Microsoft YaHei', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:14px;
  7353. }
  7354. #u9844 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:1107px;
  7358. top:1189px;
  7359. width:30px;
  7360. height:30px;
  7361. display:flex;
  7362. font-family:'Microsoft YaHei', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:14px;
  7366. }
  7367. #u9844 .text {
  7368. position:absolute;
  7369. align-self:center;
  7370. padding:2px 2px 2px 2px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u9844_text {
  7375. border-width:0px;
  7376. word-wrap:break-word;
  7377. text-transform:none;
  7378. }
  7379. #u9845_div {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:30px;
  7385. height:30px;
  7386. background:inherit;
  7387. background-color:rgba(255, 255, 255, 1);
  7388. border:none;
  7389. border-radius:4px;
  7390. -moz-box-shadow:none;
  7391. -webkit-box-shadow:none;
  7392. box-shadow:none;
  7393. font-family:'Microsoft YaHei', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:14px;
  7397. }
  7398. #u9845 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:1137px;
  7402. top:1189px;
  7403. width:30px;
  7404. height:30px;
  7405. display:flex;
  7406. font-family:'Microsoft YaHei', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:14px;
  7410. }
  7411. #u9845 .text {
  7412. position:absolute;
  7413. align-self:center;
  7414. padding:2px 2px 2px 2px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u9845_text {
  7419. border-width:0px;
  7420. word-wrap:break-word;
  7421. text-transform:none;
  7422. }
  7423. #u9846_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:30px;
  7429. height:30px;
  7430. background:inherit;
  7431. background-color:rgba(255, 255, 255, 1);
  7432. box-sizing:border-box;
  7433. border-width:1px;
  7434. border-style:solid;
  7435. border-color:rgba(228, 228, 228, 1);
  7436. border-radius:4px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. font-family:'Microsoft YaHei', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:14px;
  7444. }
  7445. #u9846 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:1171px;
  7449. top:1189px;
  7450. width:30px;
  7451. height:30px;
  7452. display:flex;
  7453. font-family:'Microsoft YaHei', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:14px;
  7457. }
  7458. #u9846 .text {
  7459. position:absolute;
  7460. align-self:center;
  7461. padding:2px 2px 2px 2px;
  7462. box-sizing:border-box;
  7463. width:100%;
  7464. }
  7465. #u9846_text {
  7466. border-width:0px;
  7467. word-wrap:break-word;
  7468. text-transform:none;
  7469. }
  7470. #u9847_div {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:32px;
  7476. height:21px;
  7477. background:inherit;
  7478. background-color:rgba(255, 255, 255, 1);
  7479. border:none;
  7480. border-radius:15px;
  7481. -moz-box-shadow:none;
  7482. -webkit-box-shadow:none;
  7483. box-shadow:none;
  7484. font-family:'Microsoft YaHei', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:14px;
  7488. color:#1E1E1E;
  7489. }
  7490. #u9847 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:1245px;
  7494. top:1194px;
  7495. width:32px;
  7496. height:21px;
  7497. display:flex;
  7498. font-family:'Microsoft YaHei', sans-serif;
  7499. font-weight:400;
  7500. font-style:normal;
  7501. font-size:14px;
  7502. color:#1E1E1E;
  7503. }
  7504. #u9847 .text {
  7505. position:absolute;
  7506. align-self:center;
  7507. padding:2px 2px 2px 2px;
  7508. box-sizing:border-box;
  7509. width:100%;
  7510. }
  7511. #u9847_text {
  7512. border-width:0px;
  7513. white-space:nowrap;
  7514. text-transform:none;
  7515. }
  7516. #u9848 {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:0px;
  7522. height:0px;
  7523. }
  7524. #u9849_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:31px;
  7530. height:30px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 1);
  7533. box-sizing:border-box;
  7534. border-width:1px;
  7535. border-style:solid;
  7536. border-color:rgba(228, 228, 228, 1);
  7537. border-radius:4px;
  7538. -moz-box-shadow:none;
  7539. -webkit-box-shadow:none;
  7540. box-shadow:none;
  7541. font-family:'Microsoft YaHei', sans-serif;
  7542. font-weight:400;
  7543. font-style:normal;
  7544. font-size:12px;
  7545. }
  7546. #u9849 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:970px;
  7550. top:1189px;
  7551. width:31px;
  7552. height:30px;
  7553. display:flex;
  7554. font-family:'Microsoft YaHei', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:12px;
  7558. }
  7559. #u9849 .text {
  7560. position:absolute;
  7561. align-self:center;
  7562. padding:2px 2px 2px 2px;
  7563. box-sizing:border-box;
  7564. width:100%;
  7565. }
  7566. #u9849_text {
  7567. border-width:0px;
  7568. word-wrap:break-word;
  7569. text-transform:none;
  7570. visibility:hidden;
  7571. }
  7572. #u9850_img {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:0px;
  7576. top:0px;
  7577. width:8px;
  7578. height:14px;
  7579. }
  7580. #u9850 {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:982px;
  7584. top:1197px;
  7585. width:8px;
  7586. height:14px;
  7587. display:flex;
  7588. font-family:'Microsoft YaHei', sans-serif;
  7589. font-weight:400;
  7590. font-style:normal;
  7591. font-size:12px;
  7592. }
  7593. #u9850 .text {
  7594. position:absolute;
  7595. align-self:center;
  7596. padding:2px 2px 2px 2px;
  7597. box-sizing:border-box;
  7598. width:100%;
  7599. }
  7600. #u9850_text {
  7601. border-width:0px;
  7602. word-wrap:break-word;
  7603. text-transform:none;
  7604. visibility:hidden;
  7605. }
  7606. #u9851 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:0px;
  7612. height:0px;
  7613. }
  7614. #u9852_div {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:31px;
  7620. height:30px;
  7621. background:inherit;
  7622. background-color:rgba(255, 255, 255, 1);
  7623. box-sizing:border-box;
  7624. border-width:1px;
  7625. border-style:solid;
  7626. border-color:rgba(228, 228, 228, 1);
  7627. border-radius:4px;
  7628. -moz-box-shadow:none;
  7629. -webkit-box-shadow:none;
  7630. box-shadow:none;
  7631. font-family:'Microsoft YaHei', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. font-size:12px;
  7635. }
  7636. #u9852 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:1204px;
  7640. top:1189px;
  7641. width:31px;
  7642. height:30px;
  7643. display:flex;
  7644. font-family:'Microsoft YaHei', sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. font-size:12px;
  7648. }
  7649. #u9852 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:2px 2px 2px 2px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u9852_text {
  7657. border-width:0px;
  7658. word-wrap:break-word;
  7659. text-transform:none;
  7660. visibility:hidden;
  7661. }
  7662. #u9853_img {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:8px;
  7668. height:14px;
  7669. }
  7670. #u9853 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:1217px;
  7674. top:1197px;
  7675. width:8px;
  7676. height:14px;
  7677. display:flex;
  7678. font-family:'Microsoft YaHei', sans-serif;
  7679. font-weight:400;
  7680. font-style:normal;
  7681. font-size:12px;
  7682. }
  7683. #u9853 .text {
  7684. position:absolute;
  7685. align-self:center;
  7686. padding:2px 2px 2px 2px;
  7687. box-sizing:border-box;
  7688. width:100%;
  7689. }
  7690. #u9853_text {
  7691. border-width:0px;
  7692. word-wrap:break-word;
  7693. text-transform:none;
  7694. visibility:hidden;
  7695. }
  7696. #u9854 {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:0px;
  7700. top:0px;
  7701. width:0px;
  7702. height:0px;
  7703. }
  7704. #u9855_div {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:33px;
  7710. height:24px;
  7711. background:inherit;
  7712. background-color:rgba(255, 255, 255, 1);
  7713. border:none;
  7714. border-radius:0px;
  7715. -moz-box-shadow:none;
  7716. -webkit-box-shadow:none;
  7717. box-shadow:none;
  7718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:14px;
  7722. color:#BCBCBC;
  7723. text-align:left;
  7724. }
  7725. #u9855 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:1405px;
  7729. top:1192px;
  7730. width:33px;
  7731. height:24px;
  7732. display:flex;
  7733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:14px;
  7737. color:#BCBCBC;
  7738. text-align:left;
  7739. }
  7740. #u9855 .text {
  7741. position:absolute;
  7742. align-self:center;
  7743. padding:2px 2px 2px 2px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u9855_text {
  7748. border-width:0px;
  7749. white-space:nowrap;
  7750. text-transform:none;
  7751. }
  7752. #u9856_div {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:40px;
  7758. height:30px;
  7759. background:inherit;
  7760. background-color:rgba(255, 255, 255, 1);
  7761. box-sizing:border-box;
  7762. border-width:1px;
  7763. border-style:solid;
  7764. border-color:rgba(228, 228, 228, 1);
  7765. border-radius:4px;
  7766. -moz-box-shadow:none;
  7767. -webkit-box-shadow:none;
  7768. box-shadow:none;
  7769. font-family:'Microsoft YaHei', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:14px;
  7773. }
  7774. #u9856 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:1440px;
  7778. top:1189px;
  7779. width:40px;
  7780. height:30px;
  7781. display:flex;
  7782. font-family:'Microsoft YaHei', sans-serif;
  7783. font-weight:400;
  7784. font-style:normal;
  7785. font-size:14px;
  7786. }
  7787. #u9856 .text {
  7788. position:absolute;
  7789. align-self:center;
  7790. padding:2px 2px 2px 2px;
  7791. box-sizing:border-box;
  7792. width:100%;
  7793. }
  7794. #u9856_text {
  7795. border-width:0px;
  7796. word-wrap:break-word;
  7797. text-transform:none;
  7798. visibility:hidden;
  7799. }
  7800. #u9857_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:19px;
  7806. height:24px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 1);
  7809. border:none;
  7810. border-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:14px;
  7818. color:#BCBCBC;
  7819. text-align:left;
  7820. }
  7821. #u9857 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:1482px;
  7825. top:1193px;
  7826. width:19px;
  7827. height:24px;
  7828. display:flex;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:14px;
  7833. color:#BCBCBC;
  7834. text-align:left;
  7835. }
  7836. #u9857 .text {
  7837. position:absolute;
  7838. align-self:center;
  7839. padding:2px 2px 2px 2px;
  7840. box-sizing:border-box;
  7841. width:100%;
  7842. }
  7843. #u9857_text {
  7844. border-width:0px;
  7845. white-space:nowrap;
  7846. text-transform:none;
  7847. }
  7848. #u9858_input {
  7849. position:absolute;
  7850. left:0px;
  7851. top:0px;
  7852. width:34px;
  7853. height:25px;
  7854. padding:2px 2px 2px 2px;
  7855. font-family:'Microsoft YaHei', sans-serif;
  7856. font-weight:400;
  7857. font-style:normal;
  7858. font-size:13px;
  7859. letter-spacing:normal;
  7860. color:#000000;
  7861. vertical-align:none;
  7862. text-align:left;
  7863. text-transform:none;
  7864. background-color:transparent;
  7865. border-color:transparent;
  7866. }
  7867. #u9858_input.disabled {
  7868. position:absolute;
  7869. left:0px;
  7870. top:0px;
  7871. width:34px;
  7872. height:25px;
  7873. padding:2px 2px 2px 2px;
  7874. font-family:'Microsoft YaHei', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:13px;
  7878. letter-spacing:normal;
  7879. color:#000000;
  7880. vertical-align:none;
  7881. text-align:left;
  7882. text-transform:none;
  7883. background-color:transparent;
  7884. border-color:transparent;
  7885. }
  7886. #u9858_div {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:0px;
  7890. top:0px;
  7891. width:34px;
  7892. height:25px;
  7893. background:inherit;
  7894. background-color:rgba(255, 255, 255, 1);
  7895. border:none;
  7896. border-radius:0px;
  7897. -moz-box-shadow:none;
  7898. -webkit-box-shadow:none;
  7899. box-shadow:none;
  7900. font-family:'Microsoft YaHei', sans-serif;
  7901. font-weight:400;
  7902. font-style:normal;
  7903. }
  7904. #u9858 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:1443px;
  7908. top:1191px;
  7909. width:34px;
  7910. height:25px;
  7911. display:flex;
  7912. font-family:'Microsoft YaHei', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. }
  7916. #u9858 .text {
  7917. position:absolute;
  7918. align-self:center;
  7919. padding:2px 2px 2px 2px;
  7920. box-sizing:border-box;
  7921. width:100%;
  7922. }
  7923. #u9858_div.disabled {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:34px;
  7929. height:25px;
  7930. background:inherit;
  7931. background-color:rgba(240, 240, 240, 1);
  7932. border:none;
  7933. border-radius:0px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-family:'Microsoft YaHei', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. }
  7941. #u9858.disabled {
  7942. }