styles.css 206 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2600px;
  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. #u8903_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. #u8903 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u8903 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u8903_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u8904_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. #u8904 {
  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. #u8904 .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. #u8904_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u8905_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. #u8905 {
  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. #u8905 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u8905_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u8906 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u8907_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u8907 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u8907 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u8907_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u8908_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. #u8908 {
  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. #u8908 .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. #u8908_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u8909_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. #u8909 {
  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. #u8909 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u8909_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u8910 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u8911_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. #u8911 {
  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. #u8911 .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. #u8911_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u8912_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u8912 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u8912 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u8912_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u8913 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u8914_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. #u8914 {
  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. #u8914 .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. #u8914_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u8915_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u8915 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u8915 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u8915_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u8916 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u8917_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. #u8917 {
  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. #u8917 .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. #u8917_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u8918_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u8918 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u8918 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u8918_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u8919 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u8920_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. #u8920 {
  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. #u8920 .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. #u8920_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u8921_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u8921 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u8921 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u8921_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u8922 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u8923_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. #u8923 {
  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. #u8923 .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. #u8923_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u8924_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u8924 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u8924 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u8924_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u8925 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u8926_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. #u8926 {
  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. #u8926 .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. #u8926_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u8927_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u8927 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u8927 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u8927_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u8928 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u8929_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. #u8929 {
  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. #u8929 .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. #u8929_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u8930_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u8930 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u8930 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u8930_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u8931 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u8932_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. #u8932 {
  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. #u8932 .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. #u8932_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u8933_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u8933 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u8933 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u8933_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u8934 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u8935_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. #u8935 {
  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. #u8935 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u8935_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u8936_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u8936 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u8936 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u8936_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u8937 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u8938_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. #u8938 {
  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. #u8938 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u8938_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u8939_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u8939 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u8939 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u8939_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u8940 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u8941_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. #u8941 {
  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. #u8941 .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. #u8941_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u8942_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u8942 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u8942 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u8942_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u8943 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u8944_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. #u8944_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. #u8944_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. #u8944 {
  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. #u8944 .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. #u8944_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. #u8944.disabled {
  1276. }
  1277. .u8944_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u8945_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u8945 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u8945 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u8945_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u8946_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. #u8946 {
  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. #u8946 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u8946_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u8947_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u8947 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u8947 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u8947_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u8948 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u8949_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. #u8949 {
  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. #u8949 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u8949_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u8950_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u8950 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u8950 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u8950_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u8951_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u8951 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u8951 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u8951_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u8952_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u8952 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u8952 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u8952_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u8953_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u8953 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u8953 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u8953_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u8954 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u8955_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. #u8955 {
  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. #u8955 .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. #u8955_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u8956_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u8956 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u8956 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u8956_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u8957_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1256px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. color:#FFFFFF;
  1661. text-align:left;
  1662. }
  1663. #u8957 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:331px;
  1667. top:51px;
  1668. width:1256px;
  1669. height:1180px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:12px;
  1675. color:#FFFFFF;
  1676. text-align:left;
  1677. }
  1678. #u8957 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 50px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u8957_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u8958_div {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:59px;
  1697. height:30px;
  1698. background:inherit;
  1699. background-color:rgba(41, 143, 255, 1);
  1700. border:none;
  1701. border-radius:4px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. color:#FFFFFF;
  1710. }
  1711. #u8958 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:350px;
  1715. top:192px;
  1716. width:59px;
  1717. height:30px;
  1718. display:flex;
  1719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:14px;
  1723. color:#FFFFFF;
  1724. }
  1725. #u8958 .text {
  1726. position:absolute;
  1727. align-self:center;
  1728. padding:5px 15px 5px 15px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u8958_text {
  1733. border-width:0px;
  1734. white-space:nowrap;
  1735. text-transform:none;
  1736. }
  1737. #u8959 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:0px;
  1743. height:0px;
  1744. }
  1745. #u8960_div {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:59px;
  1751. height:30px;
  1752. background:inherit;
  1753. background-color:rgba(24, 144, 255, 1);
  1754. box-sizing:border-box;
  1755. border-width:1px;
  1756. border-style:solid;
  1757. border-color:rgba(0, 153, 255, 1);
  1758. border-radius:4px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:'Microsoft YaHei', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. color:#FFFFFF;
  1767. }
  1768. #u8960 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:951px;
  1772. top:142px;
  1773. width:59px;
  1774. height:30px;
  1775. display:flex;
  1776. font-family:'Microsoft YaHei', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. color:#FFFFFF;
  1781. }
  1782. #u8960 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:5px 15px 5px 15px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u8960_text {
  1790. border-width:0px;
  1791. white-space:nowrap;
  1792. text-transform:none;
  1793. }
  1794. #u8961_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:55px;
  1800. height:30px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 1);
  1803. box-sizing:border-box;
  1804. border-width:1px;
  1805. border-style:solid;
  1806. border-color:rgba(170, 170, 170, 1);
  1807. border-radius:4px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. color:#555555;
  1816. }
  1817. #u8961 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:1020px;
  1821. top:142px;
  1822. width:55px;
  1823. height:30px;
  1824. display:flex;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. color:#555555;
  1830. }
  1831. #u8961 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:5px 15px 5px 15px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u8961_text {
  1839. border-width:0px;
  1840. white-space:nowrap;
  1841. text-transform:none;
  1842. }
  1843. #u8962 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:0px;
  1849. height:0px;
  1850. }
  1851. #u8963_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:140px;
  1857. height:30px;
  1858. background:inherit;
  1859. background-color:rgba(255, 255, 255, 1);
  1860. box-sizing:border-box;
  1861. border-width:1px;
  1862. border-style:solid;
  1863. border-color:rgba(201, 201, 201, 1);
  1864. border-radius:4px;
  1865. -moz-box-shadow:none;
  1866. -webkit-box-shadow:none;
  1867. box-shadow:none;
  1868. font-family:'Microsoft YaHei', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:14px;
  1872. color:#CCCCCC;
  1873. text-align:left;
  1874. }
  1875. #u8963 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:500px;
  1879. top:142px;
  1880. width:140px;
  1881. height:30px;
  1882. display:flex;
  1883. font-family:'Microsoft YaHei', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:14px;
  1887. color:#CCCCCC;
  1888. text-align:left;
  1889. }
  1890. #u8963 .text {
  1891. position:absolute;
  1892. align-self:center;
  1893. padding:2px 8px 2px 8px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u8963_text {
  1898. border-width:0px;
  1899. word-wrap:break-word;
  1900. text-transform:none;
  1901. visibility:hidden;
  1902. }
  1903. #u8964_input {
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:127px;
  1908. height:25px;
  1909. padding:2px 2px 2px 2px;
  1910. font-family:'Microsoft YaHei', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:10px;
  1914. letter-spacing:normal;
  1915. color:#000000;
  1916. vertical-align:none;
  1917. text-align:left;
  1918. text-transform:none;
  1919. background-color:transparent;
  1920. border-color:transparent;
  1921. }
  1922. #u8964_input.disabled {
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:127px;
  1927. height:25px;
  1928. padding:2px 2px 2px 2px;
  1929. font-family:'Microsoft YaHei', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:10px;
  1933. letter-spacing:normal;
  1934. color:#000000;
  1935. vertical-align:none;
  1936. text-align:left;
  1937. text-transform:none;
  1938. background-color:transparent;
  1939. border-color:transparent;
  1940. }
  1941. #u8964_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:127px;
  1947. height:25px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 1);
  1950. border:none;
  1951. border-radius:0px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. font-family:'Microsoft YaHei', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:10px;
  1959. }
  1960. #u8964 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:508px;
  1964. top:143px;
  1965. width:127px;
  1966. height:25px;
  1967. display:flex;
  1968. font-family:'Microsoft YaHei', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:10px;
  1972. }
  1973. #u8964 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u8964_div.disabled {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:127px;
  1986. height:25px;
  1987. background:inherit;
  1988. background-color:rgba(240, 240, 240, 1);
  1989. border:none;
  1990. border-radius:0px;
  1991. -moz-box-shadow:none;
  1992. -webkit-box-shadow:none;
  1993. box-shadow:none;
  1994. font-family:'Microsoft YaHei', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:10px;
  1998. }
  1999. #u8964.disabled {
  2000. }
  2001. #u8965 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:0px;
  2007. height:0px;
  2008. }
  2009. #u8966_div {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:140px;
  2015. height:30px;
  2016. background:inherit;
  2017. background-color:rgba(255, 255, 255, 1);
  2018. box-sizing:border-box;
  2019. border-width:1px;
  2020. border-style:solid;
  2021. border-color:rgba(201, 201, 201, 1);
  2022. border-radius:4px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'Microsoft YaHei', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:14px;
  2030. color:#CCCCCC;
  2031. text-align:left;
  2032. }
  2033. #u8966 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:650px;
  2037. top:142px;
  2038. width:140px;
  2039. height:30px;
  2040. display:flex;
  2041. font-family:'Microsoft YaHei', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. color:#CCCCCC;
  2046. text-align:left;
  2047. }
  2048. #u8966 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 8px 2px 8px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u8966_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. visibility:hidden;
  2060. }
  2061. #u8967_input {
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:127px;
  2066. height:25px;
  2067. padding:2px 2px 2px 2px;
  2068. font-family:'Microsoft YaHei', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:10px;
  2072. letter-spacing:normal;
  2073. color:#000000;
  2074. vertical-align:none;
  2075. text-align:left;
  2076. text-transform:none;
  2077. background-color:transparent;
  2078. border-color:transparent;
  2079. }
  2080. #u8967_input.disabled {
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:127px;
  2085. height:25px;
  2086. padding:2px 2px 2px 2px;
  2087. font-family:'Microsoft YaHei', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:10px;
  2091. letter-spacing:normal;
  2092. color:#000000;
  2093. vertical-align:none;
  2094. text-align:left;
  2095. text-transform:none;
  2096. background-color:transparent;
  2097. border-color:transparent;
  2098. }
  2099. #u8967_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:127px;
  2105. height:25px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 1);
  2108. border:none;
  2109. border-radius:0px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'Microsoft YaHei', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:10px;
  2117. }
  2118. #u8967 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:658px;
  2122. top:143px;
  2123. width:127px;
  2124. height:25px;
  2125. display:flex;
  2126. font-family:'Microsoft YaHei', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:10px;
  2130. }
  2131. #u8967 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:2px 2px 2px 2px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u8967_div.disabled {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:127px;
  2144. height:25px;
  2145. background:inherit;
  2146. background-color:rgba(240, 240, 240, 1);
  2147. border:none;
  2148. border-radius:0px;
  2149. -moz-box-shadow:none;
  2150. -webkit-box-shadow:none;
  2151. box-shadow:none;
  2152. font-family:'Microsoft YaHei', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:10px;
  2156. }
  2157. #u8967.disabled {
  2158. }
  2159. #u8968_div {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:73px;
  2165. height:50px;
  2166. background:inherit;
  2167. background-color:rgba(255, 255, 255, 0);
  2168. border:none;
  2169. border-left:0px;
  2170. border-top:0px;
  2171. border-right:0px;
  2172. border-radius:0px;
  2173. border-bottom-right-radius:0px;
  2174. border-bottom-left-radius:0px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:18px;
  2182. }
  2183. #u8968 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:350px;
  2187. top:52px;
  2188. width:73px;
  2189. height:50px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:18px;
  2195. }
  2196. #u8968 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:0px 0px 0px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u8968_text {
  2204. border-width:0px;
  2205. white-space:nowrap;
  2206. text-transform:none;
  2207. }
  2208. #u8969 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:0px;
  2214. height:0px;
  2215. }
  2216. #u8970_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:140px;
  2222. height:30px;
  2223. background:inherit;
  2224. background-color:rgba(255, 255, 255, 1);
  2225. box-sizing:border-box;
  2226. border-width:1px;
  2227. border-style:solid;
  2228. border-color:rgba(215, 215, 215, 1);
  2229. border-radius:4px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-size:11px;
  2234. }
  2235. #u8970 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:350px;
  2239. top:142px;
  2240. width:140px;
  2241. height:30px;
  2242. display:flex;
  2243. font-size:11px;
  2244. }
  2245. #u8970 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:2px 2px 2px 2px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u8970_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. visibility:hidden;
  2257. }
  2258. #u8971_input {
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:126px;
  2263. height:23px;
  2264. padding:2px 2px 2px 2px;
  2265. font-family:'ArialMT', 'Arial', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:11px;
  2269. letter-spacing:normal;
  2270. color:#AAAAAA;
  2271. vertical-align:none;
  2272. text-align:left;
  2273. text-transform:none;
  2274. background-color:transparent;
  2275. border-color:transparent;
  2276. }
  2277. #u8971_input.disabled {
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:126px;
  2282. height:23px;
  2283. padding:2px 2px 2px 2px;
  2284. font-family:'ArialMT', 'Arial', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:11px;
  2288. letter-spacing:normal;
  2289. color:#AAAAAA;
  2290. vertical-align:none;
  2291. text-align:left;
  2292. text-transform:none;
  2293. background-color:transparent;
  2294. border-color:transparent;
  2295. }
  2296. #u8971_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:126px;
  2302. height:23px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 1);
  2305. border:none;
  2306. border-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-size:11px;
  2311. color:#AAAAAA;
  2312. }
  2313. #u8971 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:357px;
  2317. top:144px;
  2318. width:126px;
  2319. height:23px;
  2320. display:flex;
  2321. font-size:11px;
  2322. color:#AAAAAA;
  2323. }
  2324. #u8971 .text {
  2325. position:absolute;
  2326. align-self:flex-start;
  2327. padding:2px 2px 2px 2px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u8971_div.disabled {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:126px;
  2337. height:23px;
  2338. background:inherit;
  2339. background-color:rgba(240, 240, 240, 1);
  2340. border:none;
  2341. border-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-size:11px;
  2346. color:#AAAAAA;
  2347. }
  2348. #u8971.disabled {
  2349. }
  2350. .u8971_input_option {
  2351. font-size:11px;
  2352. }
  2353. #u8973 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:0px;
  2359. height:0px;
  2360. }
  2361. #u8974_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:200px;
  2367. height:1187px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 1);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. }
  2376. #u8974 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:120px;
  2380. top:50px;
  2381. width:200px;
  2382. height:1187px;
  2383. display:flex;
  2384. }
  2385. #u8974 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u8974_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u8975_div {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:200px;
  2404. height:60px;
  2405. background:inherit;
  2406. background-color:rgba(224, 231, 247, 1);
  2407. border:none;
  2408. border-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2413. font-weight:500;
  2414. font-style:normal;
  2415. font-size:18px;
  2416. }
  2417. #u8975 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:120px;
  2421. top:50px;
  2422. width:200px;
  2423. height:60px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2426. font-weight:500;
  2427. font-style:normal;
  2428. font-size:18px;
  2429. }
  2430. #u8975 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:0px 0px 0px 20px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u8975_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u8976_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:65px;
  2448. height:22px;
  2449. background:inherit;
  2450. background-color:rgba(255, 255, 255, 0);
  2451. border:none;
  2452. border-radius:0px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:16px;
  2460. }
  2461. #u8976 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:147px;
  2465. top:204px;
  2466. width:65px;
  2467. height:22px;
  2468. display:flex;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:16px;
  2473. }
  2474. #u8976 .text {
  2475. position:absolute;
  2476. align-self:flex-start;
  2477. padding:0px 0px 0px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u8976_text {
  2482. border-width:0px;
  2483. white-space:nowrap;
  2484. text-transform:none;
  2485. }
  2486. #u8977_div {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:49px;
  2492. height:17px;
  2493. background:inherit;
  2494. background-color:rgba(255, 255, 255, 0);
  2495. border:none;
  2496. border-radius:0px;
  2497. -moz-box-shadow:none;
  2498. -webkit-box-shadow:none;
  2499. box-shadow:none;
  2500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2501. font-weight:400;
  2502. font-style:normal;
  2503. font-size:12px;
  2504. color:#AAAAAA;
  2505. }
  2506. #u8977 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:147px;
  2510. top:125px;
  2511. width:49px;
  2512. height:17px;
  2513. display:flex;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. color:#AAAAAA;
  2519. }
  2520. #u8977 .text {
  2521. position:absolute;
  2522. align-self:flex-start;
  2523. padding:0px 0px 0px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u8977_text {
  2528. border-width:0px;
  2529. white-space:nowrap;
  2530. text-transform:none;
  2531. }
  2532. #u8978_div {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:49px;
  2538. height:17px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 0);
  2541. border:none;
  2542. border-radius:0px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:12px;
  2550. color:#AAAAAA;
  2551. }
  2552. #u8978 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:147px;
  2556. top:461px;
  2557. width:49px;
  2558. height:17px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. color:#AAAAAA;
  2565. }
  2566. #u8978 .text {
  2567. position:absolute;
  2568. align-self:flex-start;
  2569. padding:0px 0px 0px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u8978_text {
  2574. border-width:0px;
  2575. white-space:nowrap;
  2576. text-transform:none;
  2577. }
  2578. #u8979_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:201px;
  2584. height:2px;
  2585. }
  2586. #u8979 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:120px;
  2590. top:439px;
  2591. width:200px;
  2592. height:1px;
  2593. display:flex;
  2594. }
  2595. #u8979 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 2px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u8979_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. visibility:hidden;
  2607. }
  2608. #u8980_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:65px;
  2614. height:22px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 0);
  2617. border:none;
  2618. border-radius:0px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:16px;
  2626. }
  2627. #u8980 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:147px;
  2631. top:349px;
  2632. width:65px;
  2633. height:22px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:16px;
  2639. }
  2640. #u8980 .text {
  2641. position:absolute;
  2642. align-self:flex-start;
  2643. padding:0px 0px 0px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u8980_text {
  2648. border-width:0px;
  2649. white-space:nowrap;
  2650. text-transform:none;
  2651. }
  2652. #u8981_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:49px;
  2658. height:17px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-radius:0px;
  2663. -moz-box-shadow:none;
  2664. -webkit-box-shadow:none;
  2665. box-shadow:none;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:12px;
  2670. color:#AAAAAA;
  2671. }
  2672. #u8981 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:147px;
  2676. top:265px;
  2677. width:49px;
  2678. height:17px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:12px;
  2684. color:#AAAAAA;
  2685. }
  2686. #u8981 .text {
  2687. position:absolute;
  2688. align-self:flex-start;
  2689. padding:0px 0px 0px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u8981_text {
  2694. border-width:0px;
  2695. white-space:nowrap;
  2696. text-transform:none;
  2697. }
  2698. #u8982_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:201px;
  2704. height:2px;
  2705. }
  2706. #u8982 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:120px;
  2710. top:243px;
  2711. width:200px;
  2712. height:1px;
  2713. display:flex;
  2714. }
  2715. #u8982 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 2px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u8982_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u8983_div {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:65px;
  2734. height:22px;
  2735. background:inherit;
  2736. background-color:rgba(255, 255, 255, 0);
  2737. border:none;
  2738. border-radius:0px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:16px;
  2746. }
  2747. #u8983 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:147px;
  2751. top:162px;
  2752. width:65px;
  2753. height:22px;
  2754. display:flex;
  2755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2756. font-weight:400;
  2757. font-style:normal;
  2758. font-size:16px;
  2759. }
  2760. #u8983 .text {
  2761. position:absolute;
  2762. align-self:flex-start;
  2763. padding:0px 0px 0px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u8983_text {
  2768. border-width:0px;
  2769. white-space:nowrap;
  2770. text-transform:none;
  2771. }
  2772. #u8984_div {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:65px;
  2778. height:22px;
  2779. background:inherit;
  2780. background-color:rgba(255, 255, 255, 0);
  2781. border:none;
  2782. border-radius:0px;
  2783. -moz-box-shadow:none;
  2784. -webkit-box-shadow:none;
  2785. box-shadow:none;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:16px;
  2790. }
  2791. #u8984 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:148px;
  2795. top:578px;
  2796. width:65px;
  2797. height:22px;
  2798. display:flex;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:16px;
  2803. }
  2804. #u8984 .text {
  2805. position:absolute;
  2806. align-self:flex-start;
  2807. padding:0px 0px 0px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u8984_text {
  2812. border-width:0px;
  2813. white-space:nowrap;
  2814. text-transform:none;
  2815. }
  2816. #u8985_div {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:65px;
  2822. height:22px;
  2823. background:inherit;
  2824. background-color:rgba(255, 255, 255, 0);
  2825. border:none;
  2826. border-radius:0px;
  2827. -moz-box-shadow:none;
  2828. -webkit-box-shadow:none;
  2829. box-shadow:none;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:16px;
  2834. }
  2835. #u8985 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:148px;
  2839. top:536px;
  2840. width:65px;
  2841. height:22px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:16px;
  2847. }
  2848. #u8985 .text {
  2849. position:absolute;
  2850. align-self:flex-start;
  2851. padding:0px 0px 0px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u8985_text {
  2856. border-width:0px;
  2857. white-space:nowrap;
  2858. text-transform:none;
  2859. }
  2860. #u8986_div {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:65px;
  2866. height:22px;
  2867. background:inherit;
  2868. background-color:rgba(255, 255, 255, 0);
  2869. border:none;
  2870. border-radius:0px;
  2871. -moz-box-shadow:none;
  2872. -webkit-box-shadow:none;
  2873. box-shadow:none;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:16px;
  2878. }
  2879. #u8986 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:147px;
  2883. top:391px;
  2884. width:65px;
  2885. height:22px;
  2886. display:flex;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:16px;
  2891. }
  2892. #u8986 .text {
  2893. position:absolute;
  2894. align-self:flex-start;
  2895. padding:0px 0px 0px 0px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u8986_text {
  2900. border-width:0px;
  2901. white-space:nowrap;
  2902. text-transform:none;
  2903. }
  2904. #u8987_div {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:65px;
  2910. height:22px;
  2911. background:inherit;
  2912. background-color:rgba(255, 255, 255, 0);
  2913. border:none;
  2914. border-radius:0px;
  2915. -moz-box-shadow:none;
  2916. -webkit-box-shadow:none;
  2917. box-shadow:none;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:16px;
  2922. }
  2923. #u8987 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:147px;
  2927. top:305px;
  2928. width:65px;
  2929. height:22px;
  2930. display:flex;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:16px;
  2935. }
  2936. #u8987 .text {
  2937. position:absolute;
  2938. align-self:flex-start;
  2939. padding:0px 0px 0px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u8987_text {
  2944. border-width:0px;
  2945. white-space:nowrap;
  2946. text-transform:none;
  2947. }
  2948. #u8988_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:65px;
  2954. height:22px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border:none;
  2958. border-radius:0px;
  2959. -moz-box-shadow:none;
  2960. -webkit-box-shadow:none;
  2961. box-shadow:none;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:16px;
  2966. }
  2967. #u8988 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:147px;
  2971. top:498px;
  2972. width:65px;
  2973. height:22px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:16px;
  2979. }
  2980. #u8988 .text {
  2981. position:absolute;
  2982. align-self:flex-start;
  2983. padding:0px 0px 0px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u8988_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u8989_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:827px;
  2998. height:20px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 0);
  3001. border:none;
  3002. border-left:0px;
  3003. border-top:0px;
  3004. border-right:0px;
  3005. border-radius:0px;
  3006. border-bottom-right-radius:0px;
  3007. border-bottom-left-radius:0px;
  3008. -moz-box-shadow:none;
  3009. -webkit-box-shadow:none;
  3010. box-shadow:none;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:14px;
  3015. color:#7F7F7F;
  3016. }
  3017. #u8989 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:350px;
  3021. top:102px;
  3022. width:827px;
  3023. height:20px;
  3024. display:flex;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:14px;
  3029. color:#7F7F7F;
  3030. }
  3031. #u8989 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:0px 0px 0px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u8989_text {
  3039. border-width:0px;
  3040. white-space:nowrap;
  3041. text-transform:none;
  3042. }
  3043. #u8990 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:0px;
  3049. height:0px;
  3050. }
  3051. #u8991 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:0px;
  3057. height:0px;
  3058. }
  3059. #u8992_div {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:380px;
  3065. height:120px;
  3066. background:inherit;
  3067. background-color:rgba(255, 255, 255, 1);
  3068. box-sizing:border-box;
  3069. border-width:1px;
  3070. border-style:solid;
  3071. border-color:rgba(242, 242, 242, 1);
  3072. border-radius:4px;
  3073. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3074. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3075. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3076. font-family:'Microsoft YaHei', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. }
  3080. #u8992 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:1124px;
  3084. top:573px;
  3085. width:380px;
  3086. height:120px;
  3087. display:flex;
  3088. font-family:'Microsoft YaHei', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. }
  3092. #u8992 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 2px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u8992_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u8993_div {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:235px;
  3111. height:21px;
  3112. background:inherit;
  3113. background-color:rgba(255, 255, 255, 0);
  3114. border:none;
  3115. border-radius:0px;
  3116. -moz-box-shadow:none;
  3117. -webkit-box-shadow:none;
  3118. box-shadow:none;
  3119. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3120. font-weight:650;
  3121. font-style:normal;
  3122. font-size:18px;
  3123. color:#000000;
  3124. line-height:22px;
  3125. }
  3126. #u8993 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:1184px;
  3130. top:598px;
  3131. width:235px;
  3132. height:21px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3135. font-weight:650;
  3136. font-style:normal;
  3137. font-size:18px;
  3138. color:#000000;
  3139. line-height:22px;
  3140. }
  3141. #u8993 .text {
  3142. position:absolute;
  3143. align-self:flex-start;
  3144. padding:0px 0px 0px 0px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u8993_text {
  3149. border-width:0px;
  3150. white-space:nowrap;
  3151. text-transform:none;
  3152. }
  3153. #u8994_div {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:61px;
  3159. height:32px;
  3160. background:inherit;
  3161. background-color:rgba(24, 144, 255, 1);
  3162. border:none;
  3163. border-radius:4px;
  3164. -moz-box-shadow:none;
  3165. -webkit-box-shadow:none;
  3166. box-shadow:none;
  3167. font-family:'Microsoft YaHei', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:14px;
  3171. color:#FFFFFF;
  3172. }
  3173. #u8994 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:1426px;
  3177. top:641px;
  3178. width:61px;
  3179. height:32px;
  3180. display:flex;
  3181. font-family:'Microsoft YaHei', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:14px;
  3185. color:#FFFFFF;
  3186. }
  3187. #u8994 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:2px 16px 2px 16px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u8994_text {
  3195. border-width:0px;
  3196. white-space:nowrap;
  3197. text-transform:none;
  3198. }
  3199. #u8995_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:66px;
  3205. height:32px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 1);
  3208. box-sizing:border-box;
  3209. border-width:1px;
  3210. border-style:solid;
  3211. border-color:rgba(217, 217, 217, 1);
  3212. border-radius:4px;
  3213. -moz-box-shadow:none;
  3214. -webkit-box-shadow:none;
  3215. box-shadow:none;
  3216. font-family:'Microsoft YaHei', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:14px;
  3220. color:rgba(0, 0, 0, 0.647058823529412);
  3221. line-height:21px;
  3222. }
  3223. #u8995 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:1350px;
  3227. top:641px;
  3228. width:66px;
  3229. height:32px;
  3230. display:flex;
  3231. font-family:'Microsoft YaHei', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:14px;
  3235. color:rgba(0, 0, 0, 0.647058823529412);
  3236. line-height:21px;
  3237. }
  3238. #u8995 .text {
  3239. position:absolute;
  3240. align-self:center;
  3241. padding:2px 16px 2px 16px;
  3242. box-sizing:border-box;
  3243. width:100%;
  3244. }
  3245. #u8995_text {
  3246. border-width:0px;
  3247. white-space:nowrap;
  3248. text-transform:none;
  3249. }
  3250. #u8996_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:20px;
  3256. height:20px;
  3257. }
  3258. #u8996 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:1153px;
  3262. top:602px;
  3263. width:20px;
  3264. height:20px;
  3265. display:flex;
  3266. }
  3267. #u8996 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 2px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u8996_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u8998 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:0px;
  3286. height:0px;
  3287. }
  3288. #u8999_div {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:30px;
  3294. height:30px;
  3295. background:inherit;
  3296. background-color:rgba(255, 255, 255, 1);
  3297. box-sizing:border-box;
  3298. border-width:1px;
  3299. border-style:solid;
  3300. border-color:rgba(228, 228, 228, 1);
  3301. border-radius:4px;
  3302. -moz-box-shadow:none;
  3303. -webkit-box-shadow:none;
  3304. box-shadow:none;
  3305. font-family:'Microsoft YaHei', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:14px;
  3309. }
  3310. #u8999 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:1005px;
  3314. top:1189px;
  3315. width:30px;
  3316. height:30px;
  3317. display:flex;
  3318. font-family:'Microsoft YaHei', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. }
  3323. #u8999 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u8999_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u9000_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:49px;
  3341. height:30px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. box-sizing:border-box;
  3345. border-width:1px;
  3346. border-style:solid;
  3347. border-color:rgba(188, 188, 188, 1);
  3348. border-radius:4px;
  3349. -moz-box-shadow:none;
  3350. -webkit-box-shadow:none;
  3351. box-shadow:none;
  3352. font-family:'Microsoft YaHei', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:14px;
  3356. color:#1E1E1E;
  3357. }
  3358. #u9000 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:1521px;
  3362. top:1189px;
  3363. width:49px;
  3364. height:30px;
  3365. display:flex;
  3366. font-family:'Microsoft YaHei', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:14px;
  3370. color:#1E1E1E;
  3371. }
  3372. #u9000 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:5px 10px 5px 10px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u9000_text {
  3380. border-width:0px;
  3381. white-space:nowrap;
  3382. text-transform:none;
  3383. }
  3384. #u9001 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:0px;
  3390. height:0px;
  3391. }
  3392. #u9002_div {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:33px;
  3398. height:24px;
  3399. background:inherit;
  3400. background-color:rgba(255, 255, 255, 1);
  3401. border:none;
  3402. border-radius:0px;
  3403. -moz-box-shadow:none;
  3404. -webkit-box-shadow:none;
  3405. box-shadow:none;
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:14px;
  3410. color:#BCBCBC;
  3411. text-align:left;
  3412. }
  3413. #u9002 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:1289px;
  3417. top:1192px;
  3418. width:33px;
  3419. height:24px;
  3420. display:flex;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:14px;
  3425. color:#BCBCBC;
  3426. text-align:left;
  3427. }
  3428. #u9002 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u9002_text {
  3436. border-width:0px;
  3437. white-space:nowrap;
  3438. text-transform:none;
  3439. }
  3440. #u9003_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:40px;
  3446. height:30px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 1);
  3449. box-sizing:border-box;
  3450. border-width:1px;
  3451. border-style:solid;
  3452. border-color:rgba(228, 228, 228, 1);
  3453. border-radius:4px;
  3454. -moz-box-shadow:none;
  3455. -webkit-box-shadow:none;
  3456. box-shadow:none;
  3457. font-family:'Microsoft YaHei', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:14px;
  3461. }
  3462. #u9003 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:1324px;
  3466. top:1189px;
  3467. width:40px;
  3468. height:30px;
  3469. display:flex;
  3470. font-family:'Microsoft YaHei', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:14px;
  3474. }
  3475. #u9003 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 2px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u9003_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u9004_div {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:19px;
  3494. height:24px;
  3495. background:inherit;
  3496. background-color:rgba(255, 255, 255, 1);
  3497. border:none;
  3498. border-radius:0px;
  3499. -moz-box-shadow:none;
  3500. -webkit-box-shadow:none;
  3501. box-shadow:none;
  3502. font-family:'Microsoft YaHei', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:14px;
  3506. color:#BCBCBC;
  3507. text-align:left;
  3508. }
  3509. #u9004 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:1366px;
  3513. top:1193px;
  3514. width:19px;
  3515. height:24px;
  3516. display:flex;
  3517. font-family:'Microsoft YaHei', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:14px;
  3521. color:#BCBCBC;
  3522. text-align:left;
  3523. }
  3524. #u9004 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u9004_text {
  3532. border-width:0px;
  3533. white-space:nowrap;
  3534. text-transform:none;
  3535. }
  3536. #u9005_input {
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:34px;
  3541. height:25px;
  3542. padding:2px 2px 2px 2px;
  3543. font-family:'Microsoft YaHei', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:13px;
  3547. letter-spacing:normal;
  3548. color:#000000;
  3549. vertical-align:none;
  3550. text-align:left;
  3551. text-transform:none;
  3552. background-color:transparent;
  3553. border-color:transparent;
  3554. }
  3555. #u9005_input.disabled {
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:34px;
  3560. height:25px;
  3561. padding:2px 2px 2px 2px;
  3562. font-family:'Microsoft YaHei', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:13px;
  3566. letter-spacing:normal;
  3567. color:#000000;
  3568. vertical-align:none;
  3569. text-align:left;
  3570. text-transform:none;
  3571. background-color:transparent;
  3572. border-color:transparent;
  3573. }
  3574. #u9005_div {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:34px;
  3580. height:25px;
  3581. background:inherit;
  3582. background-color:rgba(255, 255, 255, 1);
  3583. border:none;
  3584. border-radius:0px;
  3585. -moz-box-shadow:none;
  3586. -webkit-box-shadow:none;
  3587. box-shadow:none;
  3588. font-family:'Microsoft YaHei', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. }
  3592. #u9005 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:1327px;
  3596. top:1191px;
  3597. width:34px;
  3598. height:25px;
  3599. display:flex;
  3600. font-family:'Microsoft YaHei', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. }
  3604. #u9005 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:2px 2px 2px 2px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u9005_div.disabled {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:34px;
  3617. height:25px;
  3618. background:inherit;
  3619. background-color:rgba(240, 240, 240, 1);
  3620. border:none;
  3621. border-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'Microsoft YaHei', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. }
  3629. #u9005.disabled {
  3630. }
  3631. #u9006_div {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:30px;
  3637. height:30px;
  3638. background:inherit;
  3639. background-color:rgba(41, 143, 255, 1);
  3640. border:none;
  3641. border-radius:4px;
  3642. -moz-box-shadow:none;
  3643. -webkit-box-shadow:none;
  3644. box-shadow:none;
  3645. font-family:'Microsoft YaHei', sans-serif;
  3646. font-weight:400;
  3647. font-style:normal;
  3648. font-size:14px;
  3649. color:#FFFFFF;
  3650. }
  3651. #u9006 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:1039px;
  3655. top:1189px;
  3656. width:30px;
  3657. height:30px;
  3658. display:flex;
  3659. font-family:'Microsoft YaHei', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:14px;
  3663. color:#FFFFFF;
  3664. }
  3665. #u9006 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 2px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u9006_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. }
  3677. #u9007_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:30px;
  3683. height:30px;
  3684. background:inherit;
  3685. background-color:rgba(255, 255, 255, 1);
  3686. box-sizing:border-box;
  3687. border-width:1px;
  3688. border-style:solid;
  3689. border-color:rgba(228, 228, 228, 1);
  3690. border-radius:4px;
  3691. -moz-box-shadow:none;
  3692. -webkit-box-shadow:none;
  3693. box-shadow:none;
  3694. font-family:'Microsoft YaHei', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:14px;
  3698. }
  3699. #u9007 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:1073px;
  3703. top:1189px;
  3704. width:30px;
  3705. height:30px;
  3706. display:flex;
  3707. font-family:'Microsoft YaHei', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:14px;
  3711. }
  3712. #u9007 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u9007_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. }
  3724. #u9008_div {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:30px;
  3730. height:30px;
  3731. background:inherit;
  3732. background-color:rgba(255, 255, 255, 1);
  3733. box-sizing:border-box;
  3734. border-width:1px;
  3735. border-style:solid;
  3736. border-color:rgba(228, 228, 228, 1);
  3737. border-radius:4px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'Microsoft YaHei', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:14px;
  3745. }
  3746. #u9008 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:1107px;
  3750. top:1189px;
  3751. width:30px;
  3752. height:30px;
  3753. display:flex;
  3754. font-family:'Microsoft YaHei', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:14px;
  3758. }
  3759. #u9008 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 2px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u9008_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. }
  3771. #u9009_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:30px;
  3777. height:30px;
  3778. background:inherit;
  3779. background-color:rgba(255, 255, 255, 1);
  3780. border:none;
  3781. border-radius:4px;
  3782. -moz-box-shadow:none;
  3783. -webkit-box-shadow:none;
  3784. box-shadow:none;
  3785. font-family:'Microsoft YaHei', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:14px;
  3789. }
  3790. #u9009 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:1137px;
  3794. top:1189px;
  3795. width:30px;
  3796. height:30px;
  3797. display:flex;
  3798. font-family:'Microsoft YaHei', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:14px;
  3802. }
  3803. #u9009 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 2px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u9009_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. }
  3815. #u9010_div {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:30px;
  3821. height:30px;
  3822. background:inherit;
  3823. background-color:rgba(255, 255, 255, 1);
  3824. box-sizing:border-box;
  3825. border-width:1px;
  3826. border-style:solid;
  3827. border-color:rgba(228, 228, 228, 1);
  3828. border-radius:4px;
  3829. -moz-box-shadow:none;
  3830. -webkit-box-shadow:none;
  3831. box-shadow:none;
  3832. font-family:'Microsoft YaHei', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:14px;
  3836. }
  3837. #u9010 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:1171px;
  3841. top:1189px;
  3842. width:30px;
  3843. height:30px;
  3844. display:flex;
  3845. font-family:'Microsoft YaHei', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:14px;
  3849. }
  3850. #u9010 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 2px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u9010_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. }
  3862. #u9011_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:32px;
  3868. height:21px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 1);
  3871. border:none;
  3872. border-radius:15px;
  3873. -moz-box-shadow:none;
  3874. -webkit-box-shadow:none;
  3875. box-shadow:none;
  3876. font-family:'Microsoft YaHei', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:14px;
  3880. color:#1E1E1E;
  3881. }
  3882. #u9011 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:1245px;
  3886. top:1194px;
  3887. width:32px;
  3888. height:21px;
  3889. display:flex;
  3890. font-family:'Microsoft YaHei', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:14px;
  3894. color:#1E1E1E;
  3895. }
  3896. #u9011 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 2px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u9011_text {
  3904. border-width:0px;
  3905. white-space:nowrap;
  3906. text-transform:none;
  3907. }
  3908. #u9012 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:0px;
  3914. height:0px;
  3915. }
  3916. #u9013_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:31px;
  3922. height:30px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. box-sizing:border-box;
  3926. border-width:1px;
  3927. border-style:solid;
  3928. border-color:rgba(228, 228, 228, 1);
  3929. border-radius:4px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. font-family:'Microsoft YaHei', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. }
  3938. #u9013 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:970px;
  3942. top:1189px;
  3943. width:31px;
  3944. height:30px;
  3945. display:flex;
  3946. font-family:'Microsoft YaHei', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. }
  3951. #u9013 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u9013_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u9014_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:8px;
  3970. height:14px;
  3971. }
  3972. #u9014 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:982px;
  3976. top:1197px;
  3977. width:8px;
  3978. height:14px;
  3979. display:flex;
  3980. font-family:'Microsoft YaHei', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:12px;
  3984. }
  3985. #u9014 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u9014_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u9015 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:0px;
  4004. height:0px;
  4005. }
  4006. #u9016_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:31px;
  4012. height:30px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 1);
  4015. box-sizing:border-box;
  4016. border-width:1px;
  4017. border-style:solid;
  4018. border-color:rgba(228, 228, 228, 1);
  4019. border-radius:4px;
  4020. -moz-box-shadow:none;
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none;
  4023. font-family:'Microsoft YaHei', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. }
  4028. #u9016 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:1204px;
  4032. top:1189px;
  4033. width:31px;
  4034. height:30px;
  4035. display:flex;
  4036. font-family:'Microsoft YaHei', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. }
  4041. #u9016 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u9016_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u9017_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:8px;
  4060. height:14px;
  4061. }
  4062. #u9017 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:1217px;
  4066. top:1197px;
  4067. width:8px;
  4068. height:14px;
  4069. display:flex;
  4070. font-family:'Microsoft YaHei', sans-serif;
  4071. font-weight:400;
  4072. font-style:normal;
  4073. font-size:12px;
  4074. }
  4075. #u9017 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 2px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u9017_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u9018 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:0px;
  4094. height:0px;
  4095. }
  4096. #u9019_div {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:33px;
  4102. height:24px;
  4103. background:inherit;
  4104. background-color:rgba(255, 255, 255, 1);
  4105. border:none;
  4106. border-radius:0px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:14px;
  4114. color:#BCBCBC;
  4115. text-align:left;
  4116. }
  4117. #u9019 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:1405px;
  4121. top:1192px;
  4122. width:33px;
  4123. height:24px;
  4124. display:flex;
  4125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:14px;
  4129. color:#BCBCBC;
  4130. text-align:left;
  4131. }
  4132. #u9019 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 2px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u9019_text {
  4140. border-width:0px;
  4141. white-space:nowrap;
  4142. text-transform:none;
  4143. }
  4144. #u9020_div {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:40px;
  4150. height:30px;
  4151. background:inherit;
  4152. background-color:rgba(255, 255, 255, 1);
  4153. box-sizing:border-box;
  4154. border-width:1px;
  4155. border-style:solid;
  4156. border-color:rgba(228, 228, 228, 1);
  4157. border-radius:4px;
  4158. -moz-box-shadow:none;
  4159. -webkit-box-shadow:none;
  4160. box-shadow:none;
  4161. font-family:'Microsoft YaHei', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:14px;
  4165. }
  4166. #u9020 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:1440px;
  4170. top:1189px;
  4171. width:40px;
  4172. height:30px;
  4173. display:flex;
  4174. font-family:'Microsoft YaHei', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:14px;
  4178. }
  4179. #u9020 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 2px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u9020_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u9021_div {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:19px;
  4198. height:24px;
  4199. background:inherit;
  4200. background-color:rgba(255, 255, 255, 1);
  4201. border:none;
  4202. border-radius:0px;
  4203. -moz-box-shadow:none;
  4204. -webkit-box-shadow:none;
  4205. box-shadow:none;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:14px;
  4210. color:#BCBCBC;
  4211. text-align:left;
  4212. }
  4213. #u9021 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:1482px;
  4217. top:1193px;
  4218. width:19px;
  4219. height:24px;
  4220. display:flex;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:14px;
  4225. color:#BCBCBC;
  4226. text-align:left;
  4227. }
  4228. #u9021 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 2px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u9021_text {
  4236. border-width:0px;
  4237. white-space:nowrap;
  4238. text-transform:none;
  4239. }
  4240. #u9022_input {
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:34px;
  4245. height:25px;
  4246. padding:2px 2px 2px 2px;
  4247. font-family:'Microsoft YaHei', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:13px;
  4251. letter-spacing:normal;
  4252. color:#000000;
  4253. vertical-align:none;
  4254. text-align:left;
  4255. text-transform:none;
  4256. background-color:transparent;
  4257. border-color:transparent;
  4258. }
  4259. #u9022_input.disabled {
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:34px;
  4264. height:25px;
  4265. padding:2px 2px 2px 2px;
  4266. font-family:'Microsoft YaHei', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:13px;
  4270. letter-spacing:normal;
  4271. color:#000000;
  4272. vertical-align:none;
  4273. text-align:left;
  4274. text-transform:none;
  4275. background-color:transparent;
  4276. border-color:transparent;
  4277. }
  4278. #u9022_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:34px;
  4284. height:25px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 1);
  4287. border:none;
  4288. border-radius:0px;
  4289. -moz-box-shadow:none;
  4290. -webkit-box-shadow:none;
  4291. box-shadow:none;
  4292. font-family:'Microsoft YaHei', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. }
  4296. #u9022 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:1443px;
  4300. top:1191px;
  4301. width:34px;
  4302. height:25px;
  4303. display:flex;
  4304. font-family:'Microsoft YaHei', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. }
  4308. #u9022 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 2px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u9022_div.disabled {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:34px;
  4321. height:25px;
  4322. background:inherit;
  4323. background-color:rgba(240, 240, 240, 1);
  4324. border:none;
  4325. border-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'Microsoft YaHei', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. }
  4333. #u9022.disabled {
  4334. }
  4335. #u9023 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:0px;
  4341. height:0px;
  4342. }
  4343. #u9024_div {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:140px;
  4349. height:30px;
  4350. background:inherit;
  4351. background-color:rgba(255, 255, 255, 1);
  4352. box-sizing:border-box;
  4353. border-width:1px;
  4354. border-style:solid;
  4355. border-color:rgba(215, 215, 215, 1);
  4356. border-radius:4px;
  4357. -moz-box-shadow:none;
  4358. -webkit-box-shadow:none;
  4359. box-shadow:none;
  4360. font-size:11px;
  4361. }
  4362. #u9024 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:800px;
  4366. top:142px;
  4367. width:140px;
  4368. height:30px;
  4369. display:flex;
  4370. font-size:11px;
  4371. }
  4372. #u9024 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u9024_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u9025_input {
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:126px;
  4390. height:23px;
  4391. padding:2px 2px 2px 2px;
  4392. font-family:'ArialMT', 'Arial', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:11px;
  4396. letter-spacing:normal;
  4397. color:#AAAAAA;
  4398. vertical-align:none;
  4399. text-align:left;
  4400. text-transform:none;
  4401. background-color:transparent;
  4402. border-color:transparent;
  4403. }
  4404. #u9025_input.disabled {
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:126px;
  4409. height:23px;
  4410. padding:2px 2px 2px 2px;
  4411. font-family:'ArialMT', 'Arial', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:11px;
  4415. letter-spacing:normal;
  4416. color:#AAAAAA;
  4417. vertical-align:none;
  4418. text-align:left;
  4419. text-transform:none;
  4420. background-color:transparent;
  4421. border-color:transparent;
  4422. }
  4423. #u9025_div {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:126px;
  4429. height:23px;
  4430. background:inherit;
  4431. background-color:rgba(255, 255, 255, 1);
  4432. border:none;
  4433. border-radius:0px;
  4434. -moz-box-shadow:none;
  4435. -webkit-box-shadow:none;
  4436. box-shadow:none;
  4437. font-size:11px;
  4438. color:#AAAAAA;
  4439. }
  4440. #u9025 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:807px;
  4444. top:144px;
  4445. width:126px;
  4446. height:23px;
  4447. display:flex;
  4448. font-size:11px;
  4449. color:#AAAAAA;
  4450. }
  4451. #u9025 .text {
  4452. position:absolute;
  4453. align-self:flex-start;
  4454. padding:2px 2px 2px 2px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u9025_div.disabled {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:126px;
  4464. height:23px;
  4465. background:inherit;
  4466. background-color:rgba(240, 240, 240, 1);
  4467. border:none;
  4468. border-radius:0px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-size:11px;
  4473. color:#AAAAAA;
  4474. }
  4475. #u9025.disabled {
  4476. }
  4477. .u9025_input_option {
  4478. font-size:11px;
  4479. }
  4480. #u9026 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:350px;
  4484. top:230px;
  4485. width:1220px;
  4486. height:328px;
  4487. }
  4488. #u9027_img {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:157px;
  4494. height:44px;
  4495. }
  4496. #u9027 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:157px;
  4502. height:44px;
  4503. display:flex;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. color:#FFFFFF;
  4509. }
  4510. #u9027 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 2px 2px 0px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u9027_text {
  4518. border-width:0px;
  4519. word-wrap:break-word;
  4520. text-transform:none;
  4521. }
  4522. #u9028_img {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:147px;
  4528. height:44px;
  4529. }
  4530. #u9028 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:157px;
  4534. top:0px;
  4535. width:147px;
  4536. height:44px;
  4537. display:flex;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:12px;
  4542. color:#FFFFFF;
  4543. }
  4544. #u9028 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 0px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u9028_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. }
  4556. #u9029_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:166px;
  4562. height:44px;
  4563. }
  4564. #u9029 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:304px;
  4568. top:0px;
  4569. width:166px;
  4570. height:44px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:12px;
  4576. color:#FFFFFF;
  4577. }
  4578. #u9029 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u9029_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. }
  4590. #u9030_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:147px;
  4596. height:44px;
  4597. }
  4598. #u9030 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:470px;
  4602. top:0px;
  4603. width:147px;
  4604. height:44px;
  4605. display:flex;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:12px;
  4610. color:#FFFFFF;
  4611. }
  4612. #u9030 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:2px 2px 2px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u9030_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. }
  4624. #u9031_img {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:173px;
  4630. height:44px;
  4631. }
  4632. #u9031 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:617px;
  4636. top:0px;
  4637. width:173px;
  4638. height:44px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:12px;
  4644. color:#FFFFFF;
  4645. }
  4646. #u9031 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:2px 2px 2px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u9031_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. }
  4658. #u9032_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:147px;
  4664. height:44px;
  4665. }
  4666. #u9032 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:790px;
  4670. top:0px;
  4671. width:147px;
  4672. height:44px;
  4673. display:flex;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#FFFFFF;
  4679. }
  4680. #u9032 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u9032_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. }
  4692. #u9033_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:173px;
  4698. height:44px;
  4699. }
  4700. #u9033 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:937px;
  4704. top:0px;
  4705. width:173px;
  4706. height:44px;
  4707. display:flex;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. color:#FFFFFF;
  4713. }
  4714. #u9033 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:2px 2px 2px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u9033_text {
  4722. border-width:0px;
  4723. word-wrap:break-word;
  4724. text-transform:none;
  4725. }
  4726. #u9034_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:110px;
  4732. height:44px;
  4733. }
  4734. #u9034 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:1110px;
  4738. top:0px;
  4739. width:110px;
  4740. height:44px;
  4741. display:flex;
  4742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:12px;
  4746. color:#FFFFFF;
  4747. }
  4748. #u9034 .text {
  4749. position:absolute;
  4750. align-self:center;
  4751. padding:2px 2px 2px 0px;
  4752. box-sizing:border-box;
  4753. width:100%;
  4754. }
  4755. #u9034_text {
  4756. border-width:0px;
  4757. word-wrap:break-word;
  4758. text-transform:none;
  4759. }
  4760. #u9035_img {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:157px;
  4766. height:38px;
  4767. }
  4768. #u9035 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:44px;
  4773. width:157px;
  4774. height:38px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:12px;
  4780. color:#333333;
  4781. }
  4782. #u9035 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 0px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u9035_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. visibility:hidden;
  4794. }
  4795. #u9036_img {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:147px;
  4801. height:38px;
  4802. }
  4803. #u9036 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:157px;
  4807. top:44px;
  4808. width:147px;
  4809. height:38px;
  4810. display:flex;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:12px;
  4815. color:#333333;
  4816. }
  4817. #u9036 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u9036_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. visibility:hidden;
  4829. }
  4830. #u9037_img {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:166px;
  4836. height:38px;
  4837. }
  4838. #u9037 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:304px;
  4842. top:44px;
  4843. width:166px;
  4844. height:38px;
  4845. display:flex;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:12px;
  4850. color:#333333;
  4851. }
  4852. #u9037 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 0px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u9037_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u9038_img {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:147px;
  4871. height:38px;
  4872. }
  4873. #u9038 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:470px;
  4877. top:44px;
  4878. width:147px;
  4879. height:38px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:12px;
  4885. color:#333333;
  4886. }
  4887. #u9038 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 0px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u9038_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u9039_img {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:173px;
  4906. height:38px;
  4907. }
  4908. #u9039 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:617px;
  4912. top:44px;
  4913. width:173px;
  4914. height:38px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. color:#333333;
  4921. }
  4922. #u9039 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u9039_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u9040_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:147px;
  4941. height:38px;
  4942. }
  4943. #u9040 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:790px;
  4947. top:44px;
  4948. width:147px;
  4949. height:38px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#333333;
  4956. }
  4957. #u9040 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u9040_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u9041_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:173px;
  4976. height:38px;
  4977. }
  4978. #u9041 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:937px;
  4982. top:44px;
  4983. width:173px;
  4984. height:38px;
  4985. display:flex;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#333333;
  4991. }
  4992. #u9041 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 0px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u9041_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u9042_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:110px;
  5011. height:38px;
  5012. }
  5013. #u9042 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:1110px;
  5017. top:44px;
  5018. width:110px;
  5019. height:38px;
  5020. display:flex;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#0089FE;
  5026. }
  5027. #u9042 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u9042_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. }
  5039. #u9043_img {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:157px;
  5045. height:38px;
  5046. }
  5047. #u9043 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:82px;
  5052. width:157px;
  5053. height:38px;
  5054. display:flex;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:12px;
  5059. color:#333333;
  5060. }
  5061. #u9043 .text {
  5062. position:absolute;
  5063. align-self:center;
  5064. padding:2px 2px 2px 0px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u9043_text {
  5069. border-width:0px;
  5070. word-wrap:break-word;
  5071. text-transform:none;
  5072. visibility:hidden;
  5073. }
  5074. #u9044_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:147px;
  5080. height:38px;
  5081. }
  5082. #u9044 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:157px;
  5086. top:82px;
  5087. width:147px;
  5088. height:38px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. color:#333333;
  5095. }
  5096. #u9044 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:2px 2px 2px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u9044_text {
  5104. border-width:0px;
  5105. word-wrap:break-word;
  5106. text-transform:none;
  5107. visibility:hidden;
  5108. }
  5109. #u9045_img {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:166px;
  5115. height:38px;
  5116. }
  5117. #u9045 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:304px;
  5121. top:82px;
  5122. width:166px;
  5123. height:38px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. color:#333333;
  5130. }
  5131. #u9045 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 0px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u9045_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. visibility:hidden;
  5143. }
  5144. #u9046_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:147px;
  5150. height:38px;
  5151. }
  5152. #u9046 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:470px;
  5156. top:82px;
  5157. width:147px;
  5158. height:38px;
  5159. display:flex;
  5160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:12px;
  5164. color:#333333;
  5165. }
  5166. #u9046 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 0px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u9046_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u9047_img {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:173px;
  5185. height:38px;
  5186. }
  5187. #u9047 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:617px;
  5191. top:82px;
  5192. width:173px;
  5193. height:38px;
  5194. display:flex;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:12px;
  5199. color:#333333;
  5200. }
  5201. #u9047 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 2px 2px 0px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u9047_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. visibility:hidden;
  5213. }
  5214. #u9048_img {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:147px;
  5220. height:38px;
  5221. }
  5222. #u9048 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:790px;
  5226. top:82px;
  5227. width:147px;
  5228. height:38px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:12px;
  5234. color:#333333;
  5235. }
  5236. #u9048 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u9048_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u9049_img {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:173px;
  5255. height:38px;
  5256. }
  5257. #u9049 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:937px;
  5261. top:82px;
  5262. width:173px;
  5263. height:38px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:#333333;
  5270. }
  5271. #u9049 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 0px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u9049_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. visibility:hidden;
  5283. }
  5284. #u9050_img {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:110px;
  5290. height:38px;
  5291. }
  5292. #u9050 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:1110px;
  5296. top:82px;
  5297. width:110px;
  5298. height:38px;
  5299. display:flex;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:12px;
  5304. color:#0089FE;
  5305. }
  5306. #u9050 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:2px 2px 2px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u9050_text {
  5314. border-width:0px;
  5315. word-wrap:break-word;
  5316. text-transform:none;
  5317. }
  5318. #u9051_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:157px;
  5324. height:38px;
  5325. }
  5326. #u9051 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:120px;
  5331. width:157px;
  5332. height:38px;
  5333. display:flex;
  5334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. color:#333333;
  5339. }
  5340. #u9051 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 2px 2px 0px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u9051_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u9052_img {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:147px;
  5359. height:38px;
  5360. }
  5361. #u9052 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:157px;
  5365. top:120px;
  5366. width:147px;
  5367. height:38px;
  5368. display:flex;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#333333;
  5374. }
  5375. #u9052 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u9052_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. visibility:hidden;
  5387. }
  5388. #u9053_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:166px;
  5394. height:38px;
  5395. }
  5396. #u9053 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:304px;
  5400. top:120px;
  5401. width:166px;
  5402. height:38px;
  5403. display:flex;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. color:#333333;
  5409. }
  5410. #u9053 .text {
  5411. position:absolute;
  5412. align-self:center;
  5413. padding:2px 2px 2px 0px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u9053_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u9054_img {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:147px;
  5429. height:38px;
  5430. }
  5431. #u9054 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:470px;
  5435. top:120px;
  5436. width:147px;
  5437. height:38px;
  5438. display:flex;
  5439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:12px;
  5443. color:#333333;
  5444. }
  5445. #u9054 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u9054_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u9055_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:173px;
  5464. height:38px;
  5465. }
  5466. #u9055 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:617px;
  5470. top:120px;
  5471. width:173px;
  5472. height:38px;
  5473. display:flex;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. color:#333333;
  5479. }
  5480. #u9055 .text {
  5481. position:absolute;
  5482. align-self:center;
  5483. padding:2px 2px 2px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u9055_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u9056_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:147px;
  5499. height:38px;
  5500. }
  5501. #u9056 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:790px;
  5505. top:120px;
  5506. width:147px;
  5507. height:38px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:12px;
  5513. color:#333333;
  5514. }
  5515. #u9056 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 0px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u9056_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u9057_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:173px;
  5534. height:38px;
  5535. }
  5536. #u9057 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:937px;
  5540. top:120px;
  5541. width:173px;
  5542. height:38px;
  5543. display:flex;
  5544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:12px;
  5548. color:#333333;
  5549. }
  5550. #u9057 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u9057_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. visibility:hidden;
  5562. }
  5563. #u9058_img {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:110px;
  5569. height:38px;
  5570. }
  5571. #u9058 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:1110px;
  5575. top:120px;
  5576. width:110px;
  5577. height:38px;
  5578. display:flex;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:12px;
  5583. color:#0089FE;
  5584. }
  5585. #u9058 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u9058_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. visibility:hidden;
  5597. }
  5598. #u9059_img {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:157px;
  5604. height:38px;
  5605. }
  5606. #u9059 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:158px;
  5611. width:157px;
  5612. height:38px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. color:#333333;
  5619. }
  5620. #u9059 .text {
  5621. position:absolute;
  5622. align-self:center;
  5623. padding:2px 2px 2px 0px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u9059_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. visibility:hidden;
  5632. }
  5633. #u9060_img {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:147px;
  5639. height:38px;
  5640. }
  5641. #u9060 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:157px;
  5645. top:158px;
  5646. width:147px;
  5647. height:38px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. color:#333333;
  5654. }
  5655. #u9060 .text {
  5656. position:absolute;
  5657. align-self:center;
  5658. padding:2px 2px 2px 0px;
  5659. box-sizing:border-box;
  5660. width:100%;
  5661. }
  5662. #u9060_text {
  5663. border-width:0px;
  5664. word-wrap:break-word;
  5665. text-transform:none;
  5666. visibility:hidden;
  5667. }
  5668. #u9061_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:166px;
  5674. height:38px;
  5675. }
  5676. #u9061 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:304px;
  5680. top:158px;
  5681. width:166px;
  5682. height:38px;
  5683. display:flex;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:12px;
  5688. color:#333333;
  5689. }
  5690. #u9061 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:2px 2px 2px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u9061_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. visibility:hidden;
  5702. }
  5703. #u9062_img {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:147px;
  5709. height:38px;
  5710. }
  5711. #u9062 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:470px;
  5715. top:158px;
  5716. width:147px;
  5717. height:38px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:12px;
  5723. color:#333333;
  5724. }
  5725. #u9062 .text {
  5726. position:absolute;
  5727. align-self:center;
  5728. padding:2px 2px 2px 0px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u9062_text {
  5733. border-width:0px;
  5734. word-wrap:break-word;
  5735. text-transform:none;
  5736. visibility:hidden;
  5737. }
  5738. #u9063_img {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:173px;
  5744. height:38px;
  5745. }
  5746. #u9063 {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:617px;
  5750. top:158px;
  5751. width:173px;
  5752. height:38px;
  5753. display:flex;
  5754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5755. font-weight:400;
  5756. font-style:normal;
  5757. font-size:12px;
  5758. color:#333333;
  5759. }
  5760. #u9063 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 0px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u9063_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u9064_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:147px;
  5779. height:38px;
  5780. }
  5781. #u9064 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:790px;
  5785. top:158px;
  5786. width:147px;
  5787. height:38px;
  5788. display:flex;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:12px;
  5793. color:#333333;
  5794. }
  5795. #u9064 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 0px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u9064_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u9065_img {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:173px;
  5814. height:38px;
  5815. }
  5816. #u9065 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:937px;
  5820. top:158px;
  5821. width:173px;
  5822. height:38px;
  5823. display:flex;
  5824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:12px;
  5828. color:#333333;
  5829. }
  5830. #u9065 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 0px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u9065_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u9066_img {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:110px;
  5849. height:38px;
  5850. }
  5851. #u9066 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:1110px;
  5855. top:158px;
  5856. width:110px;
  5857. height:38px;
  5858. display:flex;
  5859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:12px;
  5863. color:#AAAAAA;
  5864. }
  5865. #u9066 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 0px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u9066_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u9067_img {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:157px;
  5884. height:35px;
  5885. }
  5886. #u9067 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:196px;
  5891. width:157px;
  5892. height:35px;
  5893. display:flex;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:12px;
  5898. color:#333333;
  5899. }
  5900. #u9067 .text {
  5901. position:absolute;
  5902. align-self:center;
  5903. padding:2px 2px 2px 0px;
  5904. box-sizing:border-box;
  5905. width:100%;
  5906. }
  5907. #u9067_text {
  5908. border-width:0px;
  5909. word-wrap:break-word;
  5910. text-transform:none;
  5911. visibility:hidden;
  5912. }
  5913. #u9068_img {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:147px;
  5919. height:35px;
  5920. }
  5921. #u9068 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:157px;
  5925. top:196px;
  5926. width:147px;
  5927. height:35px;
  5928. display:flex;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. color:#333333;
  5934. }
  5935. #u9068 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:2px 2px 2px 0px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u9068_text {
  5943. border-width:0px;
  5944. word-wrap:break-word;
  5945. text-transform:none;
  5946. visibility:hidden;
  5947. }
  5948. #u9069_img {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:166px;
  5954. height:35px;
  5955. }
  5956. #u9069 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:304px;
  5960. top:196px;
  5961. width:166px;
  5962. height:35px;
  5963. display:flex;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:12px;
  5968. color:#333333;
  5969. }
  5970. #u9069 .text {
  5971. position:absolute;
  5972. align-self:center;
  5973. padding:2px 2px 2px 0px;
  5974. box-sizing:border-box;
  5975. width:100%;
  5976. }
  5977. #u9069_text {
  5978. border-width:0px;
  5979. word-wrap:break-word;
  5980. text-transform:none;
  5981. visibility:hidden;
  5982. }
  5983. #u9070_img {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:147px;
  5989. height:35px;
  5990. }
  5991. #u9070 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:470px;
  5995. top:196px;
  5996. width:147px;
  5997. height:35px;
  5998. display:flex;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:12px;
  6003. color:#333333;
  6004. }
  6005. #u9070 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 0px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u9070_text {
  6013. border-width:0px;
  6014. word-wrap:break-word;
  6015. text-transform:none;
  6016. visibility:hidden;
  6017. }
  6018. #u9071_img {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:173px;
  6024. height:35px;
  6025. }
  6026. #u9071 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:617px;
  6030. top:196px;
  6031. width:173px;
  6032. height:35px;
  6033. display:flex;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. color:#333333;
  6039. }
  6040. #u9071 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:2px 2px 2px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u9071_text {
  6048. border-width:0px;
  6049. word-wrap:break-word;
  6050. text-transform:none;
  6051. visibility:hidden;
  6052. }
  6053. #u9072_img {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:147px;
  6059. height:35px;
  6060. }
  6061. #u9072 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:790px;
  6065. top:196px;
  6066. width:147px;
  6067. height:35px;
  6068. display:flex;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:12px;
  6073. color:#333333;
  6074. }
  6075. #u9072 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 2px 2px 0px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u9072_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u9073_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:173px;
  6094. height:35px;
  6095. }
  6096. #u9073 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:937px;
  6100. top:196px;
  6101. width:173px;
  6102. height:35px;
  6103. display:flex;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. color:#333333;
  6109. }
  6110. #u9073 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:2px 2px 2px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u9073_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. visibility:hidden;
  6122. }
  6123. #u9074_img {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:110px;
  6129. height:35px;
  6130. }
  6131. #u9074 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:1110px;
  6135. top:196px;
  6136. width:110px;
  6137. height:35px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:12px;
  6143. color:#AAAAAA;
  6144. }
  6145. #u9074 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 0px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u9074_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u9075_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:157px;
  6164. height:35px;
  6165. }
  6166. #u9075 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:231px;
  6171. width:157px;
  6172. height:35px;
  6173. display:flex;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:12px;
  6178. color:#333333;
  6179. }
  6180. #u9075 .text {
  6181. position:absolute;
  6182. align-self:center;
  6183. padding:2px 2px 2px 0px;
  6184. box-sizing:border-box;
  6185. width:100%;
  6186. }
  6187. #u9075_text {
  6188. border-width:0px;
  6189. word-wrap:break-word;
  6190. text-transform:none;
  6191. visibility:hidden;
  6192. }
  6193. #u9076_img {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:147px;
  6199. height:35px;
  6200. }
  6201. #u9076 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:157px;
  6205. top:231px;
  6206. width:147px;
  6207. height:35px;
  6208. display:flex;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:12px;
  6213. color:#333333;
  6214. }
  6215. #u9076 .text {
  6216. position:absolute;
  6217. align-self:center;
  6218. padding:2px 2px 2px 0px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u9076_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. visibility:hidden;
  6227. }
  6228. #u9077_img {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:166px;
  6234. height:35px;
  6235. }
  6236. #u9077 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:304px;
  6240. top:231px;
  6241. width:166px;
  6242. height:35px;
  6243. display:flex;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:12px;
  6248. color:#333333;
  6249. }
  6250. #u9077 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 0px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u9077_text {
  6258. border-width:0px;
  6259. word-wrap:break-word;
  6260. text-transform:none;
  6261. visibility:hidden;
  6262. }
  6263. #u9078_img {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:147px;
  6269. height:35px;
  6270. }
  6271. #u9078 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:470px;
  6275. top:231px;
  6276. width:147px;
  6277. height:35px;
  6278. display:flex;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:12px;
  6283. color:#333333;
  6284. }
  6285. #u9078 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:2px 2px 2px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u9078_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. visibility:hidden;
  6297. }
  6298. #u9079_img {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:173px;
  6304. height:35px;
  6305. }
  6306. #u9079 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:617px;
  6310. top:231px;
  6311. width:173px;
  6312. height:35px;
  6313. display:flex;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:12px;
  6318. color:#333333;
  6319. }
  6320. #u9079 .text {
  6321. position:absolute;
  6322. align-self:center;
  6323. padding:2px 2px 2px 0px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u9079_text {
  6328. border-width:0px;
  6329. word-wrap:break-word;
  6330. text-transform:none;
  6331. visibility:hidden;
  6332. }
  6333. #u9080_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:147px;
  6339. height:35px;
  6340. }
  6341. #u9080 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:790px;
  6345. top:231px;
  6346. width:147px;
  6347. height:35px;
  6348. display:flex;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:12px;
  6353. color:#333333;
  6354. }
  6355. #u9080 .text {
  6356. position:absolute;
  6357. align-self:center;
  6358. padding:2px 2px 2px 0px;
  6359. box-sizing:border-box;
  6360. width:100%;
  6361. }
  6362. #u9080_text {
  6363. border-width:0px;
  6364. word-wrap:break-word;
  6365. text-transform:none;
  6366. visibility:hidden;
  6367. }
  6368. #u9081_img {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:173px;
  6374. height:35px;
  6375. }
  6376. #u9081 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:937px;
  6380. top:231px;
  6381. width:173px;
  6382. height:35px;
  6383. display:flex;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. font-size:12px;
  6388. color:#333333;
  6389. }
  6390. #u9081 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:2px 2px 2px 0px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u9081_text {
  6398. border-width:0px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. visibility:hidden;
  6402. }
  6403. #u9082_img {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:110px;
  6409. height:35px;
  6410. }
  6411. #u9082 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:1110px;
  6415. top:231px;
  6416. width:110px;
  6417. height:35px;
  6418. display:flex;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:12px;
  6423. color:#333333;
  6424. }
  6425. #u9082 .text {
  6426. position:absolute;
  6427. align-self:center;
  6428. padding:2px 2px 2px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u9082_text {
  6433. border-width:0px;
  6434. word-wrap:break-word;
  6435. text-transform:none;
  6436. visibility:hidden;
  6437. }
  6438. #u9083_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:157px;
  6444. height:32px;
  6445. }
  6446. #u9083 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:266px;
  6451. width:157px;
  6452. height:32px;
  6453. display:flex;
  6454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6455. font-weight:400;
  6456. font-style:normal;
  6457. font-size:12px;
  6458. color:#333333;
  6459. }
  6460. #u9083 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 0px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u9083_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u9084_img {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:147px;
  6479. height:32px;
  6480. }
  6481. #u9084 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:157px;
  6485. top:266px;
  6486. width:147px;
  6487. height:32px;
  6488. display:flex;
  6489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6490. font-weight:400;
  6491. font-style:normal;
  6492. font-size:12px;
  6493. color:#333333;
  6494. }
  6495. #u9084 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:2px 2px 2px 0px;
  6499. box-sizing:border-box;
  6500. width:100%;
  6501. }
  6502. #u9084_text {
  6503. border-width:0px;
  6504. word-wrap:break-word;
  6505. text-transform:none;
  6506. visibility:hidden;
  6507. }
  6508. #u9085_img {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:166px;
  6514. height:32px;
  6515. }
  6516. #u9085 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:304px;
  6520. top:266px;
  6521. width:166px;
  6522. height:32px;
  6523. display:flex;
  6524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6525. font-weight:400;
  6526. font-style:normal;
  6527. font-size:12px;
  6528. color:#333333;
  6529. }
  6530. #u9085 .text {
  6531. position:absolute;
  6532. align-self:center;
  6533. padding:2px 2px 2px 0px;
  6534. box-sizing:border-box;
  6535. width:100%;
  6536. }
  6537. #u9085_text {
  6538. border-width:0px;
  6539. word-wrap:break-word;
  6540. text-transform:none;
  6541. visibility:hidden;
  6542. }
  6543. #u9086_img {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:147px;
  6549. height:32px;
  6550. }
  6551. #u9086 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:470px;
  6555. top:266px;
  6556. width:147px;
  6557. height:32px;
  6558. display:flex;
  6559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:12px;
  6563. color:#333333;
  6564. }
  6565. #u9086 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:2px 2px 2px 0px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u9086_text {
  6573. border-width:0px;
  6574. word-wrap:break-word;
  6575. text-transform:none;
  6576. visibility:hidden;
  6577. }
  6578. #u9087_img {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:173px;
  6584. height:32px;
  6585. }
  6586. #u9087 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:617px;
  6590. top:266px;
  6591. width:173px;
  6592. height:32px;
  6593. display:flex;
  6594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. font-size:12px;
  6598. color:#333333;
  6599. }
  6600. #u9087 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:2px 2px 2px 0px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u9087_text {
  6608. border-width:0px;
  6609. word-wrap:break-word;
  6610. text-transform:none;
  6611. visibility:hidden;
  6612. }
  6613. #u9088_img {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:147px;
  6619. height:32px;
  6620. }
  6621. #u9088 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:790px;
  6625. top:266px;
  6626. width:147px;
  6627. height:32px;
  6628. display:flex;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:12px;
  6633. color:#333333;
  6634. }
  6635. #u9088 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 2px 2px 0px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u9088_text {
  6643. border-width:0px;
  6644. word-wrap:break-word;
  6645. text-transform:none;
  6646. visibility:hidden;
  6647. }
  6648. #u9089_img {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:173px;
  6654. height:32px;
  6655. }
  6656. #u9089 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:937px;
  6660. top:266px;
  6661. width:173px;
  6662. height:32px;
  6663. display:flex;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:12px;
  6668. color:#333333;
  6669. }
  6670. #u9089 .text {
  6671. position:absolute;
  6672. align-self:center;
  6673. padding:2px 2px 2px 0px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u9089_text {
  6678. border-width:0px;
  6679. word-wrap:break-word;
  6680. text-transform:none;
  6681. visibility:hidden;
  6682. }
  6683. #u9090_img {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:110px;
  6689. height:32px;
  6690. }
  6691. #u9090 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:1110px;
  6695. top:266px;
  6696. width:110px;
  6697. height:32px;
  6698. display:flex;
  6699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:12px;
  6703. color:#333333;
  6704. }
  6705. #u9090 .text {
  6706. position:absolute;
  6707. align-self:center;
  6708. padding:2px 2px 2px 0px;
  6709. box-sizing:border-box;
  6710. width:100%;
  6711. }
  6712. #u9090_text {
  6713. border-width:0px;
  6714. word-wrap:break-word;
  6715. text-transform:none;
  6716. visibility:hidden;
  6717. }
  6718. #u9091_img {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:157px;
  6724. height:30px;
  6725. }
  6726. #u9091 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:298px;
  6731. width:157px;
  6732. height:30px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:12px;
  6738. color:#333333;
  6739. }
  6740. #u9091 .text {
  6741. position:absolute;
  6742. align-self:center;
  6743. padding:2px 2px 2px 0px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u9091_text {
  6748. border-width:0px;
  6749. word-wrap:break-word;
  6750. text-transform:none;
  6751. visibility:hidden;
  6752. }
  6753. #u9092_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:147px;
  6759. height:30px;
  6760. }
  6761. #u9092 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:157px;
  6765. top:298px;
  6766. width:147px;
  6767. height:30px;
  6768. display:flex;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:12px;
  6773. color:#333333;
  6774. }
  6775. #u9092 .text {
  6776. position:absolute;
  6777. align-self:center;
  6778. padding:2px 2px 2px 0px;
  6779. box-sizing:border-box;
  6780. width:100%;
  6781. }
  6782. #u9092_text {
  6783. border-width:0px;
  6784. word-wrap:break-word;
  6785. text-transform:none;
  6786. visibility:hidden;
  6787. }
  6788. #u9093_img {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:166px;
  6794. height:30px;
  6795. }
  6796. #u9093 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:304px;
  6800. top:298px;
  6801. width:166px;
  6802. height:30px;
  6803. display:flex;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:12px;
  6808. color:#333333;
  6809. }
  6810. #u9093 .text {
  6811. position:absolute;
  6812. align-self:center;
  6813. padding:2px 2px 2px 0px;
  6814. box-sizing:border-box;
  6815. width:100%;
  6816. }
  6817. #u9093_text {
  6818. border-width:0px;
  6819. word-wrap:break-word;
  6820. text-transform:none;
  6821. visibility:hidden;
  6822. }
  6823. #u9094_img {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:147px;
  6829. height:30px;
  6830. }
  6831. #u9094 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:470px;
  6835. top:298px;
  6836. width:147px;
  6837. height:30px;
  6838. display:flex;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:12px;
  6843. color:#333333;
  6844. }
  6845. #u9094 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:2px 2px 2px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u9094_text {
  6853. border-width:0px;
  6854. word-wrap:break-word;
  6855. text-transform:none;
  6856. visibility:hidden;
  6857. }
  6858. #u9095_img {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:173px;
  6864. height:30px;
  6865. }
  6866. #u9095 {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:617px;
  6870. top:298px;
  6871. width:173px;
  6872. height:30px;
  6873. display:flex;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:12px;
  6878. color:#333333;
  6879. }
  6880. #u9095 .text {
  6881. position:absolute;
  6882. align-self:center;
  6883. padding:2px 2px 2px 0px;
  6884. box-sizing:border-box;
  6885. width:100%;
  6886. }
  6887. #u9095_text {
  6888. border-width:0px;
  6889. word-wrap:break-word;
  6890. text-transform:none;
  6891. visibility:hidden;
  6892. }
  6893. #u9096_img {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:147px;
  6899. height:30px;
  6900. }
  6901. #u9096 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:790px;
  6905. top:298px;
  6906. width:147px;
  6907. height:30px;
  6908. display:flex;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:12px;
  6913. color:#333333;
  6914. }
  6915. #u9096 .text {
  6916. position:absolute;
  6917. align-self:center;
  6918. padding:2px 2px 2px 0px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u9096_text {
  6923. border-width:0px;
  6924. word-wrap:break-word;
  6925. text-transform:none;
  6926. visibility:hidden;
  6927. }
  6928. #u9097_img {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:173px;
  6934. height:30px;
  6935. }
  6936. #u9097 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:937px;
  6940. top:298px;
  6941. width:173px;
  6942. height:30px;
  6943. display:flex;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:12px;
  6948. color:#333333;
  6949. }
  6950. #u9097 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:2px 2px 2px 0px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u9097_text {
  6958. border-width:0px;
  6959. word-wrap:break-word;
  6960. text-transform:none;
  6961. visibility:hidden;
  6962. }
  6963. #u9098_img {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:110px;
  6969. height:30px;
  6970. }
  6971. #u9098 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:1110px;
  6975. top:298px;
  6976. width:110px;
  6977. height:30px;
  6978. display:flex;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:12px;
  6983. color:#333333;
  6984. }
  6985. #u9098 .text {
  6986. position:absolute;
  6987. align-self:center;
  6988. padding:2px 2px 2px 0px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u9098_text {
  6993. border-width:0px;
  6994. word-wrap:break-word;
  6995. text-transform:none;
  6996. visibility:hidden;
  6997. }
  6998. #u9099 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:0px;
  7004. height:0px;
  7005. }
  7006. #u9100_div {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:960px;
  7012. height:573px;
  7013. background:inherit;
  7014. background-color:rgba(255, 255, 255, 1);
  7015. box-sizing:border-box;
  7016. border-width:1px;
  7017. border-style:solid;
  7018. border-color:rgba(215, 215, 215, 1);
  7019. border-radius:0px;
  7020. -moz-box-shadow:none;
  7021. -webkit-box-shadow:none;
  7022. box-shadow:none;
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:14px;
  7027. color:#AAAAAA;
  7028. text-align:center;
  7029. line-height:30px;
  7030. }
  7031. #u9100 {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:1640px;
  7035. top:357px;
  7036. width:960px;
  7037. height:573px;
  7038. display:flex;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:14px;
  7043. color:#AAAAAA;
  7044. text-align:center;
  7045. line-height:30px;
  7046. }
  7047. #u9100 .text {
  7048. position:absolute;
  7049. align-self:center;
  7050. padding:5px 10px 5px 10px;
  7051. box-sizing:border-box;
  7052. width:100%;
  7053. }
  7054. #u9100_text {
  7055. border-width:0px;
  7056. word-wrap:break-word;
  7057. text-transform:none;
  7058. visibility:hidden;
  7059. }
  7060. #u9101_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:83px;
  7066. height:35px;
  7067. background:inherit;
  7068. background-color:rgba(255, 255, 255, 0);
  7069. border:none;
  7070. border-top:0px;
  7071. border-right:0px;
  7072. border-bottom:0px;
  7073. border-radius:0px;
  7074. border-top-left-radius:0px;
  7075. border-bottom-left-radius:0px;
  7076. -moz-box-shadow:none;
  7077. -webkit-box-shadow:none;
  7078. box-shadow:none;
  7079. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7080. font-weight:500;
  7081. font-style:normal;
  7082. font-size:18px;
  7083. }
  7084. #u9101 {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:1670px;
  7088. top:377px;
  7089. width:83px;
  7090. height:35px;
  7091. display:flex;
  7092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7093. font-weight:500;
  7094. font-style:normal;
  7095. font-size:18px;
  7096. }
  7097. #u9101 .text {
  7098. position:absolute;
  7099. align-self:center;
  7100. padding:5px 10px 5px 0px;
  7101. box-sizing:border-box;
  7102. width:100%;
  7103. }
  7104. #u9101_text {
  7105. border-width:0px;
  7106. white-space:nowrap;
  7107. text-transform:none;
  7108. }
  7109. #u9102 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:0px;
  7115. height:0px;
  7116. }
  7117. #u9103 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:0px;
  7123. height:0px;
  7124. }
  7125. #u9104_div {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:120px;
  7131. height:30px;
  7132. background:inherit;
  7133. background-color:rgba(255, 255, 255, 1);
  7134. box-sizing:border-box;
  7135. border-width:1px;
  7136. border-style:solid;
  7137. border-color:rgba(201, 201, 201, 1);
  7138. border-radius:4px;
  7139. -moz-box-shadow:none;
  7140. -webkit-box-shadow:none;
  7141. box-shadow:none;
  7142. font-family:'Microsoft YaHei', sans-serif;
  7143. font-weight:400;
  7144. font-style:normal;
  7145. font-size:12px;
  7146. color:#CCCCCC;
  7147. text-align:left;
  7148. }
  7149. #u9104 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:2190px;
  7153. top:436px;
  7154. width:120px;
  7155. height:30px;
  7156. display:flex;
  7157. font-family:'Microsoft YaHei', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:12px;
  7161. color:#CCCCCC;
  7162. text-align:left;
  7163. }
  7164. #u9104 .text {
  7165. position:absolute;
  7166. align-self:center;
  7167. padding:2px 8px 2px 8px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u9104_text {
  7172. border-width:0px;
  7173. word-wrap:break-word;
  7174. text-transform:none;
  7175. visibility:hidden;
  7176. }
  7177. #u9105_input {
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:107px;
  7182. height:25px;
  7183. padding:2px 2px 2px 2px;
  7184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:12px;
  7188. letter-spacing:normal;
  7189. color:#D7D7D7;
  7190. vertical-align:none;
  7191. text-align:left;
  7192. text-transform:none;
  7193. background-color:transparent;
  7194. border-color:transparent;
  7195. }
  7196. #u9105_input.disabled {
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:107px;
  7201. height:25px;
  7202. padding:2px 2px 2px 2px;
  7203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. font-size:12px;
  7207. letter-spacing:normal;
  7208. color:#D7D7D7;
  7209. vertical-align:none;
  7210. text-align:left;
  7211. text-transform:none;
  7212. background-color:transparent;
  7213. border-color:transparent;
  7214. }
  7215. #u9105_div {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:107px;
  7221. height:25px;
  7222. background:inherit;
  7223. background-color:rgba(255, 255, 255, 0);
  7224. border:none;
  7225. border-radius:0px;
  7226. -moz-box-shadow:none;
  7227. -webkit-box-shadow:none;
  7228. box-shadow:none;
  7229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:12px;
  7233. color:#D7D7D7;
  7234. }
  7235. #u9105 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:2195px;
  7239. top:439px;
  7240. width:107px;
  7241. height:25px;
  7242. display:flex;
  7243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:12px;
  7247. color:#D7D7D7;
  7248. }
  7249. #u9105 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 2px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u9105_div.disabled {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:107px;
  7262. height:25px;
  7263. background:inherit;
  7264. background-color:rgba(240, 240, 240, 1);
  7265. border:none;
  7266. border-radius:0px;
  7267. -moz-box-shadow:none;
  7268. -webkit-box-shadow:none;
  7269. box-shadow:none;
  7270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7271. font-weight:400;
  7272. font-style:normal;
  7273. font-size:12px;
  7274. color:#D7D7D7;
  7275. }
  7276. #u9105.disabled {
  7277. }
  7278. #u9106_div {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:60px;
  7284. height:30px;
  7285. background:inherit;
  7286. background-color:rgba(24, 144, 255, 1);
  7287. border:none;
  7288. border-radius:4px;
  7289. -moz-box-shadow:none;
  7290. -webkit-box-shadow:none;
  7291. box-shadow:none;
  7292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:12px;
  7296. color:#FFFFFF;
  7297. }
  7298. #u9106 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:2450px;
  7302. top:436px;
  7303. width:60px;
  7304. height:30px;
  7305. display:flex;
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:12px;
  7310. color:#FFFFFF;
  7311. }
  7312. #u9106 .text {
  7313. position:absolute;
  7314. align-self:center;
  7315. padding:2px 2px 2px 2px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u9106_text {
  7320. border-width:0px;
  7321. word-wrap:break-word;
  7322. text-transform:none;
  7323. }
  7324. #u9107 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:0px;
  7330. height:0px;
  7331. }
  7332. #u9108 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:1674px;
  7336. top:502px;
  7337. width:400px;
  7338. height:330px;
  7339. }
  7340. #u9109_img {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:42px;
  7346. height:30px;
  7347. }
  7348. #u9109 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:0px;
  7352. top:0px;
  7353. width:42px;
  7354. height:30px;
  7355. display:flex;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:12px;
  7360. }
  7361. #u9109 .text {
  7362. position:absolute;
  7363. align-self:center;
  7364. padding:2px 2px 2px 0px;
  7365. box-sizing:border-box;
  7366. width:100%;
  7367. }
  7368. #u9109_text {
  7369. border-width:0px;
  7370. word-wrap:break-word;
  7371. text-transform:none;
  7372. visibility:hidden;
  7373. }
  7374. #u9110_img {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:93px;
  7380. height:30px;
  7381. }
  7382. #u9110 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:42px;
  7386. top:0px;
  7387. width:93px;
  7388. height:30px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:12px;
  7394. }
  7395. #u9110 .text {
  7396. position:absolute;
  7397. align-self:center;
  7398. padding:2px 2px 2px 0px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u9110_text {
  7403. border-width:0px;
  7404. word-wrap:break-word;
  7405. text-transform:none;
  7406. }
  7407. #u9111_img {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:93px;
  7413. height:30px;
  7414. }
  7415. #u9111 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:135px;
  7419. top:0px;
  7420. width:93px;
  7421. height:30px;
  7422. display:flex;
  7423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7424. font-weight:400;
  7425. font-style:normal;
  7426. font-size:12px;
  7427. }
  7428. #u9111 .text {
  7429. position:absolute;
  7430. align-self:center;
  7431. padding:2px 2px 2px 0px;
  7432. box-sizing:border-box;
  7433. width:100%;
  7434. }
  7435. #u9111_text {
  7436. border-width:0px;
  7437. word-wrap:break-word;
  7438. text-transform:none;
  7439. }
  7440. #u9112_img {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:93px;
  7446. height:30px;
  7447. }
  7448. #u9112 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:228px;
  7452. top:0px;
  7453. width:93px;
  7454. height:30px;
  7455. display:flex;
  7456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. font-size:12px;
  7460. }
  7461. #u9112 .text {
  7462. position:absolute;
  7463. align-self:center;
  7464. padding:2px 2px 2px 0px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u9112_text {
  7469. border-width:0px;
  7470. word-wrap:break-word;
  7471. text-transform:none;
  7472. }
  7473. #u9113_img {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:79px;
  7479. height:30px;
  7480. }
  7481. #u9113 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:321px;
  7485. top:0px;
  7486. width:79px;
  7487. height:30px;
  7488. display:flex;
  7489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. font-size:12px;
  7493. }
  7494. #u9113 .text {
  7495. position:absolute;
  7496. align-self:center;
  7497. padding:2px 2px 2px 0px;
  7498. box-sizing:border-box;
  7499. width:100%;
  7500. }
  7501. #u9113_text {
  7502. border-width:0px;
  7503. word-wrap:break-word;
  7504. text-transform:none;
  7505. }
  7506. #u9114_img {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:42px;
  7512. height:30px;
  7513. }
  7514. #u9114 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:30px;
  7519. width:42px;
  7520. height:30px;
  7521. display:flex;
  7522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7523. font-weight:400;
  7524. font-style:normal;
  7525. font-size:12px;
  7526. }
  7527. #u9114 .text {
  7528. position:absolute;
  7529. align-self:center;
  7530. padding:2px 2px 2px 0px;
  7531. box-sizing:border-box;
  7532. width:100%;
  7533. }
  7534. #u9114_text {
  7535. border-width:0px;
  7536. word-wrap:break-word;
  7537. text-transform:none;
  7538. visibility:hidden;
  7539. }
  7540. #u9115_img {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:0px;
  7544. top:0px;
  7545. width:93px;
  7546. height:30px;
  7547. }
  7548. #u9115 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:42px;
  7552. top:30px;
  7553. width:93px;
  7554. height:30px;
  7555. display:flex;
  7556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:12px;
  7560. }
  7561. #u9115 .text {
  7562. position:absolute;
  7563. align-self:center;
  7564. padding:2px 2px 2px 0px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u9115_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. visibility:hidden;
  7573. }
  7574. #u9116_img {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:93px;
  7580. height:30px;
  7581. }
  7582. #u9116 {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:135px;
  7586. top:30px;
  7587. width:93px;
  7588. height:30px;
  7589. display:flex;
  7590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:12px;
  7594. color:#333333;
  7595. }
  7596. #u9116 .text {
  7597. position:absolute;
  7598. align-self:center;
  7599. padding:2px 2px 2px 0px;
  7600. box-sizing:border-box;
  7601. width:100%;
  7602. }
  7603. #u9116_text {
  7604. border-width:0px;
  7605. word-wrap:break-word;
  7606. text-transform:none;
  7607. visibility:hidden;
  7608. }
  7609. #u9117_img {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:93px;
  7615. height:30px;
  7616. }
  7617. #u9117 {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:228px;
  7621. top:30px;
  7622. width:93px;
  7623. height:30px;
  7624. display:flex;
  7625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7626. font-weight:400;
  7627. font-style:normal;
  7628. font-size:12px;
  7629. color:#333333;
  7630. }
  7631. #u9117 .text {
  7632. position:absolute;
  7633. align-self:center;
  7634. padding:2px 2px 2px 0px;
  7635. box-sizing:border-box;
  7636. width:100%;
  7637. }
  7638. #u9117_text {
  7639. border-width:0px;
  7640. word-wrap:break-word;
  7641. text-transform:none;
  7642. visibility:hidden;
  7643. }
  7644. #u9118_img {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:79px;
  7650. height:30px;
  7651. }
  7652. #u9118 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:321px;
  7656. top:30px;
  7657. width:79px;
  7658. height:30px;
  7659. display:flex;
  7660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:12px;
  7664. color:#333333;
  7665. }
  7666. #u9118 .text {
  7667. position:absolute;
  7668. align-self:center;
  7669. padding:2px 2px 2px 0px;
  7670. box-sizing:border-box;
  7671. width:100%;
  7672. }
  7673. #u9118_text {
  7674. border-width:0px;
  7675. word-wrap:break-word;
  7676. text-transform:none;
  7677. visibility:hidden;
  7678. }
  7679. #u9119_img {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:42px;
  7685. height:30px;
  7686. }
  7687. #u9119 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:60px;
  7692. width:42px;
  7693. height:30px;
  7694. display:flex;
  7695. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:12px;
  7699. color:#606266;
  7700. }
  7701. #u9119 .text {
  7702. position:absolute;
  7703. align-self:center;
  7704. padding:2px 2px 2px 0px;
  7705. box-sizing:border-box;
  7706. width:100%;
  7707. }
  7708. #u9119_text {
  7709. border-width:0px;
  7710. word-wrap:break-word;
  7711. text-transform:none;
  7712. visibility:hidden;
  7713. }
  7714. #u9120_img {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:93px;
  7720. height:30px;
  7721. }
  7722. #u9120 {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:42px;
  7726. top:60px;
  7727. width:93px;
  7728. height:30px;
  7729. display:flex;
  7730. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7731. font-weight:400;
  7732. font-style:normal;
  7733. font-size:12px;
  7734. color:#606266;
  7735. }
  7736. #u9120 .text {
  7737. position:absolute;
  7738. align-self:center;
  7739. padding:2px 2px 2px 0px;
  7740. box-sizing:border-box;
  7741. width:100%;
  7742. }
  7743. #u9120_text {
  7744. border-width:0px;
  7745. word-wrap:break-word;
  7746. text-transform:none;
  7747. visibility:hidden;
  7748. }
  7749. #u9121_img {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:93px;
  7755. height:30px;
  7756. }
  7757. #u9121 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:135px;
  7761. top:60px;
  7762. width:93px;
  7763. height:30px;
  7764. display:flex;
  7765. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:12px;
  7769. color:#606266;
  7770. }
  7771. #u9121 .text {
  7772. position:absolute;
  7773. align-self:center;
  7774. padding:2px 2px 2px 0px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u9121_text {
  7779. border-width:0px;
  7780. word-wrap:break-word;
  7781. text-transform:none;
  7782. visibility:hidden;
  7783. }
  7784. #u9122_img {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:0px;
  7789. width:93px;
  7790. height:30px;
  7791. }
  7792. #u9122 {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:228px;
  7796. top:60px;
  7797. width:93px;
  7798. height:30px;
  7799. display:flex;
  7800. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. font-size:12px;
  7804. color:#606266;
  7805. }
  7806. #u9122 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:2px 2px 2px 0px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u9122_text {
  7814. border-width:0px;
  7815. word-wrap:break-word;
  7816. text-transform:none;
  7817. visibility:hidden;
  7818. }
  7819. #u9123_img {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:79px;
  7825. height:30px;
  7826. }
  7827. #u9123 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:321px;
  7831. top:60px;
  7832. width:79px;
  7833. height:30px;
  7834. display:flex;
  7835. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:12px;
  7839. color:#606266;
  7840. }
  7841. #u9123 .text {
  7842. position:absolute;
  7843. align-self:center;
  7844. padding:2px 2px 2px 0px;
  7845. box-sizing:border-box;
  7846. width:100%;
  7847. }
  7848. #u9123_text {
  7849. border-width:0px;
  7850. word-wrap:break-word;
  7851. text-transform:none;
  7852. visibility:hidden;
  7853. }
  7854. #u9124_img {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:42px;
  7860. height:30px;
  7861. }
  7862. #u9124 {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:0px;
  7866. top:90px;
  7867. width:42px;
  7868. height:30px;
  7869. display:flex;
  7870. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7871. font-weight:400;
  7872. font-style:normal;
  7873. font-size:12px;
  7874. color:#606266;
  7875. }
  7876. #u9124 .text {
  7877. position:absolute;
  7878. align-self:center;
  7879. padding:2px 2px 2px 0px;
  7880. box-sizing:border-box;
  7881. width:100%;
  7882. }
  7883. #u9124_text {
  7884. border-width:0px;
  7885. word-wrap:break-word;
  7886. text-transform:none;
  7887. visibility:hidden;
  7888. }
  7889. #u9125_img {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:93px;
  7895. height:30px;
  7896. }
  7897. #u9125 {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:42px;
  7901. top:90px;
  7902. width:93px;
  7903. height:30px;
  7904. display:flex;
  7905. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7906. font-weight:400;
  7907. font-style:normal;
  7908. font-size:12px;
  7909. color:#606266;
  7910. }
  7911. #u9125 .text {
  7912. position:absolute;
  7913. align-self:center;
  7914. padding:2px 2px 2px 0px;
  7915. box-sizing:border-box;
  7916. width:100%;
  7917. }
  7918. #u9125_text {
  7919. border-width:0px;
  7920. word-wrap:break-word;
  7921. text-transform:none;
  7922. visibility:hidden;
  7923. }
  7924. #u9126_img {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:0px;
  7928. top:0px;
  7929. width:93px;
  7930. height:30px;
  7931. }
  7932. #u9126 {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:135px;
  7936. top:90px;
  7937. width:93px;
  7938. height:30px;
  7939. display:flex;
  7940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7941. font-weight:400;
  7942. font-style:normal;
  7943. font-size:12px;
  7944. color:#606266;
  7945. }
  7946. #u9126 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:2px 2px 2px 0px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u9126_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. visibility:hidden;
  7958. }
  7959. #u9127_img {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:0px;
  7963. top:0px;
  7964. width:93px;
  7965. height:30px;
  7966. }
  7967. #u9127 {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:228px;
  7971. top:90px;
  7972. width:93px;
  7973. height:30px;
  7974. display:flex;
  7975. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7976. font-weight:400;
  7977. font-style:normal;
  7978. font-size:12px;
  7979. color:#606266;
  7980. }
  7981. #u9127 .text {
  7982. position:absolute;
  7983. align-self:center;
  7984. padding:2px 2px 2px 0px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u9127_text {
  7989. border-width:0px;
  7990. word-wrap:break-word;
  7991. text-transform:none;
  7992. visibility:hidden;
  7993. }
  7994. #u9128_img {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:79px;
  8000. height:30px;
  8001. }
  8002. #u9128 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:321px;
  8006. top:90px;
  8007. width:79px;
  8008. height:30px;
  8009. display:flex;
  8010. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:12px;
  8014. color:#606266;
  8015. }
  8016. #u9128 .text {
  8017. position:absolute;
  8018. align-self:center;
  8019. padding:2px 2px 2px 0px;
  8020. box-sizing:border-box;
  8021. width:100%;
  8022. }
  8023. #u9128_text {
  8024. border-width:0px;
  8025. word-wrap:break-word;
  8026. text-transform:none;
  8027. visibility:hidden;
  8028. }
  8029. #u9129_img {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:42px;
  8035. height:30px;
  8036. }
  8037. #u9129 {
  8038. border-width:0px;
  8039. position:absolute;
  8040. left:0px;
  8041. top:120px;
  8042. width:42px;
  8043. height:30px;
  8044. display:flex;
  8045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8046. font-weight:400;
  8047. font-style:normal;
  8048. font-size:12px;
  8049. color:#606266;
  8050. }
  8051. #u9129 .text {
  8052. position:absolute;
  8053. align-self:center;
  8054. padding:2px 2px 2px 0px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u9129_text {
  8059. border-width:0px;
  8060. word-wrap:break-word;
  8061. text-transform:none;
  8062. visibility:hidden;
  8063. }
  8064. #u9130_img {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:93px;
  8070. height:30px;
  8071. }
  8072. #u9130 {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:42px;
  8076. top:120px;
  8077. width:93px;
  8078. height:30px;
  8079. display:flex;
  8080. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:12px;
  8084. color:#606266;
  8085. }
  8086. #u9130 .text {
  8087. position:absolute;
  8088. align-self:center;
  8089. padding:2px 2px 2px 0px;
  8090. box-sizing:border-box;
  8091. width:100%;
  8092. }
  8093. #u9130_text {
  8094. border-width:0px;
  8095. word-wrap:break-word;
  8096. text-transform:none;
  8097. visibility:hidden;
  8098. }
  8099. #u9131_img {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:93px;
  8105. height:30px;
  8106. }
  8107. #u9131 {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:135px;
  8111. top:120px;
  8112. width:93px;
  8113. height:30px;
  8114. display:flex;
  8115. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8116. font-weight:400;
  8117. font-style:normal;
  8118. font-size:12px;
  8119. color:#606266;
  8120. }
  8121. #u9131 .text {
  8122. position:absolute;
  8123. align-self:center;
  8124. padding:2px 2px 2px 0px;
  8125. box-sizing:border-box;
  8126. width:100%;
  8127. }
  8128. #u9131_text {
  8129. border-width:0px;
  8130. word-wrap:break-word;
  8131. text-transform:none;
  8132. visibility:hidden;
  8133. }
  8134. #u9132_img {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:0px;
  8138. top:0px;
  8139. width:93px;
  8140. height:30px;
  8141. }
  8142. #u9132 {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:228px;
  8146. top:120px;
  8147. width:93px;
  8148. height:30px;
  8149. display:flex;
  8150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8151. font-weight:400;
  8152. font-style:normal;
  8153. font-size:12px;
  8154. color:#606266;
  8155. }
  8156. #u9132 .text {
  8157. position:absolute;
  8158. align-self:center;
  8159. padding:2px 2px 2px 0px;
  8160. box-sizing:border-box;
  8161. width:100%;
  8162. }
  8163. #u9132_text {
  8164. border-width:0px;
  8165. word-wrap:break-word;
  8166. text-transform:none;
  8167. visibility:hidden;
  8168. }
  8169. #u9133_img {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:79px;
  8175. height:30px;
  8176. }
  8177. #u9133 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:321px;
  8181. top:120px;
  8182. width:79px;
  8183. height:30px;
  8184. display:flex;
  8185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:12px;
  8189. color:#606266;
  8190. }
  8191. #u9133 .text {
  8192. position:absolute;
  8193. align-self:center;
  8194. padding:2px 2px 2px 0px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u9133_text {
  8199. border-width:0px;
  8200. word-wrap:break-word;
  8201. text-transform:none;
  8202. visibility:hidden;
  8203. }
  8204. #u9134_img {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:42px;
  8210. height:30px;
  8211. }
  8212. #u9134 {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:0px;
  8216. top:150px;
  8217. width:42px;
  8218. height:30px;
  8219. display:flex;
  8220. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8221. font-weight:400;
  8222. font-style:normal;
  8223. font-size:12px;
  8224. color:#606266;
  8225. }
  8226. #u9134 .text {
  8227. position:absolute;
  8228. align-self:center;
  8229. padding:2px 2px 2px 0px;
  8230. box-sizing:border-box;
  8231. width:100%;
  8232. }
  8233. #u9134_text {
  8234. border-width:0px;
  8235. word-wrap:break-word;
  8236. text-transform:none;
  8237. visibility:hidden;
  8238. }
  8239. #u9135_img {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:93px;
  8245. height:30px;
  8246. }
  8247. #u9135 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:42px;
  8251. top:150px;
  8252. width:93px;
  8253. height:30px;
  8254. display:flex;
  8255. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8256. font-weight:400;
  8257. font-style:normal;
  8258. font-size:12px;
  8259. color:#606266;
  8260. }
  8261. #u9135 .text {
  8262. position:absolute;
  8263. align-self:center;
  8264. padding:2px 2px 2px 0px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u9135_text {
  8269. border-width:0px;
  8270. word-wrap:break-word;
  8271. text-transform:none;
  8272. visibility:hidden;
  8273. }
  8274. #u9136_img {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:0px;
  8278. top:0px;
  8279. width:93px;
  8280. height:30px;
  8281. }
  8282. #u9136 {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:135px;
  8286. top:150px;
  8287. width:93px;
  8288. height:30px;
  8289. display:flex;
  8290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8291. font-weight:400;
  8292. font-style:normal;
  8293. font-size:12px;
  8294. color:#606266;
  8295. }
  8296. #u9136 .text {
  8297. position:absolute;
  8298. align-self:center;
  8299. padding:2px 2px 2px 0px;
  8300. box-sizing:border-box;
  8301. width:100%;
  8302. }
  8303. #u9136_text {
  8304. border-width:0px;
  8305. word-wrap:break-word;
  8306. text-transform:none;
  8307. visibility:hidden;
  8308. }
  8309. #u9137_img {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:93px;
  8315. height:30px;
  8316. }
  8317. #u9137 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:228px;
  8321. top:150px;
  8322. width:93px;
  8323. height:30px;
  8324. display:flex;
  8325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:12px;
  8329. color:#606266;
  8330. }
  8331. #u9137 .text {
  8332. position:absolute;
  8333. align-self:center;
  8334. padding:2px 2px 2px 0px;
  8335. box-sizing:border-box;
  8336. width:100%;
  8337. }
  8338. #u9137_text {
  8339. border-width:0px;
  8340. word-wrap:break-word;
  8341. text-transform:none;
  8342. visibility:hidden;
  8343. }
  8344. #u9138_img {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:79px;
  8350. height:30px;
  8351. }
  8352. #u9138 {
  8353. border-width:0px;
  8354. position:absolute;
  8355. left:321px;
  8356. top:150px;
  8357. width:79px;
  8358. height:30px;
  8359. display:flex;
  8360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8361. font-weight:400;
  8362. font-style:normal;
  8363. font-size:12px;
  8364. color:#606266;
  8365. }
  8366. #u9138 .text {
  8367. position:absolute;
  8368. align-self:center;
  8369. padding:2px 2px 2px 0px;
  8370. box-sizing:border-box;
  8371. width:100%;
  8372. }
  8373. #u9138_text {
  8374. border-width:0px;
  8375. word-wrap:break-word;
  8376. text-transform:none;
  8377. visibility:hidden;
  8378. }
  8379. #u9139_img {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:0px;
  8383. top:0px;
  8384. width:42px;
  8385. height:30px;
  8386. }
  8387. #u9139 {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:0px;
  8391. top:180px;
  8392. width:42px;
  8393. height:30px;
  8394. display:flex;
  8395. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8396. font-weight:400;
  8397. font-style:normal;
  8398. font-size:12px;
  8399. color:#606266;
  8400. }
  8401. #u9139 .text {
  8402. position:absolute;
  8403. align-self:center;
  8404. padding:2px 2px 2px 0px;
  8405. box-sizing:border-box;
  8406. width:100%;
  8407. }
  8408. #u9139_text {
  8409. border-width:0px;
  8410. word-wrap:break-word;
  8411. text-transform:none;
  8412. visibility:hidden;
  8413. }
  8414. #u9140_img {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:0px;
  8418. top:0px;
  8419. width:93px;
  8420. height:30px;
  8421. }
  8422. #u9140 {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:42px;
  8426. top:180px;
  8427. width:93px;
  8428. height:30px;
  8429. display:flex;
  8430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:12px;
  8434. color:#606266;
  8435. }
  8436. #u9140 .text {
  8437. position:absolute;
  8438. align-self:center;
  8439. padding:2px 2px 2px 0px;
  8440. box-sizing:border-box;
  8441. width:100%;
  8442. }
  8443. #u9140_text {
  8444. border-width:0px;
  8445. word-wrap:break-word;
  8446. text-transform:none;
  8447. visibility:hidden;
  8448. }
  8449. #u9141_img {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:0px;
  8453. top:0px;
  8454. width:93px;
  8455. height:30px;
  8456. }
  8457. #u9141 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:135px;
  8461. top:180px;
  8462. width:93px;
  8463. height:30px;
  8464. display:flex;
  8465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:12px;
  8469. color:#606266;
  8470. }
  8471. #u9141 .text {
  8472. position:absolute;
  8473. align-self:center;
  8474. padding:2px 2px 2px 0px;
  8475. box-sizing:border-box;
  8476. width:100%;
  8477. }
  8478. #u9141_text {
  8479. border-width:0px;
  8480. word-wrap:break-word;
  8481. text-transform:none;
  8482. visibility:hidden;
  8483. }
  8484. #u9142_img {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:93px;
  8490. height:30px;
  8491. }
  8492. #u9142 {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:228px;
  8496. top:180px;
  8497. width:93px;
  8498. height:30px;
  8499. display:flex;
  8500. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:12px;
  8504. color:#606266;
  8505. }
  8506. #u9142 .text {
  8507. position:absolute;
  8508. align-self:center;
  8509. padding:2px 2px 2px 0px;
  8510. box-sizing:border-box;
  8511. width:100%;
  8512. }
  8513. #u9142_text {
  8514. border-width:0px;
  8515. word-wrap:break-word;
  8516. text-transform:none;
  8517. visibility:hidden;
  8518. }
  8519. #u9143_img {
  8520. border-width:0px;
  8521. position:absolute;
  8522. left:0px;
  8523. top:0px;
  8524. width:79px;
  8525. height:30px;
  8526. }
  8527. #u9143 {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:321px;
  8531. top:180px;
  8532. width:79px;
  8533. height:30px;
  8534. display:flex;
  8535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8536. font-weight:400;
  8537. font-style:normal;
  8538. font-size:12px;
  8539. color:#606266;
  8540. }
  8541. #u9143 .text {
  8542. position:absolute;
  8543. align-self:center;
  8544. padding:2px 2px 2px 0px;
  8545. box-sizing:border-box;
  8546. width:100%;
  8547. }
  8548. #u9143_text {
  8549. border-width:0px;
  8550. word-wrap:break-word;
  8551. text-transform:none;
  8552. visibility:hidden;
  8553. }
  8554. #u9144_img {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:0px;
  8558. top:0px;
  8559. width:42px;
  8560. height:30px;
  8561. }
  8562. #u9144 {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:0px;
  8566. top:210px;
  8567. width:42px;
  8568. height:30px;
  8569. display:flex;
  8570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:12px;
  8574. color:#606266;
  8575. }
  8576. #u9144 .text {
  8577. position:absolute;
  8578. align-self:center;
  8579. padding:2px 2px 2px 0px;
  8580. box-sizing:border-box;
  8581. width:100%;
  8582. }
  8583. #u9144_text {
  8584. border-width:0px;
  8585. word-wrap:break-word;
  8586. text-transform:none;
  8587. visibility:hidden;
  8588. }
  8589. #u9145_img {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:93px;
  8595. height:30px;
  8596. }
  8597. #u9145 {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:42px;
  8601. top:210px;
  8602. width:93px;
  8603. height:30px;
  8604. display:flex;
  8605. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8606. font-weight:400;
  8607. font-style:normal;
  8608. font-size:12px;
  8609. color:#606266;
  8610. }
  8611. #u9145 .text {
  8612. position:absolute;
  8613. align-self:center;
  8614. padding:2px 2px 2px 0px;
  8615. box-sizing:border-box;
  8616. width:100%;
  8617. }
  8618. #u9145_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. visibility:hidden;
  8623. }
  8624. #u9146_img {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:0px;
  8629. width:93px;
  8630. height:30px;
  8631. }
  8632. #u9146 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:135px;
  8636. top:210px;
  8637. width:93px;
  8638. height:30px;
  8639. display:flex;
  8640. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8641. font-weight:400;
  8642. font-style:normal;
  8643. font-size:12px;
  8644. color:#606266;
  8645. }
  8646. #u9146 .text {
  8647. position:absolute;
  8648. align-self:center;
  8649. padding:2px 2px 2px 0px;
  8650. box-sizing:border-box;
  8651. width:100%;
  8652. }
  8653. #u9146_text {
  8654. border-width:0px;
  8655. word-wrap:break-word;
  8656. text-transform:none;
  8657. visibility:hidden;
  8658. }
  8659. #u9147_img {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:0px;
  8664. width:93px;
  8665. height:30px;
  8666. }
  8667. #u9147 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:228px;
  8671. top:210px;
  8672. width:93px;
  8673. height:30px;
  8674. display:flex;
  8675. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8676. font-weight:400;
  8677. font-style:normal;
  8678. font-size:12px;
  8679. color:#606266;
  8680. }
  8681. #u9147 .text {
  8682. position:absolute;
  8683. align-self:center;
  8684. padding:2px 2px 2px 0px;
  8685. box-sizing:border-box;
  8686. width:100%;
  8687. }
  8688. #u9147_text {
  8689. border-width:0px;
  8690. word-wrap:break-word;
  8691. text-transform:none;
  8692. visibility:hidden;
  8693. }
  8694. #u9148_img {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:0px;
  8698. top:0px;
  8699. width:79px;
  8700. height:30px;
  8701. }
  8702. #u9148 {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:321px;
  8706. top:210px;
  8707. width:79px;
  8708. height:30px;
  8709. display:flex;
  8710. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:12px;
  8714. color:#606266;
  8715. }
  8716. #u9148 .text {
  8717. position:absolute;
  8718. align-self:center;
  8719. padding:2px 2px 2px 0px;
  8720. box-sizing:border-box;
  8721. width:100%;
  8722. }
  8723. #u9148_text {
  8724. border-width:0px;
  8725. word-wrap:break-word;
  8726. text-transform:none;
  8727. visibility:hidden;
  8728. }
  8729. #u9149_img {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:0px;
  8733. top:0px;
  8734. width:42px;
  8735. height:30px;
  8736. }
  8737. #u9149 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:0px;
  8741. top:240px;
  8742. width:42px;
  8743. height:30px;
  8744. display:flex;
  8745. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8746. font-weight:400;
  8747. font-style:normal;
  8748. font-size:12px;
  8749. color:#606266;
  8750. }
  8751. #u9149 .text {
  8752. position:absolute;
  8753. align-self:center;
  8754. padding:2px 2px 2px 0px;
  8755. box-sizing:border-box;
  8756. width:100%;
  8757. }
  8758. #u9149_text {
  8759. border-width:0px;
  8760. word-wrap:break-word;
  8761. text-transform:none;
  8762. visibility:hidden;
  8763. }
  8764. #u9150_img {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:0px;
  8768. top:0px;
  8769. width:93px;
  8770. height:30px;
  8771. }
  8772. #u9150 {
  8773. border-width:0px;
  8774. position:absolute;
  8775. left:42px;
  8776. top:240px;
  8777. width:93px;
  8778. height:30px;
  8779. display:flex;
  8780. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8781. font-weight:400;
  8782. font-style:normal;
  8783. font-size:12px;
  8784. color:#606266;
  8785. }
  8786. #u9150 .text {
  8787. position:absolute;
  8788. align-self:center;
  8789. padding:2px 2px 2px 0px;
  8790. box-sizing:border-box;
  8791. width:100%;
  8792. }
  8793. #u9150_text {
  8794. border-width:0px;
  8795. word-wrap:break-word;
  8796. text-transform:none;
  8797. visibility:hidden;
  8798. }
  8799. #u9151_img {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:93px;
  8805. height:30px;
  8806. }
  8807. #u9151 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:135px;
  8811. top:240px;
  8812. width:93px;
  8813. height:30px;
  8814. display:flex;
  8815. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. font-size:12px;
  8819. color:#606266;
  8820. }
  8821. #u9151 .text {
  8822. position:absolute;
  8823. align-self:center;
  8824. padding:2px 2px 2px 0px;
  8825. box-sizing:border-box;
  8826. width:100%;
  8827. }
  8828. #u9151_text {
  8829. border-width:0px;
  8830. word-wrap:break-word;
  8831. text-transform:none;
  8832. visibility:hidden;
  8833. }
  8834. #u9152_img {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:0px;
  8838. top:0px;
  8839. width:93px;
  8840. height:30px;
  8841. }
  8842. #u9152 {
  8843. border-width:0px;
  8844. position:absolute;
  8845. left:228px;
  8846. top:240px;
  8847. width:93px;
  8848. height:30px;
  8849. display:flex;
  8850. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8851. font-weight:400;
  8852. font-style:normal;
  8853. font-size:12px;
  8854. color:#606266;
  8855. }
  8856. #u9152 .text {
  8857. position:absolute;
  8858. align-self:center;
  8859. padding:2px 2px 2px 0px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u9152_text {
  8864. border-width:0px;
  8865. word-wrap:break-word;
  8866. text-transform:none;
  8867. visibility:hidden;
  8868. }
  8869. #u9153_img {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:79px;
  8875. height:30px;
  8876. }
  8877. #u9153 {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:321px;
  8881. top:240px;
  8882. width:79px;
  8883. height:30px;
  8884. display:flex;
  8885. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8886. font-weight:400;
  8887. font-style:normal;
  8888. font-size:12px;
  8889. color:#606266;
  8890. }
  8891. #u9153 .text {
  8892. position:absolute;
  8893. align-self:center;
  8894. padding:2px 2px 2px 0px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u9153_text {
  8899. border-width:0px;
  8900. word-wrap:break-word;
  8901. text-transform:none;
  8902. visibility:hidden;
  8903. }
  8904. #u9154_img {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:42px;
  8910. height:30px;
  8911. }
  8912. #u9154 {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:0px;
  8916. top:270px;
  8917. width:42px;
  8918. height:30px;
  8919. display:flex;
  8920. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8921. font-weight:400;
  8922. font-style:normal;
  8923. font-size:12px;
  8924. color:#606266;
  8925. }
  8926. #u9154 .text {
  8927. position:absolute;
  8928. align-self:center;
  8929. padding:2px 2px 2px 0px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u9154_text {
  8934. border-width:0px;
  8935. word-wrap:break-word;
  8936. text-transform:none;
  8937. visibility:hidden;
  8938. }
  8939. #u9155_img {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:93px;
  8945. height:30px;
  8946. }
  8947. #u9155 {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:42px;
  8951. top:270px;
  8952. width:93px;
  8953. height:30px;
  8954. display:flex;
  8955. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8956. font-weight:400;
  8957. font-style:normal;
  8958. font-size:12px;
  8959. color:#606266;
  8960. }
  8961. #u9155 .text {
  8962. position:absolute;
  8963. align-self:center;
  8964. padding:2px 2px 2px 0px;
  8965. box-sizing:border-box;
  8966. width:100%;
  8967. }
  8968. #u9155_text {
  8969. border-width:0px;
  8970. word-wrap:break-word;
  8971. text-transform:none;
  8972. visibility:hidden;
  8973. }
  8974. #u9156_img {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:93px;
  8980. height:30px;
  8981. }
  8982. #u9156 {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:135px;
  8986. top:270px;
  8987. width:93px;
  8988. height:30px;
  8989. display:flex;
  8990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8991. font-weight:400;
  8992. font-style:normal;
  8993. font-size:12px;
  8994. color:#606266;
  8995. }
  8996. #u9156 .text {
  8997. position:absolute;
  8998. align-self:center;
  8999. padding:2px 2px 2px 0px;
  9000. box-sizing:border-box;
  9001. width:100%;
  9002. }
  9003. #u9156_text {
  9004. border-width:0px;
  9005. word-wrap:break-word;
  9006. text-transform:none;
  9007. visibility:hidden;
  9008. }
  9009. #u9157_img {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:93px;
  9015. height:30px;
  9016. }
  9017. #u9157 {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:228px;
  9021. top:270px;
  9022. width:93px;
  9023. height:30px;
  9024. display:flex;
  9025. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9026. font-weight:400;
  9027. font-style:normal;
  9028. font-size:12px;
  9029. color:#606266;
  9030. }
  9031. #u9157 .text {
  9032. position:absolute;
  9033. align-self:center;
  9034. padding:2px 2px 2px 0px;
  9035. box-sizing:border-box;
  9036. width:100%;
  9037. }
  9038. #u9157_text {
  9039. border-width:0px;
  9040. word-wrap:break-word;
  9041. text-transform:none;
  9042. visibility:hidden;
  9043. }
  9044. #u9158_img {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:79px;
  9050. height:30px;
  9051. }
  9052. #u9158 {
  9053. border-width:0px;
  9054. position:absolute;
  9055. left:321px;
  9056. top:270px;
  9057. width:79px;
  9058. height:30px;
  9059. display:flex;
  9060. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9061. font-weight:400;
  9062. font-style:normal;
  9063. font-size:12px;
  9064. color:#606266;
  9065. }
  9066. #u9158 .text {
  9067. position:absolute;
  9068. align-self:center;
  9069. padding:2px 2px 2px 0px;
  9070. box-sizing:border-box;
  9071. width:100%;
  9072. }
  9073. #u9158_text {
  9074. border-width:0px;
  9075. word-wrap:break-word;
  9076. text-transform:none;
  9077. visibility:hidden;
  9078. }
  9079. #u9159_img {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:0px;
  9083. top:0px;
  9084. width:42px;
  9085. height:30px;
  9086. }
  9087. #u9159 {
  9088. border-width:0px;
  9089. position:absolute;
  9090. left:0px;
  9091. top:300px;
  9092. width:42px;
  9093. height:30px;
  9094. display:flex;
  9095. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9096. font-weight:400;
  9097. font-style:normal;
  9098. font-size:12px;
  9099. color:#606266;
  9100. }
  9101. #u9159 .text {
  9102. position:absolute;
  9103. align-self:center;
  9104. padding:2px 2px 2px 0px;
  9105. box-sizing:border-box;
  9106. width:100%;
  9107. }
  9108. #u9159_text {
  9109. border-width:0px;
  9110. word-wrap:break-word;
  9111. text-transform:none;
  9112. visibility:hidden;
  9113. }
  9114. #u9160_img {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:0px;
  9118. top:0px;
  9119. width:93px;
  9120. height:30px;
  9121. }
  9122. #u9160 {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:42px;
  9126. top:300px;
  9127. width:93px;
  9128. height:30px;
  9129. display:flex;
  9130. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9131. font-weight:400;
  9132. font-style:normal;
  9133. font-size:12px;
  9134. color:#606266;
  9135. }
  9136. #u9160 .text {
  9137. position:absolute;
  9138. align-self:center;
  9139. padding:2px 2px 2px 0px;
  9140. box-sizing:border-box;
  9141. width:100%;
  9142. }
  9143. #u9160_text {
  9144. border-width:0px;
  9145. word-wrap:break-word;
  9146. text-transform:none;
  9147. visibility:hidden;
  9148. }
  9149. #u9161_img {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:0px;
  9153. top:0px;
  9154. width:93px;
  9155. height:30px;
  9156. }
  9157. #u9161 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:135px;
  9161. top:300px;
  9162. width:93px;
  9163. height:30px;
  9164. display:flex;
  9165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9166. font-weight:400;
  9167. font-style:normal;
  9168. font-size:12px;
  9169. color:#606266;
  9170. }
  9171. #u9161 .text {
  9172. position:absolute;
  9173. align-self:center;
  9174. padding:2px 2px 2px 0px;
  9175. box-sizing:border-box;
  9176. width:100%;
  9177. }
  9178. #u9161_text {
  9179. border-width:0px;
  9180. word-wrap:break-word;
  9181. text-transform:none;
  9182. visibility:hidden;
  9183. }
  9184. #u9162_img {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:0px;
  9188. top:0px;
  9189. width:93px;
  9190. height:30px;
  9191. }
  9192. #u9162 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:228px;
  9196. top:300px;
  9197. width:93px;
  9198. height:30px;
  9199. display:flex;
  9200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. font-size:12px;
  9204. color:#606266;
  9205. }
  9206. #u9162 .text {
  9207. position:absolute;
  9208. align-self:center;
  9209. padding:2px 2px 2px 0px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u9162_text {
  9214. border-width:0px;
  9215. word-wrap:break-word;
  9216. text-transform:none;
  9217. visibility:hidden;
  9218. }
  9219. #u9163_img {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:79px;
  9225. height:30px;
  9226. }
  9227. #u9163 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:321px;
  9231. top:300px;
  9232. width:79px;
  9233. height:30px;
  9234. display:flex;
  9235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9236. font-weight:400;
  9237. font-style:normal;
  9238. font-size:12px;
  9239. color:#606266;
  9240. }
  9241. #u9163 .text {
  9242. position:absolute;
  9243. align-self:center;
  9244. padding:2px 2px 2px 0px;
  9245. box-sizing:border-box;
  9246. width:100%;
  9247. }
  9248. #u9163_text {
  9249. border-width:0px;
  9250. word-wrap:break-word;
  9251. text-transform:none;
  9252. visibility:hidden;
  9253. }
  9254. #u9164 label {
  9255. left:0px;
  9256. width:100%;
  9257. }
  9258. #u9164_img {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:0px;
  9262. top:0px;
  9263. width:12px;
  9264. height:12px;
  9265. }
  9266. #u9164 {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:1685px;
  9270. top:512px;
  9271. width:30px;
  9272. height:16px;
  9273. display:flex;
  9274. }
  9275. #u9164 .text {
  9276. position:absolute;
  9277. align-self:center;
  9278. padding:0px 2px 0px 2px;
  9279. box-sizing:border-box;
  9280. }
  9281. #u9164_img.selected {
  9282. }
  9283. #u9164.selected {
  9284. }
  9285. #u9164_img.disabled {
  9286. }
  9287. #u9164.disabled {
  9288. }
  9289. #u9164_img.selectedDisabled {
  9290. }
  9291. #u9164.selectedDisabled {
  9292. }
  9293. #u9164_text {
  9294. border-width:0px;
  9295. position:absolute;
  9296. left:14px;
  9297. top:0px;
  9298. width:14px;
  9299. word-wrap:break-word;
  9300. text-transform:none;
  9301. visibility:hidden;
  9302. }
  9303. #u9164_input {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:0px;
  9307. top:0px;
  9308. width:0px;
  9309. height:0px;
  9310. opacity:0;
  9311. }
  9312. #u9165 label {
  9313. left:0px;
  9314. width:100%;
  9315. }
  9316. #u9165_img {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:12px;
  9322. height:12px;
  9323. }
  9324. #u9165 {
  9325. border-width:0px;
  9326. position:absolute;
  9327. left:1685px;
  9328. top:542px;
  9329. width:30px;
  9330. height:16px;
  9331. display:flex;
  9332. }
  9333. #u9165 .text {
  9334. position:absolute;
  9335. align-self:center;
  9336. padding:0px 2px 0px 2px;
  9337. box-sizing:border-box;
  9338. }
  9339. #u9165_img.selected {
  9340. }
  9341. #u9165.selected {
  9342. }
  9343. #u9165_img.disabled {
  9344. }
  9345. #u9165.disabled {
  9346. }
  9347. #u9165_img.selectedDisabled {
  9348. }
  9349. #u9165.selectedDisabled {
  9350. }
  9351. #u9165_text {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:14px;
  9355. top:0px;
  9356. width:14px;
  9357. word-wrap:break-word;
  9358. text-transform:none;
  9359. visibility:hidden;
  9360. }
  9361. #u9165_input {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:0px;
  9367. height:0px;
  9368. opacity:0;
  9369. }
  9370. #u9166 label {
  9371. left:0px;
  9372. width:100%;
  9373. }
  9374. #u9166_img {
  9375. border-width:0px;
  9376. position:absolute;
  9377. left:0px;
  9378. top:0px;
  9379. width:12px;
  9380. height:12px;
  9381. }
  9382. #u9166 {
  9383. border-width:0px;
  9384. position:absolute;
  9385. left:1685px;
  9386. top:571px;
  9387. width:30px;
  9388. height:16px;
  9389. display:flex;
  9390. }
  9391. #u9166 .text {
  9392. position:absolute;
  9393. align-self:center;
  9394. padding:0px 2px 0px 2px;
  9395. box-sizing:border-box;
  9396. }
  9397. #u9166_img.selected {
  9398. }
  9399. #u9166.selected {
  9400. }
  9401. #u9166_img.disabled {
  9402. }
  9403. #u9166.disabled {
  9404. }
  9405. #u9166_img.selectedDisabled {
  9406. }
  9407. #u9166.selectedDisabled {
  9408. }
  9409. #u9166_text {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:14px;
  9413. top:0px;
  9414. width:14px;
  9415. word-wrap:break-word;
  9416. text-transform:none;
  9417. visibility:hidden;
  9418. }
  9419. #u9166_input {
  9420. border-width:0px;
  9421. position:absolute;
  9422. left:0px;
  9423. top:0px;
  9424. width:0px;
  9425. height:0px;
  9426. opacity:0;
  9427. }
  9428. #u9167 label {
  9429. left:0px;
  9430. width:100%;
  9431. }
  9432. #u9167_img {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:0px;
  9436. top:0px;
  9437. width:12px;
  9438. height:12px;
  9439. }
  9440. #u9167 {
  9441. border-width:0px;
  9442. position:absolute;
  9443. left:1685px;
  9444. top:602px;
  9445. width:30px;
  9446. height:16px;
  9447. display:flex;
  9448. }
  9449. #u9167 .text {
  9450. position:absolute;
  9451. align-self:center;
  9452. padding:0px 2px 0px 2px;
  9453. box-sizing:border-box;
  9454. }
  9455. #u9167_img.selected {
  9456. }
  9457. #u9167.selected {
  9458. }
  9459. #u9167_img.disabled {
  9460. }
  9461. #u9167.disabled {
  9462. }
  9463. #u9167_img.selectedDisabled {
  9464. }
  9465. #u9167.selectedDisabled {
  9466. }
  9467. #u9167_text {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:14px;
  9471. top:0px;
  9472. width:14px;
  9473. word-wrap:break-word;
  9474. text-transform:none;
  9475. visibility:hidden;
  9476. }
  9477. #u9167_input {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:0px;
  9481. top:0px;
  9482. width:0px;
  9483. height:0px;
  9484. opacity:0;
  9485. }
  9486. #u9168 label {
  9487. left:0px;
  9488. width:100%;
  9489. }
  9490. #u9168_img {
  9491. border-width:0px;
  9492. position:absolute;
  9493. left:0px;
  9494. top:0px;
  9495. width:12px;
  9496. height:12px;
  9497. }
  9498. #u9168 {
  9499. border-width:0px;
  9500. position:absolute;
  9501. left:1685px;
  9502. top:632px;
  9503. width:30px;
  9504. height:16px;
  9505. display:flex;
  9506. }
  9507. #u9168 .text {
  9508. position:absolute;
  9509. align-self:center;
  9510. padding:0px 2px 0px 2px;
  9511. box-sizing:border-box;
  9512. }
  9513. #u9168_img.selected {
  9514. }
  9515. #u9168.selected {
  9516. }
  9517. #u9168_img.disabled {
  9518. }
  9519. #u9168.disabled {
  9520. }
  9521. #u9168_img.selectedDisabled {
  9522. }
  9523. #u9168.selectedDisabled {
  9524. }
  9525. #u9168_text {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:14px;
  9529. top:0px;
  9530. width:14px;
  9531. word-wrap:break-word;
  9532. text-transform:none;
  9533. visibility:hidden;
  9534. }
  9535. #u9168_input {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:0px;
  9539. top:0px;
  9540. width:0px;
  9541. height:0px;
  9542. opacity:0;
  9543. }
  9544. #u9169 label {
  9545. left:0px;
  9546. width:100%;
  9547. }
  9548. #u9169_img {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:0px;
  9552. top:0px;
  9553. width:12px;
  9554. height:12px;
  9555. }
  9556. #u9169 {
  9557. border-width:0px;
  9558. position:absolute;
  9559. left:1685px;
  9560. top:663px;
  9561. width:30px;
  9562. height:16px;
  9563. display:flex;
  9564. }
  9565. #u9169 .text {
  9566. position:absolute;
  9567. align-self:center;
  9568. padding:0px 2px 0px 2px;
  9569. box-sizing:border-box;
  9570. }
  9571. #u9169_img.selected {
  9572. }
  9573. #u9169.selected {
  9574. }
  9575. #u9169_img.disabled {
  9576. }
  9577. #u9169.disabled {
  9578. }
  9579. #u9169_img.selectedDisabled {
  9580. }
  9581. #u9169.selectedDisabled {
  9582. }
  9583. #u9169_text {
  9584. border-width:0px;
  9585. position:absolute;
  9586. left:14px;
  9587. top:0px;
  9588. width:14px;
  9589. word-wrap:break-word;
  9590. text-transform:none;
  9591. visibility:hidden;
  9592. }
  9593. #u9169_input {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:0px;
  9597. top:0px;
  9598. width:0px;
  9599. height:0px;
  9600. opacity:0;
  9601. }
  9602. #u9170 label {
  9603. left:0px;
  9604. width:100%;
  9605. }
  9606. #u9170_img {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:0px;
  9610. top:0px;
  9611. width:12px;
  9612. height:12px;
  9613. }
  9614. #u9170 {
  9615. border-width:0px;
  9616. position:absolute;
  9617. left:1685px;
  9618. top:692px;
  9619. width:30px;
  9620. height:16px;
  9621. display:flex;
  9622. }
  9623. #u9170 .text {
  9624. position:absolute;
  9625. align-self:center;
  9626. padding:0px 2px 0px 2px;
  9627. box-sizing:border-box;
  9628. }
  9629. #u9170_img.selected {
  9630. }
  9631. #u9170.selected {
  9632. }
  9633. #u9170_img.disabled {
  9634. }
  9635. #u9170.disabled {
  9636. }
  9637. #u9170_img.selectedDisabled {
  9638. }
  9639. #u9170.selectedDisabled {
  9640. }
  9641. #u9170_text {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:14px;
  9645. top:0px;
  9646. width:14px;
  9647. word-wrap:break-word;
  9648. text-transform:none;
  9649. visibility:hidden;
  9650. }
  9651. #u9170_input {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:0px;
  9655. top:0px;
  9656. width:0px;
  9657. height:0px;
  9658. opacity:0;
  9659. }
  9660. #u9171 label {
  9661. left:0px;
  9662. width:100%;
  9663. }
  9664. #u9171_img {
  9665. border-width:0px;
  9666. position:absolute;
  9667. left:0px;
  9668. top:0px;
  9669. width:12px;
  9670. height:12px;
  9671. }
  9672. #u9171 {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:1685px;
  9676. top:721px;
  9677. width:30px;
  9678. height:16px;
  9679. display:flex;
  9680. }
  9681. #u9171 .text {
  9682. position:absolute;
  9683. align-self:center;
  9684. padding:0px 2px 0px 2px;
  9685. box-sizing:border-box;
  9686. }
  9687. #u9171_img.selected {
  9688. }
  9689. #u9171.selected {
  9690. }
  9691. #u9171_img.disabled {
  9692. }
  9693. #u9171.disabled {
  9694. }
  9695. #u9171_img.selectedDisabled {
  9696. }
  9697. #u9171.selectedDisabled {
  9698. }
  9699. #u9171_text {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:14px;
  9703. top:0px;
  9704. width:14px;
  9705. word-wrap:break-word;
  9706. text-transform:none;
  9707. visibility:hidden;
  9708. }
  9709. #u9171_input {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:0px;
  9713. top:0px;
  9714. width:0px;
  9715. height:0px;
  9716. opacity:0;
  9717. }
  9718. #u9172 label {
  9719. left:0px;
  9720. width:100%;
  9721. }
  9722. #u9172_img {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:0px;
  9726. top:0px;
  9727. width:12px;
  9728. height:12px;
  9729. }
  9730. #u9172 {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:1685px;
  9734. top:751px;
  9735. width:30px;
  9736. height:16px;
  9737. display:flex;
  9738. }
  9739. #u9172 .text {
  9740. position:absolute;
  9741. align-self:center;
  9742. padding:0px 2px 0px 2px;
  9743. box-sizing:border-box;
  9744. }
  9745. #u9172_img.selected {
  9746. }
  9747. #u9172.selected {
  9748. }
  9749. #u9172_img.disabled {
  9750. }
  9751. #u9172.disabled {
  9752. }
  9753. #u9172_img.selectedDisabled {
  9754. }
  9755. #u9172.selectedDisabled {
  9756. }
  9757. #u9172_text {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:14px;
  9761. top:0px;
  9762. width:14px;
  9763. word-wrap:break-word;
  9764. text-transform:none;
  9765. visibility:hidden;
  9766. }
  9767. #u9172_input {
  9768. border-width:0px;
  9769. position:absolute;
  9770. left:0px;
  9771. top:0px;
  9772. width:0px;
  9773. height:0px;
  9774. opacity:0;
  9775. }
  9776. #u9173 label {
  9777. left:0px;
  9778. width:100%;
  9779. }
  9780. #u9173_img {
  9781. border-width:0px;
  9782. position:absolute;
  9783. left:0px;
  9784. top:0px;
  9785. width:12px;
  9786. height:12px;
  9787. }
  9788. #u9173 {
  9789. border-width:0px;
  9790. position:absolute;
  9791. left:1685px;
  9792. top:781px;
  9793. width:30px;
  9794. height:16px;
  9795. display:flex;
  9796. }
  9797. #u9173 .text {
  9798. position:absolute;
  9799. align-self:center;
  9800. padding:0px 2px 0px 2px;
  9801. box-sizing:border-box;
  9802. }
  9803. #u9173_img.selected {
  9804. }
  9805. #u9173.selected {
  9806. }
  9807. #u9173_img.disabled {
  9808. }
  9809. #u9173.disabled {
  9810. }
  9811. #u9173_img.selectedDisabled {
  9812. }
  9813. #u9173.selectedDisabled {
  9814. }
  9815. #u9173_text {
  9816. border-width:0px;
  9817. position:absolute;
  9818. left:14px;
  9819. top:0px;
  9820. width:14px;
  9821. word-wrap:break-word;
  9822. text-transform:none;
  9823. visibility:hidden;
  9824. }
  9825. #u9173_input {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:0px;
  9829. top:0px;
  9830. width:0px;
  9831. height:0px;
  9832. opacity:0;
  9833. }
  9834. #u9174 label {
  9835. left:0px;
  9836. width:100%;
  9837. }
  9838. #u9174_img {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:0px;
  9842. top:0px;
  9843. width:12px;
  9844. height:12px;
  9845. }
  9846. #u9174 {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:1685px;
  9850. top:810px;
  9851. width:30px;
  9852. height:16px;
  9853. display:flex;
  9854. }
  9855. #u9174 .text {
  9856. position:absolute;
  9857. align-self:center;
  9858. padding:0px 2px 0px 2px;
  9859. box-sizing:border-box;
  9860. }
  9861. #u9174_img.selected {
  9862. }
  9863. #u9174.selected {
  9864. }
  9865. #u9174_img.disabled {
  9866. }
  9867. #u9174.disabled {
  9868. }
  9869. #u9174_img.selectedDisabled {
  9870. }
  9871. #u9174.selectedDisabled {
  9872. }
  9873. #u9174_text {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:14px;
  9877. top:0px;
  9878. width:14px;
  9879. word-wrap:break-word;
  9880. text-transform:none;
  9881. visibility:hidden;
  9882. }
  9883. #u9174_input {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:0px;
  9887. top:0px;
  9888. width:0px;
  9889. height:0px;
  9890. opacity:0;
  9891. }
  9892. #u9175 {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:0px;
  9896. top:0px;
  9897. width:0px;
  9898. height:0px;
  9899. }
  9900. #u9176 {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:0px;
  9904. top:0px;
  9905. width:0px;
  9906. height:0px;
  9907. }
  9908. #u9177_img {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:7px;
  9914. height:12px;
  9915. }
  9916. #u9177 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:2055px;
  9920. top:851px;
  9921. width:7px;
  9922. height:12px;
  9923. display:flex;
  9924. }
  9925. #u9177 .text {
  9926. position:absolute;
  9927. align-self:center;
  9928. padding:2px 2px 2px 2px;
  9929. box-sizing:border-box;
  9930. width:100%;
  9931. }
  9932. #u9177_text {
  9933. border-width:0px;
  9934. word-wrap:break-word;
  9935. text-transform:none;
  9936. visibility:hidden;
  9937. }
  9938. #u9178_div {
  9939. border-width:0px;
  9940. position:absolute;
  9941. left:0px;
  9942. top:0px;
  9943. width:30px;
  9944. height:30px;
  9945. background:inherit;
  9946. background-color:rgba(255, 255, 255, 1);
  9947. box-sizing:border-box;
  9948. border-width:1px;
  9949. border-style:solid;
  9950. border-color:rgba(121, 121, 121, 1);
  9951. border-radius:4px;
  9952. -moz-box-shadow:none;
  9953. -webkit-box-shadow:none;
  9954. box-shadow:none;
  9955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9956. font-weight:400;
  9957. font-style:normal;
  9958. font-size:12px;
  9959. color:#FFFFFF;
  9960. }
  9961. #u9178 {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:2044px;
  9965. top:842px;
  9966. width:30px;
  9967. height:30px;
  9968. display:flex;
  9969. opacity:0.3;
  9970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9971. font-weight:400;
  9972. font-style:normal;
  9973. font-size:12px;
  9974. color:#FFFFFF;
  9975. }
  9976. #u9178 .text {
  9977. position:absolute;
  9978. align-self:center;
  9979. padding:2px 2px 2px 2px;
  9980. box-sizing:border-box;
  9981. width:100%;
  9982. }
  9983. #u9178_text {
  9984. border-width:0px;
  9985. word-wrap:break-word;
  9986. text-transform:none;
  9987. visibility:hidden;
  9988. }
  9989. #u9179 {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:0px;
  9993. top:0px;
  9994. width:0px;
  9995. height:0px;
  9996. }
  9997. #u9180_div {
  9998. border-width:0px;
  9999. position:absolute;
  10000. left:0px;
  10001. top:0px;
  10002. width:30px;
  10003. height:30px;
  10004. background:inherit;
  10005. background-color:rgba(255, 255, 255, 1);
  10006. box-sizing:border-box;
  10007. border-width:1px;
  10008. border-style:solid;
  10009. border-color:rgba(121, 121, 121, 1);
  10010. border-radius:4px;
  10011. -moz-box-shadow:none;
  10012. -webkit-box-shadow:none;
  10013. box-shadow:none;
  10014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10015. font-weight:400;
  10016. font-style:normal;
  10017. font-size:12px;
  10018. color:#FFFFFF;
  10019. }
  10020. #u9180 {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:2004px;
  10024. top:842px;
  10025. width:30px;
  10026. height:30px;
  10027. display:flex;
  10028. opacity:0.3;
  10029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10030. font-weight:400;
  10031. font-style:normal;
  10032. font-size:12px;
  10033. color:#FFFFFF;
  10034. }
  10035. #u9180 .text {
  10036. position:absolute;
  10037. align-self:center;
  10038. padding:2px 2px 2px 2px;
  10039. box-sizing:border-box;
  10040. width:100%;
  10041. }
  10042. #u9180_text {
  10043. border-width:0px;
  10044. word-wrap:break-word;
  10045. text-transform:none;
  10046. visibility:hidden;
  10047. }
  10048. #u9181_img {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:0px;
  10052. top:0px;
  10053. width:7px;
  10054. height:12px;
  10055. }
  10056. #u9181 {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:2016px;
  10060. top:851px;
  10061. width:7px;
  10062. height:12px;
  10063. display:flex;
  10064. }
  10065. #u9181 .text {
  10066. position:absolute;
  10067. align-self:center;
  10068. padding:2px 2px 2px 2px;
  10069. box-sizing:border-box;
  10070. width:100%;
  10071. }
  10072. #u9181_text {
  10073. border-width:0px;
  10074. word-wrap:break-word;
  10075. text-transform:none;
  10076. visibility:hidden;
  10077. }
  10078. #u9182 {
  10079. border-width:0px;
  10080. position:absolute;
  10081. left:0px;
  10082. top:0px;
  10083. width:0px;
  10084. height:0px;
  10085. }
  10086. #u9183_div {
  10087. border-width:0px;
  10088. position:absolute;
  10089. left:0px;
  10090. top:0px;
  10091. width:40px;
  10092. height:40px;
  10093. background:inherit;
  10094. background-color:rgba(255, 255, 255, 0);
  10095. border:none;
  10096. border-top:0px;
  10097. border-right:0px;
  10098. border-bottom:0px;
  10099. border-radius:0px;
  10100. border-top-left-radius:0px;
  10101. border-bottom-left-radius:0px;
  10102. -moz-box-shadow:none;
  10103. -webkit-box-shadow:none;
  10104. box-shadow:none;
  10105. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10106. font-weight:500;
  10107. font-style:normal;
  10108. font-size:18px;
  10109. text-align:center;
  10110. }
  10111. #u9183 {
  10112. border-width:0px;
  10113. position:absolute;
  10114. left:2560px;
  10115. top:357px;
  10116. width:40px;
  10117. height:40px;
  10118. display:flex;
  10119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10120. font-weight:500;
  10121. font-style:normal;
  10122. font-size:18px;
  10123. text-align:center;
  10124. }
  10125. #u9183 .text {
  10126. position:absolute;
  10127. align-self:center;
  10128. padding:5px 10px 5px 0px;
  10129. box-sizing:border-box;
  10130. width:100%;
  10131. }
  10132. #u9183_text {
  10133. border-width:0px;
  10134. word-wrap:break-word;
  10135. text-transform:none;
  10136. }
  10137. #u9184_img {
  10138. border-width:0px;
  10139. position:absolute;
  10140. left:0px;
  10141. top:0px;
  10142. width:13px;
  10143. height:13px;
  10144. }
  10145. #u9184 {
  10146. border-width:0px;
  10147. position:absolute;
  10148. left:2547px;
  10149. top:373px;
  10150. width:13px;
  10151. height:13px;
  10152. display:flex;
  10153. }
  10154. #u9184 .text {
  10155. position:absolute;
  10156. align-self:center;
  10157. padding:2px 2px 2px 2px;
  10158. box-sizing:border-box;
  10159. width:100%;
  10160. }
  10161. #u9184_text {
  10162. border-width:0px;
  10163. word-wrap:break-word;
  10164. text-transform:none;
  10165. visibility:hidden;
  10166. }
  10167. #u9185 {
  10168. border-width:0px;
  10169. position:absolute;
  10170. left:0px;
  10171. top:0px;
  10172. width:0px;
  10173. height:0px;
  10174. }
  10175. #u9186_div {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:120px;
  10181. height:30px;
  10182. background:inherit;
  10183. background-color:rgba(255, 255, 255, 1);
  10184. box-sizing:border-box;
  10185. border-width:1px;
  10186. border-style:solid;
  10187. border-color:rgba(215, 215, 215, 1);
  10188. border-radius:4px;
  10189. -moz-box-shadow:none;
  10190. -webkit-box-shadow:none;
  10191. box-shadow:none;
  10192. font-size:11px;
  10193. }
  10194. #u9186 {
  10195. border-width:0px;
  10196. position:absolute;
  10197. left:1930px;
  10198. top:434px;
  10199. width:120px;
  10200. height:30px;
  10201. display:flex;
  10202. font-size:11px;
  10203. }
  10204. #u9186 .text {
  10205. position:absolute;
  10206. align-self:center;
  10207. padding:2px 2px 2px 2px;
  10208. box-sizing:border-box;
  10209. width:100%;
  10210. }
  10211. #u9186_text {
  10212. border-width:0px;
  10213. word-wrap:break-word;
  10214. text-transform:none;
  10215. visibility:hidden;
  10216. }
  10217. #u9187_input {
  10218. position:absolute;
  10219. left:0px;
  10220. top:0px;
  10221. width:110px;
  10222. height:23px;
  10223. padding:2px 2px 2px 2px;
  10224. font-family:'ArialMT', 'Arial', sans-serif;
  10225. font-weight:400;
  10226. font-style:normal;
  10227. font-size:11px;
  10228. letter-spacing:normal;
  10229. color:#AAAAAA;
  10230. vertical-align:none;
  10231. text-align:left;
  10232. text-transform:none;
  10233. background-color:transparent;
  10234. border-color:transparent;
  10235. }
  10236. #u9187_input.disabled {
  10237. position:absolute;
  10238. left:0px;
  10239. top:0px;
  10240. width:110px;
  10241. height:23px;
  10242. padding:2px 2px 2px 2px;
  10243. font-family:'ArialMT', 'Arial', sans-serif;
  10244. font-weight:400;
  10245. font-style:normal;
  10246. font-size:11px;
  10247. letter-spacing:normal;
  10248. color:#AAAAAA;
  10249. vertical-align:none;
  10250. text-align:left;
  10251. text-transform:none;
  10252. background-color:transparent;
  10253. border-color:transparent;
  10254. }
  10255. #u9187_div {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:0px;
  10259. top:0px;
  10260. width:110px;
  10261. height:23px;
  10262. background:inherit;
  10263. background-color:rgba(255, 255, 255, 1);
  10264. border:none;
  10265. border-radius:0px;
  10266. -moz-box-shadow:none;
  10267. -webkit-box-shadow:none;
  10268. box-shadow:none;
  10269. font-size:11px;
  10270. color:#AAAAAA;
  10271. }
  10272. #u9187 {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:1935px;
  10276. top:436px;
  10277. width:110px;
  10278. height:23px;
  10279. display:flex;
  10280. font-size:11px;
  10281. color:#AAAAAA;
  10282. }
  10283. #u9187 .text {
  10284. position:absolute;
  10285. align-self:flex-start;
  10286. padding:2px 2px 2px 2px;
  10287. box-sizing:border-box;
  10288. width:100%;
  10289. }
  10290. #u9187_div.disabled {
  10291. border-width:0px;
  10292. position:absolute;
  10293. left:0px;
  10294. top:0px;
  10295. width:110px;
  10296. height:23px;
  10297. background:inherit;
  10298. background-color:rgba(240, 240, 240, 1);
  10299. border:none;
  10300. border-radius:0px;
  10301. -moz-box-shadow:none;
  10302. -webkit-box-shadow:none;
  10303. box-shadow:none;
  10304. font-size:11px;
  10305. color:#AAAAAA;
  10306. }
  10307. #u9187.disabled {
  10308. }
  10309. .u9187_input_option {
  10310. font-size:11px;
  10311. }
  10312. #u9188_div {
  10313. border-width:0px;
  10314. position:absolute;
  10315. left:0px;
  10316. top:0px;
  10317. width:59px;
  10318. height:27px;
  10319. background:inherit;
  10320. background-color:rgba(255, 255, 255, 0);
  10321. border:none;
  10322. border-top:0px;
  10323. border-right:0px;
  10324. border-bottom:0px;
  10325. border-radius:0px;
  10326. border-top-left-radius:0px;
  10327. border-bottom-left-radius:0px;
  10328. -moz-box-shadow:none;
  10329. -webkit-box-shadow:none;
  10330. box-shadow:none;
  10331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10332. font-weight:400;
  10333. font-style:normal;
  10334. font-size:12px;
  10335. }
  10336. #u9188 {
  10337. border-width:0px;
  10338. position:absolute;
  10339. left:2144px;
  10340. top:472px;
  10341. width:59px;
  10342. height:27px;
  10343. display:flex;
  10344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10345. font-weight:400;
  10346. font-style:normal;
  10347. font-size:12px;
  10348. }
  10349. #u9188 .text {
  10350. position:absolute;
  10351. align-self:center;
  10352. padding:5px 10px 5px 0px;
  10353. box-sizing:border-box;
  10354. width:100%;
  10355. }
  10356. #u9188_text {
  10357. border-width:0px;
  10358. white-space:nowrap;
  10359. text-transform:none;
  10360. }
  10361. #u9189 {
  10362. border-width:0px;
  10363. position:absolute;
  10364. left:2144px;
  10365. top:499px;
  10366. width:429px;
  10367. height:111px;
  10368. }
  10369. #u9190_img {
  10370. border-width:0px;
  10371. position:absolute;
  10372. left:0px;
  10373. top:0px;
  10374. width:44px;
  10375. height:38px;
  10376. }
  10377. #u9190 {
  10378. border-width:0px;
  10379. position:absolute;
  10380. left:0px;
  10381. top:0px;
  10382. width:44px;
  10383. height:38px;
  10384. display:flex;
  10385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10386. font-weight:400;
  10387. font-style:normal;
  10388. font-size:12px;
  10389. }
  10390. #u9190 .text {
  10391. position:absolute;
  10392. align-self:center;
  10393. padding:2px 2px 2px 0px;
  10394. box-sizing:border-box;
  10395. width:100%;
  10396. }
  10397. #u9190_text {
  10398. border-width:0px;
  10399. word-wrap:break-word;
  10400. text-transform:none;
  10401. visibility:hidden;
  10402. }
  10403. #u9191_img {
  10404. border-width:0px;
  10405. position:absolute;
  10406. left:0px;
  10407. top:0px;
  10408. width:100px;
  10409. height:38px;
  10410. }
  10411. #u9191 {
  10412. border-width:0px;
  10413. position:absolute;
  10414. left:44px;
  10415. top:0px;
  10416. width:100px;
  10417. height:38px;
  10418. display:flex;
  10419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10420. font-weight:400;
  10421. font-style:normal;
  10422. font-size:12px;
  10423. }
  10424. #u9191 .text {
  10425. position:absolute;
  10426. align-self:center;
  10427. padding:2px 2px 2px 0px;
  10428. box-sizing:border-box;
  10429. width:100%;
  10430. }
  10431. #u9191_text {
  10432. border-width:0px;
  10433. word-wrap:break-word;
  10434. text-transform:none;
  10435. }
  10436. #u9192_img {
  10437. border-width:0px;
  10438. position:absolute;
  10439. left:0px;
  10440. top:0px;
  10441. width:100px;
  10442. height:38px;
  10443. }
  10444. #u9192 {
  10445. border-width:0px;
  10446. position:absolute;
  10447. left:144px;
  10448. top:0px;
  10449. width:100px;
  10450. height:38px;
  10451. display:flex;
  10452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10453. font-weight:400;
  10454. font-style:normal;
  10455. font-size:12px;
  10456. }
  10457. #u9192 .text {
  10458. position:absolute;
  10459. align-self:center;
  10460. padding:2px 2px 2px 0px;
  10461. box-sizing:border-box;
  10462. width:100%;
  10463. }
  10464. #u9192_text {
  10465. border-width:0px;
  10466. word-wrap:break-word;
  10467. text-transform:none;
  10468. }
  10469. #u9193_img {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:0px;
  10473. top:0px;
  10474. width:99px;
  10475. height:38px;
  10476. }
  10477. #u9193 {
  10478. border-width:0px;
  10479. position:absolute;
  10480. left:244px;
  10481. top:0px;
  10482. width:99px;
  10483. height:38px;
  10484. display:flex;
  10485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10486. font-weight:400;
  10487. font-style:normal;
  10488. font-size:12px;
  10489. }
  10490. #u9193 .text {
  10491. position:absolute;
  10492. align-self:center;
  10493. padding:2px 2px 2px 0px;
  10494. box-sizing:border-box;
  10495. width:100%;
  10496. }
  10497. #u9193_text {
  10498. border-width:0px;
  10499. word-wrap:break-word;
  10500. text-transform:none;
  10501. }
  10502. #u9194_img {
  10503. border-width:0px;
  10504. position:absolute;
  10505. left:0px;
  10506. top:0px;
  10507. width:86px;
  10508. height:38px;
  10509. }
  10510. #u9194 {
  10511. border-width:0px;
  10512. position:absolute;
  10513. left:343px;
  10514. top:0px;
  10515. width:86px;
  10516. height:38px;
  10517. display:flex;
  10518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10519. font-weight:400;
  10520. font-style:normal;
  10521. font-size:12px;
  10522. }
  10523. #u9194 .text {
  10524. position:absolute;
  10525. align-self:center;
  10526. padding:2px 2px 2px 0px;
  10527. box-sizing:border-box;
  10528. width:100%;
  10529. }
  10530. #u9194_text {
  10531. border-width:0px;
  10532. word-wrap:break-word;
  10533. text-transform:none;
  10534. }
  10535. #u9195_img {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:0px;
  10539. top:0px;
  10540. width:44px;
  10541. height:38px;
  10542. }
  10543. #u9195 {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:0px;
  10547. top:38px;
  10548. width:44px;
  10549. height:38px;
  10550. display:flex;
  10551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10552. font-weight:400;
  10553. font-style:normal;
  10554. font-size:12px;
  10555. }
  10556. #u9195 .text {
  10557. position:absolute;
  10558. align-self:center;
  10559. padding:2px 2px 2px 0px;
  10560. box-sizing:border-box;
  10561. width:100%;
  10562. }
  10563. #u9195_text {
  10564. border-width:0px;
  10565. word-wrap:break-word;
  10566. text-transform:none;
  10567. visibility:hidden;
  10568. }
  10569. #u9196_img {
  10570. border-width:0px;
  10571. position:absolute;
  10572. left:0px;
  10573. top:0px;
  10574. width:100px;
  10575. height:38px;
  10576. }
  10577. #u9196 {
  10578. border-width:0px;
  10579. position:absolute;
  10580. left:44px;
  10581. top:38px;
  10582. width:100px;
  10583. height:38px;
  10584. display:flex;
  10585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10586. font-weight:400;
  10587. font-style:normal;
  10588. font-size:12px;
  10589. }
  10590. #u9196 .text {
  10591. position:absolute;
  10592. align-self:center;
  10593. padding:2px 2px 2px 0px;
  10594. box-sizing:border-box;
  10595. width:100%;
  10596. }
  10597. #u9196_text {
  10598. border-width:0px;
  10599. word-wrap:break-word;
  10600. text-transform:none;
  10601. visibility:hidden;
  10602. }
  10603. #u9197_img {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:0px;
  10607. top:0px;
  10608. width:100px;
  10609. height:38px;
  10610. }
  10611. #u9197 {
  10612. border-width:0px;
  10613. position:absolute;
  10614. left:144px;
  10615. top:38px;
  10616. width:100px;
  10617. height:38px;
  10618. display:flex;
  10619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10620. font-weight:400;
  10621. font-style:normal;
  10622. font-size:12px;
  10623. color:#333333;
  10624. }
  10625. #u9197 .text {
  10626. position:absolute;
  10627. align-self:center;
  10628. padding:2px 2px 2px 0px;
  10629. box-sizing:border-box;
  10630. width:100%;
  10631. }
  10632. #u9197_text {
  10633. border-width:0px;
  10634. word-wrap:break-word;
  10635. text-transform:none;
  10636. visibility:hidden;
  10637. }
  10638. #u9198_img {
  10639. border-width:0px;
  10640. position:absolute;
  10641. left:0px;
  10642. top:0px;
  10643. width:99px;
  10644. height:38px;
  10645. }
  10646. #u9198 {
  10647. border-width:0px;
  10648. position:absolute;
  10649. left:244px;
  10650. top:38px;
  10651. width:99px;
  10652. height:38px;
  10653. display:flex;
  10654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10655. font-weight:400;
  10656. font-style:normal;
  10657. font-size:12px;
  10658. color:#333333;
  10659. }
  10660. #u9198 .text {
  10661. position:absolute;
  10662. align-self:center;
  10663. padding:2px 2px 2px 0px;
  10664. box-sizing:border-box;
  10665. width:100%;
  10666. }
  10667. #u9198_text {
  10668. border-width:0px;
  10669. word-wrap:break-word;
  10670. text-transform:none;
  10671. visibility:hidden;
  10672. }
  10673. #u9199_img {
  10674. border-width:0px;
  10675. position:absolute;
  10676. left:0px;
  10677. top:0px;
  10678. width:86px;
  10679. height:38px;
  10680. }
  10681. #u9199 {
  10682. border-width:0px;
  10683. position:absolute;
  10684. left:343px;
  10685. top:38px;
  10686. width:86px;
  10687. height:38px;
  10688. display:flex;
  10689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10690. font-weight:400;
  10691. font-style:normal;
  10692. font-size:12px;
  10693. color:#333333;
  10694. }
  10695. #u9199 .text {
  10696. position:absolute;
  10697. align-self:center;
  10698. padding:2px 2px 2px 0px;
  10699. box-sizing:border-box;
  10700. width:100%;
  10701. }
  10702. #u9199_text {
  10703. border-width:0px;
  10704. word-wrap:break-word;
  10705. text-transform:none;
  10706. visibility:hidden;
  10707. }
  10708. #u9200_img {
  10709. border-width:0px;
  10710. position:absolute;
  10711. left:0px;
  10712. top:0px;
  10713. width:44px;
  10714. height:35px;
  10715. }
  10716. #u9200 {
  10717. border-width:0px;
  10718. position:absolute;
  10719. left:0px;
  10720. top:76px;
  10721. width:44px;
  10722. height:35px;
  10723. display:flex;
  10724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10725. font-weight:400;
  10726. font-style:normal;
  10727. font-size:12px;
  10728. color:#606266;
  10729. }
  10730. #u9200 .text {
  10731. position:absolute;
  10732. align-self:center;
  10733. padding:2px 2px 2px 0px;
  10734. box-sizing:border-box;
  10735. width:100%;
  10736. }
  10737. #u9200_text {
  10738. border-width:0px;
  10739. word-wrap:break-word;
  10740. text-transform:none;
  10741. visibility:hidden;
  10742. }
  10743. #u9201_img {
  10744. border-width:0px;
  10745. position:absolute;
  10746. left:0px;
  10747. top:0px;
  10748. width:100px;
  10749. height:35px;
  10750. }
  10751. #u9201 {
  10752. border-width:0px;
  10753. position:absolute;
  10754. left:44px;
  10755. top:76px;
  10756. width:100px;
  10757. height:35px;
  10758. display:flex;
  10759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10760. font-weight:400;
  10761. font-style:normal;
  10762. font-size:12px;
  10763. color:#606266;
  10764. }
  10765. #u9201 .text {
  10766. position:absolute;
  10767. align-self:center;
  10768. padding:2px 2px 2px 0px;
  10769. box-sizing:border-box;
  10770. width:100%;
  10771. }
  10772. #u9201_text {
  10773. border-width:0px;
  10774. word-wrap:break-word;
  10775. text-transform:none;
  10776. visibility:hidden;
  10777. }
  10778. #u9202_img {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:0px;
  10782. top:0px;
  10783. width:100px;
  10784. height:35px;
  10785. }
  10786. #u9202 {
  10787. border-width:0px;
  10788. position:absolute;
  10789. left:144px;
  10790. top:76px;
  10791. width:100px;
  10792. height:35px;
  10793. display:flex;
  10794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10795. font-weight:400;
  10796. font-style:normal;
  10797. font-size:12px;
  10798. color:#606266;
  10799. }
  10800. #u9202 .text {
  10801. position:absolute;
  10802. align-self:center;
  10803. padding:2px 2px 2px 0px;
  10804. box-sizing:border-box;
  10805. width:100%;
  10806. }
  10807. #u9202_text {
  10808. border-width:0px;
  10809. word-wrap:break-word;
  10810. text-transform:none;
  10811. visibility:hidden;
  10812. }
  10813. #u9203_img {
  10814. border-width:0px;
  10815. position:absolute;
  10816. left:0px;
  10817. top:0px;
  10818. width:99px;
  10819. height:35px;
  10820. }
  10821. #u9203 {
  10822. border-width:0px;
  10823. position:absolute;
  10824. left:244px;
  10825. top:76px;
  10826. width:99px;
  10827. height:35px;
  10828. display:flex;
  10829. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10830. font-weight:400;
  10831. font-style:normal;
  10832. font-size:12px;
  10833. color:#606266;
  10834. }
  10835. #u9203 .text {
  10836. position:absolute;
  10837. align-self:center;
  10838. padding:2px 2px 2px 0px;
  10839. box-sizing:border-box;
  10840. width:100%;
  10841. }
  10842. #u9203_text {
  10843. border-width:0px;
  10844. word-wrap:break-word;
  10845. text-transform:none;
  10846. visibility:hidden;
  10847. }
  10848. #u9204_img {
  10849. border-width:0px;
  10850. position:absolute;
  10851. left:0px;
  10852. top:0px;
  10853. width:86px;
  10854. height:35px;
  10855. }
  10856. #u9204 {
  10857. border-width:0px;
  10858. position:absolute;
  10859. left:343px;
  10860. top:76px;
  10861. width:86px;
  10862. height:35px;
  10863. display:flex;
  10864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10865. font-weight:400;
  10866. font-style:normal;
  10867. font-size:12px;
  10868. color:#606266;
  10869. }
  10870. #u9204 .text {
  10871. position:absolute;
  10872. align-self:center;
  10873. padding:2px 2px 2px 0px;
  10874. box-sizing:border-box;
  10875. width:100%;
  10876. }
  10877. #u9204_text {
  10878. border-width:0px;
  10879. word-wrap:break-word;
  10880. text-transform:none;
  10881. visibility:hidden;
  10882. }
  10883. #u9205 {
  10884. border-width:0px;
  10885. position:absolute;
  10886. left:0px;
  10887. top:0px;
  10888. width:0px;
  10889. height:0px;
  10890. }
  10891. #u9206_div {
  10892. border-width:0px;
  10893. position:absolute;
  10894. left:0px;
  10895. top:0px;
  10896. width:120px;
  10897. height:30px;
  10898. background:inherit;
  10899. background-color:rgba(255, 255, 255, 1);
  10900. box-sizing:border-box;
  10901. border-width:1px;
  10902. border-style:solid;
  10903. border-color:rgba(215, 215, 215, 1);
  10904. border-radius:4px;
  10905. -moz-box-shadow:none;
  10906. -webkit-box-shadow:none;
  10907. box-shadow:none;
  10908. font-size:11px;
  10909. }
  10910. #u9206 {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:2060px;
  10914. top:436px;
  10915. width:120px;
  10916. height:30px;
  10917. display:flex;
  10918. font-size:11px;
  10919. }
  10920. #u9206 .text {
  10921. position:absolute;
  10922. align-self:center;
  10923. padding:2px 2px 2px 2px;
  10924. box-sizing:border-box;
  10925. width:100%;
  10926. }
  10927. #u9206_text {
  10928. border-width:0px;
  10929. word-wrap:break-word;
  10930. text-transform:none;
  10931. visibility:hidden;
  10932. }
  10933. #u9207_input {
  10934. position:absolute;
  10935. left:0px;
  10936. top:0px;
  10937. width:110px;
  10938. height:23px;
  10939. padding:2px 2px 2px 2px;
  10940. font-family:'ArialMT', 'Arial', sans-serif;
  10941. font-weight:400;
  10942. font-style:normal;
  10943. font-size:11px;
  10944. letter-spacing:normal;
  10945. color:#AAAAAA;
  10946. vertical-align:none;
  10947. text-align:left;
  10948. text-transform:none;
  10949. background-color:transparent;
  10950. border-color:transparent;
  10951. }
  10952. #u9207_input.disabled {
  10953. position:absolute;
  10954. left:0px;
  10955. top:0px;
  10956. width:110px;
  10957. height:23px;
  10958. padding:2px 2px 2px 2px;
  10959. font-family:'ArialMT', 'Arial', sans-serif;
  10960. font-weight:400;
  10961. font-style:normal;
  10962. font-size:11px;
  10963. letter-spacing:normal;
  10964. color:#AAAAAA;
  10965. vertical-align:none;
  10966. text-align:left;
  10967. text-transform:none;
  10968. background-color:transparent;
  10969. border-color:transparent;
  10970. }
  10971. #u9207_div {
  10972. border-width:0px;
  10973. position:absolute;
  10974. left:0px;
  10975. top:0px;
  10976. width:110px;
  10977. height:23px;
  10978. background:inherit;
  10979. background-color:rgba(255, 255, 255, 1);
  10980. border:none;
  10981. border-radius:0px;
  10982. -moz-box-shadow:none;
  10983. -webkit-box-shadow:none;
  10984. box-shadow:none;
  10985. font-size:11px;
  10986. color:#AAAAAA;
  10987. }
  10988. #u9207 {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:2065px;
  10992. top:438px;
  10993. width:110px;
  10994. height:23px;
  10995. display:flex;
  10996. font-size:11px;
  10997. color:#AAAAAA;
  10998. }
  10999. #u9207 .text {
  11000. position:absolute;
  11001. align-self:flex-start;
  11002. padding:2px 2px 2px 2px;
  11003. box-sizing:border-box;
  11004. width:100%;
  11005. }
  11006. #u9207_div.disabled {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:0px;
  11010. top:0px;
  11011. width:110px;
  11012. height:23px;
  11013. background:inherit;
  11014. background-color:rgba(240, 240, 240, 1);
  11015. border:none;
  11016. border-radius:0px;
  11017. -moz-box-shadow:none;
  11018. -webkit-box-shadow:none;
  11019. box-shadow:none;
  11020. font-size:11px;
  11021. color:#AAAAAA;
  11022. }
  11023. #u9207.disabled {
  11024. }
  11025. .u9207_input_option {
  11026. font-size:11px;
  11027. }
  11028. #u9208 {
  11029. border-width:0px;
  11030. position:absolute;
  11031. left:0px;
  11032. top:0px;
  11033. width:0px;
  11034. height:0px;
  11035. }
  11036. #u9209 {
  11037. border-width:0px;
  11038. position:absolute;
  11039. left:0px;
  11040. top:0px;
  11041. width:0px;
  11042. height:0px;
  11043. }
  11044. #u9210_img {
  11045. border-width:0px;
  11046. position:absolute;
  11047. left:0px;
  11048. top:0px;
  11049. width:7px;
  11050. height:12px;
  11051. }
  11052. #u9210 {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:2105px;
  11056. top:567px;
  11057. width:7px;
  11058. height:12px;
  11059. display:flex;
  11060. }
  11061. #u9210 .text {
  11062. position:absolute;
  11063. align-self:center;
  11064. padding:2px 2px 2px 2px;
  11065. box-sizing:border-box;
  11066. width:100%;
  11067. }
  11068. #u9210_text {
  11069. border-width:0px;
  11070. word-wrap:break-word;
  11071. text-transform:none;
  11072. visibility:hidden;
  11073. }
  11074. #u9211_div {
  11075. border-width:0px;
  11076. position:absolute;
  11077. left:0px;
  11078. top:0px;
  11079. width:30px;
  11080. height:30px;
  11081. background:inherit;
  11082. background-color:rgba(255, 255, 255, 1);
  11083. box-sizing:border-box;
  11084. border-width:1px;
  11085. border-style:solid;
  11086. border-color:rgba(121, 121, 121, 1);
  11087. border-radius:4px;
  11088. -moz-box-shadow:none;
  11089. -webkit-box-shadow:none;
  11090. box-shadow:none;
  11091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11092. font-weight:400;
  11093. font-style:normal;
  11094. font-size:12px;
  11095. color:#FFFFFF;
  11096. }
  11097. #u9211 {
  11098. border-width:0px;
  11099. position:absolute;
  11100. left:2094px;
  11101. top:558px;
  11102. width:30px;
  11103. height:30px;
  11104. display:flex;
  11105. opacity:0.3;
  11106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11107. font-weight:400;
  11108. font-style:normal;
  11109. font-size:12px;
  11110. color:#FFFFFF;
  11111. }
  11112. #u9211 .text {
  11113. position:absolute;
  11114. align-self:center;
  11115. padding:2px 2px 2px 2px;
  11116. box-sizing:border-box;
  11117. width:100%;
  11118. }
  11119. #u9211_text {
  11120. border-width:0px;
  11121. word-wrap:break-word;
  11122. text-transform:none;
  11123. visibility:hidden;
  11124. }
  11125. #u9212 {
  11126. border-width:0px;
  11127. position:absolute;
  11128. left:0px;
  11129. top:0px;
  11130. width:0px;
  11131. height:0px;
  11132. }
  11133. #u9213_div {
  11134. border-width:0px;
  11135. position:absolute;
  11136. left:0px;
  11137. top:0px;
  11138. width:30px;
  11139. height:30px;
  11140. background:inherit;
  11141. background-color:rgba(255, 255, 255, 1);
  11142. box-sizing:border-box;
  11143. border-width:1px;
  11144. border-style:solid;
  11145. border-color:rgba(121, 121, 121, 1);
  11146. border-radius:4px;
  11147. -moz-box-shadow:none;
  11148. -webkit-box-shadow:none;
  11149. box-shadow:none;
  11150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11151. font-weight:400;
  11152. font-style:normal;
  11153. font-size:12px;
  11154. color:#FFFFFF;
  11155. }
  11156. #u9213 {
  11157. border-width:0px;
  11158. position:absolute;
  11159. left:2094px;
  11160. top:598px;
  11161. width:30px;
  11162. height:30px;
  11163. display:flex;
  11164. opacity:0.3;
  11165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11166. font-weight:400;
  11167. font-style:normal;
  11168. font-size:12px;
  11169. color:#FFFFFF;
  11170. }
  11171. #u9213 .text {
  11172. position:absolute;
  11173. align-self:center;
  11174. padding:2px 2px 2px 2px;
  11175. box-sizing:border-box;
  11176. width:100%;
  11177. }
  11178. #u9213_text {
  11179. border-width:0px;
  11180. word-wrap:break-word;
  11181. text-transform:none;
  11182. visibility:hidden;
  11183. }
  11184. #u9214_img {
  11185. border-width:0px;
  11186. position:absolute;
  11187. left:0px;
  11188. top:0px;
  11189. width:7px;
  11190. height:12px;
  11191. }
  11192. #u9214 {
  11193. border-width:0px;
  11194. position:absolute;
  11195. left:2106px;
  11196. top:607px;
  11197. width:7px;
  11198. height:12px;
  11199. display:flex;
  11200. }
  11201. #u9214 .text {
  11202. position:absolute;
  11203. align-self:center;
  11204. padding:2px 2px 2px 2px;
  11205. box-sizing:border-box;
  11206. width:100%;
  11207. }
  11208. #u9214_text {
  11209. border-width:0px;
  11210. word-wrap:break-word;
  11211. text-transform:none;
  11212. visibility:hidden;
  11213. }
  11214. #u9215 {
  11215. border-width:0px;
  11216. position:absolute;
  11217. left:0px;
  11218. top:0px;
  11219. width:0px;
  11220. height:0px;
  11221. }
  11222. #u9216_div {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:0px;
  11226. top:0px;
  11227. width:120px;
  11228. height:30px;
  11229. background:inherit;
  11230. background-color:rgba(255, 255, 255, 1);
  11231. box-sizing:border-box;
  11232. border-width:1px;
  11233. border-style:solid;
  11234. border-color:rgba(215, 215, 215, 1);
  11235. border-radius:4px;
  11236. -moz-box-shadow:none;
  11237. -webkit-box-shadow:none;
  11238. box-shadow:none;
  11239. font-size:11px;
  11240. }
  11241. #u9216 {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:1800px;
  11245. top:434px;
  11246. width:120px;
  11247. height:30px;
  11248. display:flex;
  11249. font-size:11px;
  11250. }
  11251. #u9216 .text {
  11252. position:absolute;
  11253. align-self:center;
  11254. padding:2px 2px 2px 2px;
  11255. box-sizing:border-box;
  11256. width:100%;
  11257. }
  11258. #u9216_text {
  11259. border-width:0px;
  11260. word-wrap:break-word;
  11261. text-transform:none;
  11262. visibility:hidden;
  11263. }
  11264. #u9217_input {
  11265. position:absolute;
  11266. left:0px;
  11267. top:0px;
  11268. width:110px;
  11269. height:23px;
  11270. padding:2px 2px 2px 2px;
  11271. font-family:'ArialMT', 'Arial', sans-serif;
  11272. font-weight:400;
  11273. font-style:normal;
  11274. font-size:11px;
  11275. letter-spacing:normal;
  11276. color:#AAAAAA;
  11277. vertical-align:none;
  11278. text-align:left;
  11279. text-transform:none;
  11280. background-color:transparent;
  11281. border-color:transparent;
  11282. }
  11283. #u9217_input.disabled {
  11284. position:absolute;
  11285. left:0px;
  11286. top:0px;
  11287. width:110px;
  11288. height:23px;
  11289. padding:2px 2px 2px 2px;
  11290. font-family:'ArialMT', 'Arial', sans-serif;
  11291. font-weight:400;
  11292. font-style:normal;
  11293. font-size:11px;
  11294. letter-spacing:normal;
  11295. color:#AAAAAA;
  11296. vertical-align:none;
  11297. text-align:left;
  11298. text-transform:none;
  11299. background-color:transparent;
  11300. border-color:transparent;
  11301. }
  11302. #u9217_div {
  11303. border-width:0px;
  11304. position:absolute;
  11305. left:0px;
  11306. top:0px;
  11307. width:110px;
  11308. height:23px;
  11309. background:inherit;
  11310. background-color:rgba(255, 255, 255, 1);
  11311. border:none;
  11312. border-radius:0px;
  11313. -moz-box-shadow:none;
  11314. -webkit-box-shadow:none;
  11315. box-shadow:none;
  11316. font-size:11px;
  11317. color:#AAAAAA;
  11318. }
  11319. #u9217 {
  11320. border-width:0px;
  11321. position:absolute;
  11322. left:1805px;
  11323. top:436px;
  11324. width:110px;
  11325. height:23px;
  11326. display:flex;
  11327. font-size:11px;
  11328. color:#AAAAAA;
  11329. }
  11330. #u9217 .text {
  11331. position:absolute;
  11332. align-self:flex-start;
  11333. padding:2px 2px 2px 2px;
  11334. box-sizing:border-box;
  11335. width:100%;
  11336. }
  11337. #u9217_div.disabled {
  11338. border-width:0px;
  11339. position:absolute;
  11340. left:0px;
  11341. top:0px;
  11342. width:110px;
  11343. height:23px;
  11344. background:inherit;
  11345. background-color:rgba(240, 240, 240, 1);
  11346. border:none;
  11347. border-radius:0px;
  11348. -moz-box-shadow:none;
  11349. -webkit-box-shadow:none;
  11350. box-shadow:none;
  11351. font-size:11px;
  11352. color:#AAAAAA;
  11353. }
  11354. #u9217.disabled {
  11355. }
  11356. .u9217_input_option {
  11357. font-size:11px;
  11358. }
  11359. #u9218_div {
  11360. border-width:0px;
  11361. position:absolute;
  11362. left:0px;
  11363. top:0px;
  11364. width:59px;
  11365. height:27px;
  11366. background:inherit;
  11367. background-color:rgba(255, 255, 255, 0);
  11368. border:none;
  11369. border-top:0px;
  11370. border-right:0px;
  11371. border-bottom:0px;
  11372. border-radius:0px;
  11373. border-top-left-radius:0px;
  11374. border-bottom-left-radius:0px;
  11375. -moz-box-shadow:none;
  11376. -webkit-box-shadow:none;
  11377. box-shadow:none;
  11378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11379. font-weight:400;
  11380. font-style:normal;
  11381. font-size:12px;
  11382. }
  11383. #u9218 {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:1670px;
  11387. top:472px;
  11388. width:59px;
  11389. height:27px;
  11390. display:flex;
  11391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11392. font-weight:400;
  11393. font-style:normal;
  11394. font-size:12px;
  11395. }
  11396. #u9218 .text {
  11397. position:absolute;
  11398. align-self:center;
  11399. padding:5px 10px 5px 0px;
  11400. box-sizing:border-box;
  11401. width:100%;
  11402. }
  11403. #u9218_text {
  11404. border-width:0px;
  11405. white-space:nowrap;
  11406. text-transform:none;
  11407. }
  11408. #u9219 {
  11409. border-width:0px;
  11410. position:absolute;
  11411. left:0px;
  11412. top:0px;
  11413. width:0px;
  11414. height:0px;
  11415. }
  11416. #u9220_div {
  11417. border-width:0px;
  11418. position:absolute;
  11419. left:0px;
  11420. top:0px;
  11421. width:960px;
  11422. height:60px;
  11423. background:inherit;
  11424. background-color:rgba(255, 255, 255, 1);
  11425. box-sizing:border-box;
  11426. border-width:1px;
  11427. border-style:solid;
  11428. border-color:rgba(215, 215, 215, 1);
  11429. border-radius:0px;
  11430. -moz-box-shadow:none;
  11431. -webkit-box-shadow:none;
  11432. box-shadow:none;
  11433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11434. font-weight:400;
  11435. font-style:normal;
  11436. font-size:14px;
  11437. color:#AAAAAA;
  11438. text-align:center;
  11439. line-height:30px;
  11440. }
  11441. #u9220 {
  11442. border-width:0px;
  11443. position:absolute;
  11444. left:1640px;
  11445. top:870px;
  11446. width:960px;
  11447. height:60px;
  11448. display:flex;
  11449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11450. font-weight:400;
  11451. font-style:normal;
  11452. font-size:14px;
  11453. color:#AAAAAA;
  11454. text-align:center;
  11455. line-height:30px;
  11456. }
  11457. #u9220 .text {
  11458. position:absolute;
  11459. align-self:center;
  11460. padding:5px 10px 5px 10px;
  11461. box-sizing:border-box;
  11462. width:100%;
  11463. }
  11464. #u9220_text {
  11465. border-width:0px;
  11466. word-wrap:break-word;
  11467. text-transform:none;
  11468. visibility:hidden;
  11469. }
  11470. #u9221_div {
  11471. border-width:0px;
  11472. position:absolute;
  11473. left:0px;
  11474. top:0px;
  11475. width:80px;
  11476. height:30px;
  11477. background:inherit;
  11478. background-color:rgba(24, 144, 255, 1);
  11479. border:none;
  11480. border-radius:4px;
  11481. -moz-box-shadow:none;
  11482. -webkit-box-shadow:none;
  11483. box-shadow:none;
  11484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11485. font-weight:400;
  11486. font-style:normal;
  11487. font-size:14px;
  11488. color:#FFFFFF;
  11489. }
  11490. #u9221 {
  11491. border-width:0px;
  11492. position:absolute;
  11493. left:2490px;
  11494. top:885px;
  11495. width:80px;
  11496. height:30px;
  11497. display:flex;
  11498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11499. font-weight:400;
  11500. font-style:normal;
  11501. font-size:14px;
  11502. color:#FFFFFF;
  11503. }
  11504. #u9221 .text {
  11505. position:absolute;
  11506. align-self:center;
  11507. padding:2px 2px 2px 2px;
  11508. box-sizing:border-box;
  11509. width:100%;
  11510. }
  11511. #u9221_text {
  11512. border-width:0px;
  11513. word-wrap:break-word;
  11514. text-transform:none;
  11515. }
  11516. #u9222_div {
  11517. border-width:0px;
  11518. position:absolute;
  11519. left:0px;
  11520. top:0px;
  11521. width:80px;
  11522. height:30px;
  11523. background:inherit;
  11524. background-color:rgba(255, 255, 255, 1);
  11525. box-sizing:border-box;
  11526. border-width:1px;
  11527. border-style:solid;
  11528. border-color:rgba(170, 170, 170, 1);
  11529. border-radius:4px;
  11530. -moz-box-shadow:none;
  11531. -webkit-box-shadow:none;
  11532. box-shadow:none;
  11533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11534. font-weight:400;
  11535. font-style:normal;
  11536. font-size:14px;
  11537. }
  11538. #u9222 {
  11539. border-width:0px;
  11540. position:absolute;
  11541. left:2390px;
  11542. top:885px;
  11543. width:80px;
  11544. height:30px;
  11545. display:flex;
  11546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11547. font-weight:400;
  11548. font-style:normal;
  11549. font-size:14px;
  11550. }
  11551. #u9222 .text {
  11552. position:absolute;
  11553. align-self:center;
  11554. padding:2px 2px 2px 2px;
  11555. box-sizing:border-box;
  11556. width:100%;
  11557. }
  11558. #u9222_text {
  11559. border-width:0px;
  11560. word-wrap:break-word;
  11561. text-transform:none;
  11562. }
  11563. #u9223_div {
  11564. border-width:0px;
  11565. position:absolute;
  11566. left:0px;
  11567. top:0px;
  11568. width:575px;
  11569. height:17px;
  11570. background:inherit;
  11571. background-color:rgba(255, 255, 255, 0);
  11572. border:none;
  11573. border-radius:0px;
  11574. -moz-box-shadow:none;
  11575. -webkit-box-shadow:none;
  11576. box-shadow:none;
  11577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11578. font-weight:400;
  11579. font-style:normal;
  11580. font-size:12px;
  11581. color:#D9001B;
  11582. }
  11583. #u9223 {
  11584. border-width:0px;
  11585. position:absolute;
  11586. left:1880px;
  11587. top:377px;
  11588. width:575px;
  11589. height:17px;
  11590. display:flex;
  11591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11592. font-weight:400;
  11593. font-style:normal;
  11594. font-size:12px;
  11595. color:#D9001B;
  11596. }
  11597. #u9223 .text {
  11598. position:absolute;
  11599. align-self:flex-start;
  11600. padding:0px 0px 0px 0px;
  11601. box-sizing:border-box;
  11602. width:100%;
  11603. }
  11604. #u9223_text {
  11605. border-width:0px;
  11606. white-space:nowrap;
  11607. text-transform:none;
  11608. }
  11609. #u9224 {
  11610. border-width:0px;
  11611. position:absolute;
  11612. left:0px;
  11613. top:0px;
  11614. width:0px;
  11615. height:0px;
  11616. }
  11617. #u9225_div {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:0px;
  11621. top:0px;
  11622. width:120px;
  11623. height:30px;
  11624. background:inherit;
  11625. background-color:rgba(242, 242, 242, 1);
  11626. box-sizing:border-box;
  11627. border-width:1px;
  11628. border-style:solid;
  11629. border-color:rgba(215, 215, 215, 1);
  11630. border-radius:4px;
  11631. -moz-box-shadow:none;
  11632. -webkit-box-shadow:none;
  11633. box-shadow:none;
  11634. font-size:11px;
  11635. }
  11636. #u9225 {
  11637. border-width:0px;
  11638. position:absolute;
  11639. left:1670px;
  11640. top:434px;
  11641. width:120px;
  11642. height:30px;
  11643. display:flex;
  11644. font-size:11px;
  11645. }
  11646. #u9225 .text {
  11647. position:absolute;
  11648. align-self:center;
  11649. padding:2px 2px 2px 2px;
  11650. box-sizing:border-box;
  11651. width:100%;
  11652. }
  11653. #u9225_text {
  11654. border-width:0px;
  11655. word-wrap:break-word;
  11656. text-transform:none;
  11657. visibility:hidden;
  11658. }
  11659. #u9226_input {
  11660. position:absolute;
  11661. left:0px;
  11662. top:0px;
  11663. width:110px;
  11664. height:23px;
  11665. padding:2px 2px 2px 2px;
  11666. font-family:'ArialMT', 'Arial', sans-serif;
  11667. font-weight:400;
  11668. font-style:normal;
  11669. font-size:11px;
  11670. letter-spacing:normal;
  11671. color:#AAAAAA;
  11672. vertical-align:none;
  11673. text-align:left;
  11674. text-transform:none;
  11675. background-color:transparent;
  11676. border-color:transparent;
  11677. }
  11678. #u9226_input.disabled {
  11679. position:absolute;
  11680. left:0px;
  11681. top:0px;
  11682. width:110px;
  11683. height:23px;
  11684. padding:2px 2px 2px 2px;
  11685. font-family:'ArialMT', 'Arial', sans-serif;
  11686. font-weight:400;
  11687. font-style:normal;
  11688. font-size:11px;
  11689. letter-spacing:normal;
  11690. color:#AAAAAA;
  11691. vertical-align:none;
  11692. text-align:left;
  11693. text-transform:none;
  11694. background-color:transparent;
  11695. border-color:transparent;
  11696. }
  11697. #u9226_div {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:0px;
  11701. top:0px;
  11702. width:110px;
  11703. height:23px;
  11704. background:inherit;
  11705. background-color:rgba(242, 242, 242, 1);
  11706. border:none;
  11707. border-radius:0px;
  11708. -moz-box-shadow:none;
  11709. -webkit-box-shadow:none;
  11710. box-shadow:none;
  11711. font-size:11px;
  11712. color:#AAAAAA;
  11713. }
  11714. #u9226 {
  11715. border-width:0px;
  11716. position:absolute;
  11717. left:1675px;
  11718. top:436px;
  11719. width:110px;
  11720. height:23px;
  11721. display:flex;
  11722. font-size:11px;
  11723. color:#AAAAAA;
  11724. }
  11725. #u9226 .text {
  11726. position:absolute;
  11727. align-self:flex-start;
  11728. padding:2px 2px 2px 2px;
  11729. box-sizing:border-box;
  11730. width:100%;
  11731. }
  11732. #u9226_div.disabled {
  11733. border-width:0px;
  11734. position:absolute;
  11735. left:0px;
  11736. top:0px;
  11737. width:110px;
  11738. height:23px;
  11739. background:inherit;
  11740. background-color:rgba(240, 240, 240, 1);
  11741. border:none;
  11742. border-radius:0px;
  11743. -moz-box-shadow:none;
  11744. -webkit-box-shadow:none;
  11745. box-shadow:none;
  11746. font-size:11px;
  11747. color:#AAAAAA;
  11748. }
  11749. #u9226.disabled {
  11750. }
  11751. .u9226_input_option {
  11752. font-size:11px;
  11753. }
  11754. #u9227 {
  11755. border-width:0px;
  11756. position:absolute;
  11757. left:0px;
  11758. top:0px;
  11759. width:0px;
  11760. height:0px;
  11761. }
  11762. #u9228 {
  11763. border-width:0px;
  11764. position:absolute;
  11765. left:0px;
  11766. top:0px;
  11767. width:0px;
  11768. height:0px;
  11769. }
  11770. #u9229_div {
  11771. border-width:0px;
  11772. position:absolute;
  11773. left:0px;
  11774. top:0px;
  11775. width:120px;
  11776. height:30px;
  11777. background:inherit;
  11778. background-color:rgba(255, 255, 255, 1);
  11779. box-sizing:border-box;
  11780. border-width:1px;
  11781. border-style:solid;
  11782. border-color:rgba(201, 201, 201, 1);
  11783. border-radius:4px;
  11784. -moz-box-shadow:none;
  11785. -webkit-box-shadow:none;
  11786. box-shadow:none;
  11787. font-family:'Microsoft YaHei', sans-serif;
  11788. font-weight:400;
  11789. font-style:normal;
  11790. font-size:12px;
  11791. color:#CCCCCC;
  11792. text-align:left;
  11793. }
  11794. #u9229 {
  11795. border-width:0px;
  11796. position:absolute;
  11797. left:2320px;
  11798. top:436px;
  11799. width:120px;
  11800. height:30px;
  11801. display:flex;
  11802. font-family:'Microsoft YaHei', sans-serif;
  11803. font-weight:400;
  11804. font-style:normal;
  11805. font-size:12px;
  11806. color:#CCCCCC;
  11807. text-align:left;
  11808. }
  11809. #u9229 .text {
  11810. position:absolute;
  11811. align-self:center;
  11812. padding:2px 8px 2px 8px;
  11813. box-sizing:border-box;
  11814. width:100%;
  11815. }
  11816. #u9229_text {
  11817. border-width:0px;
  11818. word-wrap:break-word;
  11819. text-transform:none;
  11820. visibility:hidden;
  11821. }
  11822. #u9230_input {
  11823. position:absolute;
  11824. left:0px;
  11825. top:0px;
  11826. width:107px;
  11827. height:25px;
  11828. padding:2px 2px 2px 2px;
  11829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11830. font-weight:400;
  11831. font-style:normal;
  11832. font-size:12px;
  11833. letter-spacing:normal;
  11834. color:#D7D7D7;
  11835. vertical-align:none;
  11836. text-align:left;
  11837. text-transform:none;
  11838. background-color:transparent;
  11839. border-color:transparent;
  11840. }
  11841. #u9230_input.disabled {
  11842. position:absolute;
  11843. left:0px;
  11844. top:0px;
  11845. width:107px;
  11846. height:25px;
  11847. padding:2px 2px 2px 2px;
  11848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11849. font-weight:400;
  11850. font-style:normal;
  11851. font-size:12px;
  11852. letter-spacing:normal;
  11853. color:#D7D7D7;
  11854. vertical-align:none;
  11855. text-align:left;
  11856. text-transform:none;
  11857. background-color:transparent;
  11858. border-color:transparent;
  11859. }
  11860. #u9230_div {
  11861. border-width:0px;
  11862. position:absolute;
  11863. left:0px;
  11864. top:0px;
  11865. width:107px;
  11866. height:25px;
  11867. background:inherit;
  11868. background-color:rgba(255, 255, 255, 0);
  11869. border:none;
  11870. border-radius:0px;
  11871. -moz-box-shadow:none;
  11872. -webkit-box-shadow:none;
  11873. box-shadow:none;
  11874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11875. font-weight:400;
  11876. font-style:normal;
  11877. font-size:12px;
  11878. color:#D7D7D7;
  11879. }
  11880. #u9230 {
  11881. border-width:0px;
  11882. position:absolute;
  11883. left:2325px;
  11884. top:439px;
  11885. width:107px;
  11886. height:25px;
  11887. display:flex;
  11888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11889. font-weight:400;
  11890. font-style:normal;
  11891. font-size:12px;
  11892. color:#D7D7D7;
  11893. }
  11894. #u9230 .text {
  11895. position:absolute;
  11896. align-self:center;
  11897. padding:2px 2px 2px 2px;
  11898. box-sizing:border-box;
  11899. width:100%;
  11900. }
  11901. #u9230_div.disabled {
  11902. border-width:0px;
  11903. position:absolute;
  11904. left:0px;
  11905. top:0px;
  11906. width:107px;
  11907. height:25px;
  11908. background:inherit;
  11909. background-color:rgba(240, 240, 240, 1);
  11910. border:none;
  11911. border-radius:0px;
  11912. -moz-box-shadow:none;
  11913. -webkit-box-shadow:none;
  11914. box-shadow:none;
  11915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11916. font-weight:400;
  11917. font-style:normal;
  11918. font-size:12px;
  11919. color:#D7D7D7;
  11920. }
  11921. #u9230.disabled {
  11922. }
  11923. #u9231_div {
  11924. border-width:0px;
  11925. position:absolute;
  11926. left:0px;
  11927. top:0px;
  11928. width:60px;
  11929. height:30px;
  11930. background:inherit;
  11931. background-color:rgba(255, 255, 255, 1);
  11932. box-sizing:border-box;
  11933. border-width:1px;
  11934. border-style:solid;
  11935. border-color:rgba(170, 170, 170, 1);
  11936. border-radius:4px;
  11937. -moz-box-shadow:none;
  11938. -webkit-box-shadow:none;
  11939. box-shadow:none;
  11940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11941. font-weight:400;
  11942. font-style:normal;
  11943. font-size:14px;
  11944. }
  11945. #u9231 {
  11946. border-width:0px;
  11947. position:absolute;
  11948. left:2520px;
  11949. top:436px;
  11950. width:60px;
  11951. height:30px;
  11952. display:flex;
  11953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11954. font-weight:400;
  11955. font-style:normal;
  11956. font-size:14px;
  11957. }
  11958. #u9231 .text {
  11959. position:absolute;
  11960. align-self:center;
  11961. padding:2px 2px 2px 2px;
  11962. box-sizing:border-box;
  11963. width:100%;
  11964. }
  11965. #u9231_text {
  11966. border-width:0px;
  11967. word-wrap:break-word;
  11968. text-transform:none;
  11969. }