/* 新闻页样式 */
body {
    background-color: #F7F7F7;
}

/* 新闻网导航栏样式 */
.navbar-news {
    background-color: transparent;
    background-image: url('../images/news-top.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 160px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar-news .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

.navbar-news .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-news .navbar-logo {
    width: auto;
    margin: 24px 0;

}

.navbar-news .navbar-right {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.navbar-news .navbar-top {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.navbar-news .navbar-top-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    padding-right: 20px;
}

.navbar-news .navbar-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.navbar-news .navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.desktop-nav {
    height: 160px;
}

.desktop-nav .nav-link {
    color: #363636;
}

.desktop-nav .nav-link:hover {
    color: #227B45;
}

.desktop-nav .nav-link::after {
    display: none;
}

.desktop-nav .dropdown-menu {
    top: 148px;
}

.desktop-nav .top-link {
    color: #363636;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.desktop-nav .top-link:hover {
    color: #227B45;
}

.navbar-news.mobile-nav {
    background-color: #227B45;
    background-image: none;
    height: auto;
}

.news-banner {
    height: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    padding-left: 24px;
}

.news-banner h1 {
    color: #333;
    font-size: 24px;
    margin: 0;
}

.news-banner h1 img {
    max-width: 300px;
    max-height: 80px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.news-container {
    padding-top: 24vh;
    padding-bottom: 60px;
}

.news-list-title {
    color: #227B45;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
	padding-top: 30px;
}

.news-list-title-en {
    color: #696969;
    font-size: 20px;
    font-weight: normal;
    margin-left: 10px;
}

.news-content {
   
}


/* 右侧侧边栏默认显示，小于1280px时隐藏 */
.news-container > .container > .row > .col-4 {
    display: block;
}

/* 小于1280px时隐藏侧边栏 */
@media (max-width: 1280px) {
    .news-container > .container > .row > .col-4 {
        display: none !important;
    }
	

}

/* 新闻列表样式 */
.news-list {
    width: 100%;
    margin-right: 0;
}

.news-item {
    margin-bottom: 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.news-item-large {
    overflow: hidden;
}

.news-item-large .news-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.news-item-large .news-info {
    width: 100%;
    height: 100%;
    padding: 24px ;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-large .news-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #363636;
}

.news-item-large .news-content-text {
    flex: 1;
    line-height: 1.6;
    color: #696969;
    margin-bottom: 20px;
}

.news-item-large .news-date {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
}

.news-item-large .news-date::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../images/time.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}

.news-items-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news-items-container {
    /* 容器样式 */
}

.news-item-small {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.news-item-small .news-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
}

.news-item-small .news-info {
    padding: 16px;
    min-height: 180px;
}

/* 新闻列表项样式 */
.news-item-list {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.news-item-list .row {
    margin: 0;
}

.news-item-list .col-2,
.news-item-list .col-md-2,
.news-item-list .col-sm-2,
.news-item-list .col-xs-12,
.news-item-list .col-10,
.news-item-list .col-md-10,
.news-item-list .col-sm-10 {
    margin-bottom: 0;
}

.news-item-list .news-image {
    width: 100%;
    height: 100%;
    min-height: 120px;
    background-size: cover;
    background-position: center;
 	overflow: hidden;
}

.news-item-list .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-item-list .news-info {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-list .news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #363636;
}

.news-item-list .news-content-text {
    flex: 1;
    line-height: 1.5;
    color: #696969;
    margin-bottom: 10px;
    font-size: 14px;
}

.news-item-list .news-date {
    color: #999;
    font-size: 14px;
}

.news-item-small .news-date {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
}

.news-item-small .news-date::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../images/time.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 6px;
    vertical-align: middle;
}

.news-item-small .news-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #363636;
    line-height: 1.4;
    min-height: 40px;
}

.news-item-small .news-content-text {
    line-height: 1.4;
    color: #696969;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 侧边栏样式 */
.news-sidebar {
   
}

.sidebar-section {
    margin-bottom: 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    padding: 0 24px;
    height: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-section-header h3 {
    color: #227B45;
    font-size: 16px;
    margin: 0;
   
}

.sidebar-section-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #227B45;
}

.sidebar-section-header .more-link {
    color: #696969;
    text-decoration: none;
    font-size: 14px;
}

.sidebar-section-header .more-link:hover {
    color: #227B45;
}

/* 通知公告样式 */
.sidebar-notice {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-notice li {
    margin-bottom: 12px;
}

.sidebar-notice a {
    color: #363636;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: block;
}

.sidebar-notice a:hover {
    color: #227B45;
}

/* 通知公告特殊样式 */
.notice-item {
    display: flex;
    height: 100px;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px;
}

.notice-date {
    width: 90px;
    height: 100px;
    padding: 20px 0;
    text-align: left;
}

.notice-day {
    font-size: 36px;
    font-weight: bold;
    color: #227B45;
    line-height: 1;
}

.notice-month {
    font-size: 12px;
    color: #696969;
    margin-top: 5px;
}

.notice-title {
    width: 290px;
    height: 100px;
    display: inline-grid;
    align-items: center;
    padding-top: 0;
}

.notice-title a {
    color: #363636;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.notice-title a:hover {
    color: #227B45;
}

/* 媒体报道样式 */
.media-report-item {
    display: flex;
    height: 100px;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px;
}

.media-report-date {
    width: 90px;
    height: 100px;
    
    text-align: left;
}

.media-report-day {
    font-size: 36px;
    font-weight: bold;
    color: #227B45;
    line-height: 1;
}

.media-report-month {
    font-size: 12px;
    color: #696969;
    margin-top: 5px;
}

.media-report-content {
    width: 290px;
    
    display: flex;
    align-items: center;
    padding-top: 0;
}

.media-report-content a {
    color: #363636;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    word-wrap: break-word;
}

.media-report-content a:hover {
    color: #227B45;
}

/* 专题网站样式 */
.sidebar-special-websites {
    margin-bottom: 30px;
    padding: 0;
    background: none;
    border: none;
}

.special-website-item {
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.special-website-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* 视频广科样式 */
.sidebar-videos {
    margin-bottom: 30px;
}

.video-item {
        padding: 20px;
}

.video-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* 媒体报道样式 */
.notice-item {
    display: flex;
    height: 100px;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px;
}

.notice-date {
    width: 90px;
    height: 100px;
    padding: 20px 0;
    text-align: left;
}

.notice-day {
    font-size: 36px;
    font-weight: bold;
    color: #227B45;
    line-height: 1;
}

.notice-month {
    font-size: 12px;
    color: #696969;
    margin-top: 5px;
}

.notice-title {
    width: 290px;
    height: 100px;
    display: inline-grid;
    align-items: center;
    padding-top: 0;
}

.notice-title a {
    color: #363636;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.notice-title a:hover {
    color: #227B45;
}

/* 分页样式 */
.pagination {
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    color: #363636;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.pagination a:hover, .pagination a.active {
    background-color: #227B45;
    color: white;
    border-color: #227B45;
}

/* 小屏幕平板布局 (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .news-container .row {
        
    }
	.news-container{
		    padding-top: 16vh;
    		padding-bottom: 60px;
	}
    .news-container > .col-8,
    .news-container > .col-md-12 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .news-container > .col-4 {
        display: none;
    }
    
    .news-list {
        margin-right: 0;
    }
    
    .news-item-large .row {
        flex-direction: row;
    }
    
    .news-item-large .col-md-6 {
        width: 50%;
    }
    
    .news-item-large .news-image {
        
    }
    
    .news-items-container .row {
        flex-direction: row;
    }
    
    .news-items-container .col-4,
    .news-items-container .col-md-4 {
        width: 33.333333%;
    }
    
    .news-item-small {
        width: 100%;
    }
}

/* 小屏幕手机布局 (576px-767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .news-container .row {
       
    }
    
    .news-container > .col-8,
    .news-container > .col-sm-12 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .news-container > .col-4 {
        display: none;
    }
    
    .news-list {
        margin-right: 0;
    }
    
    .news-item-large .row {
        flex-direction: row;
    }
    
    .news-item-large .col-md-6,
    .news-item-large .col-sm-6 {
        width: 50%;
    }
    
    .news-item-large .news-image {
        height: 200px;
    }
    
    .news-items-container .row {
        flex-direction: row;
    }
    
    .news-items-container .col-4,
    .news-items-container .col-sm-6 {
        width: 50%;
    }
    
    .news-item-small {
        width: 100%;
    }
}

.pagination .page-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    color: #363636;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background-color: #fff;
}

.pagination .page-btn:empty {
    display: none;
}

.pagination .page-btn a {
    display: inline;
    padding: 0;
    margin: 0;
    color: inherit;
    text-decoration: none;
    border: none;
    background: none;
}

.pagination .page-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    color: #363636;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background-color: #fff;
}

.pagination .page-btn:empty {
    display: none;
}

.pagination .page-btn a {
    display: inline;
    padding: 0;
    margin: 0;
    color: inherit;
    text-decoration: none;
    border: none;
    background: none;
}

.pagination .page-btn:empty + span,
.pagination .page-btn:empty + a {
    margin-left: 0;
}
.pagination .page-no {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e0e0e0;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 14px;
    cursor: not-allowed;
    pointer-events: none;
}
.row-manu{
	width: 100%;
	margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 0;
	
}
.manu {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.manu table {
    margin: 0 auto;
}

.manu td {
    padding: 0 10px;
    color: #363636;
    font-size: 14px;
}

.manu a {
    color: #363636;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    display: inline-block;
}

.manu a:hover {
    background-color: #227B45;
    color: white;
    border-color: #227B45;
}

.manu a.active,
.manu .current {
    background-color: #227B45;
    color: white;
    border-color: #227B45;
}


/* 视频列表样式 */
.video-item-col {
    padding: 15px;
}

.video-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.video-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.video-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-title a {
    color: #363636;
    text-decoration: none;
}

.video-title a:hover {
    color: #227B45;
}

.video-date {
    font-size: 12px;
    color: #999;
    margin: 0;
}



/* 中等大屏幕布局 (1024px ~ 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
	
    
    .navbar-news .navbar-nav {
        align-items: center;
    }
    
    .navbar-news .navbar-nav li {
        white-space: nowrap;
    }
		
	.news-container {
    padding-top: 16vh;
    padding-bottom: 60px;
}
}

/* 中等大屏幕布局 (1024px ~ 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
    
    
    .navbar-news .navbar-nav {
        align-items: center;
    }
    
    .navbar-news .navbar-nav li {
        white-space: nowrap;
    }
}


/* 大屏幕布局 (>1024px) */
@media (min-width: 1024px) {
    .news-container .row {
        
    }
    
    .news-container > .col-8 {
        width: 66.666667%;
        margin-bottom: 0;
    }
    
    .news-container > .container > .row > .col-4 {
        width: 33.333333%;
        display: block;
    }
    
    .news-list {
        margin-right: 30px;
    }
    
    .news-item-large .row {
        flex-direction: row;
    }
    
    .news-item-large .col-md-6 {
        width: 50%;
    }
    
    .news-item-large .news-image {
        height: 350px;
    }
    
    .news-items-container .row {
        flex-direction: row;
    }
    
    .news-items-container .col-4 {
        width: 33.333333%;
    }
    
    .news-item-small {
        width: 100%;
    }
}

/* 超小屏幕手机布局 (<576px) */
@media (max-width: 575px) {
    .news-container {
        padding-top: 14vh;
    }
    
    .news-banner h1 img {
        max-width: 200px;
        max-height: 50px;
    }
    
    /* 最小屏幕布局 (<320px) */
    @media (max-width: 320px) {
        .news-banner h1 img {
            max-width: 160px;
            max-height: 40px;
        }
    }
    
    .news-container .row {
        
    }
    
    .news-container > .col-8,
    .news-container > .col-md-12,
    .news-container > .col-sm-12,
    .news-container > .col-xs-12 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .news-container > .col-4 {
        display: none;
    }
    
    .news-list {
        margin-right: 0;
    }
    
    .news-item-large .row {
        flex-direction: column;
    }
    
    .news-item-large .col-md-6,
    .news-item-large .col-sm-6,
    .news-item-large .col-xs-12 {
        width: 100%;
    }
    
    .news-item-large .news-image {
        width: 100%;
        height: 180px;
        position: relative;
        z-index: 1;
    }
    
    .news-item-large .news-info {
        width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .news-items-container .row {
        flex-direction: column;
    }
    
    .news-items-container .col-4,
    .news-items-container .col-md-4,
    .news-items-container .col-sm-6,
    .news-items-container .col-xs-12 {
        width: 100%;
    }
    
    .news-item-small {
        width: 100%;
        margin-bottom: 20px;
    }
    
	.pagination.page-btn{
		background-color: #DFDFDF;
	}
	
    .pagination a {
        padding: 6px 12px;
        font-size: 14px;
        margin: 3px;
    }
    
    /* 新闻列表项响应式样式 */
    .news-item-list .news-info {
        padding-left: 0;
        padding-top: 10px;
    }
    
    .news-item-list .news-title {
        font-size: 16px;
    }
}
/* 新闻内容页样式 */
.article-title{
	text-align: center;
    padding-bottom: 20px;
    font-size: 2rem;
}
.article-meta{
	text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #f4f4f4;
}

.article-content{
	padding-top: 20px;
}
.article-content img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: 20px 0;
    display: block;
    box-sizing: border-box;
}

.article-content1{
	padding-top: 40px;
}

.article-content1 p{
	line-height: 32px;
}



/* 移动端内容页图片响应式样式 */
@media (max-width: 768px) {
    .article-content img,
    .article-content1 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }
}






