/* 图册列表 */

.atlas {}

.atlas ul {
    display: flex;
    flex-flow: wrap;
}

.atlas li {
    width: 100%;
    padding: 4px;
}

.atlas li a {
    display: block;
    color: #000;
    text-align: center;
}

.atlas li i {
    display: block;
}

.atlas li a img {
    width: 100%;
    border: 2px solid #fff;
}

.atlas li p {
    position: relative;
    font: 400 14px/36px "微软雅黑";
    text-align: center;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    border-top: 0;
}

@media (min-width: 1200px) {
    .atlas ul {
        padding: 20px;
    }

    .atlas li {
        width: 33.3%;
        padding: 5px;
    }

    .atlas li a {
        position: relative;
    }

    .atlas li p {
        position: relative;
        font: 400 16px/36px "微软雅黑";
        border: 3px solid #fff;
        border-top: 0;
    }

    .atlas li a:hover p {
        color: #fff;
        background: #3a3738;
    }

    .pages {
        margin: 0 25px;
    }
}