@charset "utf-8";

/*******banner***********/
* {margin:0; padding:0;}

.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {zoom:1;}
ul,li {list-style:none;}
img {border:0;}

.wrapper {
	width:980px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: auto;
}

h1 {height:50px; line-height:50px; font-size:22px; font-weight:normal; font-family:"Microsoft YaHei",SimHei;}

.shuoming {
	margin-top:20px;
	border:1px solid #ccc;
}
.shuoming dt {height:30px; line-height:30px; font-weight:bold; text-indent:10px;}
.shuoming dd {line-height:20px; padding:5px 20px;}

/* qqshop focus */
#focus {width:980px; height:280px; overflow:hidden; position:relative;}
#focus ul {height:380px; position:absolute;}
#focus ul li {float:left; width:980px; height:280px; overflow:hidden; position:relative; background:#000;}
#focus ul li div {position:absolute; overflow:hidden;}
#focus .btnBg {position:absolute; width:980px; height:20px; left:0; bottom:0; background:#000;}
#focus .btn {position:absolute; width:780px; height:10px; padding:5px 10px; right:0; bottom:0; text-align:right;}
#focus .btn span {display:inline-block; _display:inline; _zoom:1; width:25px; height:10px; _font-size:0; margin-left:5px; cursor:pointer; background:#fff;}
#focus .btn span.on {background:#fff;}
#focus .preNext {
	width:45px;
	height:100px;
	position:absolute;
	top:90px;
	cursor:pointer;
	background-image: url(../images/sprite.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#focus .pre {left:0;}
#focus .next {right:0; background-position:right top;}
</style>

<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
	var sWidth = $("#focus").width(); //获取焦点图的宽度（显示面积）
	var len = $("#focus ul li").length; //获取焦点图个数
	var index = 0;
	var picTimer;
	
	//以下代码添加数字按钮和按钮后的半透明条，还有上一页、下一页两个按钮
	var btn = "<div class='btnBg'></div><div class='btn'>";
	for(var i=0; i < len; i++) {
		btn += "<span></span>";
	}
	btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";
	$("#focus").append(btn);
	$("#focus .btnBg").css("opacity",0.5);

	//为小按钮添加鼠标滑入事件，以显示相应的内容
	$("#focus .btn span").css("opacity",0.4).mouseenter(function() {
		index = $("#focus .btn span").index(this);
		showPics(index);
	}).eq(0).trigger("mouseenter");

	//上一页、下一页按钮透明度处理
	$("#focus .preNext").css("opacity",0.2).hover(function() {
		$(this).stop(true,false).animate({"opacity":"0.5"},300);
	},function() {
		$(this).stop(true,false).animate({"opacity":"0.2"},300);
	});

	//上一页按钮
	$("#focus .pre").click(function() {
		index -= 1;
		if(index == -1) {index = len - 1;}
		showPics(index);
	});

	//下一页按钮
	$("#focus .next").click(function() {
		index += 1;
		if(index == len) {index = 0;}
		showPics(index);
	});

	//本例为左右滚动，即所有li元素都是在同一排向左浮动，所以这里需要计算出外围ul元素的宽度
	$("#focus ul").css("width",sWidth * (len));
	
	//鼠标滑上焦点图时停止自动播放，滑出时开始自动播放
	$("#focus").hover(function() {
		clearInterval(picTimer);
	},function() {
		picTimer = setInterval(function() {
			showPics(index);
			index++;
			if(index == len) {index = 0;}
		},4000); //此4000代表自动播放的间隔，单位：毫秒
	}).trigger("mouseleave");
	
	//显示图片函数，根据接收的index值显示相应的内容
	function showPics(index) { //普通切换
		var nowLeft = -index*sWidth; //根据index值计算ul元素的left值
		$("#focus ul").stop(true,false).animate({"left":nowLeft},300); //通过animate()调整ul元素滚动到计算出的position
		//$("#focus .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果
		$("#focus .btn span").stop(true,false).animate({"opacity":"0.4"},300).eq(index).stop(true,false).animate({"opacity":"1"},300); //为当前的按钮切换到选中的效果
	}
});


