/* ═══════════════════════════════════════════
   文章详情 · 数字员工领取漂浮窗
   始终大窗口 · 不缩小 · 环绕酷炫动效持续提醒
   ═══════════════════════════════════════════ */
.lx-de-float {
	--def-cyan: #00f5ff;
	--def-mag: #ff2bd6;
	--def-violet: #a78bfa;
	--def-gold: #fbbf24;
	--def-line: rgba(0, 245, 255, 0.5);
	--def-text: #e8f9ff;
	--def-muted: #9bb4cc;
	--def-z: 2147482800;
	position: fixed !important;
	left: 14px !important;
	top: 50% !important;
	bottom: auto !important;
	right: auto !important;
	transform: translateY(-50%) !important;
	z-index: var(--def-z) !important;
	font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
	color: var(--def-text);
	pointer-events: none;
}
.lx-de-float[hidden] { display: none !important; }
.lx-de-float * { box-sizing: border-box; }
.lx-de-float__panel { pointer-events: auto; }

/* 折叠胶囊已废弃：始终大窗 */
.lx-de-float__fab {
	display: none !important;
}

/* ── 漂浮载体 ── */
.lx-de-float__bob {
	position: relative;
	display: inline-block;
	padding: 48px 42px;
	animation: lx-def-bob-soft 5.5s ease-in-out infinite;
	will-change: transform;
}
@keyframes lx-def-bob-soft {
	0%, 100% { transform: translate(0, 0); }
	25% { transform: translate(2px, -6px); }
	50% { transform: translate(-2px, -10px); }
	75% { transform: translate(3px, -5px); }
}

/* ══════════════════════════════════
   持续环绕特效（围绕大窗）
   ══════════════════════════════════ */
.lx-de-float__fx {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 380px;
	height: 420px;
	margin: -210px 0 0 -190px;
	pointer-events: none;
	z-index: 0;
}

/* 实线光环 */
.lx-de-float__orbit {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid transparent;
	animation: lx-def-spin linear infinite;
}
.lx-de-float__orbit.o1 {
	border-top-color: rgba(0, 245, 255, 0.9);
	border-right-color: rgba(0, 245, 255, 0.2);
	box-shadow: 0 0 22px rgba(0, 245, 255, 0.35), inset 0 0 18px rgba(0, 245, 255, 0.08);
	animation-duration: 5s;
}
.lx-de-float__orbit.o2 {
	inset: 8%;
	border-bottom-color: rgba(255, 43, 214, 0.85);
	border-left-color: rgba(255, 43, 214, 0.18);
	box-shadow: 0 0 20px rgba(255, 43, 214, 0.28);
	animation-duration: 7s;
	animation-direction: reverse;
}
.lx-de-float__orbit.o3 {
	inset: 16%;
	border-top-color: rgba(167, 139, 250, 0.8);
	border-right-color: rgba(251, 191, 36, 0.4);
	animation-duration: 4s;
}
.lx-de-float__orbit.o4 {
	inset: 24%;
	border: 1.5px solid transparent;
	border-left-color: rgba(103, 232, 249, 0.7);
	border-bottom-color: rgba(255, 43, 214, 0.35);
	animation-duration: 9s;
	animation-direction: reverse;
}
@keyframes lx-def-spin {
	to { transform: rotate(360deg); }
}

/* 虚线轨道 */
.lx-de-float__dash {
	position: absolute;
	inset: 4%;
	border-radius: 50%;
	border: 1.5px dashed rgba(0, 245, 255, 0.4);
	animation: lx-def-spin 11s linear infinite reverse;
}
.lx-de-float__dash.d2 {
	inset: 14%;
	border-color: rgba(255, 43, 214, 0.35);
	animation-duration: 8.5s;
	animation-direction: normal;
}
.lx-de-float__dash.d3 {
	inset: 28%;
	border-style: dotted;
	border-color: rgba(167, 139, 250, 0.4);
	animation-duration: 14s;
	animation-direction: reverse;
}

