/*新闻列表——begin*/
html, body {
    /*height: 100%;*/
    /*overflow: hidden;*/
}

.wraps {
    width: 1200px;
    /*height: 100%;*/
    margin: 30px auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.title {
    width: auto;
    height: 30px;
    /*background-color: #aaaaaa;*/
}

.title_name {
    width: auto;
    height: 30px;
    background-color: #01673f;
    transform: skew(-30deg); /*设置倾斜度为-30*/
    z-index: 10;
    margin-left: 10px;
    display: inline-block !important;
    display: inline;
}

.title_name > p {
    padding: 0 8px 0 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1.5px;
    color: white;
    line-height: 30px;
    transform: skew(30deg); /*设置倾斜度为-30*/
}

.title_line {
    width: 99%;
    height: 10px;
    background-color: #eba624;
    transform: skew(-30deg); /*设置倾斜度为-30*/
    margin-top: -10px;
    margin-left: 5px;
    z-index: -10;
    position: relative;
}


.newslist {
    padding-bottom: 10px
}
.news_list {
    padding: 15px 0 25px
}
.news_list li {
    /*height: 110px;*/
    padding: 10px;
    border-bottom: 1px solid rgba(170, 170, 170, 0.6);
    line-height: 30px
}
.news_list li .img {
    height: 156px;
    width: 22.50%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}
.news_list li .text {
    width: 75%;
}
.display-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: distribute;
    justify-content: space-between;
    flex-flow: row wrap
}
.news_list li .text .title {
    font-size: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    position: relative;
    font-weight: bold;
    margin: 10px 0 10px 0;
}
.news_list li .text h3 {
    font-weight: bold;
}
.news_list li .text .title:hover a {
    color: rgba(38, 118, 249, 1)
}
.news_list li .text .content {
    color: #323131;
    font-size: 16px;
    margin: 10px 0 20px;
    line-height: 2;
}

.news_list li .text .content p{
    color: #323131;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news_list li .text .time {
    color: #323131;
    float: right;
}
.news_list li.no-img .text {
    width: 100%
}