/* = 分页
------------------------------------------ */
.page {
    margin:0;
    *zoom: 1;
}
.page:before,
.page:after {
    display: inline-block;
    content: "";
}
.page:after {
    clear:both;
}

ul.pagination {
    float: right;
    padding-right: 60px;
}
.page a,
.page span {
    margin-left: -1px;
    padding: 0 14px;
    height: 30px;
    line-height: 30px;
    color: #000;
    text-decoration: none;
    /*border-top: 1px solid #CCCCCC;*/
    /*border-bottom: 1px solid #CCCCCC;*/
    /*background-color: #4bbd00;*/
}
.page a:hover
 {
    text-decoration: none;
    background-color:  #ddd;
    border-radius: 5px;
}
.page .current {
	border-top: 1px solid  #4CAF50;
}
.page .next,
.page .prev {
    font-family: "宋体";
    font-weight: bold;
}
.page .rows {
	border-right: 1px solid #CCCCCC;
}
.page li.active span{
	background-color: #4CAF50;
    color: white;
    border-radius: 5px;
}

.page li{
	display: inline;
}
