﻿/*翻页*/
.m-page {
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    margin-bottom: 30px;
}

    .m-page ul li {
        float: left;
    }

        .m-page ul li a,
        .m-page ul li span {
            display: block;
            width: 30px;
            height: 30px;
            line-height: 30px;
            margin-right: 10px;
            border-radius: 2px;
            color: #999;
            background: #e7ebee;
            text-align: center;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

.m-page-s-w {
    width: 50px !important;
}

            .m-page ul li a:hover {
                background: #276de6;
                color: #555;
                color: #fff;
                transition: background-color 0.3s;
            }

        .m-page ul li.on a {
            background: #276de6;
            color: #fff;
            transition: background-color 0.3s;
        }
