@charset "utf-8";

.news {
    background-color: #f5f5f5;
}
.content-submenu {
    list-style-type: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0
}
.content-submenu,.content-submenu .subFolderNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
.content-submenu .subFolderNav+.subFolderNav {
    padding-left: .625rem
}
.content-submenu .subFolderNav+.subFolderNav:before {
    content: "|";
    padding-right: .625rem;
    display: inline-block;
    color: #ccc;
}
.content-submenu .subFolderNav.active a, .content-submenu .subFolderNav:hover a {
    color: #477589;
    border-bottom: 1px solid #477589;
}
.news-list-container {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    background: #fff;
    border-radius: 10px;
}
.news-list-container:nth-child(3n) {
    margin-right: 0;
}
.news-list-container:hover {
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 50%);
}
.news-image {
    /* width: 100%; */
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}
.news-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
}
a.news-title {
    margin: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    height: 2.8em;
}
a.news-title:hover {
    color: #477589;
}
a.news-more {
    background: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
}
a.news-more:hover {
    background: #477589;
}



/* 新闻详情 */
/* .news_details {
    background-color: #f5f5f5;
} */
.news_details .content_l {
    width: 65%;
}
.news_details .other_r {
    width: 30%;
}
.news_details .content_l .details-time {
    margin: 20px 0;
}
.news_details .content_l .details-content p {
    padding: 5px 0;
}
.news_details .content_l .details-content img {
    max-width: 100%;
}

.operation_layer {
    border-top: 1px solid #f5f5f5;
    padding: 20px 0;
    box-sizing: border-box;
    margin-top: 20px;
}
.opera_list_btn {
    width: 150px;
    height: 40px;
    border: 1px solid #D2D2D2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.opera_list_btn:hover {
    background: #477589;
    color:#fff;
    border: 1px solid #477589;
}
.next_btn {
    margin-left: 30px;
}



.other_r .nav {
    width: 100%;
    background: #F9F9F9;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.other_r .nav .nav_items {
    margin-top: 20px;
}
.other_r .nav .nav_items .item {
    padding: 15px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #E5E5E5;
}
.other_r .nav .nav_items .item.active, .other_r .nav .nav_items a.item:hover {
    color: #477589;
    border-bottom: 1px solid #477589;
}
.other_r .news-list-container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
    background: #F9F9F9;
}
.other_r a.news-title {
    margin: 5px;
}


@media only screen and (max-width: 1440px) {
    .news-image {
        height: 300px;
    }
}
@media only screen and (max-width: 1280px) {
    .news-image {
        height: 268px;
    }
}
@media only screen and (max-width: 1024px) {
    .news-image {
        height: 220px;
    }
}
@media only screen and (max-width: 960px) {
    .news-image {
        height: 208px;
    }
    .news_details .content_l {
        width: 100%;
    }
    .other_r {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .news-list-container {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .news-list-container:nth-child(2n) {
        margin-right: 0;
    }
    .news-image {
        height: 248px;
    }
}
@media only screen and (max-width: 750px) {
    .news-list-container {
        width: 100%;
        margin-right: 0%;
    }
    .news-image {
        height: auto;
    }
}