﻿.normal {
    margin:2rem 0 2rem 0;
}
/* 分页按钮 */
.pages {
    clear: both;
    width: 100%; /*overflow: hidden;*/
    text-align: center;
    margin-top: 20px;
    margin-top: 0.2rem;
}

    .pages > span {
        clear: both;
        display: inline-block;
        text-align: center;
        width: 46px;
        height: 46px;
        border-radius: 2px;
        width: 2rem;
        height: 1rem;
        background: #fff;
        border: 1px solid #eeeeee;
        line-height: 46px;
        line-height: 1rem;
        margin-left: 2px;
        margin-right: 2px;
    }

    .pages a {
        clear: both;
        display: block;
        width: 100%;
        height: 100%;
        transition: background, color 0.3s ease-in-out;
        color: #aaa;
    }

        .pages a:hover, .pages > .curr > a {
            background: #059ee3;
            border: 1px solid #059ee3;
            color: #fff;
            border-radius: 2px;
        }

    .pages .prev, .pages .next {
        width: 92px;
        width: 3rem;
    }

    .pages i {
        display: inline-block;
        width: 6px;
        height: 10px;
        width: 0.06rem;
        height: 0.1rem;
        transition: all 0.3s ease-in-out;
    }

.prev i {
    background: url('ARROW---DOWN.png') no-repeat;
    margin-right: 10px;
    margin-right: 0.1rem;
    background-size: 100%;
}

.next i {
    background: url('ARROW---DOWN_76.png') no-repeat;
    margin-left: 10px;
    margin-left: 0.1rem;
    background-size: 100%;
}

.prev:hover i {
    background: url('ARROW---DOWN_87.png') no-repeat;
    background-size: 100%;
}

.next:hover i {
    background: url('ARROW---DOWN_12.png') no-repeat;
    background-size: 100%;
}
