/* ============================================
   管理后台入口 - 底部齿轮图标样式
   ============================================ */
#admin-entry {
	position: fixed;
	bottom: 12px;
	right: 12px;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	color: rgba(255, 255, 255, 0.4);
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: 0.5;
}

#admin-entry:hover {
	opacity: 1;
	color: #fff;
	background: rgba(0, 0, 0, 0.6);
	transform: rotate(90deg);
}
