
	/* 最外层容器保持原有布局 */
	.detail_whatsapp_box {
		display: flex; 
		flex-wrap: wrap; 
		gap: 30px; /* 稍微增加了间距，让两组按钮不会太拥挤 */
		margin: 26px 0;
	}

	/* --- 新增：每一组（标题+按钮）的包装容器 --- */
	.wa_item_wrapper {
		display: flex;
		flex-direction: column; /* 垂直排列 */
		align-items: center;    /* 居中对齐 */
		gap: 12px;              /* 标题和按钮之间的间距 */
	}

	/* --- 新增：标题文字样式 --- */
	.wa_item_label {
		font-size: 16px;
		font-weight: 700;
		color: #333333;
	}

	/* 呼吸按钮样式 (保持不变) */
	.detail_whatsapp_box a {
		display: flex; 
		align-items: center; 
		justify-content: center;
		gap: 10px; 
		font-size: 16px;
		font-weight: 700;
		color: #ffffff !important; 
		text-decoration: none !important;
		background: linear-gradient(135deg, #34eb8c 0%, #25d366 100%);
		padding: 12px 24px; 
		border-radius: 12px; 
		
		animation: detail-wa-breathe 2s infinite ease-in-out;
		will-change: transform, filter;
		box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
		transition: transform 0.3s ease;
	}

	.detail_whatsapp_box a:hover {
		text-decoration: none;
		animation-play-state: paused; 
		transform: scale(1.05); 
		filter: brightness(1.1);
	}

	/* iconfont 图标 (保持白色) */
	.detail_whatsapp_box a::before {
		content: "\e97b"; 
		font-family: 'iconfont'; 
		font-size: 24px; 
		color: #ffffff; 
	}

	/* --- 暗黑模式适配：按钮和标题都变白 --- */
	html[data-themes-style=dark] .detail_whatsapp_box a,
	html[data-themes-style=dark] .wa_item_label {
		color: #ffffff !important;
	}

	/* 呼吸跳动动画 */
	@keyframes detail-wa-breathe {
		0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.2)); }
		50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.6)); }
		100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.2)); }
	}

	/* --- 移动端适配 --- */
	@media screen and (max-width: 768px) {
		.detail_whatsapp_box {
			margin: 15px 0; 
			justify-content: center; /* 居中整体容器 */
			gap: 25px; /* 手机端上下间距稍微拉开 */
		}
		.wa_item_wrapper {
			width: 100%; /* 手机端让每一组独占一行 */
		}
		.detail_whatsapp_box a {
			width: 100%; 
			max-width: 320px;
		}
	}
