.container-box {
    padding-bottom: 32px;
}

.news-flex {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    align-items: flex-start;
}

.news-flex .left {
    width: 76%;
overflow: hidden;
    margin-right: 52px;
}

.news-flex img {
    width: 100%;
    height: auto;
    display: block;
}
.news-flex img:hover{
     transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
}
.news-flex .right h6 {
    font-size: 20px;
    /* line-height: 30px; */
    margin-bottom: 6px;
    font-weight: bold;
}

.news-flex .right span {
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}

.news-flex .right p {
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}

.line {
    width: 35px;
    height: 2px;
    background: #023E84;
    margin: 20px 0;

}
/* .right-a{
    display: block;
}
.right-a:hover{
      color: #F81111;
} */
.check-n {
    display: inline-block;
    font-size: 14px;
    color: #666666;
    line-height: 30px;
    margin: 27px 0;
}
.check-n:hover{
    color: #F81111;
}
.news-flex .right .news-item {
    padding: 25px 0;
    font-size: 20px;
    font-weight: bold;
    border-top: 1px solid #E6E6E6;
    display: block;
    /* line-height: 30px; */

}
.news-flex .right .news-item:hover{
    color: #F81111;
}
.news_img img {
    display: block;
}

.news_img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
}

/*新闻列表*/
.news_list {
    width: 100%;
    padding: 0 0 70px 0;
    padding-top: 67px;
    border-top: 1px solid #E6E6E6;
}

.news_list .news_box {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-wrap: wrap;
}

.news_list .news_box .news_item {
    /*border-top: 1px solid #D9D9D9;*/
    width: calc((100% - 6%) / 3);
    margin: 0 3% 50px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-decoration: none;
}

.news_list .news_box .news_item:nth-child(3n) {
    margin-right: 0;
}

.news_list .news_box .news_item .news_img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.news_list .news_box .news_item .news_img img {
    display: inline-block;
    width: 100%;
    height: auto;
    webkit-transition: all 0.4s ease-in-out 0.1s;
    transition: all 0.4s ease-in-out 0.1s;
}

.news_list .news_box .news_item .news_text {
    width: 100%;
    padding: 25px 0px;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.news_list .news_box .news_item .news_text div {
    font-size: 15px;
    color: #808080;
}

.news_list .news_box .news_item .news_text span {
    display: inline-block;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}

/* .news_list .news_box .news_item .news_text span em {
  font-style: normal;
  font-size: 24px;
  color: #2D3441;
  line-height: 26px;
  margin-right: 6px;
} */
.news_list .news_box .news_item .news_text h5 {
    width: 100%;
    font-size: 20px;
    color: #2D3441;
    line-height: 30px;
    font-weight: bold;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_list .news_box .news_item .news_text p {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 16px;
}

/* .news_list .news_box .news_item:hover {
    border-top: 1px solid #1C4F9B;
} */

.news_list .news_box .news_item:hover .news_text h5 {
    color: #F81111;
}
@media screen and (max-width: 900px){
    .news-flex{
        flex-direction: column;
    }
    .news-flex .left{
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }
}
@media screen and (max-width: 767px) {
    .news-flex {
        flex-direction: column;
    }

    .news-flex .left {
        width: 100%;
        margin-right: 0;
    }

    .news-flex .right h6 {
        font-size: 0.7rem;
        line-height: unset;
        margin-top: 0.66rem;
        margin-bottom: 0.3rem;
    }

    .news-flex .right span {
        font-size: 0.6rem;
        line-height: unset;
    }

    .news-flex .right p {
        font-size: 0.65rem;
        line-height: 1rem;
    }

    .line {
        width: 0.68rem;
        height: 0.04rem;
        margin-top: 0.2rem;
        margin-bottom: 0.58rem;


    }

    .check-n {
        font-size: 0.65rem;
        line-height: unset;
        margin: unset;
        margin-bottom: 0.93rem;
        margin-top: 0.3rem;
    }

    .news-flex .right .news-item {
        padding: 0.58rem 0;
        font-size: 0.7rem;

        /* line-height: 30px; */

    }

    #body .container-box {
        padding: 0;
    }

    .news-flex {
        padding-bottom: 0.93rem;
    }
.news-flex .left{
    margin-bottom: 0;
    margin-top: 1rem;
}
    /*新闻列表*/
    .news_list {
        border-top: 1px solid #E6E6E6;
        padding: 1.5rem 0 2rem 0;
    }

    .news_list .news_box {
        flex-direction: column;
    }

    .news_list .news_box .news_item {
        width: calc(100%);
        margin: 0 0 1rem 0;
    }

    .news_list .news_box .news_item .news_text {
        width: 100%;
        padding: 0.37rem 0;
        letter-spacing: 0.025rem;
    }

    .news_list .news_box .news_item .news_text div {
        font-size: 0.6rem;
        line-height: 0.8rem;
    }

    .news_list .news_box .news_item .news_text span {
        margin: 0.3rem 0 0.35rem 0;
    }

    .news_list .news_box .news_item .news_text span em {
        font-size: 0.75rem;
        line-height: 1rem;
        margin-right: 0.2rem;
    }

    .news_list .news_box .news_item .news_text h5 {
        font-size: 0.75rem;
        line-height: 1rem;
        margin: 0.4rem 0 0.3rem 0;
    }

    .news_list .news_box .news_item .news_text p {
        font-size: 0.6rem;
        line-height: 1.1rem;
        -webkit-line-clamp: 3;
        height: unset;
        margin-top: 0.4rem;
    }
}