.page-content {
	margin: 0 auto;
	text-align: center;
}

.page {
	margin: 0 auto;
}

.page ul {
	padding: 0;
	min-width: 450px;
	display: inline-block;
}

.page ul::after {
	content: '';
	display: block;
	clear: both;
}

.page ul li {
	width: auto;
	min-width: 32px;
	height: 30px;
	line-height: 30px;
	list-style: none;
	margin: 5px;
	display: inline-table;
}

.page a {
	color: #aaa;
	font-family: "微软雅黑";
	padding: 0 10px;
	text-decoration: none;
	display: block;
	text-align: center;
	border: 1px solid #ccc;

	/* border-left: none; */
}

.page ul li:first-child a {
	border-left: 1px solid #ccc;
}

.page ul li a:hover {
	background-color: dodgerblue;
}

.page ul li a:hover {
	color: white;
}

.page .disabled a:hover {
	background-color: white;
	cursor: not-allowed;
	color: #aaa;
}

.page .active a {
	background-color: dodgerblue;
	color: white;
}


/* 自适应媒体查询 */

@media (max-width: 767px) {

	.page ul {
		min-width: auto;
	}

	.page ul li {
		display: none;
	}

	.page ul li:nth-of-type(2),
	.page ul li:nth-last-child(2) {
		display: inline-block;
	}

}
