section {
    padding-bottom: 120px;
}
.news {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
}
.news .newsCon {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.news .newsCon li {
    width: 30.4%;
    margin-right: 58px;
    padding: 15px;
    padding-bottom: 60px;
    margin-bottom: 35px;
    transition: 0.5s;
}
.news .newsCon li:hover {
    box-shadow: 0 3px 20px 3px #ccc; 
}
.news li:nth-of-type(3), .news li:nth-of-type(6), .news li:nth-of-type(9){
    margin-right:0;
}
.news .newsCon li .newsImg img {
    width: 377px;
    height: 187px;
} 
.news .newsCon li h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.search-box a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 15px;
    margin-right: 5px;
}
.search-box a:hover {
    color: #fff;
    border: 1px solid #df0615;
    background-color: #df0615;
}
.search-box a.on {
    color: #fff;
    border: 1px solid #df0615;
    background-color: #df0615;
}
.news .newsCon li p {
    line-height: 160%;
}
.news .newsCon li .timeLayout {
    text-align: right;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .news .container {
        margin-right: auto;
    }
    section {
        padding-bottom: 50px;
    }
    .news {
        width: 100%;
        box-shadow: none;
        padding: 0;
    }
    .news .newsCon li {
        width: 100%;
        margin-right: 0;
        padding: 0;
    }
    .news .newsCon li .newsImg img {
        width: 100%;
    }
    .news .newsCon li h3 {
        font-size: 16px;
    }
}