.news-box {
    max-width: 1260px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.news-box .body {
    display: flex;
    align-items: flex-start;
    flex-flow: wrap;
    margin-top: 40px;
}

.news-box .body li {
    width: 32%;
    background-color: #ECECEC;
    margin-right: 1%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-box .body li:nth-child(3n) {
    margin-right: 0;
}

.news-box .body li a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.news-box .body li a:hover {
    background-color: #008536;
    transition: all 0.5s;
    color: #FFFFFF;
}

.news-box .body li a .time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-color: #008536;
    color: #FFFFFF;
    font-size: 24px;
    padding: 0 2px;
    border-radius: 0 0 20px 0;
    line-height: 36px;
}

.news-box .body li a .time span {
    padding: 0 8px;
}

.news-box .body li a .time span:first-of-type {
    border-bottom: 1px solid #FFFFFF;
}

.news-box .body li a .detail {
    flex: 1;
    margin: 0 10px;
    min-width: 2px;
    padding-bottom: 10px;
}

.news-box .body li a .detail h4 {
    font-size: 18px;
    line-height: 1.6em;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-box .body li a .detail p {
    line-height: 1.5em;
    overflow: hidden;
    height: 4.5em;
    margin-bottom: 10px;
    color: #999999;
}

.news-box .body li a:hover .detail p {
    color: #FFFFFF;
    transition: color 0.5s;
}

.news-box .body li a .detail .more {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #FFFFFF;
    background-color: #7CB519;
    margin-left: 100%;
    transform: translateX(-100%);
}

@media all and (max-width: 1279px) {
    .news-box {
        width: 100%;
    }

    .news-box .body {
        display: block;
        width: 90%;
        margin: 10px auto 0;
    }

    .news-box .body li {
        width: 100%;
        margin-right: 0;
    }

    .news-box .body li a .time {
        font-size: 18px;
        line-height: 28px;
    }

    .news-box .body li a .detail h4 {
        font-size: 16px;
    }

    .news-box .body li a .detail p {
        font-size: 12px;
    }

    .news-box .body li a .detail .more {
        transform: translateX(-120%);
    }
}