.seo-h1 {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.seo-text {
	position: absolute;
	left: -9999px;
	top: 0;
	width: 1px;
	height: auto;
	overflow: hidden;
}
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}
/* 子页面固定导航栏显示规则 */
.news-page .fixed-header,
.rooms-page .fixed-header,
.access-page .fixed-header,
.faq-page .fixed-header,
.contact-page .fixed-header {
	opacity: 1;
}

/* 顶部固定导航栏 */
.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	transition: opacity 0.3s ease;
	opacity: 0;
}

/* 固定导航栏显示动画 */
.fixed-header.visible {
	opacity: 1;
}

/* 固定导航栏左侧区域 */
.header-left {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: 5px;
	width: 400px;
}

/* 固定导航栏Logo容器 */
.header-logo {
	margin-left: 0;
}

/* 固定导航栏Logo图片 */
.header-logo img {
	width: 80px;
	height: auto;
}

/* 固定导航栏信息区域 */
.header-info {
	padding-left: 5px;
	border-left: 1px solid rgba(74, 74, 74, 0.2);
	width: 300px;
}

/* 固定导航栏标题 */
.header-info h1 {
	font-size: 16px;
	margin: 0 0 5px 0;
	color: #4A4A4A;
	font-weight: normal;
	word-wrap: break-word;
	line-height: 1.2;
}

/* 固定导航栏文本信息 */
.header-info p {
	font-size: 12px;
	margin: 0 0 3px 0;
	color: #666;
	word-wrap: break-word;
	line-height: 1.3;
}

/* 固定导航栏导航菜单 */
.header-nav {
	margin-left: 10px;
	margin-right: 10px;
}

/* 固定导航栏菜单列表 */
.header-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

/* 固定导航栏菜单链接 */
.header-nav a {
	text-decoration: none;
	color: #4A4A4A;
	font-size: 14px;
	position: relative;
	padding: 5px 10px;
	max-width: 150px;
	flex: 1;
	box-sizing: border-box;
}

/* 固定导航栏链接悬停效果 */
.header-nav a:hover {
	color: #8B7355;
}

/* 固定导航栏链接下划线动画 */
.header-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #8B7355;
	transition: width 0.3s ease;
}

/* 导航栏右侧区域 */
.nav-right-section {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: 0;
	display: flex;
	position: relative;
	z-index: 1000;
}

/* 导航栏主页按钮特殊样式 */
.header-nav ul li:first-child a {
	color: #8B7355;
	/* 使主页按钮颜色特殊一些 */
}

/* 导航栏链接悬停下划线动画 */
.header-nav a:hover::after {
	width: 100%;
}

/* 导航栏菜单列表布局 */
.header-nav ul {
	display: flex;
	/* 使用 Flexbox 布局 */
	flex-wrap: wrap;
	/* 允许换行 */
	justify-content: space-between;
	/* 可选：在行间分配空间 */
	padding: 0;
	/* 去掉默认内边距 */
	list-style: none;
	/* 去掉默认列表样式 */
}

/* 导航栏语言切换下拉菜单 */
/* 语言选择器样式 */
.nav-lang-selector {
	position: relative;
	margin-right: 15px;
}

.nav-lang-btn {
	display: flex;
	align-items: center;
	background: none;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	padding: 5px 10px;
	color: #333;
	font-size: 14px;
	transition: all 0.2s ease;
}

.nav-lang-btn:hover {
	border-color: #8B7355;
	color: #8B7355;
}

.nav-lang-btn.active {
	border-color: #8B7355;
	color: #8B7355;
}

.globe-icon {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

.current-lang {
	margin-right: 5px;
	font-weight: bold;
}

.arrow {
	font-size: 12px;
	color: #666;
}

.nav-lang-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	min-width: 140px;
	margin-top: 4px;
	padding: 4px 0;
	opacity: 1;
	z-index: 1002;
	border: 1px solid #ddd;
}

.nav-lang-dropdown.show {
	display: block;
}

.nav-lang-dropdown a {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: background-color 0.2s;
	gap: 8px;
	width: 100%;
}

.nav-lang-dropdown a:hover {
	background: #f5f5f5;
	color: #8B7355;
}

.check-mark {
	flex: 0 0 20px;
	display: inline-block;
	color: #8B7355;
	visibility: hidden;
	text-align: center;
	position: relative;
	font-size: 14px;
}

.nav-lang-dropdown a.active .check-mark {
	visibility: visible;
}

.nav-lang-text {
	flex: 1;
}

/* 页面头部背景 */
.page-header {
	background-image: url('../pic/logo/kanshoumon-pattern.svg');
	background-repeat: repeat;
	background-size: 80px 80px;
	background-color: #f8f8f8;
	/* 保持原有的浅灰色背景 */
}

.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;
}

/* 主页内容区域 */
.main-content {
	position: relative;
	z-index: 1;
	background-color: #fff;
	padding-top: 80px;
	/* 为固定导航栏留出空间 */
}

/* 返回首页按钮区域 */
.back-home {
	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;
}

/* 全局返回顶部按钮容器 */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: #8B7355;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: opacity 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

/* 全局返回顶部按钮图标 */
.back-to-top img {
	width: 20px;
	height: 20px;
	fill: #fff;
}

/* 全局返回顶部按钮显示状态 */
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}


/* 页脚容器 */
.site-footer {
	background-color: #1a1a1a;
	color: #fff;
	padding: 50px 20px;
	margin-top: 80px;
}

/* 页脚内容区域 */
.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* 页脚Logo容器 */
.footer-logo {
	margin-bottom: 30px;
}

/* 页脚Logo图片 */
.footer-logo img {
	width: 200px;
	height: auto;
	margin-bottom: 15px;
	filter: brightness(0) invert(1);
}

/* 页脚信息区域 */
.footer-info {
	margin-bottom: 30px;
}

/* 页脚信息文本 */
.footer-info p {
	margin: 5px 0;
	font-size: 14px;
	color: #ccc;
}

/* 页脚链接列表 */
.footer-links {
	display: flex;
	gap: 30px;
}

/* 页脚链接样式 */
.footer-links a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	position: relative;
}

/* 页脚链接分隔线 */
.footer-links a:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 50%;
	width: 1px;
	height: 12px;
	background-color: #666;
	transform: translateY(-50%);
}

/* 页脚链接悬停效果 */
.footer-links a:hover {
	color: #fff;
}

/* 移动端导航菜单（PC端隐藏） */
.mobile-nav {
	display: none;
}

.mobile-menu-btn {
	display: none;
}
