/* 新闻页面顶部间距 */
.news-page {
	padding-top: 80px;
  /* 为固定导航栏留出空间 */
}
/* 新闻页面标题区域 */
.page-header {
	background-color: #f8f8f8;
	padding: 40px 0;
	text-align: center;
	margin-bottom: 60px;
}

/* 新闻页面标题文本 */
.page-header h1 {
	margin: 0;
	color: #4A4A4A;
	font-size: 32px;
	font-weight: normal;
}

/* 新闻列表容器 */
.news-list-full {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 导航栏Logo链接 */
.header-logo a {
	display: block;
	text-decoration: none;
}

/* 导航栏Logo悬停效果 */
.header-logo a:hover {
	opacity: 0.8;
}


/* 导航栏分隔线 */
.nav-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, 
        rgba(139, 115, 85, 0),
        rgba(139, 115, 85, 0.5) 20%,
        rgba(139, 115, 85, 0.5) 80%,
        rgba(139, 115, 85, 0)
    );
	margin: 30px 0;
}
/* 新闻区域容器 */
.news-section {
	padding: 10px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

/* 新闻区域标题 */
.section-title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 40px;
	color: #4A4A4A;
}

/* 新闻列表容器 */
.news-list {
	max-width: 800px;
	margin: 0 auto;
}

/* 新闻列表项 */
.news-item {
	display: flex;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #EEEEEE;
}

/* 新闻日期 */
.news-date {
	width: 120px;
	padding-top: 5px;
	color: #666;
	font-size: 14px;
}

/* 新闻内容区域 */
.news-content {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

/* 新闻标题 */
.news-title {
	flex: 1;
	margin: 0;
	font-size: 16px;
	font-weight: normal;
}

/* 新闻标题链接 */
.news-title a {
	color: #4A4A4A;
	text-decoration: none;
	transition: color 0.3s ease;
}

/* 新闻标题链接悬停效果 */
.news-title a:hover {
	color: #8B7355;
}

/* 新闻图片容器 */
.news-image {
	width: 120px;
	height: 80px;
	overflow: hidden;
}

/* 新闻图片 */
.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 新闻更多按钮区域 */
.news-more {
	text-align: center;
	margin: 40px 0;
}

/* 新闻更多按钮链接 */
.more-link {
	display: inline-block;
	padding: 12px 40px;
	border: 1px solid #8B7355;
	color: #8B7355;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
	letter-spacing: 1px;
}

/* 新闻更多按钮悬停效果 */
.more-link:hover {
	background-color: #8B7355;
	color: #fff;
}

/* 新闻详情页主图容器 */
.news-main-image {
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}

/* 新闻详情页主图 */
.news-main-image img {
	width: 100%;
	height: auto;
}

/* 新闻详情页正文区域 */
.news-text {
	color: #333;
	line-height: 1.8;
}

/* 新闻详情页子标题 */
.news-text h3 {
	color: #8B7355;
	font-size: 20px;
	margin: 30px 0 15px;
}

/* 新闻详情页列表 */
.news-text ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

/* 新闻详情页列表项 */
.news-text li {
	margin-bottom: 10px;
}

/* 新闻详情页预约信息区域 */
.reservation-info {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 10px;
	margin-top: 30px;
}

/* 新闻详情页预约信息文本 */
.reservation-info p {
	margin: 0;
	color: #666;
}

/* 分页导航容器 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 40px 0;
	display: none;
  /* 默认隐藏 */
}

/* 分页页码容器 */
.page-numbers {
	display: flex;
	gap: 5px;
}

/* 分页按钮基础样式 */
.page-btn {
	min-width: 40px;
	height: 40px;
	border: 1px solid #8B7355;
	background: #fff;
	color: #8B7355;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}

/* 分页按钮悬停效果 */
.page-btn:hover:not(:disabled) {
	background: #8B7355;
	color: #fff;
}

/* 分页当前页按钮 */
.page-btn.active {
	background: #8B7355;
	color: #fff;
}

/* 分页禁用按钮 */
.page-btn:disabled {
	border-color: #ccc;
	color: #ccc;
	cursor: not-allowed;
}

/* 分页上一页下一页按钮 */
.prev, .next {
	font-size: 14px;
}
/* 新闻详情页主容器样式 */
.news-detail {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 新闻详情页头部区域样式 */
.news-detail-header {
	margin-bottom: 30px;
	text-align: center;
}

/* 新闻详情页日期样式 */
.news-detail-header .news-date {
	color: #8B7355;
	font-size: 16px;
	margin-bottom: 10px;
}

/* 新闻详情页标题样式 */
.news-detail-header .news-title {
	color: #333;
	font-size: 28px;
	line-height: 1.4;
}


