
/* ---------  圈子列表  --------- */

/* --- 二级菜单 --- */
.navTab {
	background-color: #fff;

}
.navTab span {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	font-size: 13px;
	
	cursor: pointer;
}
.navTab span a {
	color: #333;
}
.navTab span.on {
	color: #c49c52;
	border-bottom: 1px solid #c49c52;
}
.navTab span:hover {
	color: #9d814d;
	border-bottom: 1px solid #9d814d;
}
.navTab span:hover a {
	color: #9d814d;
}
/* --- 场馆列表 --- */
.venue {
	min-height: 500px;
	margin-top: 20px;
	margin-bottom: 50px;
}
.cgList{
	margin-top: 15px;
	padding-right: 0 !important;
	padding-left: 0 !important;
}
.cgBox{
	padding-left: 12px !important;
	padding-right: 12px !important;
}
.cgBox a:hover span {
	color: #c49c52;
	text-decoration: none;
}
.cgBox .imgBox{
	margin-top: 12px;
	height: 130px;
	overflow: hidden;
	position: relative;
	background-color: #fff;

}
.cgBox .imgBox img {
	width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.cgBot{
	width: 100%;
	height: 80px;
	background-color: #fff;
	margin-bottom: 12px;
	padding: 5px 10px 10px;
	-moz-transition: all .2s ease;       /* Firefox 4 */
    -webkit-transition: all .2s ease;   /* Safari 和 Chrome */
    -o-transition: all .2s ease;       /* Opera */
    transition: all .2s ease;
}
.cgBot>span{
	display: block;
	line-height: 40px;
	font-size: 16px;
	color: #333;
    width: 75%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.cgBot>p{
	display: block;
	width: 98%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #a8a8a8;
    margin: 2px 0 3px 0;
}
.cgBox:hover{
	background-color: #fff;
	box-shadow: 0 0 10px #bbb;
}
.cgBox:hover .cgBot {
	background-color: #f7f8fa;
}

/* --- 删除按钮 --- */
.delete {
	position: absolute;
	top: 12px;
	right: 12px;
	height: 24px;
	width: 70px;
	background-color: #c49c52;
	color: #fff;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
}
.delete:hover {
	background-color: #e91e63;
}