.list_page {
    text-align: center;
    margin: 30px;
    display: block;
}
.list_page ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: bottom;
}
.list_page ul li {
    border-right: none;
	display: inline-block;
    border-radius: 0;
    float: left;
}
.list_page ul a {
    color: #333;
    padding: 10px 15px;
    margin: 0 5px;
    border: solid 1px #ddd;
    line-height: 18px;
    display: block;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
    background: #fff;
}
.list_page ul .thisclass a, .list_page ul li:hover a {
    background: #e85019;
    border-radius: 0;
    color: #fff;
}