styles.css 106 KB

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