.b_title {
    text-align: center;
    margin-bottom: 50px;
}

.b_title h3 {
    color: rgb(83, 180, 73);
    font-size: 24px;
}

.b_title p {
    color: rgb(102, 102, 102);
    font-size: 12px;
}

.news_main li {
    width: 49%;
    float: left;
    height: 130px;
    position: relative;
    margin-bottom: 2%;
}

.news_main li:nth-child(2n+1) {
    margin-right: 1%;
}

.news_main li:nth-child(2n) {
    margin-left: 1%;
}

.news_box_img {
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.news_box_img img {
    width: 100%;
}

.news_box_text {
    width: 65%;
    padding-right: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.news_box_text h3 {
    transition-duration: .5s;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    line-height: 1.5;
}

.news_box_text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 12px;
    color: #878787;
    margin: 15px 0;
    line-height: 1.5;
}

.news_box_text em {
    font-style: normal;
    font-size: 12px;
}

.news_main li:hover h3 {
    color: #4ab344;
}

.b_more {
    margin-top: 30px;
    text-align: center;
}

.b_more a {
    display: inline-block;
    width: 150px;
    line-height: 46px;
    background-color: rgb(83, 180, 73);
    color: #fff;
    font-size: 12px;
    text-align: center;
}