styles.css 122 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u6418 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u6420_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:129px;
  33. height:22px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 0);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. font-size:16px;
  42. color:#FFFFFF;
  43. }
  44. #u6420 {
  45. border-width:0px;
  46. position:absolute;
  47. left:49px;
  48. top:14px;
  49. width:129px;
  50. height:22px;
  51. display:flex;
  52. font-size:16px;
  53. color:#FFFFFF;
  54. }
  55. #u6420 .text {
  56. position:absolute;
  57. align-self:flex-start;
  58. padding:0px 0px 0px 0px;
  59. box-sizing:border-box;
  60. width:100%;
  61. }
  62. #u6420_text {
  63. border-width:0px;
  64. white-space:nowrap;
  65. text-transform:none;
  66. }
  67. #u6421_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:1600px;
  73. height:50px;
  74. background:inherit;
  75. background-color:rgba(30, 42, 68, 1);
  76. border:none;
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. color:#AFB3B6;
  82. }
  83. #u6421 {
  84. border-width:0px;
  85. position:absolute;
  86. left:0px;
  87. top:0px;
  88. width:1600px;
  89. height:50px;
  90. display:flex;
  91. color:#AFB3B6;
  92. }
  93. #u6421 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 2px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u6421_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. visibility:hidden;
  105. }
  106. #u6422 {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:0px;
  112. height:0px;
  113. }
  114. #u6423_img {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:31px;
  120. height:31px;
  121. }
  122. #u6423 {
  123. border-width:0px;
  124. position:absolute;
  125. left:19px;
  126. top:10px;
  127. width:31px;
  128. height:31px;
  129. display:flex;
  130. }
  131. #u6423 .text {
  132. position:absolute;
  133. align-self:center;
  134. padding:2px 2px 2px 2px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u6423_text {
  139. border-width:0px;
  140. word-wrap:break-word;
  141. text-transform:none;
  142. }
  143. #u6424_div {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:161px;
  149. height:22px;
  150. background:inherit;
  151. background-color:rgba(255, 255, 255, 0);
  152. border:none;
  153. border-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  158. font-weight:400;
  159. font-style:normal;
  160. font-size:16px;
  161. color:#FFFFFF;
  162. }
  163. #u6424 {
  164. border-width:0px;
  165. position:absolute;
  166. left:62px;
  167. top:14px;
  168. width:161px;
  169. height:22px;
  170. display:flex;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:16px;
  175. color:#FFFFFF;
  176. }
  177. #u6424 .text {
  178. position:absolute;
  179. align-self:flex-start;
  180. padding:0px 0px 0px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u6424_text {
  185. border-width:0px;
  186. white-space:nowrap;
  187. text-transform:none;
  188. }
  189. #u6425_div {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:120px;
  195. height:1200px;
  196. background:inherit;
  197. background-color:rgba(30, 42, 68, 1);
  198. border:none;
  199. border-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. color:#AFB3B6;
  204. }
  205. #u6425 {
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:47px;
  210. width:120px;
  211. height:1200px;
  212. display:flex;
  213. color:#AFB3B6;
  214. }
  215. #u6425 .text {
  216. position:absolute;
  217. align-self:center;
  218. padding:2px 2px 2px 2px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u6425_text {
  223. border-width:0px;
  224. word-wrap:break-word;
  225. text-transform:none;
  226. visibility:hidden;
  227. }
  228. #u6426_div {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:1480px;
  234. height:1200px;
  235. background:inherit;
  236. background-color:rgba(242, 242, 242, 1);
  237. border:none;
  238. border-radius:0px;
  239. -moz-box-shadow:none;
  240. -webkit-box-shadow:none;
  241. box-shadow:none;
  242. }
  243. #u6426 {
  244. border-width:0px;
  245. position:absolute;
  246. left:120px;
  247. top:50px;
  248. width:1480px;
  249. height:1200px;
  250. display:flex;
  251. }
  252. #u6426 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u6426_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u6427 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u6428_div {
  274. border-width:0px;
  275. position:absolute;
  276. left:0px;
  277. top:0px;
  278. width:33px;
  279. height:22px;
  280. background:inherit;
  281. background-color:rgba(255, 255, 255, 0);
  282. border:none;
  283. border-radius:0px;
  284. -moz-box-shadow:none;
  285. -webkit-box-shadow:none;
  286. box-shadow:none;
  287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  288. font-weight:400;
  289. font-style:normal;
  290. font-size:16px;
  291. color:#FFFFFF;
  292. }
  293. #u6428 {
  294. border-width:0px;
  295. position:absolute;
  296. left:39px;
  297. top:67px;
  298. width:33px;
  299. height:22px;
  300. display:flex;
  301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  302. font-weight:400;
  303. font-style:normal;
  304. font-size:16px;
  305. color:#FFFFFF;
  306. }
  307. #u6428 .text {
  308. position:absolute;
  309. align-self:flex-start;
  310. padding:0px 0px 0px 0px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u6428_text {
  315. border-width:0px;
  316. white-space:nowrap;
  317. text-transform:none;
  318. }
  319. #u6429_img {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:14px;
  325. height:14px;
  326. }
  327. #u6429 {
  328. border-width:0px;
  329. position:absolute;
  330. left:20px;
  331. top:71px;
  332. width:14px;
  333. height:14px;
  334. display:flex;
  335. }
  336. #u6429 .text {
  337. position:absolute;
  338. align-self:center;
  339. padding:2px 2px 2px 2px;
  340. box-sizing:border-box;
  341. width:100%;
  342. }
  343. #u6429_text {
  344. border-width:0px;
  345. word-wrap:break-word;
  346. text-transform:none;
  347. visibility:hidden;
  348. }
  349. #u6430 {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:0px;
  355. height:0px;
  356. }
  357. #u6431_div {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:33px;
  363. height:22px;
  364. background:inherit;
  365. background-color:rgba(255, 255, 255, 0);
  366. border:none;
  367. border-radius:0px;
  368. -moz-box-shadow:none;
  369. -webkit-box-shadow:none;
  370. box-shadow:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u6431 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:109px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  386. font-weight:400;
  387. font-style:normal;
  388. font-size:16px;
  389. color:#FFFFFF;
  390. }
  391. #u6431 .text {
  392. position:absolute;
  393. align-self:flex-start;
  394. padding:0px 0px 0px 0px;
  395. box-sizing:border-box;
  396. width:100%;
  397. }
  398. #u6431_text {
  399. border-width:0px;
  400. white-space:nowrap;
  401. text-transform:none;
  402. }
  403. #u6432_img {
  404. border-width:0px;
  405. position:absolute;
  406. left:0px;
  407. top:0px;
  408. width:14px;
  409. height:14px;
  410. }
  411. #u6432 {
  412. border-width:0px;
  413. position:absolute;
  414. left:20px;
  415. top:113px;
  416. width:14px;
  417. height:14px;
  418. display:flex;
  419. }
  420. #u6432 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u6432_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u6433 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u6434_div {
  442. border-width:0px;
  443. position:absolute;
  444. left:0px;
  445. top:0px;
  446. width:29px;
  447. height:20px;
  448. background:inherit;
  449. background-color:rgba(255, 255, 255, 0);
  450. border:none;
  451. border-radius:25px;
  452. -moz-box-shadow:none;
  453. -webkit-box-shadow:none;
  454. box-shadow:none;
  455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. color:#FFFFFF;
  459. }
  460. #u6434 {
  461. border-width:0px;
  462. position:absolute;
  463. left:59px;
  464. top:1141px;
  465. width:29px;
  466. height:20px;
  467. display:flex;
  468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  469. font-weight:400;
  470. font-style:normal;
  471. color:#FFFFFF;
  472. }
  473. #u6434 .text {
  474. position:absolute;
  475. align-self:center;
  476. padding:0px 0px 0px 0px;
  477. box-sizing:border-box;
  478. width:100%;
  479. }
  480. #u6434_text {
  481. border-width:0px;
  482. white-space:nowrap;
  483. text-transform:none;
  484. }
  485. #u6435_img {
  486. border-width:0px;
  487. position:absolute;
  488. left:0px;
  489. top:0px;
  490. width:22px;
  491. height:22px;
  492. }
  493. #u6435 {
  494. border-width:0px;
  495. position:absolute;
  496. left:27px;
  497. top:1140px;
  498. width:22px;
  499. height:22px;
  500. display:flex;
  501. }
  502. #u6435 .text {
  503. position:absolute;
  504. align-self:center;
  505. padding:2px 2px 2px 2px;
  506. box-sizing:border-box;
  507. width:100%;
  508. }
  509. #u6435_text {
  510. border-width:0px;
  511. word-wrap:break-word;
  512. text-transform:none;
  513. visibility:hidden;
  514. }
  515. #u6436 {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:0px;
  521. height:0px;
  522. }
  523. #u6437_div {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:29px;
  529. height:20px;
  530. background:inherit;
  531. background-color:rgba(255, 255, 255, 0);
  532. border:none;
  533. border-radius:25px;
  534. -moz-box-shadow:none;
  535. -webkit-box-shadow:none;
  536. box-shadow:none;
  537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  538. font-weight:400;
  539. font-style:normal;
  540. color:#FFFFFF;
  541. }
  542. #u6437 {
  543. border-width:0px;
  544. position:absolute;
  545. left:59px;
  546. top:1183px;
  547. width:29px;
  548. height:20px;
  549. display:flex;
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. color:#FFFFFF;
  554. }
  555. #u6437 .text {
  556. position:absolute;
  557. align-self:center;
  558. padding:0px 0px 0px 0px;
  559. box-sizing:border-box;
  560. width:100%;
  561. }
  562. #u6437_text {
  563. border-width:0px;
  564. white-space:nowrap;
  565. text-transform:none;
  566. }
  567. #u6438_img {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:22px;
  573. height:22px;
  574. }
  575. #u6438 {
  576. border-width:0px;
  577. position:absolute;
  578. left:27px;
  579. top:1182px;
  580. width:22px;
  581. height:22px;
  582. display:flex;
  583. }
  584. #u6438 .text {
  585. position:absolute;
  586. align-self:center;
  587. padding:2px 2px 2px 2px;
  588. box-sizing:border-box;
  589. width:100%;
  590. }
  591. #u6438_text {
  592. border-width:0px;
  593. word-wrap:break-word;
  594. text-transform:none;
  595. visibility:hidden;
  596. }
  597. #u6439 {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:0px;
  603. height:0px;
  604. }
  605. #u6440_div {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:0px;
  610. width:33px;
  611. height:22px;
  612. background:inherit;
  613. background-color:rgba(255, 255, 255, 0);
  614. border:none;
  615. border-radius:0px;
  616. -moz-box-shadow:none;
  617. -webkit-box-shadow:none;
  618. box-shadow:none;
  619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  620. font-weight:400;
  621. font-style:normal;
  622. font-size:16px;
  623. color:#FFFFFF;
  624. }
  625. #u6440 {
  626. border-width:0px;
  627. position:absolute;
  628. left:39px;
  629. top:277px;
  630. width:33px;
  631. height:22px;
  632. display:flex;
  633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  634. font-weight:400;
  635. font-style:normal;
  636. font-size:16px;
  637. color:#FFFFFF;
  638. }
  639. #u6440 .text {
  640. position:absolute;
  641. align-self:flex-start;
  642. padding:0px 0px 0px 0px;
  643. box-sizing:border-box;
  644. width:100%;
  645. }
  646. #u6440_text {
  647. border-width:0px;
  648. white-space:nowrap;
  649. text-transform:none;
  650. }
  651. #u6441_img {
  652. border-width:0px;
  653. position:absolute;
  654. left:0px;
  655. top:0px;
  656. width:14px;
  657. height:14px;
  658. }
  659. #u6441 {
  660. border-width:0px;
  661. position:absolute;
  662. left:20px;
  663. top:281px;
  664. width:14px;
  665. height:14px;
  666. display:flex;
  667. }
  668. #u6441 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 2px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u6441_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. visibility:hidden;
  680. }
  681. #u6442 {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:0px;
  687. height:0px;
  688. }
  689. #u6443_div {
  690. border-width:0px;
  691. position:absolute;
  692. left:0px;
  693. top:0px;
  694. width:33px;
  695. height:22px;
  696. background:inherit;
  697. background-color:rgba(255, 255, 255, 0);
  698. border:none;
  699. border-radius:0px;
  700. -moz-box-shadow:none;
  701. -webkit-box-shadow:none;
  702. box-shadow:none;
  703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  704. font-weight:400;
  705. font-style:normal;
  706. font-size:16px;
  707. color:#FFFFFF;
  708. }
  709. #u6443 {
  710. border-width:0px;
  711. position:absolute;
  712. left:39px;
  713. top:235px;
  714. width:33px;
  715. height:22px;
  716. display:flex;
  717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  718. font-weight:400;
  719. font-style:normal;
  720. font-size:16px;
  721. color:#FFFFFF;
  722. }
  723. #u6443 .text {
  724. position:absolute;
  725. align-self:flex-start;
  726. padding:0px 0px 0px 0px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u6443_text {
  731. border-width:0px;
  732. white-space:nowrap;
  733. text-transform:none;
  734. }
  735. #u6444_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:14px;
  741. height:14px;
  742. }
  743. #u6444 {
  744. border-width:0px;
  745. position:absolute;
  746. left:20px;
  747. top:239px;
  748. width:14px;
  749. height:14px;
  750. display:flex;
  751. }
  752. #u6444 .text {
  753. position:absolute;
  754. align-self:center;
  755. padding:2px 2px 2px 2px;
  756. box-sizing:border-box;
  757. width:100%;
  758. }
  759. #u6444_text {
  760. border-width:0px;
  761. word-wrap:break-word;
  762. text-transform:none;
  763. visibility:hidden;
  764. }
  765. #u6445 {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:0px;
  771. height:0px;
  772. }
  773. #u6446_div {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:33px;
  779. height:22px;
  780. background:inherit;
  781. background-color:rgba(255, 255, 255, 0);
  782. border:none;
  783. border-radius:0px;
  784. -moz-box-shadow:none;
  785. -webkit-box-shadow:none;
  786. box-shadow:none;
  787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:16px;
  791. color:#FFFFFF;
  792. }
  793. #u6446 {
  794. border-width:0px;
  795. position:absolute;
  796. left:39px;
  797. top:403px;
  798. width:33px;
  799. height:22px;
  800. display:flex;
  801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  802. font-weight:400;
  803. font-style:normal;
  804. font-size:16px;
  805. color:#FFFFFF;
  806. }
  807. #u6446 .text {
  808. position:absolute;
  809. align-self:flex-start;
  810. padding:0px 0px 0px 0px;
  811. box-sizing:border-box;
  812. width:100%;
  813. }
  814. #u6446_text {
  815. border-width:0px;
  816. white-space:nowrap;
  817. text-transform:none;
  818. }
  819. #u6447_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:14px;
  825. height:14px;
  826. }
  827. #u6447 {
  828. border-width:0px;
  829. position:absolute;
  830. left:20px;
  831. top:407px;
  832. width:14px;
  833. height:14px;
  834. display:flex;
  835. }
  836. #u6447 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u6447_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u6448 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u6449_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:33px;
  863. height:22px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border:none;
  867. border-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:16px;
  875. color:#FFFFFF;
  876. }
  877. #u6449 {
  878. border-width:0px;
  879. position:absolute;
  880. left:39px;
  881. top:445px;
  882. width:33px;
  883. height:22px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. font-size:16px;
  889. color:#FFFFFF;
  890. }
  891. #u6449 .text {
  892. position:absolute;
  893. align-self:flex-start;
  894. padding:0px 0px 0px 0px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u6449_text {
  899. border-width:0px;
  900. white-space:nowrap;
  901. text-transform:none;
  902. }
  903. #u6450_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:14px;
  909. height:14px;
  910. }
  911. #u6450 {
  912. border-width:0px;
  913. position:absolute;
  914. left:20px;
  915. top:449px;
  916. width:14px;
  917. height:14px;
  918. display:flex;
  919. }
  920. #u6450 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u6450_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u6451 {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:0px;
  939. height:0px;
  940. }
  941. #u6452_div {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:33px;
  947. height:22px;
  948. background:inherit;
  949. background-color:rgba(255, 255, 255, 0);
  950. border:none;
  951. border-radius:0px;
  952. -moz-box-shadow:none;
  953. -webkit-box-shadow:none;
  954. box-shadow:none;
  955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  956. font-weight:400;
  957. font-style:normal;
  958. font-size:16px;
  959. color:#FFFFFF;
  960. }
  961. #u6452 {
  962. border-width:0px;
  963. position:absolute;
  964. left:39px;
  965. top:529px;
  966. width:33px;
  967. height:22px;
  968. display:flex;
  969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  970. font-weight:400;
  971. font-style:normal;
  972. font-size:16px;
  973. color:#FFFFFF;
  974. }
  975. #u6452 .text {
  976. position:absolute;
  977. align-self:flex-start;
  978. padding:0px 0px 0px 0px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u6452_text {
  983. border-width:0px;
  984. white-space:nowrap;
  985. text-transform:none;
  986. }
  987. #u6453_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:14px;
  993. height:14px;
  994. }
  995. #u6453 {
  996. border-width:0px;
  997. position:absolute;
  998. left:20px;
  999. top:533px;
  1000. width:14px;
  1001. height:14px;
  1002. display:flex;
  1003. }
  1004. #u6453 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u6453_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. visibility:hidden;
  1016. }
  1017. #u6454_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u6454_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u6454_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u6454 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:10px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u6454 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u6454_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u6454.disabled {
  1108. }
  1109. .u6454_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u6455_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u6455 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:15px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u6455 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u6455_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u6456_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u6456 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:12px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u6456 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u6456_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u6457_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u6457 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u6457 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u6457_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u6458 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u6459_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u6459 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:319px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u6459 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u6459_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u6460_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u6460 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:323px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u6460 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u6460_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u6461 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u6462_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  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. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u6462 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:361px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u6462 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u6462_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u6463_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u6463 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:365px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u6463 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u6463_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u6464 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u6465_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  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. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u6465 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u6465 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u6465_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u6466_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u6466 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u6466 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u6466_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u6467 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u6468_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u6468 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:487px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u6468 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u6468_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u6469_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u6469 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:491px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u6469 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u6469_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u6470 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u6471_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u6471 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u6471 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u6471_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u6472_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u6472 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u6472 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u6472_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u6473_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1255px;
  1644. height:100px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. }
  1653. #u6473 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:332px;
  1657. top:50px;
  1658. width:1255px;
  1659. height:100px;
  1660. display:flex;
  1661. }
  1662. #u6473 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u6473_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u6474 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:0px;
  1681. height:0px;
  1682. }
  1683. #u6475_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:1192px;
  1690. background:inherit;
  1691. background-color:rgba(255, 255, 255, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. }
  1698. #u6475 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:120px;
  1702. top:50px;
  1703. width:200px;
  1704. height:1192px;
  1705. display:flex;
  1706. }
  1707. #u6475 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 2px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u6475_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. visibility:hidden;
  1719. }
  1720. #u6476_div {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:200px;
  1726. height:60px;
  1727. background:inherit;
  1728. background-color:rgba(224, 231, 247, 1);
  1729. border:none;
  1730. border-radius:0px;
  1731. -moz-box-shadow:none;
  1732. -webkit-box-shadow:none;
  1733. box-shadow:none;
  1734. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1735. font-weight:500;
  1736. font-style:normal;
  1737. font-size:18px;
  1738. }
  1739. #u6476 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:120px;
  1743. top:50px;
  1744. width:200px;
  1745. height:60px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1748. font-weight:500;
  1749. font-style:normal;
  1750. font-size:18px;
  1751. }
  1752. #u6476 .text {
  1753. position:absolute;
  1754. align-self:center;
  1755. padding:0px 0px 0px 20px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u6476_text {
  1760. border-width:0px;
  1761. word-wrap:break-word;
  1762. text-transform:none;
  1763. }
  1764. #u6477_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:65px;
  1770. height:22px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 0);
  1773. border:none;
  1774. border-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:16px;
  1782. }
  1783. #u6477 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:147px;
  1787. top:166px;
  1788. width:65px;
  1789. height:22px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:16px;
  1795. }
  1796. #u6477 .text {
  1797. position:absolute;
  1798. align-self:flex-start;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u6477_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u6478_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:65px;
  1814. height:22px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 0);
  1817. border:none;
  1818. border-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. font-size:16px;
  1826. }
  1827. #u6478 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:147px;
  1831. top:357px;
  1832. width:65px;
  1833. height:22px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:16px;
  1839. }
  1840. #u6478 .text {
  1841. position:absolute;
  1842. align-self:flex-start;
  1843. padding:0px 0px 0px 0px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u6478_text {
  1848. border-width:0px;
  1849. white-space:nowrap;
  1850. text-transform:none;
  1851. }
  1852. #u6479_div {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:49px;
  1858. height:17px;
  1859. background:inherit;
  1860. background-color:rgba(255, 255, 255, 0);
  1861. border:none;
  1862. border-radius:0px;
  1863. -moz-box-shadow:none;
  1864. -webkit-box-shadow:none;
  1865. box-shadow:none;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#AAAAAA;
  1871. }
  1872. #u6479 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:147px;
  1876. top:130px;
  1877. width:49px;
  1878. height:17px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:12px;
  1884. color:#AAAAAA;
  1885. }
  1886. #u6479 .text {
  1887. position:absolute;
  1888. align-self:flex-start;
  1889. padding:0px 0px 0px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u6479_text {
  1894. border-width:0px;
  1895. white-space:nowrap;
  1896. text-transform:none;
  1897. }
  1898. #u6480_img {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:201px;
  1904. height:2px;
  1905. }
  1906. #u6480 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:120px;
  1910. top:294px;
  1911. width:200px;
  1912. height:1px;
  1913. display:flex;
  1914. }
  1915. #u6480 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 2px 2px 2px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u6480_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. visibility:hidden;
  1927. }
  1928. #u6481_div {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:49px;
  1934. height:17px;
  1935. background:inherit;
  1936. background-color:rgba(255, 255, 255, 0);
  1937. border:none;
  1938. border-radius:0px;
  1939. -moz-box-shadow:none;
  1940. -webkit-box-shadow:none;
  1941. box-shadow:none;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. color:#AAAAAA;
  1947. }
  1948. #u6481 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:147px;
  1952. top:320px;
  1953. width:49px;
  1954. height:17px;
  1955. display:flex;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:12px;
  1960. color:#AAAAAA;
  1961. }
  1962. #u6481 .text {
  1963. position:absolute;
  1964. align-self:flex-start;
  1965. padding:0px 0px 0px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u6481_text {
  1970. border-width:0px;
  1971. white-space:nowrap;
  1972. text-transform:none;
  1973. }
  1974. #u6482_div {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:65px;
  1980. height:22px;
  1981. background:inherit;
  1982. background-color:rgba(255, 255, 255, 0);
  1983. border:none;
  1984. border-radius:0px;
  1985. -moz-box-shadow:none;
  1986. -webkit-box-shadow:none;
  1987. box-shadow:none;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:16px;
  1992. }
  1993. #u6482 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:147px;
  1997. top:208px;
  1998. width:65px;
  1999. height:22px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:16px;
  2005. }
  2006. #u6482 .text {
  2007. position:absolute;
  2008. align-self:flex-start;
  2009. padding:0px 0px 0px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u6482_text {
  2014. border-width:0px;
  2015. white-space:nowrap;
  2016. text-transform:none;
  2017. }
  2018. #u6483_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:65px;
  2024. height:22px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. border:none;
  2028. border-radius:0px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2033. font-weight:400;
  2034. font-style:normal;
  2035. font-size:16px;
  2036. }
  2037. #u6483 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:147px;
  2041. top:250px;
  2042. width:65px;
  2043. height:22px;
  2044. display:flex;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:16px;
  2049. }
  2050. #u6483 .text {
  2051. position:absolute;
  2052. align-self:flex-start;
  2053. padding:0px 0px 0px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u6483_text {
  2058. border-width:0px;
  2059. white-space:nowrap;
  2060. text-transform:none;
  2061. }
  2062. #u6484_div {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:65px;
  2068. height:22px;
  2069. background:inherit;
  2070. background-color:rgba(255, 255, 255, 0);
  2071. border:none;
  2072. border-radius:0px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:16px;
  2080. }
  2081. #u6484 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:147px;
  2085. top:399px;
  2086. width:65px;
  2087. height:22px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:16px;
  2093. }
  2094. #u6484 .text {
  2095. position:absolute;
  2096. align-self:flex-start;
  2097. padding:0px 0px 0px 0px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u6484_text {
  2102. border-width:0px;
  2103. white-space:nowrap;
  2104. text-transform:none;
  2105. }
  2106. #u6485_div {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:73px;
  2112. height:50px;
  2113. background:inherit;
  2114. background-color:rgba(255, 255, 255, 0);
  2115. border:none;
  2116. border-left:0px;
  2117. border-top:0px;
  2118. border-right:0px;
  2119. border-radius:0px;
  2120. border-bottom-right-radius:0px;
  2121. border-bottom-left-radius:0px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2126. font-weight:500;
  2127. font-style:normal;
  2128. font-size:18px;
  2129. }
  2130. #u6485 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:352px;
  2134. top:50px;
  2135. width:73px;
  2136. height:50px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2139. font-weight:500;
  2140. font-style:normal;
  2141. font-size:18px;
  2142. }
  2143. #u6485 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:0px 0px 0px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u6485_text {
  2151. border-width:0px;
  2152. white-space:nowrap;
  2153. text-transform:none;
  2154. }
  2155. #u6486_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:1255px;
  2161. height:1082px;
  2162. background:inherit;
  2163. background-color:rgba(255, 255, 255, 1);
  2164. border:none;
  2165. border-radius:0px;
  2166. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2167. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2168. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2169. }
  2170. #u6486 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:332px;
  2174. top:160px;
  2175. width:1255px;
  2176. height:1082px;
  2177. display:flex;
  2178. }
  2179. #u6486 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u6486_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. visibility:hidden;
  2191. }
  2192. #u6487 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:352px;
  2196. top:251px;
  2197. width:1215px;
  2198. height:283px;
  2199. }
  2200. #u6488_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:49px;
  2206. height:38px;
  2207. }
  2208. #u6488 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:49px;
  2214. height:38px;
  2215. display:flex;
  2216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. color:#FFFFFF;
  2221. }
  2222. #u6488 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u6488_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. }
  2234. #u6489_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:98px;
  2240. height:38px;
  2241. }
  2242. #u6489 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:49px;
  2246. top:0px;
  2247. width:98px;
  2248. height:38px;
  2249. display:flex;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. font-size:12px;
  2254. color:#FFFFFF;
  2255. }
  2256. #u6489 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 0px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u6489_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. }
  2268. #u6490_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:110px;
  2274. height:38px;
  2275. }
  2276. #u6490 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:147px;
  2280. top:0px;
  2281. width:110px;
  2282. height:38px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:12px;
  2288. color:#FFFFFF;
  2289. }
  2290. #u6490 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u6490_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. }
  2302. #u6491_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:115px;
  2308. height:38px;
  2309. }
  2310. #u6491 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:257px;
  2314. top:0px;
  2315. width:115px;
  2316. height:38px;
  2317. display:flex;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:12px;
  2322. color:#FFFFFF;
  2323. }
  2324. #u6491 .text {
  2325. position:absolute;
  2326. align-self:center;
  2327. padding:2px 2px 2px 0px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u6491_text {
  2332. border-width:0px;
  2333. word-wrap:break-word;
  2334. text-transform:none;
  2335. }
  2336. #u6492_img {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:115px;
  2342. height:38px;
  2343. }
  2344. #u6492 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:372px;
  2348. top:0px;
  2349. width:115px;
  2350. height:38px;
  2351. display:flex;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:12px;
  2356. color:#FFFFFF;
  2357. }
  2358. #u6492 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 0px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u6492_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. }
  2370. #u6493_img {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:98px;
  2376. height:38px;
  2377. }
  2378. #u6493 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:487px;
  2382. top:0px;
  2383. width:98px;
  2384. height:38px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:12px;
  2390. color:#FFFFFF;
  2391. }
  2392. #u6493 .text {
  2393. position:absolute;
  2394. align-self:center;
  2395. padding:2px 2px 2px 0px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u6493_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. }
  2404. #u6494_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:116px;
  2410. height:38px;
  2411. }
  2412. #u6494 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:585px;
  2416. top:0px;
  2417. width:116px;
  2418. height:38px;
  2419. display:flex;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:12px;
  2424. color:#FFFFFF;
  2425. }
  2426. #u6494 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 0px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u6494_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. }
  2438. #u6495_img {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:115px;
  2444. height:38px;
  2445. }
  2446. #u6495 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:701px;
  2450. top:0px;
  2451. width:115px;
  2452. height:38px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:12px;
  2458. color:#FFFFFF;
  2459. }
  2460. #u6495 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 2px 2px 0px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u6495_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. }
  2472. #u6496_img {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:127px;
  2478. height:38px;
  2479. }
  2480. #u6496 {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:816px;
  2484. top:0px;
  2485. width:127px;
  2486. height:38px;
  2487. display:flex;
  2488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2489. font-weight:400;
  2490. font-style:normal;
  2491. font-size:12px;
  2492. color:#FFFFFF;
  2493. }
  2494. #u6496 .text {
  2495. position:absolute;
  2496. align-self:center;
  2497. padding:2px 2px 2px 0px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u6496_text {
  2502. border-width:0px;
  2503. word-wrap:break-word;
  2504. text-transform:none;
  2505. }
  2506. #u6497_img {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:123px;
  2512. height:38px;
  2513. }
  2514. #u6497 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:943px;
  2518. top:0px;
  2519. width:123px;
  2520. height:38px;
  2521. display:flex;
  2522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:12px;
  2526. color:#FFFFFF;
  2527. }
  2528. #u6497 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 0px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u6497_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. }
  2540. #u6498_img {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:149px;
  2546. height:38px;
  2547. }
  2548. #u6498 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:1066px;
  2552. top:0px;
  2553. width:149px;
  2554. height:38px;
  2555. display:flex;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:12px;
  2560. color:#FFFFFF;
  2561. }
  2562. #u6498 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 0px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u6498_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. }
  2574. #u6499_img {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:49px;
  2580. height:38px;
  2581. }
  2582. #u6499 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:38px;
  2587. width:49px;
  2588. height:38px;
  2589. display:flex;
  2590. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2591. font-weight:400;
  2592. font-style:normal;
  2593. font-size:12px;
  2594. }
  2595. #u6499 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 0px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u6499_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. }
  2607. #u6500_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:98px;
  2613. height:38px;
  2614. }
  2615. #u6500 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:49px;
  2619. top:38px;
  2620. width:98px;
  2621. height:38px;
  2622. display:flex;
  2623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:12px;
  2627. color:#333333;
  2628. }
  2629. #u6500 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 0px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u6500_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. visibility:hidden;
  2641. }
  2642. #u6501_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:110px;
  2648. height:38px;
  2649. }
  2650. #u6501 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:147px;
  2654. top:38px;
  2655. width:110px;
  2656. height:38px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:12px;
  2662. color:#333333;
  2663. }
  2664. #u6501 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u6501_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. }
  2676. #u6502_img {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:115px;
  2682. height:38px;
  2683. }
  2684. #u6502 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:257px;
  2688. top:38px;
  2689. width:115px;
  2690. height:38px;
  2691. display:flex;
  2692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2693. font-weight:400;
  2694. font-style:normal;
  2695. font-size:12px;
  2696. color:#333333;
  2697. }
  2698. #u6502 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 0px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u6502_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u6503_img {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:115px;
  2717. height:38px;
  2718. }
  2719. #u6503 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:372px;
  2723. top:38px;
  2724. width:115px;
  2725. height:38px;
  2726. display:flex;
  2727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2728. font-weight:400;
  2729. font-style:normal;
  2730. font-size:12px;
  2731. color:#333333;
  2732. }
  2733. #u6503 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 0px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u6503_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. visibility:hidden;
  2745. }
  2746. #u6504_img {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:98px;
  2752. height:38px;
  2753. }
  2754. #u6504 {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:487px;
  2758. top:38px;
  2759. width:98px;
  2760. height:38px;
  2761. display:flex;
  2762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2763. font-weight:400;
  2764. font-style:normal;
  2765. font-size:12px;
  2766. color:#333333;
  2767. }
  2768. #u6504 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 0px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u6504_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. }
  2780. #u6505_img {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:116px;
  2786. height:38px;
  2787. }
  2788. #u6505 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:585px;
  2792. top:38px;
  2793. width:116px;
  2794. height:38px;
  2795. display:flex;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:12px;
  2800. color:#333333;
  2801. }
  2802. #u6505 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 2px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u6505_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u6506_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:115px;
  2821. height:38px;
  2822. }
  2823. #u6506 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:701px;
  2827. top:38px;
  2828. width:115px;
  2829. height:38px;
  2830. display:flex;
  2831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:12px;
  2835. color:#333333;
  2836. }
  2837. #u6506 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u6506_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u6507_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:127px;
  2856. height:38px;
  2857. }
  2858. #u6507 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:816px;
  2862. top:38px;
  2863. width:127px;
  2864. height:38px;
  2865. display:flex;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:12px;
  2870. color:#333333;
  2871. }
  2872. #u6507 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u6507_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u6508_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:123px;
  2891. height:38px;
  2892. }
  2893. #u6508 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:943px;
  2897. top:38px;
  2898. width:123px;
  2899. height:38px;
  2900. display:flex;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:12px;
  2905. color:#333333;
  2906. }
  2907. #u6508 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 0px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u6508_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u6509_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:149px;
  2926. height:38px;
  2927. }
  2928. #u6509 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:1066px;
  2932. top:38px;
  2933. width:149px;
  2934. height:38px;
  2935. display:flex;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:12px;
  2940. color:#1890FF;
  2941. }
  2942. #u6509 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 0px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u6509_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u6510_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:49px;
  2960. height:35px;
  2961. }
  2962. #u6510 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:76px;
  2967. width:49px;
  2968. height:35px;
  2969. display:flex;
  2970. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:12px;
  2974. color:#606266;
  2975. }
  2976. #u6510 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 0px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u6510_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. }
  2988. #u6511_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:98px;
  2994. height:35px;
  2995. }
  2996. #u6511 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:49px;
  3000. top:76px;
  3001. width:98px;
  3002. height:35px;
  3003. display:flex;
  3004. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:12px;
  3008. color:#606266;
  3009. }
  3010. #u6511 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 0px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u6511_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u6512_img {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:110px;
  3029. height:35px;
  3030. }
  3031. #u6512 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:147px;
  3035. top:76px;
  3036. width:110px;
  3037. height:35px;
  3038. display:flex;
  3039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3040. font-weight:400;
  3041. font-style:normal;
  3042. font-size:12px;
  3043. color:#606266;
  3044. }
  3045. #u6512 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 0px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u6512_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. }
  3057. #u6513_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:115px;
  3063. height:35px;
  3064. }
  3065. #u6513 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:257px;
  3069. top:76px;
  3070. width:115px;
  3071. height:35px;
  3072. display:flex;
  3073. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:12px;
  3077. color:#606266;
  3078. }
  3079. #u6513 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 0px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u6513_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u6514_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:115px;
  3098. height:35px;
  3099. }
  3100. #u6514 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:372px;
  3104. top:76px;
  3105. width:115px;
  3106. height:35px;
  3107. display:flex;
  3108. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:12px;
  3112. color:#606266;
  3113. }
  3114. #u6514 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u6514_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u6515_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:98px;
  3133. height:35px;
  3134. }
  3135. #u6515 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:487px;
  3139. top:76px;
  3140. width:98px;
  3141. height:35px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. color:#606266;
  3148. }
  3149. #u6515 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:2px 2px 2px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u6515_text {
  3157. border-width:0px;
  3158. word-wrap:break-word;
  3159. text-transform:none;
  3160. }
  3161. #u6516_img {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:116px;
  3167. height:35px;
  3168. }
  3169. #u6516 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:585px;
  3173. top:76px;
  3174. width:116px;
  3175. height:35px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. color:#606266;
  3182. }
  3183. #u6516 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u6516_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. visibility:hidden;
  3195. }
  3196. #u6517_img {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:115px;
  3202. height:35px;
  3203. }
  3204. #u6517 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:701px;
  3208. top:76px;
  3209. width:115px;
  3210. height:35px;
  3211. display:flex;
  3212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:12px;
  3216. color:#606266;
  3217. }
  3218. #u6517 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u6517_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u6518_img {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:127px;
  3237. height:35px;
  3238. }
  3239. #u6518 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:816px;
  3243. top:76px;
  3244. width:127px;
  3245. height:35px;
  3246. display:flex;
  3247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:12px;
  3251. color:#606266;
  3252. }
  3253. #u6518 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 0px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u6518_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. visibility:hidden;
  3265. }
  3266. #u6519_img {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:123px;
  3272. height:35px;
  3273. }
  3274. #u6519 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:943px;
  3278. top:76px;
  3279. width:123px;
  3280. height:35px;
  3281. display:flex;
  3282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:12px;
  3286. color:#606266;
  3287. }
  3288. #u6519 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u6519_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. visibility:hidden;
  3300. }
  3301. #u6520_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:149px;
  3307. height:35px;
  3308. }
  3309. #u6520 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:1066px;
  3313. top:76px;
  3314. width:149px;
  3315. height:35px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. color:#1890FF;
  3322. }
  3323. #u6520 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 0px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u6520_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u6521_img {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:49px;
  3341. height:35px;
  3342. }
  3343. #u6521 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:111px;
  3348. width:49px;
  3349. height:35px;
  3350. display:flex;
  3351. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:12px;
  3355. color:#606266;
  3356. }
  3357. #u6521 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 0px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u6521_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. }
  3369. #u6522_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:98px;
  3375. height:35px;
  3376. }
  3377. #u6522 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:49px;
  3381. top:111px;
  3382. width:98px;
  3383. height:35px;
  3384. display:flex;
  3385. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#606266;
  3390. }
  3391. #u6522 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u6522_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u6523_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:110px;
  3410. height:35px;
  3411. }
  3412. #u6523 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:147px;
  3416. top:111px;
  3417. width:110px;
  3418. height:35px;
  3419. display:flex;
  3420. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:12px;
  3424. color:#606266;
  3425. }
  3426. #u6523 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u6523_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. visibility:hidden;
  3438. }
  3439. #u6524_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:115px;
  3445. height:35px;
  3446. }
  3447. #u6524 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:257px;
  3451. top:111px;
  3452. width:115px;
  3453. height:35px;
  3454. display:flex;
  3455. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:12px;
  3459. color:#606266;
  3460. }
  3461. #u6524 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 2px 2px 0px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u6524_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. visibility:hidden;
  3473. }
  3474. #u6525_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:115px;
  3480. height:35px;
  3481. }
  3482. #u6525 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:372px;
  3486. top:111px;
  3487. width:115px;
  3488. height:35px;
  3489. display:flex;
  3490. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:12px;
  3494. color:#606266;
  3495. }
  3496. #u6525 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 0px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u6525_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u6526_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:98px;
  3515. height:35px;
  3516. }
  3517. #u6526 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:487px;
  3521. top:111px;
  3522. width:98px;
  3523. height:35px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:12px;
  3529. color:#606266;
  3530. }
  3531. #u6526 .text {
  3532. position:absolute;
  3533. align-self:center;
  3534. padding:2px 2px 2px 0px;
  3535. box-sizing:border-box;
  3536. width:100%;
  3537. }
  3538. #u6526_text {
  3539. border-width:0px;
  3540. word-wrap:break-word;
  3541. text-transform:none;
  3542. }
  3543. #u6527_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:116px;
  3549. height:35px;
  3550. }
  3551. #u6527 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:585px;
  3555. top:111px;
  3556. width:116px;
  3557. height:35px;
  3558. display:flex;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. color:#606266;
  3564. }
  3565. #u6527 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 0px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u6527_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u6528_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:115px;
  3584. height:35px;
  3585. }
  3586. #u6528 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:701px;
  3590. top:111px;
  3591. width:115px;
  3592. height:35px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:12px;
  3598. color:#606266;
  3599. }
  3600. #u6528 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 0px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u6528_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u6529_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:127px;
  3619. height:35px;
  3620. }
  3621. #u6529 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:816px;
  3625. top:111px;
  3626. width:127px;
  3627. height:35px;
  3628. display:flex;
  3629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. color:#606266;
  3634. }
  3635. #u6529 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u6529_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u6530_img {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:123px;
  3654. height:35px;
  3655. }
  3656. #u6530 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:943px;
  3660. top:111px;
  3661. width:123px;
  3662. height:35px;
  3663. display:flex;
  3664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#606266;
  3669. }
  3670. #u6530 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u6530_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. visibility:hidden;
  3682. }
  3683. #u6531_img {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:149px;
  3689. height:35px;
  3690. }
  3691. #u6531 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:1066px;
  3695. top:111px;
  3696. width:149px;
  3697. height:35px;
  3698. display:flex;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:12px;
  3703. color:#1890FF;
  3704. }
  3705. #u6531 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 0px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u6531_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. }
  3717. #u6532_img {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:49px;
  3723. height:35px;
  3724. }
  3725. #u6532 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:146px;
  3730. width:49px;
  3731. height:35px;
  3732. display:flex;
  3733. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3734. font-weight:400;
  3735. font-style:normal;
  3736. font-size:12px;
  3737. color:#606266;
  3738. }
  3739. #u6532 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:2px 2px 2px 0px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u6532_text {
  3747. border-width:0px;
  3748. word-wrap:break-word;
  3749. text-transform:none;
  3750. }
  3751. #u6533_img {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:98px;
  3757. height:35px;
  3758. }
  3759. #u6533 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:49px;
  3763. top:146px;
  3764. width:98px;
  3765. height:35px;
  3766. display:flex;
  3767. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:12px;
  3771. color:#606266;
  3772. }
  3773. #u6533 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 0px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u6533_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u6534_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:110px;
  3792. height:35px;
  3793. }
  3794. #u6534 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:147px;
  3798. top:146px;
  3799. width:110px;
  3800. height:35px;
  3801. display:flex;
  3802. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:12px;
  3806. color:#606266;
  3807. }
  3808. #u6534 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 0px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u6534_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u6535_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:115px;
  3827. height:35px;
  3828. }
  3829. #u6535 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:257px;
  3833. top:146px;
  3834. width:115px;
  3835. height:35px;
  3836. display:flex;
  3837. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:#606266;
  3842. }
  3843. #u6535 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u6535_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u6536_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:115px;
  3862. height:35px;
  3863. }
  3864. #u6536 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:372px;
  3868. top:146px;
  3869. width:115px;
  3870. height:35px;
  3871. display:flex;
  3872. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. color:#606266;
  3877. }
  3878. #u6536 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:2px 2px 2px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u6536_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. visibility:hidden;
  3890. }
  3891. #u6537_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:98px;
  3897. height:35px;
  3898. }
  3899. #u6537 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:487px;
  3903. top:146px;
  3904. width:98px;
  3905. height:35px;
  3906. display:flex;
  3907. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:12px;
  3911. color:#606266;
  3912. }
  3913. #u6537 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u6537_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u6538_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:116px;
  3932. height:35px;
  3933. }
  3934. #u6538 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:585px;
  3938. top:146px;
  3939. width:116px;
  3940. height:35px;
  3941. display:flex;
  3942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. color:#606266;
  3947. }
  3948. #u6538 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u6538_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u6539_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:115px;
  3967. height:35px;
  3968. }
  3969. #u6539 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:701px;
  3973. top:146px;
  3974. width:115px;
  3975. height:35px;
  3976. display:flex;
  3977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:12px;
  3981. color:#606266;
  3982. }
  3983. #u6539 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u6539_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u6540_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:127px;
  4002. height:35px;
  4003. }
  4004. #u6540 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:816px;
  4008. top:146px;
  4009. width:127px;
  4010. height:35px;
  4011. display:flex;
  4012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:12px;
  4016. color:#606266;
  4017. }
  4018. #u6540 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u6540_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u6541_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:123px;
  4037. height:35px;
  4038. }
  4039. #u6541 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:943px;
  4043. top:146px;
  4044. width:123px;
  4045. height:35px;
  4046. display:flex;
  4047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#606266;
  4052. }
  4053. #u6541 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u6541_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u6542_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:149px;
  4072. height:35px;
  4073. }
  4074. #u6542 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:1066px;
  4078. top:146px;
  4079. width:149px;
  4080. height:35px;
  4081. display:flex;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:12px;
  4086. color:#02A7F0;
  4087. }
  4088. #u6542 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u6542_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u6543_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:49px;
  4107. height:35px;
  4108. }
  4109. #u6543 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:181px;
  4114. width:49px;
  4115. height:35px;
  4116. display:flex;
  4117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. color:#606266;
  4122. }
  4123. #u6543 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u6543_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u6544_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:98px;
  4142. height:35px;
  4143. }
  4144. #u6544 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:49px;
  4148. top:181px;
  4149. width:98px;
  4150. height:35px;
  4151. display:flex;
  4152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. color:#606266;
  4157. }
  4158. #u6544 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u6544_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u6545_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:110px;
  4177. height:35px;
  4178. }
  4179. #u6545 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:147px;
  4183. top:181px;
  4184. width:110px;
  4185. height:35px;
  4186. display:flex;
  4187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#606266;
  4192. }
  4193. #u6545 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u6545_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u6546_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:115px;
  4212. height:35px;
  4213. }
  4214. #u6546 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:257px;
  4218. top:181px;
  4219. width:115px;
  4220. height:35px;
  4221. display:flex;
  4222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:12px;
  4226. color:#606266;
  4227. }
  4228. #u6546 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u6546_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u6547_img {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:115px;
  4247. height:35px;
  4248. }
  4249. #u6547 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:372px;
  4253. top:181px;
  4254. width:115px;
  4255. height:35px;
  4256. display:flex;
  4257. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#606266;
  4262. }
  4263. #u6547 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u6547_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u6548_img {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:98px;
  4282. height:35px;
  4283. }
  4284. #u6548 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:487px;
  4288. top:181px;
  4289. width:98px;
  4290. height:35px;
  4291. display:flex;
  4292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#606266;
  4297. }
  4298. #u6548 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u6548_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. visibility:hidden;
  4310. }
  4311. #u6549_img {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:116px;
  4317. height:35px;
  4318. }
  4319. #u6549 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:585px;
  4323. top:181px;
  4324. width:116px;
  4325. height:35px;
  4326. display:flex;
  4327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:12px;
  4331. color:#606266;
  4332. }
  4333. #u6549 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u6549_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u6550_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:115px;
  4352. height:35px;
  4353. }
  4354. #u6550 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:701px;
  4358. top:181px;
  4359. width:115px;
  4360. height:35px;
  4361. display:flex;
  4362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#606266;
  4367. }
  4368. #u6550 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u6550_text {
  4376. border-width:0px;
  4377. word-wrap:break-word;
  4378. text-transform:none;
  4379. visibility:hidden;
  4380. }
  4381. #u6551_img {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:127px;
  4387. height:35px;
  4388. }
  4389. #u6551 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:816px;
  4393. top:181px;
  4394. width:127px;
  4395. height:35px;
  4396. display:flex;
  4397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:12px;
  4401. color:#606266;
  4402. }
  4403. #u6551 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u6551_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u6552_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:123px;
  4422. height:35px;
  4423. }
  4424. #u6552 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:943px;
  4428. top:181px;
  4429. width:123px;
  4430. height:35px;
  4431. display:flex;
  4432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. color:#606266;
  4437. }
  4438. #u6552 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u6552_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u6553_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:149px;
  4457. height:35px;
  4458. }
  4459. #u6553 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1066px;
  4463. top:181px;
  4464. width:149px;
  4465. height:35px;
  4466. display:flex;
  4467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:12px;
  4471. color:#606266;
  4472. }
  4473. #u6553 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 0px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u6553_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u6554_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:49px;
  4492. height:35px;
  4493. }
  4494. #u6554 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:216px;
  4499. width:49px;
  4500. height:35px;
  4501. display:flex;
  4502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. color:#606266;
  4507. }
  4508. #u6554 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 0px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u6554_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. visibility:hidden;
  4520. }
  4521. #u6555_img {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:98px;
  4527. height:35px;
  4528. }
  4529. #u6555 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:49px;
  4533. top:216px;
  4534. width:98px;
  4535. height:35px;
  4536. display:flex;
  4537. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:#606266;
  4542. }
  4543. #u6555 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u6555_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u6556_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:110px;
  4562. height:35px;
  4563. }
  4564. #u6556 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:147px;
  4568. top:216px;
  4569. width:110px;
  4570. height:35px;
  4571. display:flex;
  4572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:12px;
  4576. color:#606266;
  4577. }
  4578. #u6556 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u6556_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. visibility:hidden;
  4590. }
  4591. #u6557_img {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:115px;
  4597. height:35px;
  4598. }
  4599. #u6557 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:257px;
  4603. top:216px;
  4604. width:115px;
  4605. height:35px;
  4606. display:flex;
  4607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. color:#606266;
  4612. }
  4613. #u6557 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 0px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u6557_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u6558_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:115px;
  4632. height:35px;
  4633. }
  4634. #u6558 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:372px;
  4638. top:216px;
  4639. width:115px;
  4640. height:35px;
  4641. display:flex;
  4642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:12px;
  4646. color:#606266;
  4647. }
  4648. #u6558 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 0px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u6558_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u6559_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:98px;
  4667. height:35px;
  4668. }
  4669. #u6559 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:487px;
  4673. top:216px;
  4674. width:98px;
  4675. height:35px;
  4676. display:flex;
  4677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#606266;
  4682. }
  4683. #u6559 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 2px 2px 0px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u6559_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u6560_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:116px;
  4702. height:35px;
  4703. }
  4704. #u6560 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:585px;
  4708. top:216px;
  4709. width:116px;
  4710. height:35px;
  4711. display:flex;
  4712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:12px;
  4716. color:#606266;
  4717. }
  4718. #u6560 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u6560_text {
  4726. border-width:0px;
  4727. word-wrap:break-word;
  4728. text-transform:none;
  4729. visibility:hidden;
  4730. }
  4731. #u6561_img {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:0px;
  4736. width:115px;
  4737. height:35px;
  4738. }
  4739. #u6561 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:701px;
  4743. top:216px;
  4744. width:115px;
  4745. height:35px;
  4746. display:flex;
  4747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:12px;
  4751. color:#606266;
  4752. }
  4753. #u6561 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u6561_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u6562_img {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:127px;
  4772. height:35px;
  4773. }
  4774. #u6562 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:816px;
  4778. top:216px;
  4779. width:127px;
  4780. height:35px;
  4781. display:flex;
  4782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:12px;
  4786. color:#606266;
  4787. }
  4788. #u6562 .text {
  4789. position:absolute;
  4790. align-self:center;
  4791. padding:2px 2px 2px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u6562_text {
  4796. border-width:0px;
  4797. word-wrap:break-word;
  4798. text-transform:none;
  4799. visibility:hidden;
  4800. }
  4801. #u6563_img {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:123px;
  4807. height:35px;
  4808. }
  4809. #u6563 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:943px;
  4813. top:216px;
  4814. width:123px;
  4815. height:35px;
  4816. display:flex;
  4817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:12px;
  4821. color:#606266;
  4822. }
  4823. #u6563 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:2px 2px 2px 0px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u6563_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. visibility:hidden;
  4835. }
  4836. #u6564_img {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:149px;
  4842. height:35px;
  4843. }
  4844. #u6564 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:1066px;
  4848. top:216px;
  4849. width:149px;
  4850. height:35px;
  4851. display:flex;
  4852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. color:#606266;
  4857. }
  4858. #u6564 .text {
  4859. position:absolute;
  4860. align-self:center;
  4861. padding:2px 2px 2px 0px;
  4862. box-sizing:border-box;
  4863. width:100%;
  4864. }
  4865. #u6564_text {
  4866. border-width:0px;
  4867. word-wrap:break-word;
  4868. text-transform:none;
  4869. visibility:hidden;
  4870. }
  4871. #u6565_img {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:49px;
  4877. height:32px;
  4878. }
  4879. #u6565 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:251px;
  4884. width:49px;
  4885. height:32px;
  4886. display:flex;
  4887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:12px;
  4891. color:#606266;
  4892. }
  4893. #u6565 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u6565_text {
  4901. border-width:0px;
  4902. word-wrap:break-word;
  4903. text-transform:none;
  4904. visibility:hidden;
  4905. }
  4906. #u6566_img {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:98px;
  4912. height:32px;
  4913. }
  4914. #u6566 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:49px;
  4918. top:251px;
  4919. width:98px;
  4920. height:32px;
  4921. display:flex;
  4922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:12px;
  4926. color:#606266;
  4927. }
  4928. #u6566 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 0px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u6566_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. visibility:hidden;
  4940. }
  4941. #u6567_img {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:110px;
  4947. height:32px;
  4948. }
  4949. #u6567 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:147px;
  4953. top:251px;
  4954. width:110px;
  4955. height:32px;
  4956. display:flex;
  4957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:12px;
  4961. color:#606266;
  4962. }
  4963. #u6567 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u6567_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. visibility:hidden;
  4975. }
  4976. #u6568_img {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:115px;
  4982. height:32px;
  4983. }
  4984. #u6568 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:257px;
  4988. top:251px;
  4989. width:115px;
  4990. height:32px;
  4991. display:flex;
  4992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:12px;
  4996. color:#606266;
  4997. }
  4998. #u6568 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u6568_text {
  5006. border-width:0px;
  5007. word-wrap:break-word;
  5008. text-transform:none;
  5009. visibility:hidden;
  5010. }
  5011. #u6569_img {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:115px;
  5017. height:32px;
  5018. }
  5019. #u6569 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:372px;
  5023. top:251px;
  5024. width:115px;
  5025. height:32px;
  5026. display:flex;
  5027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:12px;
  5031. color:#606266;
  5032. }
  5033. #u6569 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 0px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u6569_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. visibility:hidden;
  5045. }
  5046. #u6570_img {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:98px;
  5052. height:32px;
  5053. }
  5054. #u6570 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:487px;
  5058. top:251px;
  5059. width:98px;
  5060. height:32px;
  5061. display:flex;
  5062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:12px;
  5066. color:#606266;
  5067. }
  5068. #u6570 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 0px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u6570_text {
  5076. border-width:0px;
  5077. word-wrap:break-word;
  5078. text-transform:none;
  5079. visibility:hidden;
  5080. }
  5081. #u6571_img {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:116px;
  5087. height:32px;
  5088. }
  5089. #u6571 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:585px;
  5093. top:251px;
  5094. width:116px;
  5095. height:32px;
  5096. display:flex;
  5097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:12px;
  5101. color:#606266;
  5102. }
  5103. #u6571 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:2px 2px 2px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u6571_text {
  5111. border-width:0px;
  5112. word-wrap:break-word;
  5113. text-transform:none;
  5114. visibility:hidden;
  5115. }
  5116. #u6572_img {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:115px;
  5122. height:32px;
  5123. }
  5124. #u6572 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:701px;
  5128. top:251px;
  5129. width:115px;
  5130. height:32px;
  5131. display:flex;
  5132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:12px;
  5136. color:#606266;
  5137. }
  5138. #u6572 .text {
  5139. position:absolute;
  5140. align-self:center;
  5141. padding:2px 2px 2px 0px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u6572_text {
  5146. border-width:0px;
  5147. word-wrap:break-word;
  5148. text-transform:none;
  5149. visibility:hidden;
  5150. }
  5151. #u6573_img {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:127px;
  5157. height:32px;
  5158. }
  5159. #u6573 {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:816px;
  5163. top:251px;
  5164. width:127px;
  5165. height:32px;
  5166. display:flex;
  5167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:12px;
  5171. color:#606266;
  5172. }
  5173. #u6573 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:2px 2px 2px 0px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u6573_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. visibility:hidden;
  5185. }
  5186. #u6574_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:123px;
  5192. height:32px;
  5193. }
  5194. #u6574 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:943px;
  5198. top:251px;
  5199. width:123px;
  5200. height:32px;
  5201. display:flex;
  5202. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:12px;
  5206. color:#606266;
  5207. }
  5208. #u6574 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:2px 2px 2px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u6574_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u6575_img {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:149px;
  5227. height:32px;
  5228. }
  5229. #u6575 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:1066px;
  5233. top:251px;
  5234. width:149px;
  5235. height:32px;
  5236. display:flex;
  5237. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:12px;
  5241. color:#606266;
  5242. }
  5243. #u6575 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u6575_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. visibility:hidden;
  5255. }
  5256. #u6576_div {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:72px;
  5262. height:50px;
  5263. background:inherit;
  5264. background-color:rgba(255, 255, 255, 0);
  5265. border:none;
  5266. border-left:0px;
  5267. border-top:0px;
  5268. border-right:0px;
  5269. border-radius:0px;
  5270. border-bottom-right-radius:0px;
  5271. border-bottom-left-radius:0px;
  5272. -moz-box-shadow:none;
  5273. -webkit-box-shadow:none;
  5274. box-shadow:none;
  5275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5276. font-weight:500;
  5277. font-style:normal;
  5278. }
  5279. #u6576 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:352px;
  5283. top:100px;
  5284. width:72px;
  5285. height:50px;
  5286. display:flex;
  5287. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5288. font-weight:500;
  5289. font-style:normal;
  5290. }
  5291. #u6576 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:0px 0px 0px 0px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u6576_text {
  5299. border-width:0px;
  5300. white-space:nowrap;
  5301. text-transform:none;
  5302. }
  5303. #u6577_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:78px;
  5309. height:50px;
  5310. background:inherit;
  5311. background-color:rgba(255, 255, 255, 0);
  5312. box-sizing:border-box;
  5313. border-width:2px;
  5314. border-style:solid;
  5315. border-color:rgba(24, 144, 255, 1);
  5316. border-left:0px;
  5317. border-top:0px;
  5318. border-right:0px;
  5319. border-radius:0px;
  5320. border-bottom-right-radius:0px;
  5321. border-bottom-left-radius:0px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5326. font-weight:500;
  5327. font-style:normal;
  5328. color:#1890FF;
  5329. }
  5330. #u6577 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:454px;
  5334. top:100px;
  5335. width:78px;
  5336. height:50px;
  5337. display:flex;
  5338. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5339. font-weight:500;
  5340. font-style:normal;
  5341. color:#1890FF;
  5342. }
  5343. #u6577 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:0px 0px 0px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u6577_text {
  5351. border-width:0px;
  5352. white-space:nowrap;
  5353. text-transform:none;
  5354. }
  5355. #u6578_div {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:97px;
  5361. height:50px;
  5362. background:inherit;
  5363. background-color:rgba(255, 255, 255, 0);
  5364. border:none;
  5365. border-left:0px;
  5366. border-top:0px;
  5367. border-right:0px;
  5368. border-radius:0px;
  5369. border-bottom-right-radius:0px;
  5370. border-bottom-left-radius:0px;
  5371. -moz-box-shadow:none;
  5372. -webkit-box-shadow:none;
  5373. box-shadow:none;
  5374. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5375. font-weight:500;
  5376. font-style:normal;
  5377. }
  5378. #u6578 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:562px;
  5382. top:100px;
  5383. width:97px;
  5384. height:50px;
  5385. display:flex;
  5386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5387. font-weight:500;
  5388. font-style:normal;
  5389. }
  5390. #u6578 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:0px 0px 0px 0px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u6578_text {
  5398. border-width:0px;
  5399. white-space:nowrap;
  5400. text-transform:none;
  5401. }
  5402. #u6579_div {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:92px;
  5408. height:50px;
  5409. background:inherit;
  5410. background-color:rgba(255, 255, 255, 0);
  5411. border:none;
  5412. border-left:0px;
  5413. border-top:0px;
  5414. border-right:0px;
  5415. border-radius:0px;
  5416. border-bottom-right-radius:0px;
  5417. border-bottom-left-radius:0px;
  5418. -moz-box-shadow:none;
  5419. -webkit-box-shadow:none;
  5420. box-shadow:none;
  5421. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5422. font-weight:500;
  5423. font-style:normal;
  5424. }
  5425. #u6579 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:689px;
  5429. top:100px;
  5430. width:92px;
  5431. height:50px;
  5432. display:flex;
  5433. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5434. font-weight:500;
  5435. font-style:normal;
  5436. }
  5437. #u6579 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:0px 0px 0px 0px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u6579_text {
  5445. border-width:0px;
  5446. white-space:nowrap;
  5447. text-transform:none;
  5448. }
  5449. #u6580 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:0px;
  5455. height:0px;
  5456. }
  5457. #u6581_div {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:140px;
  5463. height:30px;
  5464. background:inherit;
  5465. background-color:rgba(255, 255, 255, 1);
  5466. box-sizing:border-box;
  5467. border-width:1px;
  5468. border-style:solid;
  5469. border-color:rgba(201, 201, 201, 1);
  5470. border-radius:4px;
  5471. -moz-box-shadow:none;
  5472. -webkit-box-shadow:none;
  5473. box-shadow:none;
  5474. font-family:'Microsoft YaHei', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:14px;
  5478. color:#CCCCCC;
  5479. text-align:left;
  5480. }
  5481. #u6581 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:352px;
  5485. top:171px;
  5486. width:140px;
  5487. height:30px;
  5488. display:flex;
  5489. font-family:'Microsoft YaHei', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:14px;
  5493. color:#CCCCCC;
  5494. text-align:left;
  5495. }
  5496. #u6581 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:2px 8px 2px 8px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u6581_text {
  5504. border-width:0px;
  5505. word-wrap:break-word;
  5506. text-transform:none;
  5507. visibility:hidden;
  5508. }
  5509. #u6582_input {
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:127px;
  5514. height:25px;
  5515. padding:2px 2px 2px 2px;
  5516. font-family:'Microsoft YaHei', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:10px;
  5520. letter-spacing:normal;
  5521. color:#000000;
  5522. vertical-align:none;
  5523. text-align:left;
  5524. text-transform:none;
  5525. background-color:transparent;
  5526. border-color:transparent;
  5527. }
  5528. #u6582_input.disabled {
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:127px;
  5533. height:25px;
  5534. padding:2px 2px 2px 2px;
  5535. font-family:'Microsoft YaHei', sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:10px;
  5539. letter-spacing:normal;
  5540. color:#000000;
  5541. vertical-align:none;
  5542. text-align:left;
  5543. text-transform:none;
  5544. background-color:transparent;
  5545. border-color:transparent;
  5546. }
  5547. #u6582_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:127px;
  5553. height:25px;
  5554. background:inherit;
  5555. background-color:rgba(255, 255, 255, 1);
  5556. border:none;
  5557. border-radius:0px;
  5558. -moz-box-shadow:none;
  5559. -webkit-box-shadow:none;
  5560. box-shadow:none;
  5561. font-family:'Microsoft YaHei', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:10px;
  5565. }
  5566. #u6582 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:360px;
  5570. top:172px;
  5571. width:127px;
  5572. height:25px;
  5573. display:flex;
  5574. font-family:'Microsoft YaHei', sans-serif;
  5575. font-weight:400;
  5576. font-style:normal;
  5577. font-size:10px;
  5578. }
  5579. #u6582 .text {
  5580. position:absolute;
  5581. align-self:center;
  5582. padding:2px 2px 2px 2px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u6582_div.disabled {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:127px;
  5592. height:25px;
  5593. background:inherit;
  5594. background-color:rgba(240, 240, 240, 1);
  5595. border:none;
  5596. border-radius:0px;
  5597. -moz-box-shadow:none;
  5598. -webkit-box-shadow:none;
  5599. box-shadow:none;
  5600. font-family:'Microsoft YaHei', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:10px;
  5604. }
  5605. #u6582.disabled {
  5606. }
  5607. #u6583 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:0px;
  5613. height:0px;
  5614. }
  5615. #u6584_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:140px;
  5621. height:30px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 1);
  5624. box-sizing:border-box;
  5625. border-width:1px;
  5626. border-style:solid;
  5627. border-color:rgba(215, 215, 215, 1);
  5628. border-radius:4px;
  5629. -moz-box-shadow:none;
  5630. -webkit-box-shadow:none;
  5631. box-shadow:none;
  5632. font-size:11px;
  5633. }
  5634. #u6584 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:1253px;
  5638. top:170px;
  5639. width:140px;
  5640. height:30px;
  5641. display:flex;
  5642. font-size:11px;
  5643. }
  5644. #u6584 .text {
  5645. position:absolute;
  5646. align-self:center;
  5647. padding:2px 2px 2px 2px;
  5648. box-sizing:border-box;
  5649. width:100%;
  5650. }
  5651. #u6584_text {
  5652. border-width:0px;
  5653. word-wrap:break-word;
  5654. text-transform:none;
  5655. visibility:hidden;
  5656. }
  5657. #u6585_input {
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:120px;
  5662. height:23px;
  5663. padding:2px 2px 2px 2px;
  5664. font-family:'ArialMT', 'Arial', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:11px;
  5668. letter-spacing:normal;
  5669. color:#AAAAAA;
  5670. vertical-align:none;
  5671. text-align:left;
  5672. text-transform:none;
  5673. background-color:transparent;
  5674. border-color:transparent;
  5675. }
  5676. #u6585_input.disabled {
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:120px;
  5681. height:23px;
  5682. padding:2px 2px 2px 2px;
  5683. font-family:'ArialMT', 'Arial', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:11px;
  5687. letter-spacing:normal;
  5688. color:#AAAAAA;
  5689. vertical-align:none;
  5690. text-align:left;
  5691. text-transform:none;
  5692. background-color:transparent;
  5693. border-color:transparent;
  5694. }
  5695. #u6585_div {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:120px;
  5701. height:23px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 1);
  5704. border:none;
  5705. border-radius:0px;
  5706. -moz-box-shadow:none;
  5707. -webkit-box-shadow:none;
  5708. box-shadow:none;
  5709. font-size:11px;
  5710. color:#AAAAAA;
  5711. }
  5712. #u6585 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:1260px;
  5716. top:172px;
  5717. width:120px;
  5718. height:23px;
  5719. display:flex;
  5720. font-size:11px;
  5721. color:#AAAAAA;
  5722. }
  5723. #u6585 .text {
  5724. position:absolute;
  5725. align-self:flex-start;
  5726. padding:2px 2px 2px 2px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u6585_div.disabled {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:120px;
  5736. height:23px;
  5737. background:inherit;
  5738. background-color:rgba(240, 240, 240, 1);
  5739. border:none;
  5740. border-radius:0px;
  5741. -moz-box-shadow:none;
  5742. -webkit-box-shadow:none;
  5743. box-shadow:none;
  5744. font-size:11px;
  5745. color:#AAAAAA;
  5746. }
  5747. #u6585.disabled {
  5748. }
  5749. .u6585_input_option {
  5750. font-size:11px;
  5751. }
  5752. #u6586_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:59px;
  5758. height:30px;
  5759. background:inherit;
  5760. background-color:rgba(0, 153, 255, 1);
  5761. box-sizing:border-box;
  5762. border-width:1px;
  5763. border-style:solid;
  5764. border-color:rgba(0, 153, 255, 1);
  5765. border-radius:4px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-family:'Microsoft YaHei', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:14px;
  5773. color:#FFFFFF;
  5774. }
  5775. #u6586 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:503px;
  5779. top:211px;
  5780. width:59px;
  5781. height:30px;
  5782. display:flex;
  5783. font-family:'Microsoft YaHei', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:14px;
  5787. color:#FFFFFF;
  5788. }
  5789. #u6586 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:5px 15px 5px 15px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u6586_text {
  5797. border-width:0px;
  5798. white-space:nowrap;
  5799. text-transform:none;
  5800. }
  5801. #u6587 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:0px;
  5807. height:0px;
  5808. }
  5809. #u6588_div {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:140px;
  5815. height:30px;
  5816. background:inherit;
  5817. background-color:rgba(255, 255, 255, 1);
  5818. box-sizing:border-box;
  5819. border-width:1px;
  5820. border-style:solid;
  5821. border-color:rgba(215, 215, 215, 1);
  5822. border-radius:4px;
  5823. -moz-box-shadow:none;
  5824. -webkit-box-shadow:none;
  5825. box-shadow:none;
  5826. font-size:11px;
  5827. }
  5828. #u6588 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1403px;
  5832. top:171px;
  5833. width:140px;
  5834. height:30px;
  5835. display:flex;
  5836. font-size:11px;
  5837. }
  5838. #u6588 .text {
  5839. position:absolute;
  5840. align-self:center;
  5841. padding:2px 2px 2px 2px;
  5842. box-sizing:border-box;
  5843. width:100%;
  5844. }
  5845. #u6588_text {
  5846. border-width:0px;
  5847. word-wrap:break-word;
  5848. text-transform:none;
  5849. visibility:hidden;
  5850. }
  5851. #u6589_input {
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:123px;
  5856. height:23px;
  5857. padding:2px 2px 2px 2px;
  5858. font-family:'ArialMT', 'Arial', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:11px;
  5862. letter-spacing:normal;
  5863. color:#AAAAAA;
  5864. vertical-align:none;
  5865. text-align:left;
  5866. text-transform:none;
  5867. background-color:transparent;
  5868. border-color:transparent;
  5869. }
  5870. #u6589_input.disabled {
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:123px;
  5875. height:23px;
  5876. padding:2px 2px 2px 2px;
  5877. font-family:'ArialMT', 'Arial', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:11px;
  5881. letter-spacing:normal;
  5882. color:#AAAAAA;
  5883. vertical-align:none;
  5884. text-align:left;
  5885. text-transform:none;
  5886. background-color:transparent;
  5887. border-color:transparent;
  5888. }
  5889. #u6589_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:123px;
  5895. height:23px;
  5896. background:inherit;
  5897. background-color:rgba(255, 255, 255, 1);
  5898. border:none;
  5899. border-radius:0px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. font-size:11px;
  5904. color:#AAAAAA;
  5905. }
  5906. #u6589 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:1409px;
  5910. top:173px;
  5911. width:123px;
  5912. height:23px;
  5913. display:flex;
  5914. font-size:11px;
  5915. color:#AAAAAA;
  5916. }
  5917. #u6589 .text {
  5918. position:absolute;
  5919. align-self:flex-start;
  5920. padding:2px 2px 2px 2px;
  5921. box-sizing:border-box;
  5922. width:100%;
  5923. }
  5924. #u6589_div.disabled {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:123px;
  5930. height:23px;
  5931. background:inherit;
  5932. background-color:rgba(240, 240, 240, 1);
  5933. border:none;
  5934. border-radius:0px;
  5935. -moz-box-shadow:none;
  5936. -webkit-box-shadow:none;
  5937. box-shadow:none;
  5938. font-size:11px;
  5939. color:#AAAAAA;
  5940. }
  5941. #u6589.disabled {
  5942. }
  5943. .u6589_input_option {
  5944. font-size:11px;
  5945. }
  5946. #u6590 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:0px;
  5952. height:0px;
  5953. }
  5954. #u6591_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:140px;
  5960. height:30px;
  5961. background:inherit;
  5962. background-color:rgba(255, 255, 255, 1);
  5963. box-sizing:border-box;
  5964. border-width:1px;
  5965. border-style:solid;
  5966. border-color:rgba(201, 201, 201, 1);
  5967. border-radius:4px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'Microsoft YaHei', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:14px;
  5975. color:#CCCCCC;
  5976. text-align:left;
  5977. }
  5978. #u6591 {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:503px;
  5982. top:171px;
  5983. width:140px;
  5984. height:30px;
  5985. display:flex;
  5986. font-family:'Microsoft YaHei', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:14px;
  5990. color:#CCCCCC;
  5991. text-align:left;
  5992. }
  5993. #u6591 .text {
  5994. position:absolute;
  5995. align-self:center;
  5996. padding:2px 8px 2px 8px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u6591_text {
  6001. border-width:0px;
  6002. word-wrap:break-word;
  6003. text-transform:none;
  6004. visibility:hidden;
  6005. }
  6006. #u6592_input {
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:127px;
  6011. height:25px;
  6012. padding:2px 2px 2px 2px;
  6013. font-family:'Microsoft YaHei', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:10px;
  6017. letter-spacing:normal;
  6018. color:#000000;
  6019. vertical-align:none;
  6020. text-align:left;
  6021. text-transform:none;
  6022. background-color:transparent;
  6023. border-color:transparent;
  6024. }
  6025. #u6592_input.disabled {
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:127px;
  6030. height:25px;
  6031. padding:2px 2px 2px 2px;
  6032. font-family:'Microsoft YaHei', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:10px;
  6036. letter-spacing:normal;
  6037. color:#000000;
  6038. vertical-align:none;
  6039. text-align:left;
  6040. text-transform:none;
  6041. background-color:transparent;
  6042. border-color:transparent;
  6043. }
  6044. #u6592_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:127px;
  6050. height:25px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 1);
  6053. border:none;
  6054. border-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'Microsoft YaHei', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:10px;
  6062. }
  6063. #u6592 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:511px;
  6067. top:172px;
  6068. width:127px;
  6069. height:25px;
  6070. display:flex;
  6071. font-family:'Microsoft YaHei', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:10px;
  6075. }
  6076. #u6592 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 2px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u6592_div.disabled {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:127px;
  6089. height:25px;
  6090. background:inherit;
  6091. background-color:rgba(240, 240, 240, 1);
  6092. border:none;
  6093. border-radius:0px;
  6094. -moz-box-shadow:none;
  6095. -webkit-box-shadow:none;
  6096. box-shadow:none;
  6097. font-family:'Microsoft YaHei', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:10px;
  6101. }
  6102. #u6592.disabled {
  6103. }
  6104. #u6593 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:0px;
  6110. height:0px;
  6111. }
  6112. #u6594_div {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:140px;
  6118. height:30px;
  6119. background:inherit;
  6120. background-color:rgba(255, 255, 255, 1);
  6121. box-sizing:border-box;
  6122. border-width:1px;
  6123. border-style:solid;
  6124. border-color:rgba(201, 201, 201, 1);
  6125. border-radius:4px;
  6126. -moz-box-shadow:none;
  6127. -webkit-box-shadow:none;
  6128. box-shadow:none;
  6129. font-family:'Microsoft YaHei', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:14px;
  6133. color:#CCCCCC;
  6134. text-align:left;
  6135. }
  6136. #u6594 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:653px;
  6140. top:171px;
  6141. width:140px;
  6142. height:30px;
  6143. display:flex;
  6144. font-family:'Microsoft YaHei', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:14px;
  6148. color:#CCCCCC;
  6149. text-align:left;
  6150. }
  6151. #u6594 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:2px 8px 2px 8px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u6594_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. visibility:hidden;
  6163. }
  6164. #u6595_input {
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:127px;
  6169. height:25px;
  6170. padding:2px 2px 2px 2px;
  6171. font-family:'Microsoft YaHei', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:10px;
  6175. letter-spacing:normal;
  6176. color:#000000;
  6177. vertical-align:none;
  6178. text-align:left;
  6179. text-transform:none;
  6180. background-color:transparent;
  6181. border-color:transparent;
  6182. }
  6183. #u6595_input.disabled {
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:127px;
  6188. height:25px;
  6189. padding:2px 2px 2px 2px;
  6190. font-family:'Microsoft YaHei', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:10px;
  6194. letter-spacing:normal;
  6195. color:#000000;
  6196. vertical-align:none;
  6197. text-align:left;
  6198. text-transform:none;
  6199. background-color:transparent;
  6200. border-color:transparent;
  6201. }
  6202. #u6595_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:127px;
  6208. height:25px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. border:none;
  6212. border-radius:0px;
  6213. -moz-box-shadow:none;
  6214. -webkit-box-shadow:none;
  6215. box-shadow:none;
  6216. font-family:'Microsoft YaHei', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:10px;
  6220. }
  6221. #u6595 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:661px;
  6225. top:172px;
  6226. width:127px;
  6227. height:25px;
  6228. display:flex;
  6229. font-family:'Microsoft YaHei', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:10px;
  6233. }
  6234. #u6595 .text {
  6235. position:absolute;
  6236. align-self:center;
  6237. padding:2px 2px 2px 2px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u6595_div.disabled {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:127px;
  6247. height:25px;
  6248. background:inherit;
  6249. background-color:rgba(240, 240, 240, 1);
  6250. border:none;
  6251. border-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'Microsoft YaHei', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:10px;
  6259. }
  6260. #u6595.disabled {
  6261. }
  6262. #u6596 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:0px;
  6268. height:0px;
  6269. }
  6270. #u6597_div {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:140px;
  6276. height:30px;
  6277. background:inherit;
  6278. background-color:rgba(255, 255, 255, 1);
  6279. box-sizing:border-box;
  6280. border-width:1px;
  6281. border-style:solid;
  6282. border-color:rgba(215, 215, 215, 1);
  6283. border-radius:4px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. font-size:11px;
  6288. }
  6289. #u6597 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:1103px;
  6293. top:171px;
  6294. width:140px;
  6295. height:30px;
  6296. display:flex;
  6297. font-size:11px;
  6298. }
  6299. #u6597 .text {
  6300. position:absolute;
  6301. align-self:center;
  6302. padding:2px 2px 2px 2px;
  6303. box-sizing:border-box;
  6304. width:100%;
  6305. }
  6306. #u6597_text {
  6307. border-width:0px;
  6308. word-wrap:break-word;
  6309. text-transform:none;
  6310. visibility:hidden;
  6311. }
  6312. #u6598_input {
  6313. position:absolute;
  6314. left:0px;
  6315. top:0px;
  6316. width:120px;
  6317. height:23px;
  6318. padding:2px 2px 2px 2px;
  6319. font-family:'ArialMT', 'Arial', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:11px;
  6323. letter-spacing:normal;
  6324. color:#AAAAAA;
  6325. vertical-align:none;
  6326. text-align:left;
  6327. text-transform:none;
  6328. background-color:transparent;
  6329. border-color:transparent;
  6330. }
  6331. #u6598_input.disabled {
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:120px;
  6336. height:23px;
  6337. padding:2px 2px 2px 2px;
  6338. font-family:'ArialMT', 'Arial', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:11px;
  6342. letter-spacing:normal;
  6343. color:#AAAAAA;
  6344. vertical-align:none;
  6345. text-align:left;
  6346. text-transform:none;
  6347. background-color:transparent;
  6348. border-color:transparent;
  6349. }
  6350. #u6598_div {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:0px;
  6354. top:0px;
  6355. width:120px;
  6356. height:23px;
  6357. background:inherit;
  6358. background-color:rgba(255, 255, 255, 1);
  6359. border:none;
  6360. border-radius:0px;
  6361. -moz-box-shadow:none;
  6362. -webkit-box-shadow:none;
  6363. box-shadow:none;
  6364. font-size:11px;
  6365. color:#AAAAAA;
  6366. }
  6367. #u6598 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:1110px;
  6371. top:173px;
  6372. width:120px;
  6373. height:23px;
  6374. display:flex;
  6375. font-size:11px;
  6376. color:#AAAAAA;
  6377. }
  6378. #u6598 .text {
  6379. position:absolute;
  6380. align-self:flex-start;
  6381. padding:2px 2px 2px 2px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u6598_div.disabled {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:120px;
  6391. height:23px;
  6392. background:inherit;
  6393. background-color:rgba(240, 240, 240, 1);
  6394. border:none;
  6395. border-radius:0px;
  6396. -moz-box-shadow:none;
  6397. -webkit-box-shadow:none;
  6398. box-shadow:none;
  6399. font-size:11px;
  6400. color:#AAAAAA;
  6401. }
  6402. #u6598.disabled {
  6403. }
  6404. .u6598_input_option {
  6405. font-size:11px;
  6406. }
  6407. #u6599_div {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:55px;
  6413. height:30px;
  6414. background:inherit;
  6415. background-color:rgba(255, 255, 255, 1);
  6416. box-sizing:border-box;
  6417. border-width:1px;
  6418. border-style:solid;
  6419. border-color:rgba(170, 170, 170, 1);
  6420. border-radius:4px;
  6421. -moz-box-shadow:none;
  6422. -webkit-box-shadow:none;
  6423. box-shadow:none;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. color:#555555;
  6429. }
  6430. #u6599 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:572px;
  6434. top:211px;
  6435. width:55px;
  6436. height:30px;
  6437. display:flex;
  6438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. font-size:12px;
  6442. color:#555555;
  6443. }
  6444. #u6599 .text {
  6445. position:absolute;
  6446. align-self:center;
  6447. padding:5px 15px 5px 15px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u6599_text {
  6452. border-width:0px;
  6453. white-space:nowrap;
  6454. text-transform:none;
  6455. }
  6456. #u6600 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:0px;
  6462. height:0px;
  6463. }
  6464. #u6601_div {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:0px;
  6468. top:0px;
  6469. width:140px;
  6470. height:30px;
  6471. background:inherit;
  6472. background-color:rgba(255, 255, 255, 1);
  6473. box-sizing:border-box;
  6474. border-width:1px;
  6475. border-style:solid;
  6476. border-color:rgba(201, 201, 201, 1);
  6477. border-radius:4px;
  6478. -moz-box-shadow:none;
  6479. -webkit-box-shadow:none;
  6480. box-shadow:none;
  6481. font-family:'Microsoft YaHei', sans-serif;
  6482. font-weight:400;
  6483. font-style:normal;
  6484. font-size:14px;
  6485. color:#CCCCCC;
  6486. text-align:left;
  6487. }
  6488. #u6601 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:803px;
  6492. top:171px;
  6493. width:140px;
  6494. height:30px;
  6495. display:flex;
  6496. font-family:'Microsoft YaHei', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. font-size:14px;
  6500. color:#CCCCCC;
  6501. text-align:left;
  6502. }
  6503. #u6601 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 8px 2px 8px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u6601_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u6602_input {
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:127px;
  6521. height:25px;
  6522. padding:2px 2px 2px 2px;
  6523. font-family:'Microsoft YaHei', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:10px;
  6527. letter-spacing:normal;
  6528. color:#000000;
  6529. vertical-align:none;
  6530. text-align:left;
  6531. text-transform:none;
  6532. background-color:transparent;
  6533. border-color:transparent;
  6534. }
  6535. #u6602_input.disabled {
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:127px;
  6540. height:25px;
  6541. padding:2px 2px 2px 2px;
  6542. font-family:'Microsoft YaHei', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:10px;
  6546. letter-spacing:normal;
  6547. color:#000000;
  6548. vertical-align:none;
  6549. text-align:left;
  6550. text-transform:none;
  6551. background-color:transparent;
  6552. border-color:transparent;
  6553. }
  6554. #u6602_div {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:127px;
  6560. height:25px;
  6561. background:inherit;
  6562. background-color:rgba(255, 255, 255, 1);
  6563. border:none;
  6564. border-radius:0px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. font-family:'Microsoft YaHei', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:10px;
  6572. }
  6573. #u6602 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:811px;
  6577. top:172px;
  6578. width:127px;
  6579. height:25px;
  6580. display:flex;
  6581. font-family:'Microsoft YaHei', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:10px;
  6585. }
  6586. #u6602 .text {
  6587. position:absolute;
  6588. align-self:center;
  6589. padding:2px 2px 2px 2px;
  6590. box-sizing:border-box;
  6591. width:100%;
  6592. }
  6593. #u6602_div.disabled {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:127px;
  6599. height:25px;
  6600. background:inherit;
  6601. background-color:rgba(240, 240, 240, 1);
  6602. border:none;
  6603. border-radius:0px;
  6604. -moz-box-shadow:none;
  6605. -webkit-box-shadow:none;
  6606. box-shadow:none;
  6607. font-family:'Microsoft YaHei', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. font-size:10px;
  6611. }
  6612. #u6602.disabled {
  6613. }
  6614. #u6603 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:0px;
  6620. height:0px;
  6621. }
  6622. #u6604_div {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:140px;
  6628. height:30px;
  6629. background:inherit;
  6630. background-color:rgba(255, 255, 255, 1);
  6631. box-sizing:border-box;
  6632. border-width:1px;
  6633. border-style:solid;
  6634. border-color:rgba(201, 201, 201, 1);
  6635. border-radius:4px;
  6636. -moz-box-shadow:none;
  6637. -webkit-box-shadow:none;
  6638. box-shadow:none;
  6639. font-family:'Microsoft YaHei', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:14px;
  6643. color:#CCCCCC;
  6644. text-align:left;
  6645. }
  6646. #u6604 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:953px;
  6650. top:171px;
  6651. width:140px;
  6652. height:30px;
  6653. display:flex;
  6654. font-family:'Microsoft YaHei', sans-serif;
  6655. font-weight:400;
  6656. font-style:normal;
  6657. font-size:14px;
  6658. color:#CCCCCC;
  6659. text-align:left;
  6660. }
  6661. #u6604 .text {
  6662. position:absolute;
  6663. align-self:center;
  6664. padding:2px 8px 2px 8px;
  6665. box-sizing:border-box;
  6666. width:100%;
  6667. }
  6668. #u6604_text {
  6669. border-width:0px;
  6670. word-wrap:break-word;
  6671. text-transform:none;
  6672. visibility:hidden;
  6673. }
  6674. #u6605_input {
  6675. position:absolute;
  6676. left:0px;
  6677. top:0px;
  6678. width:127px;
  6679. height:25px;
  6680. padding:2px 2px 2px 2px;
  6681. font-family:'Microsoft YaHei', sans-serif;
  6682. font-weight:400;
  6683. font-style:normal;
  6684. font-size:10px;
  6685. letter-spacing:normal;
  6686. color:#000000;
  6687. vertical-align:none;
  6688. text-align:left;
  6689. text-transform:none;
  6690. background-color:transparent;
  6691. border-color:transparent;
  6692. }
  6693. #u6605_input.disabled {
  6694. position:absolute;
  6695. left:0px;
  6696. top:0px;
  6697. width:127px;
  6698. height:25px;
  6699. padding:2px 2px 2px 2px;
  6700. font-family:'Microsoft YaHei', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:10px;
  6704. letter-spacing:normal;
  6705. color:#000000;
  6706. vertical-align:none;
  6707. text-align:left;
  6708. text-transform:none;
  6709. background-color:transparent;
  6710. border-color:transparent;
  6711. }
  6712. #u6605_div {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:127px;
  6718. height:25px;
  6719. background:inherit;
  6720. background-color:rgba(255, 255, 255, 1);
  6721. border:none;
  6722. border-radius:0px;
  6723. -moz-box-shadow:none;
  6724. -webkit-box-shadow:none;
  6725. box-shadow:none;
  6726. font-family:'Microsoft YaHei', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:10px;
  6730. }
  6731. #u6605 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:961px;
  6735. top:172px;
  6736. width:127px;
  6737. height:25px;
  6738. display:flex;
  6739. font-family:'Microsoft YaHei', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:10px;
  6743. }
  6744. #u6605 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:2px 2px 2px 2px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u6605_div.disabled {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:127px;
  6757. height:25px;
  6758. background:inherit;
  6759. background-color:rgba(240, 240, 240, 1);
  6760. border:none;
  6761. border-radius:0px;
  6762. -moz-box-shadow:none;
  6763. -webkit-box-shadow:none;
  6764. box-shadow:none;
  6765. font-family:'Microsoft YaHei', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:10px;
  6769. }
  6770. #u6605.disabled {
  6771. }
  6772. #u6606_div {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:680px;
  6778. height:150px;
  6779. background:inherit;
  6780. background-color:rgba(255, 255, 255, 0);
  6781. border:none;
  6782. border-left:0px;
  6783. border-top:0px;
  6784. border-right:0px;
  6785. border-radius:0px;
  6786. border-bottom-right-radius:0px;
  6787. border-bottom-left-radius:0px;
  6788. -moz-box-shadow:none;
  6789. -webkit-box-shadow:none;
  6790. box-shadow:none;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. color:#D9001B;
  6795. line-height:30px;
  6796. }
  6797. #u6606 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:395px;
  6801. top:573px;
  6802. width:680px;
  6803. height:150px;
  6804. display:flex;
  6805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. color:#D9001B;
  6809. line-height:30px;
  6810. }
  6811. #u6606 .text {
  6812. position:absolute;
  6813. align-self:center;
  6814. padding:0px 0px 0px 0px;
  6815. box-sizing:border-box;
  6816. width:100%;
  6817. }
  6818. #u6606_text {
  6819. border-width:0px;
  6820. word-wrap:break-word;
  6821. text-transform:none;
  6822. }
  6823. #u6607 {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:0px;
  6829. height:0px;
  6830. }
  6831. #u6608_div {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:140px;
  6837. height:30px;
  6838. background:inherit;
  6839. background-color:rgba(255, 255, 255, 1);
  6840. box-sizing:border-box;
  6841. border-width:1px;
  6842. border-style:solid;
  6843. border-color:rgba(215, 215, 215, 1);
  6844. border-radius:4px;
  6845. -moz-box-shadow:none;
  6846. -webkit-box-shadow:none;
  6847. box-shadow:none;
  6848. font-size:11px;
  6849. }
  6850. #u6608 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:352px;
  6854. top:211px;
  6855. width:140px;
  6856. height:30px;
  6857. display:flex;
  6858. font-size:11px;
  6859. }
  6860. #u6608 .text {
  6861. position:absolute;
  6862. align-self:center;
  6863. padding:2px 2px 2px 2px;
  6864. box-sizing:border-box;
  6865. width:100%;
  6866. }
  6867. #u6608_text {
  6868. border-width:0px;
  6869. word-wrap:break-word;
  6870. text-transform:none;
  6871. visibility:hidden;
  6872. }
  6873. #u6609_input {
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:120px;
  6878. height:23px;
  6879. padding:2px 2px 2px 2px;
  6880. font-family:'ArialMT', 'Arial', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:11px;
  6884. letter-spacing:normal;
  6885. color:#AAAAAA;
  6886. vertical-align:none;
  6887. text-align:left;
  6888. text-transform:none;
  6889. background-color:transparent;
  6890. border-color:transparent;
  6891. }
  6892. #u6609_input.disabled {
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:120px;
  6897. height:23px;
  6898. padding:2px 2px 2px 2px;
  6899. font-family:'ArialMT', 'Arial', sans-serif;
  6900. font-weight:400;
  6901. font-style:normal;
  6902. font-size:11px;
  6903. letter-spacing:normal;
  6904. color:#AAAAAA;
  6905. vertical-align:none;
  6906. text-align:left;
  6907. text-transform:none;
  6908. background-color:transparent;
  6909. border-color:transparent;
  6910. }
  6911. #u6609_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:120px;
  6917. height:23px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 1);
  6920. border:none;
  6921. border-radius:0px;
  6922. -moz-box-shadow:none;
  6923. -webkit-box-shadow:none;
  6924. box-shadow:none;
  6925. font-size:11px;
  6926. color:#AAAAAA;
  6927. }
  6928. #u6609 {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:359px;
  6932. top:213px;
  6933. width:120px;
  6934. height:23px;
  6935. display:flex;
  6936. font-size:11px;
  6937. color:#AAAAAA;
  6938. }
  6939. #u6609 .text {
  6940. position:absolute;
  6941. align-self:flex-start;
  6942. padding:2px 2px 2px 2px;
  6943. box-sizing:border-box;
  6944. width:100%;
  6945. }
  6946. #u6609_div.disabled {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:120px;
  6952. height:23px;
  6953. background:inherit;
  6954. background-color:rgba(240, 240, 240, 1);
  6955. border:none;
  6956. border-radius:0px;
  6957. -moz-box-shadow:none;
  6958. -webkit-box-shadow:none;
  6959. box-shadow:none;
  6960. font-size:11px;
  6961. color:#AAAAAA;
  6962. }
  6963. #u6609.disabled {
  6964. }
  6965. .u6609_input_option {
  6966. font-size:11px;
  6967. }