@charset "utf-8";
/* CSS Document */
.current/*默认选中的样式*/
{
	background-color: #b99052;
	color: #ffffff;
	font-weight: normal;
}
.fly{
	width: 100%;
	height: 215px;
	float: left;
	position: relative；/*relative生成相对定位的元素，相对于其正常位置进行定位。因此，"left:20" 会向元素的 LEFT 位置添加 20 像素。*/
}
.fly .suspend{/*轮播图部分*/
	width: 100%;
	min-width: 1200px;
	height: 215px;
	overflow: hidden; 
	position: absolute;/*absolute生成绝对定位的元素，相对于 static 定位以外的第一个父元素进行定位。元素的位置通过 "left", "top", "list" 以及 "bottom" 属性进行规定。*/
	z-index: 1;
}
.banner{
	width: 1920px;
	min-width: 1200px;
	height: 215px;
	margin-left:-960px;
	left:50%;
	overflow: hidden; 
	position: absolute;/*absolute生成绝对定位的元素，相对于 static 定位以外的第一个父元素进行定位。元素的位置通过 "left", "top", "list" 以及 "bottom" 属性进行规定。*/
	z-index: 2;
	background: url(/statics/zhuoken/images/img_details01.jpg)
}
/*中部*/
.center{
	width: 100%;/*auto默认值。浏览器可计算出实际的宽度。
				length使用 px，cm等单位定义宽度。
				%定义基于包含块（父元素）宽度的百分比宽度。
				inherit规定应该从父元素继承 width 属性的值。*/
	float: left;/*float 属性定义元素在哪个方向浮动。
				以往这个属性总应用于图像，使文本围绕在图像周围，不过在 CSS 中，任何元素都可以浮动。
				浮动元素会生成一个块级框，而不论它本身是何种元素。
				如果浮动非替换元素，则要指定一个明确的宽度；否则，它们会尽可能地窄*/
	min-width: 1200px;
}
.show12{
	width: 1200px;
	height: auto;
	display: block;
	margin: 0 auto;	
}
.details{
	width: 1200px;
	float: left;
	margin-top: 50px;
	margin-bottom: 50px;
}
.details .details_title{
	width: 1170px;
	height: 80px;
	float: left;
}
.details .details_title span{
	width: 100%;
	height: 25px;
	line-height: 25px;
	font-family: 微软雅黑;
	float: left;
	overflow: hidden;
	text-overflow:ellipsis;
	font-size: 20px;
	color: #000000;
}
.details .details_title em{
	width: 100%;
	height: 20px;
	line-height: 20px;
	font-family: 微软雅黑;
	float: left;
	font-size: 14px;
	margin-top: 35px;
	color: #b6b4b0;
}
.details .details_content{
	width: 1200px;
	height: auto;
	display: block;
	float: left;
}

.details .details_content span{/*内容*/
	width: 100%;
	line-height: 28px;
	font-family: 微软雅黑;
	float: left;
	font-size: 14px;
	color: #666566;
}
/*f2f1ef*/
/*实心分割线*/
.bgline_solid {
    width: 1200px;
    background-color: #f2f1ef;
    height: 1px;
    float: left;
	margin-top: 35px;
	margin-bottom: 25px;
}
/*虚心分割线*/
.bgline {
    width: 1200px;
    background: url(/statics/zhuoken/images/line_bg.png);
    height: 1px;
	margin-top: 25px;
    float: left;
}