﻿@charset "utf-8";

/*翻页*/
.page {
	position: absolute;
	width: 100%;
	padding:20px 20px 0 20px;
	overflow: hidden;
	box-sizing: border-box;
}

.page-num .num {
	position: relative;
	float: left;
	margin-left: -1px;
	width: 35px;
	border: solid 1px #eee;
	height: 35px;
	color: #666;
	text-align: center;
	line-height: 35px;
	cursor: pointer;
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
	font-size: 14px;
	display: block;
}

.page-num .prev, .page-num .next {
	width: 70px;
	font-size: 14px;
}

.page-num .prev i, .page-num .next i {
	display: inline-block;
}

.page-num .prev .icon, .page-num .next .icon {
	background: url(../images/common-icon.png) no-repeat;
	display: inline-block;
	width: 6px;
	height: 9px;
}

.page-num .prev .icon {
	background-position: -26px 0;
}

.page-num .next .icon {
	background-position: -74px 0;
}

.page-num a:hover {
	z-index: 1;
	border-width: 1px;
	border-style: solid;
}

.page-num .curr {
	z-index: 1;
	color: #fff;
	border-width: 1px;
	border-style: solid;
	cursor: default;
}

.page-num .curr a, .page-num .curr a:hover {
	color: #fff;
	display: block;
}

.page-num .num>a {
	display: block;
}

.page-num .prev {
	margin-right: 6px;
	margin-left: 0;
}

.page-num .next {
	margin-left: 6px;
}

.page-num .disabled {
	color: #aaa;
}

.page-num a.prev:hover .icon {
	background-position: -42px 0;
}

.page-num a.next:hover .icon {
	background-position: -90px 0;
}

.page-num .prev.disabled .icon {
	background-position: -58px 0;
}

.page-num .next.disabled .icon {
	background-position: -106px 0;
}

.page-wrap .total {
	float: left;
	line-height: 37px;
	margin-left: 10px;
	color: #999;
}

.page-wrap .form .text {
	float: left;
	line-height: 37px;
	margin-left: 5px;
	color: #999;
}

.page-wrap .form .input {
	width: 35px;
	border: solid 1px #ededed;
	height: 21px;
	text-align: center;
	margin: 7px 0 0 5px;
}
.page-num .curr {
    border-color: #0689e1;
    background: #0689e1;
}