@charset "utf-8";
/* CSS Document */
header{
	width: 100%;/*auto默认值。浏览器可计算出实际的宽度。
				length使用 px，cm等单位定义宽度。
				%定义基于包含块（父元素）宽度的百分比宽度。
				inherit规定应该从父元素继承 width 属性的值。*/
	float: left;/*float 属性定义元素在哪个方向浮动。
				以往这个属性总应用于图像，使文本围绕在图像周围，不过在 CSS 中，任何元素都可以浮动。
				浮动元素会生成一个块级框，而不论它本身是何种元素。
				如果浮动非替换元素，则要指定一个明确的宽度；否则，它们会尽可能地窄*/
	min-width: 1200px;
	height: 140px;
	background-color: #ffffff;
}
/*b99052*/
header .show1200{
	width: 1200px;
	height: 140px;
	margin: 0 auto;	
}
header .logo{
	width: 275px;
	height: 140px;
	float: left;
}
header .logo a{
	width: 275px;
	height: 140px;
	float: left;
	background: url(/statics/zhuoken/images/zklogo.jpg)
}
header nav{
	width: 880px;
	margin-left: 45px;
	float: left;
	
}
header nav .site-menu{
	width: 880px;
	height:100%;
	float: left;
}

header nav span{
	height: 140px;
	float: left;
}

header nav span a{
	height:77px;
	width: 110px;
	color: #000000;
	display: block;
	font-size: 20px;
	line-height: 24px;
	font-family: 微软雅黑;
	padding-top: 63px;
	text-align:center;
	float: left;
	height:140px;
}
.menuli{
	position: relative;
	width: 110px;
	float:left;
}
.subul{
	width: 110px;
	position: absolute;/*absolute生成绝对定位的元素，相对于 static 定位以外的第一个父元素进行定位。元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。*/
	z-index: 10;
	display:none;
	font-size: 20px;
	font-family: 微软雅黑;
	line-height: 24px;
	float: left;
	left:0px;
	top:140px;
	background-color: #ffffff;
	
}
.subul li{
	width: 110px;
	line-height: 24px;
	float: left;
	font-size: 16px;
	text-align:center;
	padding-top: 0px;
	
}
.sublia{
	height:24px;
	width: 100px;
	line-height: 24px;
	float: left;
	font-size: 16px;
	text-align:center;
	padding: 5px;
}
.menuli a:hover{
	background-color:#e9e9e9;
}