/*分页*/
.paging {
    width: 100%;
    height: 40px;
    background-color: #fff;
    overflow: hidden;
}


.paging-img {
    position: relative;
    height: 40px;
    float: right;
}

.paging-img div {
    float: left;
    margin: 0;
    cursor: pointer;
}
.paging-img div.btn-number {
	
}
.paging-img div.img_first,
.paging-img div.img_prev,
.paging-img div.img_next,
.paging-img div.img_last{
	box-sizing: border-box;
	width:95px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #4c90c7;
	font-size: 14px;
	background: #f9f9f9;
	border: 1px solid #e3e3e3;
}
.paging-img div.img_prev{
	border-right: none;
}
.paging-img div.img_prev,
.paging-img div.img_last{
	border-left: none;
}
.paging-input {
    width: auto;
    box-sizing: border-box;
    height: 40px;
    float: right;
    padding-left: 15px;
    padding-right: 15px;
    background: #f9f9f9;
    border: 1px solid #e3e3e3;
    border-left:none ;
}

.paging-input span {
    font-size: 16px;
    line-height: 40px;
    color: #666;
}

.paging-input span label {
    font-size: 16px;
    line-height: 40px;
    color: #555;
}

.paging-input input {
    width: 50px;
    height: 21px;
    margin: 9px 3px;
    padding-left: 5px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background-color: #fff;
}
/*跳转按钮*/
.paging-input a {
    margin: 11px 9px 7px 9px;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
    background-color: #7b7a82;
    padding: 0px 10px;
    cursor: pointer;
    behavior: url(../js/PIE.htc);
}
/*每页多少条记录*/
.paging-select {
    float: right;
    height: 40px;
}

.paging-select select {
	box-sizing: border-box;
    width: 65px;
    padding-left: 15px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    color: #4c90c7;
	background: #f9f9f9;
	border: 1px solid #e3e3e3;
    border-left: none;
    /* 很关键：将默认的select选择框样式清除
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none; */
}

.paging-select span {
    font-size: 16px;
    line-height: 40px;
    color: #555;
}

.paging-record {
	box-sizing: border-box;
    height: 40px;
    float: right;
    color: #4c90c7;
	background: #f9f9f9;
	padding: 0 15px;
	border: 1px solid #e3e3e3;
	border-left:none ;
}

.paging-record span {
    font-size: 16px;
    line-height: 40px;
    color: #4c90c7;
}
.btn-number{
	float: left;
	vertical-align: top;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
.btn-number span{
	box-sizing: border-box;
	width: 50px;
	border: 1px solid #e3e3e3;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	cursor: pointer;
	font-size: 14px;
	color: #4c90c7;
	background: #f9f9f9;
	border-right: none;
}
/*.btn-number span.active{
	display: inline-block;
}*/
.btn-number span.current-page{
	background: #7dafd7;
	color: #fff;
	border: none;
}
/*分页样式结束*/