


.page{
    width:100%;
    overflow: hidden;
    float: left;
	text-align: right;
	margin-top: .5rem;
	min-height:50px;

}
.page ul{
	list-style: none;
	width: auto;
	float: right;
	height:100px;
	overflow: hidden
}
.page ul::after{
    content: '';
    display: block;
    clear: both;
}
.page ul li{
    float: left;
    width:auto;
    min-width:30px;
    height: 30px;
    line-height:30px;
    list-style: none;
}
.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 a{
		border-left: 1px #ccc solid;
	}
}
