.tab {
    display: flex;
    align-items: center;
    margin-top: 120px;
    padding-bottom: 40px;
    border-bottom: 1px solid #EAEAEA;
}

.tab .new {
    width: 158px;
    height: 38px;
    border-radius: 19px;
    text-align: center;
    margin-right: 40px;
    border: 1px solid #101010;
    border-radius: 19px;
}

.tab .active {
    background: #B9956D;
    border: none;
}

.tab .new a {
    text-decoration: none;
    font-size: 16px;
    color: #222;
    line-height: 38px;
}

.tab .active a {
    color: #FFFEFE;
}

.content .box {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    grid-column-gap: 30px
}

.content .box a {
    display: block;
    padding: 50px 0 24px;
    box-sizing: border-box;
    border-bottom: 1px solid #888;
    text-decoration: none;
    overflow: hidden;
    transition: all 1s;
}

.content .box a:hover {
    border-bottom: 1px solid #B9956D;
}

.content .box a .img {
    overflow: hidden;
}

.content .box a:hover img {
    transform: scale(1.1);
    transition: all 1s;
}

.content .box a img {
    width: 100%;
    transition: all 1s;
    height: 100%;
    display: block;
}

.content .box a .time {
    font-size: 16px;
    color: #888888;
    margin: 24px 0;
}

.content .box a .desc {
    font-size: 18px;
    /* font-weight: 500; */
    color: #222222;
    height: auto;
    line-height: 28px;
    transition: all 1s;
}

.content .box a:hover .desc {
    color: #B9956D;
    transition: all 1s;
}

.pages {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.content2 {
    display: none;
}

.pages a {
    width: 46px;
    height: 46px;
    font-size: 16px;
    color: #888;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    text-align: center;
    line-height: 46px;
    text-decoration: none;
    margin-right: 14px;
}

.pages a:last-child {
    margin-right: 0;
}

.pages .next {
    width: 110px;
}

.pages .active {
    background: #B9956D;
    color: #fff;
    border: none;
}

@media screen and (min-width: 768px)and (max-width: 1024px) {
    .tab {
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .tab {
        margin-top: 30px;
    }

    .content .box {
        grid-template-columns: repeat(1, 100%);
    }

    .content .box a .desc {
        font-size: 16px;
    }

    .content .box a .time {
        margin: 12px 0;
    }

    .tab .new {
        width: 95px;
        height: 30px;
        line-height: 30px;
        margin-right: 20px;
    }

    .tab .new a {
        line-height: 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {

    .content .box a .time {
        font-size: 14px;
    }
}