@charset "utf-8";

.app-float-entry {
	position: fixed;
	right: 24px;
	bottom: 22px;
	z-index: 1050;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #0a4f96;
	font-family: "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
	text-decoration: none !important;
	transition: transform 0.22s ease;
}

.app-float-entry:hover,
.app-float-entry:focus {
	color: #0056b3;
	text-decoration: none;
	transform: translateY(-3px);
	outline: none;
}

.app-float-icon {
	display: flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 7px;
	border: 1px solid rgba(0, 86, 179, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 28px rgba(7, 51, 99, 0.24);
}

.app-float-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.app-float-label {
	margin-top: 6px;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 4px 14px rgba(7, 51, 99, 0.15);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.app-float-entry {
		right: 14px;
		bottom: 16px;
	}

	.app-float-icon {
		width: 56px;
		height: 56px;
		padding: 6px;
	}

	.app-float-label {
		margin-top: 5px;
		font-size: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.app-float-entry {
		transition: none;
	}
}
