@charset "gb2312";
/* CSS Document */
.ctrl-tabs {
	width: 100%;
}
.ctrl-tabs .tabs-title {
	width: 100%;
	height: 40px;
	margin-bottom: 30px;
	text-align: center;
}
.ctrl-tabs .tabs-title li {
	display: inline-block;
	height: 40px;
	padding: 0px 30px;
	margin: 0px;
	border-top: 1px solid #6a3906;
	border-bottom: 1px solid #6a3906;
	border-right: 1px solid #6a3906;
	line-height: 38px;
	color: #6a3906;
	cursor: pointer;
}
.ctrl-tabs .tabs-title li:first-child {
	border-left: 1px solid #6a3906;
}
.ctrl-tabs .tabs-content {
	width: 100%;
}
.ctrl-tabs .tabs-content .tabs-content-list {
	display: none;
	width: 1180px;
	height: 408px;
	overflow: hidden;
}
.ctrl-tabs .tabs-content .tabs-content-list:first-child {
	display: block;
}
.ctrl-tabs .tabs-content .tabs-content-list a {
	position: relative;
	display: block;
	float: left;
	width: 289px;
	height: 200px;
	margin-bottom: 8px;
	margin-right: 8px;
	overflow: hidden;
}
.ctrl-tabs .tabs-content .tabs-content-list a:nth-child(4n) {
	margin-right: 0px;
}
.ctrl-tabs .tabs-content .tabs-content-list a .img {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.ctrl-tabs .tabs-content .tabs-content-list a .title {
	display: block;
	position: absolute;
	bottom: -40px;
	width: 100%;
	height: 40px;
	padding: 0px 15px;
	line-height: 40px;
	text-align: center;
	color: #FFC555;
	background-color: #6a3906;
	filter: alpha(opacity=80); /*IE*/
	-moz-opacity: 0.8; /*MOZ , FF*/
	background: rgba(106,57,6,0.8)!important; /*　使用IE专属滤镜实现IE背景透明*/
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden;/* 内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis;/* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
.ctrl-tabs .tabs-selected {
	background-color: #6a3906;
	color: #ffc555 !important;
}