/* 环绕卫星光点 */
.lx-de-float__sat {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	pointer-events: none;
	animation: lx-def-orbit-sat linear infinite;
}
.lx-de-float__sat.sa {
	background: #00f5ff;
	box-shadow: 0 0 14px #00f5ff, 0 0 28px rgba(0, 245, 255, 0.65);
	--r: 168px;
	animation-duration: 3.6s;
}
.lx-de-float__sat.sb {
	width: 9px;
	height: 9px;
	margin: -4.5px 0 0 -4.5px;
	background: #ff2bd6;
	box-shadow: 0 0 14px #ff2bd6, 0 0 24px rgba(255, 43, 214, 0.6);
	--r: 148px;
	animation-duration: 5s;
	animation-direction: reverse;
	animation-delay: -1s;
}
.lx-de-float__sat.sc {
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: #fbbf24;
	box-shadow: 0 0 12px #fbbf24, 0 0 20px rgba(251, 191, 36, 0.5);
	--r: 128px;
	animation-duration: 4.2s;
	animation-delay: -0.5s;
}
.lx-de-float__sat.sd {
	width: 7px;
	height: 7px;
	margin: -3.5px 0 0 -3.5px;
	background: #a78bfa;
	box-shadow: 0 0 14px #a78bfa;
	--r: 185px;
	animation-duration: 6.2s;
	animation-direction: reverse;
}
.lx-de-float__sat.se {
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -3px;
	background: #67e8f9;
	box-shadow: 0 0 12px #67e8f9;
	--r: 112px;
	animation-duration: 3.2s;
	animation-delay: -1.5s;
}
.lx-de-float__sat.sf {
	width: 11px;
	height: 11px;
	margin: -5.5px 0 0 -5.5px;
	background: #f472b6;
	box-shadow: 0 0 16px #f472b6, 0 0 30px rgba(244, 114, 182, 0.5);
	--r: 198px;
	animation-duration: 7.5s;
	animation-direction: reverse;
	animation-delay: -2s;
}
@keyframes lx-def-orbit-sat {
	from { transform: rotate(0deg) translateX(var(--r, 150px)) rotate(0deg); }
	to { transform: rotate(360deg) translateX(var(--r, 150px)) rotate(-360deg); }
}

/* 扫光束 */
.lx-de-float__beam {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 48%;
	height: 2px;
	margin-top: -1px;
	transform-origin: left center;
	background: linear-gradient(90deg, rgba(0, 245, 255, 0.85), transparent);
	animation: lx-def-beam 2.6s linear infinite;
	filter: blur(0.4px);
	opacity: 0.75;
}
.lx-de-float__beam.b2 {
	width: 42%;
	background: linear-gradient(90deg, rgba(255, 43, 214, 0.75), transparent);
	animation-duration: 3.8s;
	animation-direction: reverse;
	animation-delay: -1s;
	opacity: 0.55;
}
@keyframes lx-def-beam {
	from { transform: rotate(0deg); opacity: 0.25; }
	50% { opacity: 0.95; }
	to { transform: rotate(360deg); opacity: 0.25; }
}

/* 六边形旋转框 */
.lx-de-float__hex {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 300px;
	height: 300px;
	margin: -150px 0 0 -150px;
	border: 1px solid rgba(0, 245, 255, 0.25);
	clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
	animation: lx-def-spin 16s linear infinite;
	box-shadow: 0 0 20px rgba(0, 245, 255, 0.12);
}
.lx-de-float__hex.h2 {
	width: 340px;
	height: 340px;
	margin: -170px 0 0 -170px;
	border-color: rgba(255, 43, 214, 0.22);
	animation-duration: 22s;
	animation-direction: reverse;
	box-shadow: 0 0 18px rgba(255, 43, 214, 0.1);
}

