:root {
	--bg-color: #fff; /* 奶油色背景 */
	--text-blue: #3a59a8; /* 链接蓝色 */
	--whatsapp-green: #1BB150; /* 按钮绿色 */
}

body {
	background-color: var(--bg-color);
	font-family: "Helvetica", Arial, sans-serif;
	color: #333;
}

.main-container {
	max-width: 600px; /* 限制PC端宽度，保持手机端美感 */
	margin: 0 auto;
	padding: 10px 20px;
}

/* 头像样式 */
.logo-wrapper {
	width: 100%;
	height: auto;
	margin: 0 auto 15px;
	/* border-radius: 50%; */
	overflow: hidden;
	/* border: 2px solid #fff; */
	/* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}

.logo-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 名字与描述 */
.consultant-tagline {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 5px;
}

.consultant-name {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 20px;
}

/* 正文 */
.consultant-text {
	font-size: 1.2rem;
	/* font-weight: bold; */
	margin-bottom: 20px;
	margin-top: 20px;
}

/* 分割线 */
.divider {
	border-top: 1px solid #e0dbcf;
	margin: 30px 0;
	position: relative;
}
.divider i {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--bg-color);
	padding: 0 10px;
	color: #999;
	font-size: 0.9rem;
}

/* 引导文字 */
.cta-text {
	font-weight: bold;
	color: var(--text-blue);
	margin-bottom: 15px;
}

/* 修改后的 WhatsApp 按钮样式 */
.btn-whatsapp {
	background-color: var(--whatsapp-green);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 16px 20px;
	font-weight: bold;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative; /* 必须加这个，为了定位伪元素 */
	z-index: 1;
	font-size: 1.2rem;
}

/* 扩散的光圈效果 */
.btn-whatsapp::after {
	content: "";
	display: inline-block;
	height: 100%;
	width: 100%;
	border-radius: 8px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1; /* 放在按钮文字下方 */
	background-color: var(--whatsapp-green);
	transition: all 0.4s;
	animation: ripple-animation 2s infinite; /* 绑定新动画 */
}

.btn-whatsapp:hover {
	color: white;
}


/* 新的扩散动画关键帧 */
@keyframes ripple-animation {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scaleX(1.05) scaleY(1.38); /* 向外扩散的比例 */
		opacity: 0; /* 最终完全透明 */
	}
}

/* 让按钮本身也轻微跳动 */
.btn-whatsapp {
	animation: bounce-animation 2s infinite;
}

@keyframes bounce-animation {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.03); }
}

/* FAQ 列表 */
.faq-list {
	margin-top: 30px;
	text-align: left;
}

.faq-item {
	border: none;
	background: transparent;
	padding: 3px 0;
	
	display: block;
	text-decoration: none;
	color: var(--text-blue);
	font-weight: 400;
	transition: opacity 0.2s;
}

/* .faq-item:hover {
	opacity: 0.8;
	color: var(--text-blue);
} */

.faq-item i {
	margin-right: 10px;
	font-size: 1.1rem;
}