.news {
    background-image: url('../images/index_back.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.news .main-frame {
    min-height: calc(100vh - 456px);
}
.news .main-frame:before {
    content: "";
    display: table;
}
.news .news_content {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}
.news .news_content .news_wrap {
    width: 970px;
    border: 1px solid #E3E4E4;
    background-color: #FFFFFF;
}
.news_wrap .news_breadcrumb {
    width: 100%;
    height: 40px;
    background: linear-gradient(0deg, #FAFAFA, #F0F0F0);
    border-bottom: 1px solid #E3E4E4;
    display: flex;
    align-items: center;
}
.news_breadcrumb .breadcrumb_title {
    position: relative;
    font-size: 14px;
    padding: 0 10px;
}
.news_breadcrumb .breadcrumb_title:before {
    content: "";
    position: absolute;
    top: 0;
    right: -4px;
    width: 6px;
    height: 100%;
    background-image: url("../images/icon_right_black.png");
    background-size: 5px 10px;
    background-repeat: no-repeat;
    background-position: center;
}
.news_breadcrumb .breadcrumb_title:last-child:before {
    display: none;
}

.news .news_list {}
.news_list .new_item {
    display: block;
    width: 910px;
    padding: 30px 0;
    margin: 0 auto;
    box-sizing: border-box;
    border-bottom: 1px dotted rgba(3, 0, 0, .2);
}
.new_item .item_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}
.new_item .item_top .item_title {
    width: 740px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new_item .item_top .item_time {
    color: #999999;
}
.new_item .item_content {
    margin-top: 10px;
    font-size: 16px;
    color: #8F8F8F;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.news .news_details {
    width: 100%;
    /*height: 100%;*/
    position: relative;
}
.news .news_details .editor_wrap {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    /*height: calc(100% - 40px);*/
    /*overflow: auto;*/
    padding: 10px;
    box-sizing: border-box;
}
.news .news_details .editor_wrap img {
    max-width: 100%;
    height:auto
}
.news .news_details .editor_wrap::-webkit-scrollbar {
    width: 4px;
}
.news .news_details .editor_wrap::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #E4E4E4;
}
.news .news_details .editor_wrap::-webkit-scrollbar-track {
    background-color: #F9F9F9;
}