* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "思源黑体",Arial;
        }
		body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			margin-bottom: 40px;
        }
/* 纯图片Banner */
        .banner-section {
            width: 100%;
            overflow: hidden;
        }
        
        .banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
 
        /* 响应式 */
        @media (max-width: 768px) {
            .banner-section {
                height: 40vh;
                min-height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .banner-section {
                height: 35vh;
                min-height: 250px;
            }
        }
		/* 导航菜单样式 */
        .nav-menu {
            background-color: white;
            padding: 0;
            margin: 0 auto 3rem;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 100;
			overflow-x: auto; /* 添加横向滚动，防止内容溢出 */
    -webkit-overflow-scrolling: touch; /* 移动端平滑滚动 */
        }
        
        .nav-menu .nav-container {
            display: flex;
            justify-content: center;
            padding: 0;
			width:100%;
        }
        
        .nav-menu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 1100px;
			/* 核心修改：手机端允许换行 */
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .nav-menu li {
            flex: 0 0 auto;
            text-align: center;
			/* 确保菜单项有最小宽度 */
            min-width: fit-content;
            white-space: nowrap;
        }
        
        .nav-menu a {
            display: block;
            padding: 1.2rem 1rem;
            color: #555;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        /* 悬停效果 - 绿色 */
.nav-menu a:hover {
    color: #28a745; /* 中等绿色 */
    background-color: #f0f9f2; /* 淡绿色背景 */
}

/* 激活状态 - 绿色系 */
.nav-menu a.active {
    color: #28a745; /* 主绿色 */
    border-bottom-color: #28a745; /* 绿色边框 */
    background-color: #f0f9f2; /* 淡绿色背景 */
}
        
        .nav-menu a i {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
		/* 新闻列表样式 */
        .contul {
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            /* 轻微的边框，增加精致感 */
            border: 1px solid #f0f0f0;
        }
        .contul li {
            padding: 20px 0;
            border-bottom: 1px solid #f5f5f5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            padding-left: 15px;
            border-left: 3px solid transparent;
        }

        /* 列表项悬停效果 */
        .contul li:hover {
            background-color: #fafafa;
            border-left-color: #28a745;
            padding-left: 20px;
        }

        /* 最后一个li去掉下边框 */
        .contul li:last-child {
            border-bottom: none;
        }

        .contul a {
            color: #2c3e50;
            text-decoration: none;
            flex: 1;
            margin-right: 20px;
            transition: color 0.3s ease;
            font-size: 16px;
            line-height: 1.6;
        }

        .contul a:hover {
            color: #28a745;
        }

        .timeshow {
            display: inline-block;
            color: #7f8c8d;
            font-size: 14px;
            white-space: nowrap;
            background-color: #f8f9fa;
            padding: 6px 12px;
            border-radius: 20px; /* 圆形标签更美观 */
            font-weight: 400;
        }

        /* 响应式适配 - 小屏幕优化 */
        @media (max-width: 768px) {
            .contul {
                padding: 20px;
            }

            .contul li {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 15px 0 15px 10px;
            }

            .contul li:hover {
                padding-left: 15px;
            }

            .contul a {
                margin-right: 0;
                font-size: 15px;
            }

            .timeshow {
                align-self: flex-start;
                padding: 5px 10px;
                font-size: 13px;
            }
        }
		
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4db560;
	padding: 0 5px;
}
div.timeshow{
	display:block;
	margin: 14px 15px 0;
    padding-bottom: 10px;
    color: #999;
    border-bottom: 1px dashed #999;
	border-radius:0;
}
.comcontul{
	max-width: 1500px;
    margin: auto;
    margin-bottom: 2rem;
    padding: 20px 15px;
    line-height: 2em;
    font-size: 15px;

}
.comcontul p {
    margin-bottom: 1em;
}
/* 平板端 (768px-1024px) - 优先单行，缩小尺寸，仍放不下则滚动 */
        @media (max-width: 1024px) and (min-width: 768px) {
            .nav-menu ul {
                /* 平板端强制单行 */
                flex-wrap: nowrap;
            }
            .nav-menu a {
                padding: 0.9rem 0.6rem;
                font-size: 0.95rem;
            }
            
            .nav-menu a i {
                margin-right: 5px;
                font-size: 0.95rem;
            }
            
            .nav-menu li {
                min-width: 100px;
            }
        }

        /* 手机端 (<768px) - 允许自动换行成多行 */
        @media (max-width: 767px) {
            .nav-menu{
                margin-bottom: 2rem;
                border-radius: 0;
            }
            
            .nav-menu ul {
                /* 允许换行 */
                flex-wrap: wrap;
                /* 均匀分布菜单项 */
                justify-content: center;
				padding: 0 15px;
                gap: 2px;
            }
            
            .nav-menu a {
                padding: 0.8rem 0.5rem;
                font-size: 0.9rem;
                /* 确保点击区域足够大 */
                min-width: 70px;
				word-break: keep-all;
            }
            
            .nav-menu a i {
                margin-right: 4px;
                font-size: 0.9rem;
            }
            
            .nav-menu li {
                flex: 0 0 calc(25% - 8px);
                max-width: calc(25% - 8px);
                min-width: calc(25% - 8px);
            }
			.section-title {
                font-size: 1.7rem;
            }
			.banner-section {
                height: 40vh;
                min-height: 300px;
            }
        }

        /* 超小屏幕（≤480px）- 4列布局间距统一优化 */
        @media (max-width: 480px) {
            .nav-menu a {
                padding: 0.7rem 0.3rem;
                font-size: 0.85rem;
                padding-left: 2px;
                padding-right: 2px;
            }
            
            .nav-menu a i {
                margin-right: 2px;
                font-size: 0.85rem;
            }
            
            .nav-menu li {
                flex: 0 0 calc(25% - 6px);
                max-width: calc(25% - 6px);
                min-width: calc(25% - 6px);
            }
			.banner-section {
                height: 35vh;
                min-height: 250px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

        /* 极窄屏幕（≤320px）- 保持4列+间距统一 */
        @media (max-width: 320px) {
            .nav-menu a {
                padding: 0.6rem 0.2rem;
                font-size: 0.8rem;
            }
            
            .nav-menu a i {
                margin-right: 1px;
                font-size: 0.8rem;
            }
            .nav-menu ul {
                padding: 0 10px;
            }
        }