/* CSS Document */
p{
	font-size:12px;
	font-family: "宋体";
	color: #000000;
}
body {
	margin-top: 0px;
}
.main{
	width:1003px;
	height:auto;
	margin-top:0px;
	margin-bottom:0px;
	margin-left:auto;
	margin-right:auto;
}
.header{
	width:1003px;
	height:122px;
	background-image: url(../images/header.png);
}
.header img {
	float: left;
}
.header span {
	font-family: "宋体";
	font-size: 12px;
	color: #FFFFFF;
	float: right;
	margin-right: 20px;
	margin-top: 10px;
	display:inline;
}
.header span a {
	color: #FFFFFF;
	text-decoration:none;
}
.header span a:link {
	color: #FFFFFF;
}
.header span a:hover {
	color: #FFFFFF;
	text-decoration:underline;
}

/**** nav****/
.nav{
	width:1003px;
	height:44px;
	background-image: url(../images/menu_bg.gif);
	background-repeat: repeat-x;
}
.nav li{
	width:127px;
	height:44px;
	float:left;
	list-style-type: none;
	background-image: url(../images/menu_bg1.gif);
	background-position: left;
	padding-left: 1px;
	background-repeat: no-repeat;
}

.nav ul{
	margin:0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 50px;
}
.banner{
	width:1003px;
	height: 285px!important; /* IE7+FF */
	height: 280px; /* IE6 */
	float:left;
	background-image:url(../images/banner_bg.gif);
	margin-top: 5px;
	padding-top: 10px;
	display:inline;
}

/*****************/
.banner ul{
	padding:0;
	margin:0;}
/******************/
.scroll{
	width:963px;
	height:22px;
	font-family: "宋体";
	font-size: 12px;
	line-height:22px;
	color: #FFFFFF;
	display:block;
	margin-left:auto;
	margin-right:auto;
	padding:0;
	
/*			background-color:#033570;
margin-top:0px;
padding-right: 20px;
	padding-left: 20px;*/
	text-align: center;
	overflow: hidden;
}
.box1{
	width:1003px;
	height:auto;
	float:left;
	margin-top: 10px;
}
.box1_left{
	width:220px;
	height:auto;
	float: left;
	margin-top: 8px;
}
.products{
	width:220px;
	height:514px;
	background-image:url(../images/cp_top.png);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 34px;
}
.products li {
	float: left;
	;
	list-style-type: none;
	font-family: "宋体";
	font-size: 12px;
	background-image: url(../images/1.png);
	background-repeat: no-repeat;
	background-position: left center;
	height: 22px;
	width: 200px;
}
.products ul {
	margin: 0px;
	padding-top: 4px;
	padding-left: 10px;
}
.products li a {
	color: #000000;
	display:block;
	height: 18px;
	width: 184px;
	text-decoration: none;
	padding-left: 16px;
	padding-top: 4px;
}
.products li a:link {
	color: #000000;
	display:block;
}
.products li a:hover {
	color: #FFF;
	display:block;
	background-image: url(../images/01.png);
	background-repeat: no-repeat;
	background-position: left top;
}


