@charset "utf-8";
/* CSS Document */
footer{
	width: 100%;/*auto默认值。浏览器可计算出实际的宽度。
				length使用 px，cm等单位定义宽度。
				%定义基于包含块（父元素）宽度的百分比宽度。
				inherit规定应该从父元素继承 width 属性的值。*/
	float: left;/*float 属性定义元素在哪个方向浮动。
				以往这个属性总应用于图像，使文本围绕在图像周围，不过在 CSS 中，任何元素都可以浮动。
				浮动元素会生成一个块级框，而不论它本身是何种元素。
				如果浮动非替换元素，则要指定一个明确的宽度；否则，它们会尽可能地窄*/
	min-width: 1200px;
	height: 235px;
	background-color: #303031;
}
footer .show1200{
	width: 1200px;
	height: 140px;
	margin: 0 auto;	
}
.foot_logo{
	width: 90px;
	height: 77px;
	margin-top: 20px;
	float: left;
	background: url(/statics/zhuoken/images/btlogo.png)
}
.foot_nav{
	width: 1100px;
	height: 27px;
	margin-top: 47px;
	float: right;
}
.foot_nav a{
	font-family: 微软雅黑;
	font-size: 16px;
	line-height: 27px;
	height: 27px;
	color: #7e7e7e;
	margin-left: 33px;
	float: right;
}
.foot_nav a:hover{
	text-decoration: underline;
}
/*575757*/
.foot_line{
	float: left;
	background-color: #575757;
	width: 1200px;
	height: 1px;
	margin-top: 22px;
}
.foot_tel{
	margin-top: 20px;
	float: right;
}
.foot_tel span{
	float: right;
	font-size: 14px;
	line-height: 27px;
	margin-left: 20px;
	color: #7e7e7e;
}
.foot_copy span{
	width: 100%;
	text-align: right;
	float: left;
	font-size: 14px;
	line-height: 27px;
	color: #7e7e7e;
}