/* 客服栏容器 - 居中布局 */
.service-bar {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

/* 通用按钮样式 */
.service-button {
	width: 70px;
	height: 70px;
	background-color: white;
	border-radius: 12px;
	color: #4A90E2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f5ff;
	position: relative;
	text-decoration: none;
}

.service-button:hover {
	background-color: #4A90E2;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
	border-color: transparent;
}

/* 免费试用按钮样式 - 修复hover显示问题 */
.free-trial-btn {
	width: 80px;
	height: 80px;
	border: 2px solid #36B37E;
	color: #36B37E;
	box-shadow: 0 4px 15px rgba(54, 179, 126, 0.25);
	animation: pulse 3s infinite;
}

.free-trial-btn .service-icon {
	font-size: 30px;
	color: #36B37E;
	transition: color 0.3s ease;
	/* 添加入场动画 */
}

.free-trial-btn .service-text {
	font-size: 13px;
	font-weight: 700;
	color: #36B37E;
	transition: color 0.3s ease;
	/* 添加入场动画 */
}

/* 关键修复：hover时强制图标和文字为白色 */
.free-trial-btn:hover {
	background-color: #36B37E;
	color: white;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(54, 179, 126, 0.35);
}

.free-trial-btn:hover .service-icon,
.free-trial-btn:hover .service-text {
	color: white !important;
	/* 确保hover时为白色 */
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(54, 179, 126, 0.3);
	}
	
	70% {
		box-shadow: 0 0 0 10px rgba(54, 179, 126, 0);
	}
	
	100% {
		box-shadow: 0 0 0 0 rgba(54, 179, 126, 0);
	}
}

.consult-panel {
	width: 260px;
	padding: 20px;
	text-align: center;
}

.simple-qrcode-panel {
	width: 180px;
	padding: 15px;
	text-align: center;
}

.simple-qrcode {
	width: 150px;
	height: 150px;
	margin: 0 auto 10px;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
}

.simple-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

.contact-row {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin-top: 15px;
}

.contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #4A90E2;
	font-weight: bold;
	font-size: 15px;
}