.contacts_us{
	width:212px;
	height:172px;
	float:left;
	padding-left: 4px;
	padding-top: 10px;
	padding-right: 4px;
}
.box1_right{
	width:760px;
	height:100%;
	float:left;
	margin-left: 20px;
}
.tj{
	width:754px;
	height:160px;
}
.tj_top{
	width:754px;
	height:19px;
	float:left;
	background-image: url(../images/tj.jpg);
	font-family: "宋体";
	font-size: 12px;
	text-align: right;
	padding-top: 15px;
}
.tj_top a{
	color:#000000;
	text-decoration:none;
}
.tj_top a:link{
color:#000000;
}
.tj_top a:hover{
color:#000066;
text-decoration:underline;
}
.tj_01{
	width:754px;
	height:115px;
	float:left;
	padding-top: 5px;
	background-color: #CCCCCC;
}
.zx_01{
	width:754px;
	height:auto;
	float: left;
	padding-top: 20px;
}
.zx_02{
	background-image: url(../images/tj.jpg);
	height: 19px;
	width: 754px;
	background-repeat: no-repeat;
	background-position: left top;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	text-align: right;
	float: left;
	padding-top: 15px;
}
.zx_02 a{
	color:#000000;
	text-decoration:none;
}
.zx{
	width:754px;
	height:500px;
	float: left;
}
.zx li {
	background-image: url(../images/cp_bg.jpg);
	height: 157px;
	width: 165px;
	float: left;
	list-style-type: none;
	margin-left: 5px;
	margin-bottom: 10px;
	background-repeat: no-repeat;
	margin-right: 12px;
}
.zx ul {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.zx span {
	height: 15px;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	text-align: center;
	padding-top: 15px;
	display: block;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.zx a {
	color: #000000;
	text-decoration:none;
}
.zx a:link {
	color: #000000;
}
.zx a:hover {
	font-size:13px;
	color: #0A3E7A;
	text-decoration: underline;
}
.zx a:visited {
	color: #000000;
}
.zx img {
	margin-top: 6px;
	margin-left: 8px;
}
.footer{
	width:923px;
	height:79px;
	background-image: url(../images/footer.jpg);
	font-family: "宋体";
	font-size: 12px;
	color: #FFFFFF;
	text-align: center;
	padding-top: 25px;
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 20px;
	padding-right: 40px;
	padding-left: 40px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.footer1{
	width:923px;
	height:79px;
	background-image: url(../images/footer1.jpg);
	font-family: "宋体";
	font-size: 12px;
	color: #FFFFFF;
	text-align: center;
	padding-top: 25px;
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 20px;
	padding-right: 40px;
	padding-left: 40px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.footer a {
	color: #FFFFFF;
	text-decoration:none;
}
.footer a:link {
	color: #FFFFFF;
}
.footer a:hover {
	color: #FFFFFF;
	text-decoration:underline;
}
/******products***********/
/******* about******/
.about_left{
	width:200px;
	height:400px;
	float:left;
	background-image: url(../images/about_1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 42px;
}
.about_left li {
	height: 26px;
	width: 200px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
	background-image: url(../images/about11.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
}
.about_left ul {
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.about_left li a{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	display: block;
	}
	.about_left li a:link{
	width:200px;
	height:26px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	}
	.about_left li a:hover{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	background-image: url(../images/about1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	}
.about_right{
	width:785px;
	float:right;
	margin-left: 17px;
	height: auto;
}
.about_bq{
	width:785px;
	height:15px;
	float:left;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #052244;
	font-family: "宋体";
	font-size: 12px;
	padding-top: 25px;
}
.about_bq a{
	color:#000000;
	text-decoration:none;
}
.about_bq a:link{
	color:#000000;

}
.about_bq a:hover{
	color:#000033;
	text-decoration:underline;

}
.about_bg{
	background-image: url(../images/about_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 785px;
	float: left;
	margin-top: 5px;
}
.about_nr1{
	width:570px;
	height:auto;
	float: left;
	padding-top: 70px;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	line-height: 24px;
	padding-right: 195px;
	padding-left: 20px;
}
.about_nr2{
	width:725px;
	height:auto;
	float:left;
	font-family: "宋体";
	font-size: 12px;
	line-height: 24px;
	color: #000000;
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 40px;
}
.about_nr3 {
	float: left;
	width: 725px;
	font-size: 12px;
	font-family: "MS UI Gothic";
	line-height: 24px;
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 100px;
	padding-left: 20px;
}
/*****news****/
.news_left{
	width:200px;
	height:400px;
	float:left;
	background-image: url(../images/news_top.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 42px;
}

.news_left li {
	height: 26px;
	width: 200px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
	background-image: url(../images/about11.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
}
.news_left ul {
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.news_left li a{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	display: block;
	}
	.news_left li a:link{
	width:200px;
	height:26px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	}
	.news_left li a:hover{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	background-image: url(../images/about1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	}
.news_bg{
	background-image: url(../images/news_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 785px;
	float: left;
	margin-top: 5px;
	font-family: "宋体";
	color: #000000;
	font-size: 12px;
	padding-top: 50px;
}
.news_bg li {
	float: left;
	height: 21px;
	width: 700px;
	display: block;
	padding-top: 11px;
	background-image: url(../images/d.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
	padding-left: 10px;
}
.news_bg ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
.news_bg span {
	float: right;
	display: block;
}
.news_bg li a {
	color: #000000;
	text-decoration: none;
	height: 24px;
	width: 550px;
	overflow: hidden;
	float: left;
}
.news_bg li a:link {
	color: #000000;
}
.news_bg li a:hover {
	color: #0F3D7B;
	background-repeat: repeat-y;
	background-position: left top;
	text-decoration: underline;
}
/********contacts_us******/
.contact_left{
	width:200px;
	height:400px;
	float:left;
	background-image: url(../images/contact_top.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 42px;
}
.contact_left li {
	height: 26px;
	width: 200px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
	background-image: url(../images/about11.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
}
.contact_left ul {
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.contact_left li a{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	display: block;
	}
	.contact_left li a:link{
	width:200px;
	height:26px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	}
	.contact_left li a:hover{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	background-image: url(../images/about1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	}

.contact_bg {
	float: left;
	height: 280px;
	width: 622px;
	background-image: url(../images/contact_bg.jpg);
	margin-top: 5px;
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 163px;
	padding-top: 120px;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	line-height: 24px;
}
/******文化*****/
.wh_bg{
	background-image: url(../images/qywh.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 785px;
	float: left;
	margin-top: 5px;
	height: 400px;
}
/********job**********/
.job_bg{
	width:785px;
	height:auto;
	float: left;
	margin-top: 5px;
	padding-top: 60px;
	background-image: url(../images/job_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
.job_bg li {
	float: left;
	height: 21px;
	width: 700px;
	display: block;
	padding-top: 11px;
	padding-left: 10px;
	background-image: url(../images/d.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	margin-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
}
.job_bg ul {
	margin: 0px;
	padding: 0px;
}
.job_bg span {
	float: right;
	display: block;
}
.job_bg li a {
	color: #000000;
	text-decoration: none;
	height: 24px;
	width: 550px;
	overflow: hidden;
	float: left;
}
.job_bg li a:link {
	color: #000000;
}
.job_bg li a:hover {
	color: #0F3D7B;
	background-repeat: repeat-y;
	background-position: left top;
	text-decoration: underline;
}
/******技术*******/
.js_bg{
	background-image: url(../images/jsyf_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 785px;
	float: left;
	margin-top: 5px;
	font-family: "宋体";
	color: #000000;
	font-size: 12px;
	padding-top: 50px;
}
.js_bg li {
	float: left;
	height: 21px;
	width: 700px;
	display: block;
	padding-top: 11px;
	padding-left: 10px;
	background-image: url(../images/d.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	margin-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
}
.js_bg ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
.js_bg span {
	float: right;
	display: block;
}
.js_bg li a {
	color: #000000;
	text-decoration: none;
	height: 24px;
	width: 550px;
	overflow: hidden;
	float: left;
}
.js_bg li a:link {
	color: #000000;
}
.js_bg li a:hover {
	color: #0F3D7B;
	background-repeat: repeat-y;
	background-position: left top;
	text-decoration: underline;
}
/******售后新*******/
.fw_bg{
	background-image: url(../images/sh_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 785px;
	float: left;
	margin-top: 5px;
	font-family: "宋体";
	color: #000000;
	font-size: 12px;
	padding-top: 50px;
}
.fw_bg li {
	float: left;
	height: 21px;
	width: 700px;
	display: block;
	padding-top: 11px;
	padding-left: 10px;
	background-image: url(../images/d.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	margin-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
}
.fw_bg ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
.fw_bg span {
	float: right;
	display: block;
}
.fw_bg li a {
	color: #000000;
	text-decoration: none;
	height: 24px;
	width: 550px;
	overflow: hidden;
	float: left;
}
.fw_bg li a:link {
	color: #000000;
}
.fw_bg li a:hover {
	color: #0F3D7B;
	background-repeat: repeat-y;
	background-position: left top;
	text-decoration: underline;
}
/********售后*********/
.sh_left{
	width:200px;
	height:400px;
	float:left;
	background-image: url(../images/sh_top.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 42px;
}
.sh_left li {
	height: 26px;
	width: 200px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
	background-image: url(../images/about11.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
}
.sh_left ul {
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.sh_left li a{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	display: block;
	}
	.sh_left li a:link{
	width:200px;
	height:26px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	}
	.sh_left li a:hover{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	background-image: url(../images/about1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	}
.sh{
	width:785px;
	height:43px;
	float: left;
	margin-top: 5px;
	overflow: auto;
	background-image: url(../images/sh_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
.sh_nr {
	float: left;
	height: 400px;
	width: 780px;
	background-image: url(../images/sh_bg1.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
}

.sh_nr li {
	float: left;
	height: 21px;
	width: 700px;
	display: block;
	padding-top: 11px;
	padding-left: 10px;
	background-image: url(../images/d.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	margin-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
}
.sh_nr ul {
	margin: 0px;
	padding: 0px;
}
.sh_nr span {
	float: right;
	display: block;
}
.sh_nr li a {
	color: #000000;
	text-decoration: none;
	height: 24px;
	width: 550px;
	overflow: hidden;
	float: left;
}
.sh_nr li a:link {
	color: #000000;
}
.sh_nr li a:hover {
	color: #0F3D7B;
	background-repeat: repeat-y;
	background-position: left top;
	text-decoration: underline;
}
/*******工程*********/
.gc_left{
	width:200px;
	height:400px;
	float:left;
	background-image: url(../images/gcal_top.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 42px;
}

.gc_left li {
	height: 26px;
	width: 200px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
	background-image: url(../images/about11.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
}
.gc_left ul {
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.gc_left li a{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	display: block;
	}
	.gc_left li a:link{
	width:200px;
	height:26px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	}
	.gc_left li a:hover{
	width:190px;
	height:19px;
	color: #000;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 7px;
	background-image: url(../images/about1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	}
.gc_nr {
	float: left;
	height: 400px;
	width: 780px;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
}

.gc_nr li {
	float: left;
	height: 21px;
	width: 700px;
	display: block;
	padding-top: 11px;
	padding-left: 10px;
	background-image: url(../images/d.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	margin-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
}
.gc_nr ul {
	margin: 0px;
	padding: 0px;
}
.gc_nr span {
	float: right;
	display: block;
}
.gc_nr li a {
	color: #000000;
	text-decoration: none;
	height: 24px;
	width: 550px;
	overflow: hidden;
	float: left;
}
.gc_nr li a:link {
	color: #000000;
}
.gc_nr li a:hover {
	color: #0F3D7B;
	background-repeat: repeat-y;
	background-position: left top;
	text-decoration: underline;
}
/*****售后****/
.gc{
	width:785px;
	height:43px;
	float: left;
	margin-top: 5px;
	overflow: auto;
	background-image: url(../images/gcal_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
/****内页*****/
.ny{
width:785px;
height:auto;
float:left;}
.h2{
	height:30px;
	text-align: center;
	width: 785px;
	padding-top: 20px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
}
.bq{
	width:785px;
	height:20px;
	float:left;
	text-align: center;
	font-family: "宋体";
	font-size: 14px;
	padding-top: 10px;
}
.ny_1{
	width:705px;
	height:auto;
	float:left;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	line-height: 24px;
	padding-right: 40px;
	padding-left: 40px;
	padding-top: 15px;
}
/******产品********/
.cp_bq{
	width:760px;
	height:15px;
	float:left;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #052244;
	font-family: "宋体";
	font-size: 12px;
	padding-top: 25px;
}
.cp_bq a{
	color:#000000;
	text-decoration:none;
}
.cp_bq a:link{
	color:#000000;

}
.cp_bq a:hover{
	color:#000033;
	text-decoration:underline;

}.cp_nr {
	float: left;
	height: 42px;
	width: 760px;
	background-image: url(../images/cp.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 5px;
}
.cp_nr2{
	width:760px;
	height:auto;
	float:left;
}.cp_nr2 li {
	height: auto;
	width: 190px;
	float: left;
	padding-bottom: 10px;
}
.cp_nr2 ul {
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.cp_nr2 img {
	height: 137px;
	width: 170px;
	float: left;
	border: 2px solid #CCCCCC;
	padding: 6px;
	margin-right: 4px;
}
.cp_nr2 span {
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	display: block;
	height: 20px;
	text-align: center;
	float: left;
	width: 186px;
	padding-top: 7px;
}
.cp_nr2 a {
	color: #000000;
	text-decoration: none;
}
.cp_nr2 a:link {
	color: #000000;
}
.cp_nr2 a:hover {
	color: #053670;
}
.cp_ny1{
	width:750px;
	/*height:270px;*/
	float:left;
}
.cp_ny2{
	width:318px;
	height:246px;
	float:left;
	background-image: url(../images/cp_ny1.jpg);
	margin-top: 15px;
	margin-left: 20px;
	border: 1px solid #CCCCCC;
	padding: 6px;
	background-repeat: no-repeat;
	background-position: center center;
}
.cp_ny2 img {
	float: left;
	height: 214px;
	width: 286px;
	padding-left: 17px;
	padding-top: 14px;
}

.co_ny3{
	width:330px;
	height:190px;
	float:left;
	background-image: url(../images/xxjs.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 35px;
	margin-left: 20px;
	padding-top: 40px;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	line-height: 24px;
	padding-left: 4px;
}
.cp_ny4{
	width:680px;
	height:auto;
	float:left;
	background-image: url(../images/cp_ny2.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 10px;
	padding-top: 30px;
	font-family: "宋体";
	font-size: 12px;
	color: #000000;
	line-height: 24px;
	padding-right: 40px;
	padding-left: 40px;
}
.footer_01{
	width: 100%;
	display: block;
	background-repeat: repeat-x;
	background-position: bottom;
	background-image: url(../images/footer_01.jpg);
}
.index_01 {
	float: left;
	height: 421px;
	width: 1003px;
}

.box2{
	width:1003px;
	overflow:hidden;
	margin:0 auto;
}
.left{
	width:317px;
	overflow:hidden;
	float:left;
	margin-left:10px;}
.news{
	width:317px;
	height:200px;
	float:left;
	background:url(../images/left_bg.jpg) no-repeat left top;}
	.news h4{
	width:306px;
	height:32px;
	float:left;
	margin-top:5px;
	margin-left:5px;
	}
	.news ul{
	list-style-type:none;
	float:left;
	margin-top:8px;
	}
	.news li{
	float:left;
	width:306px;
	overflow:hidden;
	}
	.news a{
	float:left;
	text-decoration:none;
	font:12px "宋体";
	line-height:24px;
	color:#6b6b6b;
	padding-left:10px;
	margin-left:8px;
	overflow:hidden;
	background:url(../images/arrow.jpg) no-repeat left 7px;
	}
	.news a:hover{
	float:left;
	text-decoration:none;
	font:12px "宋体";
	line-height:24px;
	color:#f00;
	padding-left:10px;
	margin-left:8px;
	background:url(../images/arrow.jpg) no-repeat left 7px;
	}
	.news span{
	float:right;
	font:12px "宋体";
	line-height:24px;
	color:#6b6b6b;
	
	}
	.products_list{
		width:317px;
	height:200px;
	float:left;
	margin-top:8px;
	background:url(../images/left_bg.jpg) no-repeat left top;}
	.products_list h4{
	width:306px;
	height:32px;
	float:left;
	margin-top:5px;
	margin-left:5px;}
	.products_list ul{
	list-style-type:none;
	float:left;
	margin-top:10px;
	margin-left:4px;}
	.products_list li{
	float:left;
	width:156px;
	height:33px;
	margin-bottom:4px;
	display:inline;
	}
	.products_list .products_bg{
		display:block;
		width:52px;
		height:28px;
	float:left;
	padding:0;
	border:1px solid #1d3f65;
	}
	.products_list .products_bg:hover{
		display:block;
		width:52px;
		height:28px;
	float:left;
	padding:0;
	border:1px solid #1d3f65;
	}
	.products_list a{
    font:12px "宋体";
	line-height:28px;
	color:#6b6b6b;
	float:left;
text-decoration:none;
padding-left:3px;
	}
	.products_list a:hover{
    font:12px "宋体";
	line-height:28px;
	color:#1d3f65;
	float:left;
text-decoration:none;
padding-left:3px;
	}
	.right{
		width:658px;
		overflow:hidden;
		float:left;
		margin-left:4px;}
		.right_top{
		width:658px;
		float:left;
		overflow:hidden;
	}
	.com_intro{
		width:467px;
		height:200px;
		float:left;
	    background:url(../images/com_intro.jpg) no-repeat left top;}
		.com_intro h4{
		width:455px;
		height:32px;
	    float:left;
	margin-top:5px;
	margin-left:5px;}
	.com_intro_content{
		width:455px;
		overflow:hidden;
		float:left;
	
	}
	.com_intro_pic{
		width:130px;
		height:146px;
		float:left;
		margin-top:10px;
		margin-left:10px;
		background:url(../images/com_intro_pic_bg.jpg) no-repeat left top;
	}
	.com_intro_pic img{
		
		margin-top:6px;
		margin-left:6px;
		border:1px solid #8f8f8f;
		
	}
	.com_intro_content p{
		width:290px;
		float:left;
		font:12px "宋体";
		line-height:24px;
		color:#6b6b6b;
		margin-top:8px;
		margin-left:10px;
	}
	.search{
		width:184px;
		height:145px;
		float:left;
		margin-left:6px;
		padding-top:55px;
	
		background:url(../images/search_bg.jpg) no-repeat left top;}
		.search select{
			display:block;
			width:120px;
		height:21px;
		border:0;
		font:12px "宋体";
		line-height:21px;
		color:#000;
		float:left;
		display:inline;
		margin-left:20px;
		border:1px solid #7f9db9; }
		.search .btn{
			width:31px;
		height:18px;
		border:0;
		float:left;
		margin-left:4px;
		 background:url(../images/search_btn.jpg) no-repeat left top;}
		 .search a{
			 float:left;
		margin-left:6px;
		margin-top:10px;}
		.product_show{
				width:648px;
		height:200px;
		float:left;
		margin-top:8px;
		padding-left:10px;
		 background:url(../images/product_show_bg.jpg) no-repeat left top;}
		 .product_show h4{
			 width:641px;
			 height:21px;
		margin-top:14px;
	    }
		.product_show table{
			
		margin-top:5px;
	    }
/******行业资讯*******/
.hyzx_bg{
	background-image: url(../images/hyzx.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 785px;
	float: left;
	margin-top: 5px;
	font-family: "宋体";
	color: #000000;
	font-size: 12px;
	padding-top: 50px;
}
.hyzx_bg li {
	float: left;
	height: 21px;
	width: 700px;
	display: block;
	padding-top: 11px;
	background-image: url(../images/d.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999999;
	padding-left: 10px;
}
.hyzx_bg ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
.hyzx_bg span {
	float: right;
	display: block;
}
.hyzx_bg li a {
	color: #000000;
	text-decoration: none;
	height: 24px;
	width: 550px;
	overflow: hidden;
	float: left;
}
.hyzx_bg li a:link {
	color: #000000;
}
.hyzx_bg li a:hover {
	color: #0F3D7B;
	background-repeat: repeat-y;
	background-position: left top;
	text-decoration: underline;
}
.box_2{
	width:1003px;
	overflow:hidden;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 10px;
}
.page{
	font-size:12px;
	font-family:'宋体'
}
.center{
	margin:0 auto;
}
.clearboth{clear:both;}