@charset "utf-8";
/*通用样式*/
/*滚动条样式*/
::-webkit-scrollbar {
	width:8px;
	height:8px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
	background: #f0f0f0;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
	background: #c0c0c0;
}
::-webkit-scrollbar-thumb:hover{
	background: #a8a8a8;
}

.clear{
	clear:both;
}
.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}
.clearfix {
    zoom: 1;
}

/*边框*/
.bt{
	border-top:1px solid #ddd;
}

/*外边距*/
.mr0{
	margin-right:0px;
}
.mr8{
	margin-right:8px;
}
.mr18{
	margin-right:18px;
}
.mlr{
	margin-left:70px;
	margin-right:70px;
}

/*宽度*/
.w140{
	width:140px;
}
.w224{
	width:224px;
}
.w260{
	width:260px;
}
.w372{
	width:372px;
}
.w670{
	width:670px;
}

/*边距*/
.mr20{
	margin-right:20px;
}


/*a标签的颜色*/
.a{
	cursor:pointer;
}

/*透明度*/
.opc{
	-moz-opacity:0.4;
	opacity:.4;
	filter:alpha(opacity=40);
}

/*浮动*/
.fl{
	float:left;
}
.fr{
	float:right;
}

/*清除浮动*/
.clear{
	height:0;
	overflow:hidden;
	clear:both;
}
/*超出宽度文字显示省略号*/
.t_h{
	overflow:hidden;
	text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
	white-space:nowrap;
	display:inline-block;
}
/*图标-背景图*/
.lx_img{
	background: no-repeat;
}

/**/
.dis{
	display: none;
}
.disb{
	display: block;
}
