

/* header_part */
.header_part{
    padding:200px 0 150px 0;
    color: #FFF;
}
.header_part>h2{
    font-size: 34px;
    letter-spacing: 2px;
    text-align: center;
}

/* news_part */
.news_part{
    background-color: #1b1c1b;
    padding: 160px 30px;
}
.news_item{
    color: #FFF;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333;
    padding: 30px 0;
    min-height: 350px;
    max-height: 350px;
}
.news_item:last-child{
    border-bottom: 1px solid #333333;
}

.news_item_c{
    position: relative;
    overflow: hidden;
    margin-left: 200px;
    flex: 1;
}
.news_title{
    padding-bottom: 50px;
    font-size: 20px;
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_des{
    line-height: 30px;
    letter-spacing: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-all;
}

.news_item_c>a{
    position: absolute;
    bottom: 0;
    color: #88bb42;
    text-decoration: underline;
}
.news_item_r{
    max-width: 450px;
    /* height: 100%; */
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news_item_r>img{
    min-width: 500px;
    width: 100%;
    height: 100%;
    padding-left: 100px;
    object-fit: cover;
}


/* mobile */
@media screen and (max-width: 1000px) {
    .header_part{
        padding: 100px 0 50px 0;
    }
    .header_part>h2{
        font-size: 15px;
    }
    .news_part{
        padding: 50px 20px;
    }
    .news_item{
        position: relative;
        flex-direction: column;
        min-height: auto;
        max-height: 100%;
        padding: 20px 0 60px 0;
    }
    .news_item_l{
        padding-bottom: 20px;
        color: #999999;
        font-size: 14px;
    }
    .news_item_c{
        position: unset;
        margin-left: 0;
    }
    .news_item_c>a{
        bottom: 20px;
    }
    .news_title{
        white-space: unset;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-bottom: 0;
        margin-bottom: 12px;
    }
    .news_des{
        font-size: 14px;
        color: #999;
        margin-bottom: 12px;
    }
    .news_item_r>img{
        padding-left: 0;
        min-width: 100%;
    }
}