/* 常见问题区块 —— 12 个业务页共用
   作用：给 AI 引擎提供可整段摘录的答案文本，同时补足页面正文厚度
   用法：<link rel="stylesheet" href="./css/faq.css"> + <section class="jh-faq"> */

.jh-faq {
	background: #ffffff;
	padding: 0.8rem 0 0.9rem;
}

.jh-faq__inner {
	width: 100%;
	max-width: 12rem;
	margin: 0 auto;
	padding: 0 0.2rem;
	box-sizing: border-box;
}

.jh-faq__title {
	margin: 0 0 0.32rem;
	font-size: 0.32rem;
	line-height: 0.44rem;
	font-weight: 600;
	color: #1b2330;
	text-align: center;
}

.jh-faq__sub {
	margin: 0 0 0.4rem;
	font-size: 0.14rem;
	line-height: 0.24rem;
	color: #6b7684;
	text-align: center;
}

.jh-faq__list {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.16rem;
}

.jh-faq__item {
	border: 1px solid #e6ebf2;
	border-radius: 0.08rem;
	padding: 0.2rem 0.22rem;
	background: #fafcff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jh-faq__item:hover {
	border-color: #c9dcfb;
	box-shadow: 0 0.02rem 0.12rem rgba(26, 108, 255, 0.08);
}

.jh-faq__q {
	margin: 0 0 0.1rem;
	font-size: 0.16rem;
	line-height: 0.26rem;
	font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", sans-serif;
	font-weight: 400;
	color: #1b2330;
}

.jh-faq__a {
	margin: 0;
	font-size: 0.14rem;
	line-height: 0.26rem;
	font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", sans-serif;
	font-weight: 400;
	color: #4a5563;
}

@media (max-width: 900px) {
	.jh-faq__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.jh-faq {
		padding: 0.5rem 0 0.6rem;
	}
	.jh-faq__inner {
		padding: 0 0.24rem;
	}
	.jh-faq__title {
		font-size: 0.26rem;
	}
	.jh-faq__q {
		font-size: 0.16rem;
	}
	.jh-faq__a {
		font-size: 0.14rem;
	}
}