/* 外扩脉冲环 */
.lx-de-float__pulse-ring {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	border-radius: 50%;
	border: 2px solid rgba(0, 245, 255, 0.55);
	animation: lx-def-pulse-ring 2.8s ease-out infinite;
	opacity: 0;
}
.lx-de-float__pulse-ring.pr2 {
	border-color: rgba(255, 43, 214, 0.5);
	animation-delay: 0.9s;
}
.lx-de-float__pulse-ring.pr3 {
	border-color: rgba(167, 139, 250, 0.5);
	animation-delay: 1.8s;
}
@keyframes lx-def-pulse-ring {
	0% {
		transform: scale(0.75);
		opacity: 0.75;
	}
	70% {
		opacity: 0.2;
	}
	100% {
		transform: scale(1.85);
		opacity: 0;
	}
}

/* 光晕 */
.lx-de-float__aura {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 340px;
	height: 360px;
	margin: -180px 0 0 -170px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 245, 255, 0.35) 0%, rgba(255, 43, 214, 0.16) 42%, transparent 70%);
	filter: blur(12px);
	animation: lx-def-aura 2.4s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 0;
}
@keyframes lx-def-aura {
	from { opacity: 0.55; transform: scale(0.92); }
	to { opacity: 1; transform: scale(1.18); }
}

