/* 漂浮图片样式 */
.float-image-container {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	pointer-events: none;
}

.float-image-wrapper {
	position: relative;
	width: 220px;
	height: auto;
	pointer-events: auto;
	max-width: 12vw;
	min-width: 90px;
}

.float-image-wrapper a {
	display: block;
	text-decoration: none;
	width: 100%;
	height: auto;
}

.float-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.float-image-wrapper:hover img {
	transform: scale(1.1);
}

.float-image-close {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 24px;
	height: 24px;
	background-color: #ff4444;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.float-image-close:hover {
	background-color: #cc0000;
	transform: scale(1.1);
}

