.hello-floating-contact {
	position: fixed;
	bottom: 30px;
	right: 20px;
	z-index: 9999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.hello-floating-contact-button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--hello-primary-color, #0073aa);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	position: relative;
	z-index: 10001;
}

/* PC端隐藏主按钮（因为联系方式默认展开） */
@media (min-width: 769px) {
	.hello-floating-contact-button {
		display: none;
	}
}

/* PC端隐藏主按钮（因为联系方式默认展开） */
@media (min-width: 769px) {
	.hello-floating-contact-button {
		display: none;
	}
}

.hello-floating-contact-button:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hello-floating-contact-button img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.hello-floating-contact-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
	position: absolute;
	bottom: 60px;
	right: 0;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: all 0.3s ease;
	pointer-events: all;
}

/* 移动端默认隐藏 */
@media (max-width: 768px) {
	.hello-floating-contact-items {
		opacity: 0;
		visibility: hidden;
		transform: translateY(20px);
		pointer-events: none;
	}

	.hello-floating-contact.active .hello-floating-contact-items {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: all;
	}
}

.hello-contact-item {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--hello-primary-color, #0073aa);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
}

.hello-contact-item:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hello-contact-item img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.hello-contact-item.phone {
	background-color: #FF9800;
}

.hello-contact-item.email {
	background-color: #2196F3;
}

.hello-contact-item.whatsapp {
	background-color: #25D366;
}

.hello-contact-item.wechat {
	background-color: #07C160;
}

.hello-wechat-qr-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10002;
	display: none;
	align-items: center;
	justify-content: center;
}

.hello-wechat-qr-popup.active {
	display: flex;
}

.hello-wechat-qr-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.hello-wechat-qr-content {
	position: relative;
	background: white;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	max-width: 90%;
	max-height: 90%;
	z-index: 1;
}

.hello-wechat-qr-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	cursor: pointer;
	color: #666;
	line-height: 1;
}

.hello-wechat-qr-close:hover {
	color: #333;
}

.hello-wechat-qr-content h3 {
	margin: 0 0 10px 0;
	font-size: 18px;
	color: #333;
}

.hello-wechat-qr-content .hello-wechat-id-wrapper {
	margin-bottom: 15px;
	text-align: center;
}

.hello-wechat-qr-content .hello-wechat-id {
	margin: 0 0 8px 0;
	font-size: 16px;
	color: #07C160;
	font-weight: 500;
	cursor: pointer;
	display: inline-block;
	padding: 8px 16px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.hello-wechat-qr-content .hello-wechat-id:hover {
	background-color: rgba(7, 193, 96, 0.1);
}

.hello-copy-success {
	color: #07C160;
	font-size: 14px;
	font-weight: 500;
	display: block;
	margin-top: 5px;
}

.hello-wechat-qr-content img {
	max-width: 300px;
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

@media (max-width: 768px) {
	.hello-floating-contact {
		bottom: 20px;
		right: 15px;
	}

	.hello-contact-item {
		width: 45px;
		height: 45px;
	}

	.hello-contact-item img {
		width: 20px;
		height: 20px;
	}

	.hello-wechat-qr-content {
		padding: 20px;
		max-width: 85%;
	}

	.hello-wechat-qr-content img {
		max-width: 100%;
	}
}

