/*通用组件样式表，只加不改*/
/*btn通用样式*/
.btn{
	display: inline-block;
	text-align: center;
	cursor: pointer;
}
.btn.btnPrimary{
	background-color: #BB9540;
	color: #fff!important;
}
.btn.btnPrimary:hover{
	background-color: #a78439;
	text-decoration: none;
}
.btn.btnBorderPrimary{
	background-color: #fff;
	border: 1px solid #BB9540;
	color: #BB9540;
}
.btn.btnBorderPrimary:hover{
	background-color: #f2f2f2;
}

/*pagination通用样式*/
.pagination{
	position: relative;
	text-align: right;
}
.pagPrimary ul{
	display: inline-block;
	text-align: center;
	vertical-align: top;
}
.pagPrimary ul li{
	display: inline-block;
}
.pagPrimary .top, .pagPrimary .bottom, .pagPrimary .prev, .pagPrimary .next, .pagPrimary ul li a{
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin-left: 6px;
	color: #444;
	font-size: 14px;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	text-decoration: none;
	cursor: pointer;
}
.pagPrimary .top{
	background-image: url(../images/page_top.png);
}
.pagPrimary .bottom{
	background-image: url(../images/page_bottom.png);
}
.pagPrimary .top.unable{
	background-image: url(../images/page_top_unable.png);
}
.pagPrimary .bottom.unable{
	background-image: url(../images/page_bottom_unable.png);
}
.pagPrimary .prev{
	background-image: url(../images/page_prev.png);
}
.pagPrimary .next{
	background-image: url(../images/page_next.png);
}
.pagPrimary .prev.unable{
	background-image: url(../images/page_prev_unable.png);
}
.pagPrimary .next.unable{
	background-image: url(../images/page_next_unable.png);
}
.pagPrimary .top:hover, .pagPrimary .bottom:hover,
.pagPrimary .prev:hover, .pagPrimary .next:hover{
	background-color: #f2f2f2;
}
.pagPrimary .top.unable:hover, .pagPrimary .bottom.unable:hover,
.pagPrimary .prev.unable:hover, .pagPrimary .next.unable:hover{
	background-color: #fff;
}
.pagPrimary ul li a.active, .pagPrimary ul li a:hover{
	border-color: #BB9540;
	background-color: #BB9540;
	color: #fff;
}
.colorPrimary{
	color: #9b7725;
}
.font18{
	font-size: 18px!important;
}