/* FAQ页面导航栏容器 */
.faq-nav {
	background: #fff;
	padding: 30px 20px;
	border-bottom: 1px solid #eee;
}

/* FAQ页面导航菜单列表 */
.faq-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

/* FAQ页面导航链接样式 */
.faq-nav a {
	color: #333;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s;
}

/* FAQ页面导航链接悬停效果 */
.faq-nav a:hover {
	background-color: #f5f5f5;
}

/* FAQ页面内容区域 */
.faq-section {
	padding: 60px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

/* FAQ页面分类区块 */
.faq-category {
	margin-bottom: 60px;
}

/* FAQ页面分类标题 */
.faq-category h2 {
	color: #8B7355;
	font-size: 24px;
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 2px solid #8B7355;
}

/* FAQ页面问答项容器 */
.faq-item {
	margin-bottom: 30px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* FAQ页面问题标题 */
.faq-question h3 {
	color: #333;
	font-size: 18px;
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
}

/* FAQ页面问题标记 */
.faq-question h3::before {
	content: "Q";
	position: absolute;
	left: 0;
	color: #8B7355;
	font-weight: bold;
}

/* FAQ页面答案内容 */
.faq-answer {
	color: #666;
	line-height: 1.8;
	padding-left: 30px;
	position: relative;
}

/* FAQ页面答案标记 */
.faq-answer::before {
	content: "A";
	position: absolute;
	left: 0;
	color: #8B7355;
	font-weight: bold;
}