/* 星屑 */
.lx-de-float__spark {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	animation: lx-def-spark 2.2s ease-in-out infinite;
}
.lx-de-float__spark.s1 { left: 8%; top: 6%; background: #00f5ff; box-shadow: 0 0 14px #00f5ff; }
.lx-de-float__spark.s2 { right: 6%; top: 18%; background: #ff2bd6; box-shadow: 0 0 14px #ff2bd6; animation-delay: 0.4s; width: 5px; height: 5px; }
.lx-de-float__spark.s3 { left: 12%; bottom: 10%; background: #fbbf24; box-shadow: 0 0 12px #fbbf24; animation-delay: 0.9s; width: 4px; height: 4px; }
.lx-de-float__spark.s4 { right: 12%; bottom: 16%; background: #a78bfa; box-shadow: 0 0 12px #a78bfa; animation-delay: 1.2s; }
.lx-de-float__spark.s5 { left: 48%; top: 0%; background: #67e8f9; box-shadow: 0 0 12px #67e8f9; animation-delay: 0.6s; width: 4px; height: 4px; }
.lx-de-float__spark.s6 { left: 2%; top: 45%; background: #f472b6; box-shadow: 0 0 12px #f472b6; animation-delay: 1.5s; width: 5px; height: 5px; }
.lx-de-float__spark.s7 { right: 4%; top: 52%; background: #34d399; box-shadow: 0 0 12px #34d399; animation-delay: 0.2s; width: 4px; height: 4px; }
.lx-de-float__spark.s8 { left: 40%; bottom: 2%; background: #fde68a; box-shadow: 0 0 12px #fde68a; animation-delay: 1.8s; width: 5px; height: 5px; }
@keyframes lx-def-spark {
	0%, 100% { opacity: 0; transform: translateY(8px) scale(0.5); }
	35% { opacity: 1; transform: translateY(-8px) scale(1.3); }
	70% { opacity: 0.7; transform: translateY(-20px) scale(0.9); }
}

/* ══════════════════════════════════
   始终展开的大卡片
   ══════════════════════════════════ */
.lx-de-float__panel {
	position: relative;
	z-index: 3;
	width: min(340px, calc(100vw - 28px));
	padding: 22px 20px 16px;
	border-radius: 20px;
	background: linear-gradient(160deg, rgba(10, 16, 38, 0.98), rgba(22, 10, 42, 0.98));
	border: 1.5px solid rgba(0, 245, 255, 0.5);
	box-shadow:
		0 0 0 1px rgba(167, 139, 250, 0.18),
		0 0 48px rgba(0, 245, 255, 0.28),
		0 0 72px rgba(255, 43, 214, 0.16),
		0 18px 44px rgba(0, 0, 0, 0.55);
	opacity: 1;
	transform: none;
	pointer-events: auto;
	overflow: hidden;
	animation: lx-def-panel-glow 2.8s ease-in-out infinite alternate;
}
@keyframes lx-def-panel-glow {
	from {
		box-shadow:
			0 0 0 1px rgba(167, 139, 250, 0.12),
			0 0 36px rgba(0, 245, 255, 0.22),
			0 0 52px rgba(255, 43, 214, 0.1),
			0 16px 40px rgba(0, 0, 0, 0.5);
	}
	to {
		box-shadow:
			0 0 0 1px rgba(0, 245, 255, 0.35),
			0 0 56px rgba(255, 43, 214, 0.32),
			0 0 80px rgba(0, 245, 255, 0.22),
			0 18px 44px rgba(0, 0, 0, 0.55);
	}
}
.lx-de-float__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(140px 90px at 90% 0%, rgba(255, 43, 214, 0.18), transparent 70%),
		radial-gradient(160px 110px at 0% 100%, rgba(0, 245, 255, 0.14), transparent 70%);
	pointer-events: none;
}
/* 面板边缘跑马灯扫光（始终开启） */
.lx-de-float__panel::after {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 22px;
	padding: 2px;
	background: conic-gradient(
		from var(--def-angle, 0deg),
		transparent 0%,
		#00f5ff 10%,
		transparent 22%,
		#ff2bd6 42%,
		transparent 55%,
		#a78bfa 72%,
		transparent 88%,
		#fbbf24 96%,
		transparent 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: lx-def-border 2.4s linear infinite;
	pointer-events: none;
	opacity: 1;
}
@property --def-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
@keyframes lx-def-border {
	to { --def-angle: 360deg; }
}
@supports not (background: conic-gradient(from var(--def-angle), red, blue)) {
	.lx-de-float__panel::after {
		background: none;
		box-shadow: inset 0 0 0 2px rgba(0, 245, 255, 0.55);
		-webkit-mask: none;
		mask: none;
		inset: 0;
		border-radius: 20px;
		padding: 0;
		animation: lx-def-border-fallback 2s ease-in-out infinite alternate;
	}
	@keyframes lx-def-border-fallback {
		from { box-shadow: inset 0 0 0 2px rgba(0, 245, 255, 0.45), 0 0 20px rgba(0, 245, 255, 0.2); }
		to { box-shadow: inset 0 0 0 2px rgba(255, 43, 214, 0.55), 0 0 28px rgba(255, 43, 214, 0.25); }
	}
}

.lx-de-float__panel[hidden] { display: none !important; }

/* 不允许关闭：隐藏关闭按钮 */
.lx-de-float__close,
.lx-de-float.is-no-close .lx-de-float__close {
	display: none !important;
}

.lx-de-float__badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 10px;
	padding: 5px 12px 5px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--def-cyan);
	background: rgba(0, 245, 255, 0.1);
	border: 1px solid rgba(0, 245, 255, 0.35);
}
.lx-de-float__badge .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22d3a6;
	box-shadow: 0 0 10px #22d3a6;
	animation: lx-def-dot 1.3s ease-in-out infinite;
}
@keyframes lx-def-dot {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

.lx-de-float__title {
	position: relative;
	margin: 0 0 10px 0;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.01em;
	background: linear-gradient(92deg, #fff 10%, #c4b5fd 45%, #f9a8d4 75%, #67e8f9 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: lx-def-title-shine 3.5s linear infinite;
}
@keyframes lx-def-title-shine {
	0% { background-position: 0% 50%; }
	100% { background-position: 200% 50%; }
}
.lx-de-float__desc {
	position: relative;
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.55;
	font-weight: 600;
	color: #a8c5d8;
	letter-spacing: 0.04em;
}

.lx-de-float__roles {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}
.lx-de-float__roles li {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 10px;
	border-radius: 9px;
	font-size: 12.5px;
	font-weight: 600;
	color: #d6eef8;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(0, 245, 255, 0.18);
	transition: border-color 0.2s, box-shadow 0.2s;
	animation: lx-def-chip 4s ease-in-out infinite;
}
.lx-de-float__roles li:nth-child(2n) { animation-delay: 0.4s; }
.lx-de-float__roles li:nth-child(3n) { animation-delay: 0.8s; }
@keyframes lx-def-chip {
	0%, 100% { border-color: rgba(0, 245, 255, 0.18); }
	50% { border-color: rgba(255, 43, 214, 0.35); box-shadow: 0 0 10px rgba(0, 245, 255, 0.12); }
}
.lx-de-float__roles .ic {
	font-size: 14px;
	line-height: 1;
}

.lx-de-float__cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 16px;
	min-height: 48px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none !important;
	color: #041018 !important;
	background: linear-gradient(105deg, #5ef0ff 0%, #a78bfa 48%, #ff6ad5 100%);
	background-size: 180% 100%;
	box-shadow: 0 0 24px rgba(0, 245, 255, 0.45), 0 8px 20px rgba(0, 0, 0, 0.35);
	animation: lx-def-cta 2.4s ease-in-out infinite;
	transition: filter 0.2s;
}
@keyframes lx-def-cta {
	0%, 100% { background-position: 0% 50%; box-shadow: 0 0 22px rgba(0, 245, 255, 0.4); }
	50% { background-position: 100% 50%; box-shadow: 0 0 36px rgba(255, 43, 214, 0.5); }
}
.lx-de-float__cta:hover {
	filter: brightness(1.08);
	color: #041018 !important;
}
.lx-de-float__cta .arr {
	font-weight: 800;
	font-size: 18px;
	transition: transform 0.2s;
}
.lx-de-float__cta:hover .arr {
	transform: translateX(4px);
}

.lx-de-float__hint {
	position: relative;
	margin: 10px 0 0;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(155, 180, 204, 0.85);
}

/* 进页吸引 */
.lx-de-float.is-tease .lx-de-float__bob {
	animation: lx-def-tease-bob 0.75s cubic-bezier(0.22, 1, 0.36, 1) 3;
}
.lx-de-float.is-tease .lx-de-float__panel {
	animation: lx-def-panel-glow 0.5s ease-in-out 4 alternate, lx-def-tease-scale 0.75s ease 3;
}
@keyframes lx-def-tease-bob {
	0%, 100% { transform: translate(0, 0) scale(1); }
	30% { transform: translate(2px, -14px) scale(1.04); }
	60% { transform: translate(-2px, -6px) scale(1.02); }
}
@keyframes lx-def-tease-scale {
	0%, 100% { transform: scale(1); }
	40% { transform: scale(1.03); }
}

@media (max-width: 640px) {
	.lx-de-float {
		left: 8px !important;
	}
	.lx-de-float__bob {
		padding: 36px 28px;
	}
	.lx-de-float__panel {
		width: min(300px, calc(100vw - 20px));
		padding: 18px 16px 14px;
	}
	.lx-de-float__title { font-size: 18px; }
	.lx-de-float__fx {
		width: 300px;
		height: 340px;
		margin: -170px 0 0 -150px;
	}
	.lx-de-float__sat.sa { --r: 135px; }
	.lx-de-float__sat.sb { --r: 118px; }
	.lx-de-float__sat.sc { --r: 100px; }
	.lx-de-float__sat.sd { --r: 148px; }
	.lx-de-float__sat.se { --r: 88px; }
	.lx-de-float__sat.sf { --r: 158px; }
	.lx-de-float__hex {
		width: 240px;
		height: 240px;
		margin: -120px 0 0 -120px;
	}
	.lx-de-float__hex.h2 {
		width: 270px;
		height: 270px;
		margin: -135px 0 0 -135px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lx-de-float__bob,
	.lx-de-float__orbit,
	.lx-de-float__dash,
	.lx-de-float__sat,
	.lx-de-float__beam,
	.lx-de-float__hex,
	.lx-de-float__pulse-ring,
	.lx-de-float__spark,
	.lx-de-float__aura,
	.lx-de-float__cta,
	.lx-de-float__title,
	.lx-de-float__roles li,
	.lx-de-float__panel,
	.lx-de-float__panel::after {
		animation: none !important;
	}
}

@media print {
	.lx-de-float { display: none !important; }
}
