/* 3. 公司新闻板块样式（独立容器） */
        .news-section {
            background:#fff; /* 独立背景区分 */
            padding: 20px 8%;
			max-width:750px;
			margin:0 auto;
        }
        .news-list {
            list-style: none;
        }
        .news-item {
            padding: 18px 0;
            border-bottom: 1px solid #ccc;
        }
        .news-info {
            display: block;
        }
        .date {
            font-size: 16px;
            color: #666;
            margin-bottom: 8px;
        }
        .content {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
        }
        .content a {
            color: inherit;
            text-decoration: none;
            display: block;
            width: 100%;
        }
        .content a:hover {
            color: #4ECDC4;
        }
        .news-fy{ padding:30px; text-align:center;}
		
		
		
		
		.news-fylist {
            width: 100%;
            height: 50px;
            line-height: 50px;
        }
		
		
		/* 分页容器整体样式 */
		.news-fylist {
		  /* 容器居中，可根据布局调整 */
		  text-align: center;
		  /* 上下间距，避免和其他元素挤在一起 */
		  margin: 20px 0;
		  /* 清除默认内边距 */
		  padding: 0;
		}
		
		/* 分页列表 - 清除默认列表样式 */
		.news-fylist .pagelist {
		  /* 清除默认列表标记 */
		  list-style: none;
		  /* 清除默认内边距 */
		  padding: 0;
		  /* 清除默认外边距 */
		  margin: 0;
		  /* 让分页项横向排列 */
		  display: inline-flex;
		  /* 项之间的间距 */
		  gap: 8px;
		  /* 垂直居中 */
		  align-items: center;
		}
		
		/* 分页列表项通用样式 */
		.news-fylist .pagelist li {
		  /* 清除默认列表项样式 */
		  list-style: none;
		}
		
		/* 分页链接/按钮样式 */
		.news-fylist .pagelist a,
		.news-fylist .pagelist span,
		.news-fylist .pagelist select {
		  /* 按钮样式：圆角、内边距 */
		  padding: 6px 12px;
		  border-radius: 4px;
		  /* 边框样式 */
		  border: 1px solid #e0e0e0;
		  /* 文字样式 */
		  font-size: 14px;
		  color: #333;
		  /* 去除链接下划线 */
		  text-decoration: none;
		  /* 鼠标移上去变成手型 */
		  cursor: pointer;
		  /* 背景色 */
		  background-color: #fff;
		  /* 行高重置 */
		  line-height: 1.5;
		  /* 盒模型：避免内边距撑大尺寸 */
		  box-sizing: border-box;
		}
		
		/* 悬停效果 */
		.news-fylist .pagelist a:hover {
		  border-color: #47d1c3;
		  color: #47d1c3;
		  background-color: #f5faff;
		}
		
		/* 当前页样式 */
		.news-fylist .pagelist span.current {
		  background-color: #409eff;
		  color: #fff;
		  border-color: #409eff;
		  /* 禁止点击（当前页不可点） */
		  pointer-events: none;
		}
		
		/* 禁用状态（如上一页/下一页无内容时） */
		.news-fylist .pagelist span.disabled {
		  color: #999;
		  border-color: #e0e0e0;
		  background-color: #f9f9f9;
		  cursor: not-allowed;
		}
		
		/* 下拉选择框样式适配 */
		.news-fylist .pagelist select {
		  /* 适配高度 */
		  height: 30px;
		  /* 清除默认样式 */
		  appearance: none;
		  -webkit-appearance: none;
		  -moz-appearance: none;
		  /* 右侧小箭头（可选，如需自定义箭头可加背景图） */
		  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
		  background-repeat: no-repeat;
		  background-position: right 8px center;
		  background-size: 10px;
		  /* 内边距调整，给箭头留空间 */
		  padding-right: 24px;
		}
		
		/* 适配移动端 */
		@media (max-width: 768px) {
		  .news-fylist .pagelist {
			gap: 4px;
		  }
		  .news-fylist .pagelist a,
		  .news-fylist .pagelist span,
		  .news-fylist .pagelist select {
			padding: 4px 8px;
			font-size: 12px;
		  }
		}