/* 数字员工平台 · 前台 + 后台 */
.lx-de {
	--de-bg: #070b14;
	--de-card: rgba(15, 23, 42, 0.72);
	--de-line: rgba(56, 189, 248, 0.28);
	--de-text: #e2e8f0;
	--de-muted: #94a3b8;
	--de-accent: #38bdf8;
	--de-ok: #34d399;
	max-width: 1180px;
	margin: 0 auto;
	padding: 24px 16px 64px;
	color: var(--de-text);
	font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans SC", sans-serif;
}
.lx-de__hero {
	padding: 28px 24px;
	border-radius: 20px;
	border: 1px solid var(--de-line);
	background:
		radial-gradient(ellipse at 20% 0%, rgba(56, 189, 248, 0.18), transparent 50%),
		radial-gradient(ellipse at 90% 30%, rgba(244, 114, 182, 0.12), transparent 45%),
		var(--de-card);
	margin-bottom: 22px;
}
.lx-de__hero--desk { padding: 20px 22px; }
.lx-de__kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--de-ok);
	text-transform: uppercase;
}

/* ========== 工作台顶栏 · 开放少框 ========== */
.lx-de-desk-hero {
	position: relative;
	margin-bottom: 20px;
	padding: clamp(18px, 2.5vw, 28px) 4px clamp(16px, 2vw, 22px);
	border-radius: 0;
	overflow: hidden;
	border: 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
	background:
		radial-gradient(ellipse 55% 80% at 90% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
		radial-gradient(ellipse 40% 60% at 5% 100%, rgba(129, 140, 248, 0.1), transparent 55%);
	box-shadow: none;
}
.lx-de-desk-hero__fx {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}
.lx-de-desk-hero__fx .grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(56, 189, 248, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.07) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
	-webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
	opacity: 0.7;
	animation: lx-de-desk-grid 8s linear infinite;
}
@keyframes lx-de-desk-grid {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 0 28px, 28px 0; }
}
.lx-de-desk-hero__fx .orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(28px);
	opacity: 0.55;
	animation: lx-de-desk-orb 10s ease-in-out infinite;
}
.lx-de-desk-hero__fx .orb.o1 {
	width: 180px;
	height: 140px;
	right: 6%;
	top: -20%;
	background: rgba(56, 189, 248, 0.35);
}
.lx-de-desk-hero__fx .orb.o2 {
	width: 140px;
	height: 120px;
	left: 8%;
	bottom: -30%;
	background: rgba(244, 114, 182, 0.28);
	animation-delay: -4s;
}
@keyframes lx-de-desk-orb {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-10px, 8px) scale(1.08); }
}
.lx-de-desk-hero__fx .scan {
	position: absolute;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.08), transparent);
	animation: lx-de-desk-scan 4.5s linear infinite;
}
@keyframes lx-de-desk-scan {
	0% { top: -40%; }
	100% { top: 100%; }
}
.lx-de-desk-hero__fx .line {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #38bdf8, #f472b6, #34d399, transparent);
	background-size: 200% 100%;
	animation: lx-de-desk-line 4s linear infinite;
}
@keyframes lx-de-desk-line {
	0% { background-position: 0% 0; }
	100% { background-position: 200% 0; }
}
.lx-de-desk-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}
.lx-de-desk-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 0;
	border-radius: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #7dd3fc;
	background: none;
	border: 0;
}
.lx-de-desk-hero__kicker .live {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 10px #34d399;
	animation: lx-de-vs-pulse 1.3s ease-in-out infinite;
}
.lx-de-desk-hero__title {
	margin: 0 0 16px;
	font-size: clamp(1.5rem, 3.4vw, 2.05rem);
	font-weight: 900;
	line-height: 1.25;
	color: #f8fafc;
	letter-spacing: -0.02em;
	text-shadow: none;
}
.lx-de-desk-hero__title em {
	font-style: normal;
	background: linear-gradient(90deg, #38bdf8, #818cf8, #34d399);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.lx-de-desk-hero__lead {
	display: none !important;
}
.lx-de-desk-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}
.lx-de-desk-hero__cta {
	box-shadow: 0 4px 18px rgba(14, 165, 233, 0.35) !important;
}

/* 工作台空态 / 登录门禁 · 无大框 */
.lx-de__empty--gate {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	padding: 32px 16px;
}
.lx-de-gate {
	max-width: 420px;
	text-align: center;
	padding: 24px 8px;
	border-radius: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}
.lx-de-gate__ic {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	display: grid;
	place-items: center;
	font-size: 28px;
	border-radius: 50%;
	background: rgba(56, 189, 248, 0.12);
	border: 0;
}
.lx-de-gate h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
	font-weight: 800;
	color: #f1f5f9;
}
.lx-de-gate p {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.7;
	color: #94a3b8;
}
.lx-de-gate__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.lx-de-gate--side {
	padding: 12px 4px;
	text-align: left;
	border: 0;
	background: transparent;
	box-shadow: none;
}
.lx-de-gate--side .lx-de-gate__mini {
	margin: 0 0 12px;
	font-size: 12.5px;
	line-height: 1.55;
	color: #64748b;
}
.lx-de-gate--side .lx-de-btn { width: auto; }
.lx-de__hero h1 {
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	line-height: 1.25;
	color: #f8fafc;
}
.lx-de__lead {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--de-muted);
	max-width: 720px;
}
.lx-de__hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* 按钮：独立胶囊，无描边硬框 */
.lx-de-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	isolation: isolate;
	overflow: hidden;
	padding: 12px 20px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	border: 0 !important;
	cursor: pointer;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, background 0.15s ease, color 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}
.lx-de-btn:hover { transform: translateY(-1px); }
.lx-de-btn:active { transform: scale(0.97); }
.lx-de-btn--primary {
	color: #fff !important;
	background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
	box-shadow:
		0 4px 16px rgba(14, 165, 233, 0.35),
		0 1px 0 rgba(255, 255, 255, 0.12) inset;
}
.lx-de-btn--primary:hover {
	filter: brightness(1.08);
	box-shadow:
		0 8px 28px rgba(99, 102, 241, 0.4),
		0 1px 0 rgba(255, 255, 255, 0.16) inset;
}
.lx-de-btn--ghost {
	color: #e2e8f0 !important;
	background: rgba(148, 163, 184, 0.12);
	box-shadow: none;
}
.lx-de-btn--ghost:hover {
	background: rgba(56, 189, 248, 0.16);
	color: #f0f9ff !important;
}

/* —— 岗位卡按钮：点击涟漪 + 脉冲 —— */
.lx-de-btn-ripple {
	position: absolute;
	width: 12px;
	height: 12px;
	margin: -6px 0 0 -6px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(0, 255, 240, 0.35) 40%, transparent 70%);
	pointer-events: none;
	transform: scale(0);
	animation: lx-de-btn-ripple 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	z-index: 2;
}
@keyframes lx-de-btn-ripple {
	0% { transform: scale(0); opacity: 0.9; }
	100% { transform: scale(18); opacity: 0; }
}
.lx-de-btn.is-pulse-jd {
	animation: lx-de-btn-pulse-jd 0.55s ease;
}
.lx-de-btn.is-pulse-hire {
	animation: lx-de-btn-pulse-hire 0.55s ease;
}
@keyframes lx-de-btn-pulse-jd {
	0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 240, 0.5); }
	40% { transform: scale(0.94); box-shadow: 0 0 0 8px rgba(0, 255, 240, 0.15); }
	70% { transform: scale(1.04); box-shadow: 0 0 24px rgba(0, 255, 240, 0.45); }
	100% { transform: scale(1); box-shadow: none; }
}
@keyframes lx-de-btn-pulse-hire {
	0% { transform: scale(1); filter: brightness(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.55); }
	35% { transform: scale(0.93); filter: brightness(1.15); box-shadow: 0 0 0 10px rgba(14, 165, 233, 0.2); }
	65% { transform: scale(1.06); filter: brightness(1.2); box-shadow: 0 0 32px rgba(99, 102, 241, 0.55), 0 0 48px rgba(14, 165, 233, 0.3); }
	100% { transform: scale(1); filter: brightness(1); }
}
.lx-de--claim-cyber .lx-de-jd-btn.is-pulse-jd {
	color: #041016 !important;
	background: linear-gradient(135deg, rgba(0, 255, 240, 0.85), rgba(122, 248, 255, 0.7)) !important;
}
.lx-de--claim-cyber .lx-de-claim-btn.is-pulse-hire,
.lx-de-btn--primary.is-pulse-hire {
	color: #fff !important;
}
.lx-de__tpl-card.is-tap {
	animation: lx-de-card-tap 0.3s ease;
}
@keyframes lx-de-card-tap {
	0% { transform: scale(1); }
	40% { transform: scale(0.985); }
	100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
	.lx-de-btn-ripple,
	.lx-de-btn.is-pulse-jd,
	.lx-de-btn.is-pulse-hire,
	.lx-de__tpl-card.is-tap {
		animation: none !important;
	}
}
.lx-de-btn--danger {
	color: #fecaca !important;
	background: rgba(239, 68, 68, 0.16);
	box-shadow: none;
}
.lx-de-btn--danger:hover {
	background: rgba(239, 68, 68, 0.28);
	color: #fff !important;
}
/* 旧 compare 兼容（若他处引用） */
.lx-de__compare { display: none !important; }

/* ========== 传统工具 VS 数字员工 · 高阶动画对决 ========== */
.lx-de-vs {
	--vs-pink: #f472b6;
	--vs-cyan: #38bdf8;
	--vs-ok: #34d399;
	--vs-warn: #94a3b8;
	position: relative;
	margin: 36px 0 40px;
	padding: 8px 0 4px;
	overflow: hidden;
}
.lx-de-vs__head {
	text-align: center;
	margin-bottom: 22px;
	padding: 0 8px;
}
.lx-de-vs__kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #f9a8d4;
	background: rgba(244, 114, 182, 0.1);
	border: 1px solid rgba(244, 114, 182, 0.3);
}
.lx-de-vs__kicker .pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f472b6;
	box-shadow: 0 0 10px #f472b6;
	animation: lx-de-vs-pulse 1.3s ease-in-out infinite;
}
@keyframes lx-de-vs-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.35); opacity: 0.55; }
}
.lx-de-vs__title {
	margin: 0 0 10px;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 900;
	line-height: 1.3;
	color: #f8fafc;
	text-shadow: 0 0 24px rgba(56, 189, 248, 0.25);
}
.lx-de-vs__sub {
	margin: 0 auto;
	max-width: 36em;
	font-size: 14px;
	line-height: 1.7;
	color: var(--de-muted);
}

.lx-de-vs__arena {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 14px;
	align-items: stretch;
	perspective: 1200px;
}
@media (max-width: 820px) {
	.lx-de-vs__arena {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.lx-de-vs__mid {
		order: 0;
		margin: -4px auto;
	}
	.lx-de-vs__card--old { order: 1; }
	.lx-de-vs__card--new { order: 2; }
}

/* 卡片底座 */
.lx-de-vs__card {
	position: relative;
	padding: 22px 18px 18px;
	border-radius: 18px;
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.lx-de-vs__card:hover {
	transform: translateY(-4px) scale(1.01);
}

/* —— 传统工具：灰暗、碎裂、下沉 —— */
.lx-de-vs__card--old {
	border: 1px solid rgba(148, 163, 184, 0.28);
	background:
		linear-gradient(160deg, rgba(51, 65, 85, 0.35), transparent 50%),
		rgba(15, 23, 42, 0.55);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
	filter: saturate(0.55);
	animation: lx-de-vs-old-in 0.9s ease both;
}
.lx-de-vs__card--old:hover { filter: saturate(0.7); }
@keyframes lx-de-vs-old-in {
	from { opacity: 0; transform: translateX(-24px) rotateY(8deg); }
	to { opacity: 1; transform: none; }
}
.lx-de-vs__card--old .lx-de-vs__glitch {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(0, 0, 0, 0.06) 2px,
			rgba(0, 0, 0, 0.06) 4px
		);
	opacity: 0.5;
	pointer-events: none;
	animation: lx-de-vs-noise 0.35s steps(2) infinite;
	mix-blend-mode: multiply;
}
@keyframes lx-de-vs-noise {
	0% { transform: translate(0, 0); }
	50% { transform: translate(-1px, 1px); }
	100% { transform: translate(1px, -1px); }
}
.lx-de-vs__card--old h3 {
	margin: 0 0 6px;
	font-size: 1.2rem;
	font-weight: 800;
	color: #94a3b8;
	text-decoration: line-through;
	text-decoration-color: rgba(248, 113, 113, 0.55);
}
.lx-de-vs__card--old .lx-de-vs__tagline { color: #64748b; }

/* —— 数字员工：霓虹、上升、全息 —— */
.lx-de-vs__card--new {
	border: 1px solid rgba(52, 211, 153, 0.45);
	background:
		radial-gradient(ellipse at 80% 0%, rgba(52, 211, 153, 0.18), transparent 50%),
		radial-gradient(ellipse at 10% 100%, rgba(56, 189, 248, 0.16), transparent 45%),
		rgba(6, 28, 24, 0.55);
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.08) inset,
		0 16px 40px rgba(0, 0, 0, 0.35),
		0 0 36px rgba(52, 211, 153, 0.15);
	animation: lx-de-vs-new-in 0.9s ease 0.12s both;
}
@keyframes lx-de-vs-new-in {
	from { opacity: 0; transform: translateX(24px) rotateY(-8deg); }
	to { opacity: 1; transform: none; }
}
.lx-de-vs__card--new:hover {
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.15) inset,
		0 20px 48px rgba(0, 0, 0, 0.4),
		0 0 48px rgba(52, 211, 153, 0.28);
}
.lx-de-vs__card--new h3 {
	margin: 0 0 6px;
	font-size: 1.25rem;
	font-weight: 900;
	background: linear-gradient(90deg, #6ee7b7, #38bdf8, #a78bfa);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.35));
}
.lx-de-vs__card--new .lx-de-vs__tagline { color: #7dd3fc; }

.lx-de-vs__scan {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(148, 163, 184, 0.06) 48%,
		transparent 52%,
		transparent 100%
	);
	background-size: 100% 220%;
	animation: lx-de-vs-scan 5.5s linear infinite;
	pointer-events: none;
	z-index: 0;
}
.lx-de-vs__scan--fast {
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(52, 211, 153, 0.1) 48%,
		transparent 52%,
		transparent 100%
	);
	background-size: 100% 220%;
	animation-duration: 3.2s;
}
@keyframes lx-de-vs-scan {
	0% { background-position: 0 -100%; }
	100% { background-position: 0 200%; }
}
.lx-de-vs__aura {
	position: absolute;
	right: -20%;
	top: -30%;
	width: 60%;
	height: 70%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(52, 211, 153, 0.25), transparent 65%);
	filter: blur(20px);
	animation: lx-de-vs-aura 4s ease-in-out infinite;
	pointer-events: none;
}
@keyframes lx-de-vs-aura {
	0%, 100% { opacity: 0.45; transform: scale(1); }
	50% { opacity: 0.85; transform: scale(1.08); }
}

.lx-de-vs__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
}
.lx-de-vs__badge--down {
	color: #fecaca;
	background: rgba(127, 29, 29, 0.45);
	border: 1px solid rgba(248, 113, 113, 0.4);
	animation: lx-de-vs-badge-down 2.4s ease-in-out infinite;
}
.lx-de-vs__badge--up {
	color: #042f2e;
	background: linear-gradient(90deg, #34d399, #5eead4);
	border: 1px solid rgba(52, 211, 153, 0.6);
	box-shadow: 0 0 16px rgba(52, 211, 153, 0.4);
	animation: lx-de-vs-badge-up 2s ease-in-out infinite;
}
@keyframes lx-de-vs-badge-down {
	0%, 100% { opacity: 0.75; }
	50% { opacity: 1; }
}
@keyframes lx-de-vs-badge-up {
	0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(52, 211, 153, 0.35); }
	50% { transform: scale(1.05); box-shadow: 0 0 22px rgba(52, 211, 153, 0.55); }
}

.lx-de-vs__icon {
	position: relative;
	width: 64px;
	height: 64px;
	margin: 4px 0 14px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: rgba(30, 41, 59, 0.7);
	border: 1px solid rgba(148, 163, 184, 0.25);
	z-index: 1;
}
.lx-de-vs__icon .ic { font-size: 28px; filter: grayscale(0.6); opacity: 0.75; }
.lx-de-vs__icon .crack {
	position: absolute;
	background: rgba(248, 113, 113, 0.65);
	pointer-events: none;
}
.lx-de-vs__icon .crack.c1 {
	width: 2px;
	height: 70%;
	top: 10%;
	left: 42%;
	transform: rotate(18deg);
	animation: lx-de-vs-crack 3s ease-in-out infinite;
}
.lx-de-vs__icon .crack.c2 {
	width: 55%;
	height: 2px;
	top: 58%;
	left: 20%;
	transform: rotate(-12deg);
	animation: lx-de-vs-crack 3s ease-in-out infinite 0.4s;
}
@keyframes lx-de-vs-crack {
	0%, 100% { opacity: 0.35; }
	50% { opacity: 0.9; }
}
.lx-de-vs__icon--live {
	background:
		linear-gradient(145deg, rgba(52, 211, 153, 0.3), rgba(56, 189, 248, 0.22));
	border-color: rgba(52, 211, 153, 0.5);
	box-shadow: 0 0 24px rgba(52, 211, 153, 0.3);
	animation: lx-de-vs-icon-float 3.5s ease-in-out infinite;
}
.lx-de-vs__icon--live .ic {
	filter: none;
	opacity: 1;
	font-size: 30px;
	filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.5));
}
.lx-de-vs__icon--live .orbit {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px dashed rgba(56, 189, 248, 0.45);
	animation: lx-de-vs-spin 8s linear infinite;
}
.lx-de-vs__icon--live .orbit.o2 {
	inset: -12px;
	border-color: rgba(52, 211, 153, 0.35);
	animation-direction: reverse;
	animation-duration: 12s;
}
@keyframes lx-de-vs-icon-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
@keyframes lx-de-vs-spin {
	to { transform: rotate(360deg); }
}

.lx-de-vs__tagline {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.55;
	z-index: 1;
	position: relative;
}
.lx-de-vs__list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	position: relative;
	z-index: 1;
}
.lx-de-vs__list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 13.5px;
	line-height: 1.45;
	color: #cbd5e1;
	animation: lx-de-vs-li 0.5s ease both;
}
.lx-de-vs__card--old .lx-de-vs__list li:nth-child(1) { animation-delay: 0.15s; }
.lx-de-vs__card--old .lx-de-vs__list li:nth-child(2) { animation-delay: 0.22s; }
.lx-de-vs__card--old .lx-de-vs__list li:nth-child(3) { animation-delay: 0.29s; }
.lx-de-vs__card--old .lx-de-vs__list li:nth-child(4) { animation-delay: 0.36s; }
.lx-de-vs__card--old .lx-de-vs__list li:nth-child(5) { animation-delay: 0.43s; }
.lx-de-vs__card--new .lx-de-vs__list li:nth-child(1) { animation-delay: 0.25s; }
.lx-de-vs__card--new .lx-de-vs__list li:nth-child(2) { animation-delay: 0.32s; }
.lx-de-vs__card--new .lx-de-vs__list li:nth-child(3) { animation-delay: 0.39s; }
.lx-de-vs__card--new .lx-de-vs__list li:nth-child(4) { animation-delay: 0.46s; }
.lx-de-vs__card--new .lx-de-vs__list li:nth-child(5) { animation-delay: 0.53s; }
@keyframes lx-de-vs-li {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}
.lx-de-vs__list i {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	border-radius: 50%;
	position: relative;
}
.lx-de-vs__list i.x {
	background: rgba(248, 113, 113, 0.2);
	border: 1px solid rgba(248, 113, 113, 0.45);
}
.lx-de-vs__list i.x::before,
.lx-de-vs__list i.x::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 1.5px;
	background: #f87171;
}
.lx-de-vs__list i.x::before { transform: translate(-50%, -50%) rotate(45deg); }
.lx-de-vs__list i.x::after { transform: translate(-50%, -50%) rotate(-45deg); }
.lx-de-vs__list i.ok {
	background: rgba(52, 211, 153, 0.2);
	border: 1px solid rgba(52, 211, 153, 0.55);
	box-shadow: 0 0 8px rgba(52, 211, 153, 0.25);
}
.lx-de-vs__list i.ok::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 3px;
	width: 5px;
	height: 8px;
	border: solid #34d399;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(40deg);
}
.lx-de-vs__card--old .lx-de-vs__list li { color: #94a3b8; }
.lx-de-vs__card--new .lx-de-vs__list li { color: #e2e8f0; }

.lx-de-vs__meter {
	position: relative;
	z-index: 1;
	margin-bottom: 12px;
}
.lx-de-vs__meter .lab {
	display: block;
	font-size: 11px;
	color: #64748b;
	margin-bottom: 6px;
	letter-spacing: 0.04em;
}
.lx-de-vs__meter .bar {
	display: block;
	height: 6px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.15);
	overflow: hidden;
}
.lx-de-vs__meter .bar i {
	display: block;
	height: 100%;
	border-radius: inherit;
}
.lx-de-vs__meter .bar--down i {
	width: 28%;
	background: linear-gradient(90deg, #64748b, #475569);
	animation: lx-de-vs-bar-down 2.8s ease-in-out infinite;
}
.lx-de-vs__meter .bar--up i {
	width: 92%;
	background: linear-gradient(90deg, #34d399, #38bdf8);
	box-shadow: 0 0 12px rgba(52, 211, 153, 0.45);
	animation: lx-de-vs-bar-up 2.2s ease-in-out infinite;
}
@keyframes lx-de-vs-bar-down {
	0%, 100% { width: 32%; opacity: 0.7; }
	50% { width: 18%; opacity: 0.45; }
}
@keyframes lx-de-vs-bar-up {
	0%, 100% { width: 78%; }
	50% { width: 96%; }
}

.lx-de-vs__foot {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 12.5px;
	line-height: 1.55;
	color: #64748b;
}
.lx-de-vs__card--new .lx-de-vs__foot {
	color: #86efac;
}

/* 中间 VS */
.lx-de-vs__mid {
	position: relative;
	align-self: center;
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	z-index: 2;
}
.lx-de-vs__mid .ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(244, 114, 182, 0.4);
	animation: lx-de-vs-spin 10s linear infinite;
}
.lx-de-vs__mid .ring.r2 {
	inset: -8px;
	border-style: dashed;
	border-color: rgba(56, 189, 248, 0.35);
	animation-direction: reverse;
	animation-duration: 14s;
}
.lx-de-vs__mid .vs {
	position: relative;
	z-index: 1;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.12em;
	color: #fff;
	text-shadow:
		0 0 12px rgba(244, 114, 182, 0.7),
		0 0 20px rgba(56, 189, 248, 0.4);
	animation: lx-de-vs-vs 2s ease-in-out infinite;
}
.lx-de-vs__mid .arrow {
	display: none;
}
@keyframes lx-de-vs-vs {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.12); }
}
@media (max-width: 820px) {
	.lx-de-vs__mid {
		width: 100%;
		height: 40px;
	}
	.lx-de-vs__mid .ring { display: none; }
	.lx-de-vs__mid .vs { font-size: 13px; }
	.lx-de-vs__mid .arrow {
		display: inline;
		margin-left: 6px;
		color: #34d399;
		animation: lx-de-vs-arrow 1.2s ease-in-out infinite;
	}
	@keyframes lx-de-vs-arrow {
		0%, 100% { transform: translateY(0); opacity: 0.6; }
		50% { transform: translateY(4px); opacity: 1; }
	}
}

/* 底部滚动结论条 */
.lx-de-vs__ticker {
	margin-top: 18px;
	padding: 10px 0;
	border-radius: 12px;
	border: 1px solid rgba(56, 189, 248, 0.2);
	background: rgba(8, 15, 28, 0.55);
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lx-de-vs__track {
	display: flex;
	gap: 28px;
	width: max-content;
	animation: lx-de-vs-ticker 28s linear infinite;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #7dd3fc;
	white-space: nowrap;
}
.lx-de-vs__track span::before {
	content: "◆ ";
	color: #34d399;
}
@keyframes lx-de-vs-ticker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.lx-de-vs__card--old,
	.lx-de-vs__card--new,
	.lx-de-vs__list li,
	.lx-de-vs__scan,
	.lx-de-vs__aura,
	.lx-de-vs__icon--live,
	.lx-de-vs__icon--live .orbit,
	.lx-de-vs__mid .ring,
	.lx-de-vs__mid .vs,
	.lx-de-vs__track,
	.lx-de-vs__meter .bar i,
	.lx-de-vs__badge--up,
	.lx-de-vs__glitch {
		animation: none !important;
	}
}
.lx-de__section h2 { margin: 0 0 8px; font-size: 1.25rem; }
.lx-de__hint { margin: 0 0 16px; font-size: 13px; color: var(--de-muted); }
.lx-de__tpl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 14px;
}
.lx-de__tpl-card {
	position: relative;
	padding: 18px 16px 16px;
	border-radius: 16px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: var(--de-card);
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 220px;
}
.lx-de__tpl-card:hover {
	border-color: var(--tpl-color, var(--de-accent));
	box-shadow: 0 0 24px color-mix(in srgb, var(--tpl-color, #38bdf8) 25%, transparent);
}
.lx-de__tpl-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 22px;
	background: color-mix(in srgb, var(--tpl-color, #38bdf8) 18%, transparent);
}
.lx-de__tpl-card h3 { margin: 0; font-size: 17px; font-weight: 800; }
.lx-de__tpl-tagline { margin: 0; font-size: 13px; color: #7dd3fc; line-height: 1.45; }
.lx-de__tpl-desc { margin: 0; font-size: 13px; color: var(--de-muted); line-height: 1.55; flex: 1; }
.lx-de__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lx-de__tags span {
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	border: 1px solid rgba(148, 163, 184, 0.25);
	color: #cbd5e1;
}
.lx-de__tpl-meta { font-size: 12px; color: #64748b; }
.lx-de__tpl-card .lx-de-btn { width: 100%; }

/* Desk layout · 开放分区，少描边框 */
.lx-de__desk {
	display: grid;
	grid-template-columns: 220px 1fr 240px;
	gap: 16px 20px;
	min-height: 520px;
}
@media (max-width: 960px) {
	.lx-de__desk { grid-template-columns: 1fr; }
	.lx-de__rail { order: 3; }
}
.lx-de__sidebar,
.lx-de__main,
.lx-de__rail {
	border-radius: 0;
	border: 0;
	background: transparent;
	padding: 4px 0;
}
.lx-de__sidebar {
	border-right: 1px solid rgba(148, 163, 184, 0.1);
	padding-right: 14px;
}
.lx-de__rail {
	border-left: 1px solid rgba(148, 163, 184, 0.1);
	padding-left: 14px;
}
@media (max-width: 960px) {
	.lx-de__sidebar,
	.lx-de__rail {
		border: 0;
		padding: 4px 0;
		border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	}
}
.lx-de__inst {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 8px;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	cursor: pointer;
	margin-bottom: 0;
	background: transparent;
	transition: background 0.12s ease;
}
.lx-de__inst:hover,
.lx-de__inst.is-on {
	border-color: rgba(148, 163, 184, 0.1);
	background: rgba(56, 189, 248, 0.06);
}
.lx-de__inst.is-on {
	border-left: 2px solid #38bdf8;
	padding-left: 6px;
}
.lx-de__inst-av { font-size: 22px; }
.lx-de__inst-name { font-weight: 800; font-size: 14px; }
.lx-de__inst-sub { font-size: 12px; color: var(--de-muted); }
.lx-de__empty {
	padding: 48px 20px;
	text-align: center;
	color: var(--de-muted);
}
.lx-de__chat { display: flex; flex-direction: column; height: 100%; min-height: 480px; }
.lx-de__chat[hidden],
.lx-de__rail[hidden],
.lx-de__modal[hidden] { display: none !important; }
.lx-de__chat-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
	margin-bottom: 12px;
}
.lx-de__chat-head strong { font-size: 16px; }
.lx-de__messages {
	flex: 1;
	overflow: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 4px 2px 12px;
	max-height: 420px;
}
.lx-de__bubble {
	max-width: 92%;
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 14px;
	line-height: 1.6;
	white-space: pre-wrap;
	word-break: break-word;
	border: 0;
}
.lx-de__bubble--user {
	align-self: flex-end;
	background: rgba(56, 189, 248, 0.16);
	border: 0;
}
.lx-de__bubble--bot {
	align-self: flex-start;
	background: rgba(15, 23, 42, 0.55);
	border: 0;
}
.lx-de__bubble--meta {
	align-self: center;
	font-size: 12px;
	color: #64748b;
	background: transparent;
	border: 0;
	padding: 4px;
}
.lx-de__composer textarea {
	width: 100%;
	box-sizing: border-box;
	border-radius: 14px;
	border: 0;
	background: rgba(2, 6, 23, 0.65);
	color: #e2e8f0;
	padding: 14px 16px;
	font: inherit;
	resize: vertical;
	box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.12);
}
.lx-de__composer textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.35);
}
.lx-de__composer-bar {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}
.lx-de__rail h3 { margin: 0 0 12px; font-size: 14px; font-weight: 800; }
.lx-de__task-item {
	padding: 12px 0;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	margin-bottom: 0;
	font-size: 12px;
	line-height: 1.45;
	color: #cbd5e1;
	cursor: pointer;
	background: transparent;
}
.lx-de__task-item:hover { background: rgba(56, 189, 248, 0.04); }
.lx-de__task-item strong { display: block; margin-bottom: 4px; color: #f1f5f9; font-size: 13px; }

.lx-de__modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 100200 !important; /* 高于全站顶栏 100100 */
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 16px;
	margin: 0 !important;
	background: rgba(2, 6, 16, 0.78);
	backdrop-filter: blur(10px) saturate(1.15);
	-webkit-backdrop-filter: blur(10px) saturate(1.15);
	isolation: isolate;
}
.lx-de__modal[hidden] { display: none !important; }
.lx-de__modal-card {
	position: relative;
	width: min(480px, 100%);
	max-height: 90vh;
	overflow: auto;
	padding: 22px 20px;
	border-radius: 18px;
	border: 1px solid rgba(56, 189, 248, 0.35);
	background: #0b1220;
	box-shadow:
		0 0 0 1px rgba(0, 255, 240, 0.08) inset,
		0 24px 64px rgba(0, 0, 0, 0.55),
		0 0 40px rgba(0, 255, 240, 0.08);
	animation: lx-de-modal-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes lx-de-modal-in {
	from { opacity: 0; transform: translateY(16px) scale(0.96); }
	to { opacity: 1; transform: none; }
}
.lx-de__modal-x {
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 3;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(0, 255, 240, 0.2);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.35);
	color: #9ef0ff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.lx-de__modal-x:hover {
	background: rgba(0, 255, 240, 0.12);
	border-color: rgba(0, 255, 240, 0.45);
	color: #fff;
}

/* —— 免费领取确认 / 登录提醒弹窗 —— */
.lx-de-claim-dialog__card {
	text-align: center;
	padding: 28px 24px 22px;
	border-color: rgba(52, 211, 153, 0.4);
	background:
		radial-gradient(ellipse at 50% 0%, rgba(52, 211, 153, 0.14), transparent 55%),
		radial-gradient(ellipse at 100% 100%, rgba(56, 189, 248, 0.1), transparent 45%),
		#0b1220;
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.08) inset,
		0 24px 64px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(52, 211, 153, 0.12);
	animation: lx-de-claim-pop 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes lx-de-claim-pop {
	from { opacity: 0; transform: translateY(12px) scale(0.96); }
	to { opacity: 1; transform: none; }
}
.lx-de-claim-dialog__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 14px;
	display: grid;
	place-items: center;
	font-size: 32px;
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(52, 211, 153, 0.25), rgba(56, 189, 248, 0.18));
	border: 1px solid rgba(52, 211, 153, 0.4);
	box-shadow: 0 0 24px rgba(52, 211, 153, 0.25);
}
.lx-de-claim-dialog__card h2 {
	margin: 0 0 10px;
	font-size: 1.25rem;
	font-weight: 900;
	color: #f8fafc;
}
.lx-de-claim-dialog__msg {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.7;
	color: #94a3b8;
}
.lx-de-claim-dialog__msg strong {
	color: #6ee7b7;
	font-weight: 800;
}
.lx-de-claim-dialog__hint {
	display: inline-block;
	margin-top: 8px;
	font-size: 12.5px;
	color: #7dd3fc;
}
.lx-de-claim-dialog__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.lx-de-claim-dialog__actions .lx-de-btn {
	min-width: 120px;
}
.lx-de__form label {
	display: block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	color: #cbd5e1;
}
.lx-de__form input,
.lx-de__form select,
.lx-de__form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	box-sizing: border-box;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(148, 163, 184, 0.3);
	background: rgba(2, 6, 23, 0.6);
	color: #e2e8f0;
	font: inherit;
}

/* Admin */
.lx-de-admin .lx-de-stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	margin: 16px 0;
}
.lx-de-admin .lx-de-stat {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 14px;
	text-align: center;
}
.lx-de-admin .lx-de-stat strong { display: block; font-size: 22px; margin-bottom: 4px; }
.lx-de-admin table.widefat td { vertical-align: top; }

/* v2 identity / growth / workbench */
.lx-de__role-grid {
	display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px;
}
.lx-de__role-chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 16px; border-radius: 999px; cursor: pointer;
	border: 1px solid rgba(148,163,184,.28);
	background: rgba(15,23,42,.55); color: #e2e8f0; font-weight: 700; font-size: 14px;
}
.lx-de__role-chip.is-on,
.lx-de__role-chip:hover {
	border-color: rgba(56,189,248,.55);
	background: rgba(14,165,233,.15);
	box-shadow: 0 0 16px rgba(56,189,248,.2);
}
.lx-de__role-ic { font-size: 18px; }
.lx-de__tpl-card.is-rec { border-color: rgba(52,211,153,.45); }
.lx-de__rec-badge {
	position: absolute; top: 10px; right: 10px;
	font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px;
	background: rgba(52,211,153,.2); color: #6ee7b7; border: 1px solid rgba(52,211,153,.4);
}
.lx-de__guest {
	margin-top: 28px; padding: 18px; border-radius: 16px;
	border: 1px dashed rgba(148,163,184,.3); background: rgba(15,23,42,.35);
}
.lx-de__guest-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.lx-de__guest-form textarea {
	flex: 1; min-width: 220px; border-radius: 12px; border: 1px solid rgba(56,189,248,.3);
	background: rgba(2,6,23,.55); color: #e2e8f0; padding: 10px 12px; font: inherit;
}
.lx-de__lv {
	font-size: 11px; font-weight: 800; color: #38bdf8;
	background: rgba(56,189,248,.12); padding: 1px 6px; border-radius: 6px; margin-left: 4px;
}
.lx-de__status-bar { margin-bottom: 12px; }
.lx-de__stat-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.lx-de__pill {
	display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
	border: 0; color: #cbd5e1; background: rgba(148,163,184,.12);
}
.lx-de__xp {
	height: 6px; border-radius: 99px; background: rgba(148,163,184,.12); overflow: hidden;
}
.lx-de__xp-fill {
	height: 100%; border-radius: 99px;
	background: linear-gradient(90deg, #38bdf8, #6366f1);
}
.lx-de__xp-lab { font-size: 11px; color: #64748b; margin-top: 4px; }
.lx-de__quick { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }
.lx-de__quick-lab { font-size: 12px; color: #64748b; margin-right: 2px; }
.lx-de__qbtn {
	padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer;
	border: 0; background: rgba(56,189,248,.12); color: #7dd3fc;
}
.lx-de__qbtn:hover { background: rgba(56,189,248,.22); color: #e0f2fe; }
.lx-de__task-tabs { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-bottom: 10px; border-bottom: 1px solid rgba(148,163,184,.1); padding-bottom: 6px; }
.lx-de__task-tabs button {
	padding: 6px 2px; border-radius: 0; font-size: 12px; font-weight: 700; cursor: pointer;
	border: 0; background: transparent; color: #94a3b8; position: relative;
}
.lx-de__task-tabs button.is-on {
	border: 0; color: #e0f2fe; background: transparent;
	box-shadow: 0 2px 0 0 #38bdf8;
}
.lx-de__task-st { display: block; font-size: 11px; color: #38bdf8; margin: 2px 0; }
.lx-de__task-st.st-done { color: #34d399; }
.lx-de__task-st.st-failed, .lx-de__task-st.st-cancelled { color: #f87171; }
.lx-de__task-st.st-awaiting_confirm { color: #fbbf24; }
.lx-de__task-time { font-size: 11px; color: #64748b; }
.lx-de__mini-bar {
	height: 3px; border-radius: 99px; background: rgba(148,163,184,.15); margin: 4px 0;
}
.lx-de__mini-bar i {
	display: block; height: 100%; border-radius: 99px; background: #38bdf8;
}
.lx-de__modal-card--lg { width: min(640px, 100%); }
.lx-de__avatar-pick, .lx-de__trait-pick {
	display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.lx-de__av, .lx-de__trait {
	padding: 8px 12px; border-radius: 10px; cursor: pointer; font-size: 14px; font-weight: 700;
	border: 1px solid rgba(148,163,184,.25); background: rgba(2,6,23,.45); color: #e2e8f0;
}
.lx-de__av { font-size: 22px; padding: 8px 10px; }
.lx-de__av.is-on, .lx-de__trait.is-on {
	border-color: rgba(56,189,248,.55); background: rgba(14,165,233,.18); color: #7dd3fc;
}
.lx-de__check {
	display: flex !important; align-items: center; gap: 8px; font-weight: 600 !important;
}
.lx-de__check input { width: auto !important; margin: 0 !important; }
.lx-de__id-card { color: #e2e8f0; }
.lx-de__id-top {
	display: flex; gap: 14px; align-items: center; padding: 16px;
	border-radius: 14px; margin-bottom: 14px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--c, #38bdf8) 25%, transparent), rgba(15,23,42,.8));
	border: 1px solid color-mix(in srgb, var(--c, #38bdf8) 40%, transparent);
}
.lx-de__id-av { font-size: 42px; }
.lx-de__id-top h3 { margin: 0 0 4px; font-size: 20px; }
.lx-de__id-top p { margin: 0; color: #94a3b8; font-size: 13px; }
.lx-de__id-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px;
}
.lx-de__id-grid label { display: block; font-size: 11px; color: #64748b; }
.lx-de__id-grid b { font-size: 14px; color: #e2e8f0; }
.lx-de__resume { list-style: none; padding: 0; margin: 0 0 12px; }
.lx-de__resume li {
	padding: 8px 10px; border-radius: 8px; margin-bottom: 6px;
	background: rgba(2,6,23,.4); border: 1px solid rgba(148,163,184,.15); font-size: 13px;
}
.lx-de__resume li span { display: block; font-size: 11px; color: #64748b; margin-top: 2px; }
.lx-de__mem-list { max-height: 320px; overflow: auto; margin: 12px 0; }
.lx-de__mem-item {
	position: relative; padding: 10px 12px; border-radius: 10px; margin-bottom: 8px;
	border: 1px solid rgba(148,163,184,.15); background: rgba(2,6,23,.4);
}
.lx-de__mem-type {
	font-size: 10px; font-weight: 800; text-transform: uppercase; color: #38bdf8;
}
.lx-de__mem-item p { margin: 4px 0 0; font-size: 13px; color: #cbd5e1; line-height: 1.45; }
.lx-de__mem-del {
	position: absolute; top: 8px; right: 8px; border: 0; background: transparent;
	color: #64748b; font-size: 12px; cursor: pointer;
}
.lx-de__form--row { display: flex; gap: 8px; align-items: flex-end; }
.lx-de__form--row input { flex: 1; }
.lx-de__step {
	margin-bottom: 10px; padding: 10px; border-radius: 10px;
	border: 1px solid rgba(148,163,184,.15); background: rgba(2,6,23,.35);
}
.lx-de__step-h { font-weight: 800; font-size: 13px; margin-bottom: 6px; color: #e2e8f0; }
.lx-de__step-b { font-size: 13px; line-height: 1.55; color: #cbd5e1; }
.lx-de__step-r { font-size: 11px; color: #64748b; margin-top: 4px; }
.lx-de__inline-btn {
	display: inline-block; margin: 0 4px; padding: 4px 10px; border-radius: 999px;
	border: 1px solid rgba(56,189,248,.35); background: rgba(14,165,233,.12);
	color: #7dd3fc; font-size: 12px; font-weight: 700; cursor: pointer;
}
.lx-de__share-inner {
	text-align: center; padding: 20px 16px; border-radius: 16px;
	background: linear-gradient(160deg, rgba(56,189,248,.15), rgba(15,23,42,.9));
	border: 1px solid rgba(56,189,248,.35);
}
.lx-de__share-av { font-size: 48px; margin-bottom: 8px; }
.lx-de__share-inner h3 { margin: 0 0 4px; font-size: 18px; color: #f8fafc; }
.lx-de__share-lv { color: #38bdf8; font-size: 13px; font-weight: 800; margin: 0 0 10px; }
.lx-de__share-title { font-weight: 700; color: #e2e8f0; margin: 0 0 8px; }
.lx-de__share-hl {
	font-size: 13px; color: #94a3b8; line-height: 1.5; margin: 0 0 12px;
	max-height: 80px; overflow: hidden;
}
.lx-de__share-wm { font-size: 12px; color: #34d399; font-weight: 800; margin: 0 0 6px; }
.lx-de__share-link { font-size: 11px; color: #64748b; word-break: break-all; margin: 0; }

/* =========================================================
   ��ȡҳ �� ����������� + ���⴫ͳ vs ������Ա��
   ========================================================= */
.lx-de--claim-cyber {
	--de-bg: #03050c;
	--de-card: rgba(6, 12, 26, 0.65);
	--de-line: rgba(0, 255, 240, 0.28);
	--de-text: #e8f7ff;
	--de-muted: #8aa0b8;
	--de-accent: #00fff0;
	--de-ok: #34d399;
	position: relative;
	isolation: isolate;
	max-width: 1200px;
	padding: 20px 16px 72px;
}
.lx-de--claim-cyber .lx-de__fx {
	pointer-events: none;
	position: absolute;
	inset: -20px 0 0;
	z-index: 0;
	overflow: hidden;
}
.lx-de--claim-cyber .lx-de__fx-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 255, 240, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 240, 0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 15%, transparent 75%);
	animation: lx-de-claim-grid 20s linear infinite;
}
.lx-de--claim-cyber .lx-de__fx-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 15% 0%, rgba(0, 255, 240, 0.14), transparent 55%),
		radial-gradient(ellipse 45% 35% at 90% 8%, rgba(255, 43, 214, 0.12), transparent 50%),
		radial-gradient(ellipse 40% 30% at 50% 100%, rgba(251, 146, 60, 0.08), transparent 55%);
}
@keyframes lx-de-claim-grid {
	to { background-position: 0 32px, 32px 0; }
}
/* 勿把弹窗改成 relative，否则 fixed 遮罩失效 */
.lx-de--claim-cyber > *:not(.lx-de__fx):not(.lx-de__modal):not(.lx-de-claim-dialog) {
	position: relative;
	z-index: 1;
}

/* Hero */
.lx-de--claim-cyber .lx-de__hero--claim {
	text-align: center;
	padding: 32px 20px 28px;
	border-radius: 20px;
	border: 1px solid rgba(0, 255, 240, 0.28);
	background:
		linear-gradient(155deg, rgba(0, 255, 240, 0.1) 0%, transparent 42%),
		linear-gradient(320deg, rgba(255, 43, 214, 0.08) 0%, transparent 48%),
		rgba(4, 8, 18, 0.55);
	box-shadow:
		0 0 0 1px rgba(139, 92, 255, 0.08) inset,
		0 20px 50px rgba(0, 0, 0, 0.4),
		0 0 40px rgba(0, 255, 240, 0.08);
	margin-bottom: 22px;
	backdrop-filter: blur(10px);
}
.lx-de--claim-cyber .lx-de__kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #00fff0;
	font-family: Orbitron, ui-monospace, monospace;
	letter-spacing: 0.14em;
	font-size: 11px;
}
.lx-de--claim-cyber .lx-de__kicker .pulse {
	width: 7px; height: 7px; border-radius: 50%;
	background: #f472b6;
	box-shadow: 0 0 10px #f472b6;
	animation: lx-de-vs-pulse 1.2s ease-in-out infinite;
}
.lx-de--claim-cyber .lx-de__hero h1 {
	margin: 10px 0 12px;
	font-size: clamp(2rem, 5vw, 2.8rem);
	font-weight: 900;
	letter-spacing: 0.08em;
	background: linear-gradient(90deg, #67e8f9, #fef3c7, #fb923c, #f472b6, #67e8f9);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: lx-de-claim-shine 4s linear infinite;
}
@keyframes lx-de-claim-shine {
	to { background-position: 200% center; }
}
.lx-de--claim-cyber .lx-de__lead {
	margin: 0 auto 18px;
	max-width: 520px;
	font-size: 16px;
	font-weight: 600;
	color: #cbd5e1;
	text-align: center;
}

.lx-de--claim-cyber .lx-de__hero-actions {
	justify-content: center;
	margin-top: 4px;
}

/* —— 进入工作台 · 独立赛博 CTA —— */
.lx-de-desk-cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px 12px 14px;
	border-radius: 14px;
	text-decoration: none !important;
	isolation: isolate;
	overflow: hidden;
	border: 1px solid rgba(0, 255, 240, 0.45);
	background:
		linear-gradient(135deg, rgba(0, 255, 240, 0.12) 0%, transparent 42%),
		linear-gradient(320deg, rgba(139, 92, 255, 0.18) 0%, transparent 50%),
		rgba(4, 10, 22, 0.85);
	box-shadow:
		0 0 0 1px rgba(255, 43, 214, 0.12) inset,
		0 0 24px rgba(0, 255, 240, 0.22),
		0 8px 28px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lx-de-desk-cta:hover {
	transform: translateY(-3px) scale(1.02);
	border-color: rgba(0, 255, 240, 0.75);
	box-shadow:
		0 0 0 1px rgba(0, 255, 240, 0.2) inset,
		0 0 36px rgba(0, 255, 240, 0.35),
		0 0 48px rgba(139, 92, 255, 0.2),
		0 12px 36px rgba(0, 0, 0, 0.4);
}
.lx-de-desk-cta:active {
	transform: translateY(-1px) scale(1.01);
}
.lx-de-desk-cta__glow {
	position: absolute;
	inset: -40% -20%;
	z-index: 0;
	background: linear-gradient(
		105deg,
		transparent 35%,
		rgba(0, 255, 240, 0.14) 48%,
		rgba(255, 43, 214, 0.1) 52%,
		transparent 65%
	);
	background-size: 220% 100%;
	animation: lx-de-desk-cta-scan 3.2s linear infinite;
	pointer-events: none;
}
@keyframes lx-de-desk-cta-scan {
	0% { background-position: 120% 0; }
	100% { background-position: -120% 0; }
}
.lx-de-desk-cta__corner {
	position: absolute;
	width: 10px;
	height: 10px;
	z-index: 2;
	pointer-events: none;
}
.lx-de-desk-cta__corner.tl {
	top: 5px; left: 5px;
	border-top: 2px solid #00fff0;
	border-left: 2px solid #00fff0;
	box-shadow: -2px -2px 8px rgba(0, 255, 240, 0.4);
}
.lx-de-desk-cta__corner.tr {
	top: 5px; right: 5px;
	border-top: 2px solid #ff2bd6;
	border-right: 2px solid #ff2bd6;
}
.lx-de-desk-cta__corner.bl {
	bottom: 5px; left: 5px;
	border-bottom: 2px solid #ff2bd6;
	border-left: 2px solid #ff2bd6;
}
.lx-de-desk-cta__corner.br {
	bottom: 5px; right: 5px;
	border-bottom: 2px solid #00fff0;
	border-right: 2px solid #00fff0;
}
.lx-de-desk-cta__ic {
	position: relative;
	z-index: 1;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	font-size: 20px;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(0, 255, 240, 0.2), rgba(139, 92, 255, 0.25));
	border: 1px solid rgba(0, 255, 240, 0.4);
	box-shadow: 0 0 16px rgba(0, 255, 240, 0.25);
	flex-shrink: 0;
}
.lx-de-desk-cta__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
}
.lx-de-desk-cta__kicker {
	font-family: Orbitron, ui-monospace, monospace;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: rgba(0, 255, 240, 0.7);
	line-height: 1.2;
}
.lx-de-desk-cta__label {
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.04em;
	color: #f0fbff;
	line-height: 1.25;
	text-shadow: 0 0 12px rgba(0, 255, 240, 0.25);
}
.lx-de-desk-cta__arrow {
	position: relative;
	z-index: 1;
	margin-left: 4px;
	font-size: 18px;
	font-weight: 800;
	color: #00fff0;
	text-shadow: 0 0 12px rgba(0, 255, 240, 0.55);
	transition: transform 0.2s ease, color 0.2s ease;
}
.lx-de-desk-cta:hover .lx-de-desk-cta__arrow {
	transform: translateX(4px);
	color: #f0abfc;
	text-shadow: 0 0 14px rgba(255, 43, 214, 0.5);
}
@media (prefers-reduced-motion: reduce) {
	.lx-de-desk-cta__glow { animation: none !important; }
}

.lx-de--claim-cyber .lx-de-vs--top {
	margin-bottom: 28px;
}
.lx-de--claim-cyber .lx-de-vs__title {
	background: linear-gradient(90deg, #e2e8f0, #a5f3fc);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}


/* 传统工具 · 强冰封 */
.lx-de-vs__card--ice {
	position: relative;
	filter: saturate(0.75) brightness(0.95) !important;
	border: 1px solid rgba(125, 211, 252, 0.55) !important;
	background:
		radial-gradient(ellipse 120% 70% at 50% -10%, rgba(224, 242, 254, 0.28), transparent 50%),
		radial-gradient(ellipse 80% 50% at 100% 100%, rgba(56, 189, 248, 0.15), transparent 45%),
		linear-gradient(165deg, rgba(6, 32, 54, 0.97), rgba(8, 16, 32, 0.96) 55%, rgba(12, 28, 48, 0.98)) !important;
	box-shadow:
		0 0 0 1px rgba(186, 230, 253, 0.22),
		inset 0 0 60px rgba(125, 211, 252, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 12px 40px rgba(0, 40, 80, 0.45) !important;
	overflow: hidden;
}
.lx-de-vs__card--ice:hover {
	filter: saturate(0.85) brightness(1) !important;
	box-shadow:
		0 0 0 1px rgba(186, 230, 253, 0.35),
		inset 0 0 70px rgba(125, 211, 252, 0.18),
		0 16px 48px rgba(0, 50, 90, 0.5) !important;
}
.lx-de-vs__card--ice > *:not(.lx-de-vs__frost):not(.lx-de-vs__flakes):not(.lx-de-vs__ice-rim):not(.lx-de-vs__ice-crack):not(.lx-de-vs__seal) {
	position: relative;
	z-index: 2;
}
.lx-de-vs__card--ice h3 {
	color: #e0f2fe !important;
	text-decoration: none !important;
	text-shadow: 0 0 20px rgba(125, 211, 252, 0.55), 0 1px 0 rgba(255, 255, 255, 0.15);
	letter-spacing: 0.04em;
}
.lx-de-vs__card--ice .lx-de-vs__tagline {
	color: #7dd3fc !important;
	opacity: 0.9;
}
.lx-de-vs__card--ice .lx-de-vs__list li {
	color: #94a3b8 !important;
	border-bottom-color: rgba(125, 211, 252, 0.12) !important;
}
.lx-de-vs__card--ice .lx-de-vs__list i.ice {
	display: inline-block;
	width: 1.1em;
	margin-right: 6px;
	color: #7dd3fc;
	font-style: normal;
	font-size: 11px;
	text-shadow: 0 0 8px rgba(125, 211, 252, 0.6);
	opacity: 0.9;
}
.lx-de-vs__card--ice .lx-de-vs__list i.x {
	display: none;
}
.lx-de-vs__card--ice .lx-de-vs__foot {
	color: #64748b !important;
}
.lx-de-vs__ice-rim {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	border-radius: inherit;
	box-shadow:
		inset 0 0 0 1px rgba(186, 230, 253, 0.25),
		inset 0 0 30px rgba(125, 211, 252, 0.08);
}
.lx-de-vs__frost {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, transparent 28%, transparent 72%, rgba(125, 211, 252, 0.12) 100%),
		linear-gradient(200deg, rgba(186, 230, 253, 0.1) 0%, transparent 40%),
		repeating-linear-gradient(
			-22deg,
			transparent,
			transparent 14px,
			rgba(186, 230, 253, 0.05) 14px,
			rgba(186, 230, 253, 0.05) 15px
		);
	opacity: 0.95;
}
.lx-de-vs__ice-crack {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.75;
	mix-blend-mode: screen;
	background:
		linear-gradient(118deg, transparent 46%, rgba(224, 242, 254, 0.35) 48%, transparent 50%),
		linear-gradient(68deg, transparent 58%, rgba(125, 211, 252, 0.22) 59.5%, transparent 61%),
		linear-gradient(155deg, transparent 28%, rgba(186, 230, 253, 0.18) 29.5%, transparent 31%),
		linear-gradient(25deg, transparent 72%, rgba(224, 242, 254, 0.15) 73%, transparent 74.5%);
}
.lx-de-vs__flakes {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}
.lx-de-vs__flakes i {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #e0f2fe;
	box-shadow: 0 0 10px #7dd3fc, 0 0 4px #fff;
	opacity: 0.65;
	animation: lx-de-flake 4.5s ease-in-out infinite;
}
.lx-de-vs__flakes i:nth-child(1) { top: 12%; left: 12%; }
.lx-de-vs__flakes i:nth-child(2) { top: 28%; right: 14%; animation-delay: 0.6s; width: 4px; height: 4px; }
.lx-de-vs__flakes i:nth-child(3) { top: 48%; left: 22%; animation-delay: 1.2s; }
.lx-de-vs__flakes i:nth-child(4) { bottom: 28%; right: 22%; animation-delay: 1.8s; width: 3px; height: 3px; }
.lx-de-vs__flakes i:nth-child(5) { bottom: 18%; left: 38%; animation-delay: 2.2s; }
.lx-de-vs__flakes i:nth-child(6) { top: 62%; right: 38%; animation-delay: 2.8s; width: 4px; height: 4px; }
@keyframes lx-de-flake {
	0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
	50% { transform: translateY(10px) rotate(25deg); opacity: 0.9; }
}
.lx-de-vs__icon--frozen {
	position: relative;
	filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.5));
}
.lx-de-vs__icon--frozen .ice-sh {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(186, 230, 253, 0.35), transparent 70%);
	animation: lx-de-ice-sh 3s ease-in-out infinite;
}
@keyframes lx-de-ice-sh {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 0.9; transform: scale(1.08); }
}
.lx-de-vs__badge--ice {
	color: #0c4a6e !important;
	background: linear-gradient(90deg, #f0f9ff, #7dd3fc, #38bdf8) !important;
	border: none !important;
	box-shadow: 0 0 16px rgba(125, 211, 252, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
	font-weight: 900;
	letter-spacing: 0.04em;
}
.lx-de-vs__seal {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-18deg);
	padding: 8px 18px;
	border: 2px solid rgba(125, 211, 252, 0.65);
	border-radius: 8px;
	font-family: Orbitron, monospace;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-indent: 0.28em;
	color: rgba(224, 242, 254, 0.9);
	background: rgba(8, 30, 48, 0.55);
	box-shadow:
		0 0 0 1px rgba(14, 165, 233, 0.25),
		0 0 24px rgba(56, 189, 248, 0.3),
		inset 0 0 16px rgba(125, 211, 252, 0.15);
	backdrop-filter: blur(3px);
	pointer-events: none;
	z-index: 3;
	white-space: nowrap;
}

/* 数字员工 · 强火热 */
.lx-de-vs__card--fire {
	position: relative;
	filter: none !important;
	border: 1px solid rgba(251, 146, 60, 0.85) !important;
	background:
		radial-gradient(ellipse 120% 80% at 50% -8%, rgba(251, 146, 60, 0.45), transparent 52%),
		radial-gradient(ellipse 90% 55% at 15% 100%, rgba(239, 68, 68, 0.35), transparent 50%),
		radial-gradient(ellipse 60% 40% at 90% 80%, rgba(250, 204, 21, 0.22), transparent 45%),
		linear-gradient(165deg, rgba(80, 22, 8, 0.96), rgba(20, 10, 8, 0.96) 50%, rgba(40, 12, 8, 0.97)) !important;
	box-shadow:
		0 0 0 1px rgba(251, 146, 60, 0.45),
		0 0 56px rgba(239, 68, 68, 0.4),
		0 0 80px rgba(249, 115, 22, 0.22),
		0 16px 48px rgba(80, 20, 0, 0.45),
		inset 0 1px 0 rgba(254, 243, 199, 0.2) !important;
	animation: lx-de-fire-pulse 2.4s ease-in-out infinite;
	overflow: hidden;
}
@keyframes lx-de-fire-pulse {
	0%, 100% {
		box-shadow:
			0 0 0 1px rgba(251, 146, 60, 0.4),
			0 0 48px rgba(239, 68, 68, 0.32),
			0 14px 40px rgba(80, 20, 0, 0.4);
	}
	50% {
		box-shadow:
			0 0 0 1px rgba(251, 191, 36, 0.65),
			0 0 72px rgba(249, 115, 22, 0.55),
			0 0 100px rgba(239, 68, 68, 0.28),
			0 18px 48px rgba(80, 20, 0, 0.45);
	}
}
.lx-de-vs__card--fire:hover {
	transform: translateY(-6px) scale(1.02);
	border-color: rgba(251, 191, 36, 0.95) !important;
}
.lx-de-vs__card--fire > *:not(.lx-de-vs__embers):not(.lx-de-vs__sparks):not(.lx-de-vs__heat):not(.lx-de-vs__aura) {
	position: relative;
	z-index: 2;
}
.lx-de-vs__card--fire h3 {
	background: linear-gradient(90deg, #fff7ed, #fde68a, #fb923c, #f97316, #fde68a) !important;
	background-size: 200% auto !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
	filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.55)) !important;
	animation: lx-de-fire-title 3s linear infinite;
}
@keyframes lx-de-fire-title {
	to { background-position: 200% center; }
}
.lx-de-vs__card--fire .lx-de-vs__tagline {
	color: #fdba74 !important;
	text-shadow: 0 0 12px rgba(249, 115, 22, 0.35);
}
.lx-de-vs__card--fire .lx-de-vs__list li {
	color: #fed7aa !important;
	border-bottom-color: rgba(251, 146, 60, 0.15) !important;
}
.lx-de-vs__card--fire .lx-de-vs__list i.fire {
	display: inline-block;
	width: 1.1em;
	margin-right: 6px;
	color: #fbbf24;
	font-style: normal;
	font-size: 11px;
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}
.lx-de-vs__card--fire .lx-de-vs__list i.ok {
	display: none;
}
.lx-de-vs__card--fire .lx-de-vs__foot {
	color: #fdba74 !important;
}
.lx-de-vs__badge--fire {
	color: #451a03 !important;
	background: linear-gradient(90deg, #fde68a, #f97316, #ef4444, #fbbf24) !important;
	background-size: 200% auto !important;
	border: none !important;
	box-shadow: 0 0 22px rgba(249, 115, 22, 0.65);
	font-weight: 900;
	animation: lx-de-fire-badge 1.6s ease-in-out infinite;
}
@keyframes lx-de-fire-badge {
	0%, 100% { filter: brightness(1); }
	50% { filter: brightness(1.15); }
}
.lx-de-vs__embers {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}
.lx-de-vs__embers i {
	position: absolute;
	bottom: -12%;
	width: 48%;
	height: 58%;
	border-radius: 50% 50% 40% 40%;
	filter: blur(20px);
	opacity: 0.55;
	animation: lx-de-ember 2.2s ease-in-out infinite;
}
.lx-de-vs__embers i:nth-child(1) {
	left: 2%;
	background: radial-gradient(circle, rgba(251, 146, 60, 0.95), transparent 70%);
}
.lx-de-vs__embers i:nth-child(2) {
	left: 28%;
	width: 55%;
	height: 65%;
	background: radial-gradient(circle, rgba(239, 68, 68, 0.85), transparent 70%);
	animation-delay: 0.35s;
}
.lx-de-vs__embers i:nth-child(3) {
	right: 4%;
	left: auto;
	background: radial-gradient(circle, rgba(250, 204, 21, 0.8), transparent 70%);
	animation-delay: 0.7s;
}
.lx-de-vs__embers i:nth-child(4) {
	left: 40%;
	width: 35%;
	height: 40%;
	bottom: 5%;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.7), transparent 70%);
	animation-delay: 1s;
}
@keyframes lx-de-ember {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
	50% { transform: translateY(-12%) scale(1.12); opacity: 0.8; }
}
.lx-de-vs__sparks {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
.lx-de-vs__sparks b {
	position: absolute;
	bottom: 15%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #fde68a;
	box-shadow: 0 0 8px #f97316, 0 0 3px #fff;
	animation: lx-de-spark 2.4s ease-in-out infinite;
}
.lx-de-vs__sparks b:nth-child(1) { left: 18%; animation-delay: 0s; }
.lx-de-vs__sparks b:nth-child(2) { left: 38%; animation-delay: 0.4s; }
.lx-de-vs__sparks b:nth-child(3) { left: 55%; animation-delay: 0.8s; }
.lx-de-vs__sparks b:nth-child(4) { left: 72%; animation-delay: 1.1s; }
.lx-de-vs__sparks b:nth-child(5) { left: 28%; animation-delay: 1.5s; bottom: 22%; }
@keyframes lx-de-spark {
	0% { transform: translateY(0) scale(0.6); opacity: 0; }
	15% { opacity: 1; }
	100% { transform: translateY(-90px) scale(0.2); opacity: 0; }
}
.lx-de-vs__heat {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(251, 146, 60, 0.08) 0%,
		transparent 35%,
		transparent 55%,
		rgba(239, 68, 68, 0.1) 100%
	);
	animation: lx-de-heat 3s ease-in-out infinite;
}
@keyframes lx-de-heat {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}
.lx-de-vs__icon--hot .flame {
	position: absolute;
	bottom: -4px;
	left: 50%;
	width: 28px;
	height: 18px;
	margin-left: -14px;
	border-radius: 50% 50% 40% 40%;
	background: radial-gradient(circle at 50% 80%, #fbbf24, #ef4444 60%, transparent 75%);
	filter: blur(2px);
	opacity: 0.75;
	animation: lx-de-flame 0.9s ease-in-out infinite;
}
@keyframes lx-de-flame {
	0%, 100% { transform: scaleY(1) scaleX(1); opacity: 0.65; }
	50% { transform: scaleY(1.2) scaleX(0.9); opacity: 0.95; }
}

/* Ա���б��� */
.lx-de--claim-cyber .lx-de__section--roster {
	padding: 8px 0 0;
}
.lx-de--claim-cyber .lx-de__section-h {
	text-align: center;
	margin-bottom: 18px;
}
.lx-de--claim-cyber .lx-de__section-h h2 {
	margin: 8px 0 8px;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 900;
	color: #f0fbff;
}
.lx-de--claim-cyber .lx-de__hint {
	color: var(--de-muted);
	font-size: 13.5px;
}
.lx-de--claim-cyber .lx-de__tpl-grid--cyber {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

/* ÿ�ſ����ط�� */
.lx-de--claim-cyber .lx-de__tpl-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 18px 16px 16px;
	border-radius: 16px;
	border: 1px solid color-mix(in srgb, var(--tpl-color, #00fff0) 45%, transparent);
	background:
		linear-gradient(155deg, color-mix(in srgb, var(--tpl-color, #00fff0) 14%, transparent) 0%, transparent 48%),
		rgba(4, 8, 18, 0.72);
	box-shadow:
		0 0 0 1px color-mix(in srgb, var(--tpl-color, #00fff0) 12%, transparent) inset,
		0 12px 36px rgba(0, 0, 0, 0.35);
	transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow:
		0 0 28px color-mix(in srgb, var(--tpl-color, #00fff0) 25%, transparent),
		0 20px 48px rgba(0, 0, 0, 0.45);
}
.lx-de--claim-cyber .lx-de__tpl-corner {
	position: absolute;
	width: 12px;
	height: 12px;
	z-index: 3;
	pointer-events: none;
	opacity: 0.85;
}
.lx-de--claim-cyber .lx-de__tpl-corner.tl {
	top: 8px; left: 8px;
	border-top: 2px solid var(--tpl-color, #00fff0);
	border-left: 2px solid var(--tpl-color, #00fff0);
}
.lx-de--claim-cyber .lx-de__tpl-corner.tr {
	top: 8px; right: 8px;
	border-top: 2px solid #ff2bd6;
	border-right: 2px solid #ff2bd6;
}
.lx-de--claim-cyber .lx-de__tpl-corner.bl {
	bottom: 8px; left: 8px;
	border-bottom: 2px solid #ff2bd6;
	border-left: 2px solid #ff2bd6;
}
.lx-de--claim-cyber .lx-de__tpl-corner.br {
	bottom: 8px; right: 8px;
	border-bottom: 2px solid var(--tpl-color, #00fff0);
	border-right: 2px solid var(--tpl-color, #00fff0);
}
.lx-de--claim-cyber .lx-de__tpl-scan {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--tpl-color, #00fff0) 10%, transparent) 48%, transparent 55%);
	background-size: 100% 240%;
	animation: lx-de-claim-scan 5s linear infinite;
	opacity: 0.5;
}
@keyframes lx-de-claim-scan {
	0% { background-position: 0 -80%; }
	100% { background-position: 0 180%; }
}
.lx-de--claim-cyber .lx-de__tpl-icon,
.lx-de--claim-cyber .lx-de__tpl-card h3,
.lx-de--claim-cyber .lx-de__tpl-tagline,
.lx-de--claim-cyber .lx-de__tpl-desc,
.lx-de--claim-cyber .lx-de__tags,
.lx-de--claim-cyber .lx-de__tpl-meta,
.lx-de--claim-cyber .lx-de-claim-btn {
	position: relative;
	z-index: 2;
}
.lx-de--claim-cyber .lx-de__tpl-icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	font-size: 28px;
	border-radius: 14px;
	margin-bottom: 12px;
	background: color-mix(in srgb, var(--tpl-color, #00fff0) 18%, transparent);
	border: 1px solid color-mix(in srgb, var(--tpl-color, #00fff0) 40%, transparent);
	box-shadow: 0 0 18px color-mix(in srgb, var(--tpl-color, #00fff0) 22%, transparent);
}
.lx-de--claim-cyber .lx-de__tpl-card h3 {
	margin: 0 0 6px;
	font-size: 1.1rem;
	font-weight: 900;
	color: #f0fbff;
}
.lx-de--claim-cyber .lx-de__tpl-tagline {
	margin: 0 0 8px;
	font-size: 12.5px;
	color: color-mix(in srgb, var(--tpl-color, #00fff0) 85%, #fff);
	font-weight: 600;
}
.lx-de--claim-cyber .lx-de__tpl-desc {
	margin: 0 0 10px;
	font-size: 12.5px;
	line-height: 1.5;
	color: #94a3b8;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.lx-de--claim-cyber .lx-de__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 10px;
}
.lx-de--claim-cyber .lx-de__tags span {
	font-size: 10.5px;
	padding: 2px 8px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--tpl-color, #00fff0) 30%, transparent);
	color: #cbd5e1;
	background: rgba(0, 0, 0, 0.25);
}
.lx-de--claim-cyber .lx-de__tpl-meta {
	font-size: 11px;
	color: #64748b;
	margin-bottom: 12px;
}
.lx-de--claim-cyber .lx-de-claim-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--tpl-color, #00fff0), color-mix(in srgb, var(--tpl-color, #00fff0) 40%, #8b5cff)) !important;
	color: #041016 !important;
	border: none !important;
	font-weight: 900;
	box-shadow: 0 0 18px color-mix(in srgb, var(--tpl-color, #00fff0) 35%, transparent);
}

/* ������̬ */
.lx-de--claim-cyber .lx-de__tpl-card--v1 { --tpl-color: #00fff0; }
.lx-de--claim-cyber .lx-de__tpl-card--v2 {
	--tpl-color: #ff2bd6;
	border-radius: 18px 6px 18px 6px;
}
.lx-de--claim-cyber .lx-de__tpl-card--v3 {
	--tpl-color: #8b5cff;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.lx-de--claim-cyber .lx-de__tpl-card--v4 {
	--tpl-color: #34d399;
	box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.2) inset, 0 0 28px rgba(52, 211, 153, 0.12);
}
.lx-de--claim-cyber .lx-de__tpl-card--v5 {
	--tpl-color: #fbbf24;
	border-radius: 8px;
}
.lx-de--claim-cyber .lx-de__tpl-card--v6 {
	--tpl-color: #38bdf8;
	outline: 1px dashed rgba(56, 189, 248, 0.35);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.lx-de--claim-cyber .lx-de__fx-grid,
	.lx-de--claim-cyber .lx-de__hero h1,
	.lx-de-vs__card--fire,
	.lx-de--claim-cyber .lx-de__tpl-scan,
	.lx-de-vs__flakes i,
	.lx-de-vs__embers i {
		animation: none !important;
	}
}

/* ═══ P0 招聘市场 / JD / 绩效 ═══ */
.lx-de-market-filters{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:12px 0 8px}
.lx-de-filter{border:1px solid rgba(56,189,248,.28);background:rgba(8,16,32,.65);color:#94a3b8;border-radius:999px;padding:6px 12px;font-size:12px;font-weight:700;cursor:pointer}
.lx-de-filter.is-on,.lx-de-filter:hover{color:#e0f2fe;border-color:rgba(56,189,248,.6);box-shadow:0 0 12px rgba(56,189,248,.2)}
.lx-de-sort{border:1px solid rgba(56,189,248,.28);background:rgba(8,16,32,.75);color:#e2e8f0;border-radius:10px;padding:6px 10px;font-size:12px}
.lx-de__tpl-top{display:flex;justify-content:space-between;align-items:flex-start;gap:8px}
.lx-de__tpl-badges{display:flex;flex-wrap:wrap;gap:4px;justify-content:flex-end}
.lx-de-badge{font-size:10px;font-weight:800;padding:2px 7px;border-radius:999px;background:rgba(148,163,184,.12);color:#cbd5e1;border:1px solid rgba(148,163,184,.25)}
.lx-de-badge--hot{background:rgba(251,146,60,.15);color:#fdba74;border-color:rgba(251,146,60,.4)}
.lx-de-badge--cat{background:rgba(56,189,248,.1);color:#7dd3fc;border-color:rgba(56,189,248,.3)}
.lx-de__tpl-card.is-featured{box-shadow:0 0 0 1px rgba(251,146,60,.35),0 12px 40px rgba(251,146,60,.08)}
.lx-de__tpl-actions{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap}
.lx-de__tpl-actions .lx-de-btn{flex:1;min-width:110px}
.lx-de__tpl-meta{display:flex;flex-wrap:wrap;gap:8px;font-size:11px;color:#94a3b8}
/* —— 岗位说明书弹窗 —— */
.lx-de-jd-overlay.is-open {
	animation: lx-de-overlay-in 0.28s ease both;
}
.lx-de-jd-overlay.is-closing {
	animation: lx-de-overlay-out 0.22s ease both;
}
@keyframes lx-de-overlay-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes lx-de-overlay-out {
	from { opacity: 1; }
	to { opacity: 0; }
}
.lx-de-jd-overlay.is-open .lx-de-jd-modal {
	animation: lx-de-jd-card-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lx-de-jd-overlay.is-closing .lx-de-jd-modal {
	animation: lx-de-jd-card-out 0.2s ease both;
}
@keyframes lx-de-jd-card-in {
	from {
		opacity: 0;
		transform: translateY(28px) scale(0.94);
		filter: blur(6px);
	}
	to {
		opacity: 1;
		transform: none;
		filter: none;
	}
}
@keyframes lx-de-jd-card-out {
	from { opacity: 1; transform: none; }
	to { opacity: 0; transform: translateY(12px) scale(0.97); }
}
.lx-de-jd-modal{
	width: min(820px, 100%) !important;
	max-width: 820px !important;
	max-height: min(88vh, 900px) !important;
	padding: 0 !important;
	overflow: hidden !important;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 255, 240, 0.28) !important;
	background:
		radial-gradient(ellipse at 20% 0%, rgba(0, 255, 240, 0.1), transparent 50%),
		radial-gradient(ellipse at 100% 100%, rgba(255, 43, 214, 0.08), transparent 45%),
		linear-gradient(165deg, #0c1424 0%, #080e1a 100%) !important;
}
.lx-de-jd-modal .lx-de__modal-x { top: 14px; right: 14px; }
.lx-de-jd-modal__scroll {
	overflow: auto;
	max-height: min(88vh, 900px);
	padding: 24px 18px 20px 22px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 255, 240, 0.45) rgba(0, 0, 0, 0.25);
	/* 右侧给自定义滚动条留空间，避免贴边 */
	scrollbar-gutter: stable;
}
/* WebKit 赛博滚动条 */
.lx-de-jd-modal__scroll::-webkit-scrollbar {
	width: 8px;
}
.lx-de-jd-modal__scroll::-webkit-scrollbar-track {
	margin: 10px 0;
	background:
		linear-gradient(180deg, rgba(0, 255, 240, 0.06), rgba(139, 92, 255, 0.05));
	border-radius: 99px;
	border: 1px solid rgba(0, 255, 240, 0.1);
	box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.35);
}
.lx-de-jd-modal__scroll::-webkit-scrollbar-thumb {
	border-radius: 99px;
	background: linear-gradient(180deg, #00fff0 0%, #7af8ff 40%, #a78bfa 100%);
	border: 2px solid rgba(4, 10, 20, 0.65);
	box-shadow:
		0 0 10px rgba(0, 255, 240, 0.45),
		0 0 4px rgba(255, 43, 214, 0.25);
}
.lx-de-jd-modal__scroll::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #5ffbf1 0%, #c4b5fd 100%);
	box-shadow:
		0 0 14px rgba(0, 255, 240, 0.65),
		0 0 8px rgba(255, 43, 214, 0.35);
}
.lx-de-jd-modal__scroll::-webkit-scrollbar-thumb:active {
	background: linear-gradient(180deg, #ff2bd6, #00fff0);
}
.lx-de-jd-modal__scroll::-webkit-scrollbar-corner {
	background: transparent;
}
.lx-de-jd__kicker {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: rgba(0, 255, 240, 0.75);
	text-transform: uppercase;
}
.lx-de-jd__head{display:flex;gap:14px;align-items:center;margin-bottom:18px;padding-right:40px}
.lx-de-jd__ic{
	flex-shrink:0;
	width:56px;height:56px;
	display:grid;place-items:center;
	font-size:30px;line-height:1;
	border-radius:14px;
	background:linear-gradient(145deg,rgba(0,255,240,.16),rgba(139,92,255,.12));
	border:1px solid rgba(0,255,240,.3);
	box-shadow:0 0 20px rgba(0,255,240,.15);
}
.lx-de-jd__head h2{margin:0 0 4px;font-size:1.35rem;font-weight:800;color:#f0fbff}
.lx-de-jd section{margin:14px 0}
.lx-de-jd h3{
	margin:0 0 8px;
	font-size:13px;
	font-weight:800;
	letter-spacing:.06em;
	color:#7af8ff;
}
.lx-de-jd section > p{margin:0;font-size:13.5px;line-height:1.65;color:#cbd5e1}
.lx-de-jd-list{margin:0;padding-left:18px;color:#cbd5e1;font-size:13px;line-height:1.65}
.lx-de-jd-list li{margin:4px 0}
.lx-de-jd__split{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:720px){
	.lx-de-jd__split{grid-template-columns:1fr}
	.lx-de-jd-modal__scroll{padding:18px 14px 16px}
}
.lx-de-jd__can{
	border:1px solid rgba(52,211,153,.35);
	border-radius:12px;
	padding:12px;
	background:rgba(16,185,129,.08);
}
.lx-de-jd__cannot{
	border:1px solid rgba(248,113,113,.35);
	border-radius:12px;
	padding:12px;
	background:rgba(239,68,68,.08);
}
.lx-de-jd__can h3{color:#6ee7b7}
.lx-de-jd__cannot h3{color:#fca5a5}
.lx-de-guard-on{color:#6ee7b7;font-weight:700;font-size:13px;margin:0}
.lx-de-jd__cta{
	margin-top:18px;
	padding-top:14px;
	border-top:1px solid rgba(0,255,240,.12);
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	justify-content:flex-end;
	align-items:center;
	position:sticky;
	bottom:0;
	background:linear-gradient(180deg,transparent,rgba(8,14,26,.96) 28%);
	padding-bottom:2px;
}
.lx-de-jd__cta .lx-de-btn{min-width:120px}
body.lx-de-jd-open{overflow:hidden !important}
.lx-de__pill--guard.is-on{background:rgba(52,211,153,.16);color:#6ee7b7;border:0}
.lx-de__lifecycle{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.lx-de-perf{margin:10px 0 14px;padding:4px 0 12px;border-radius:0;border:0;border-bottom:1px solid rgba(148,163,184,.1);background:transparent}
.lx-de-perf__title{font-size:12px;font-weight:800;letter-spacing:.06em;color:#7dd3fc;margin-bottom:12px}
.lx-de-perf__kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
@media(max-width:720px){.lx-de-perf__kpis{grid-template-columns:repeat(2,1fr)}}
.lx-de-perf__kpis>div{background:transparent;border-radius:0;padding:4px 0 4px 10px;text-align:left;border-left:2px solid rgba(56,189,248,.35)}
.lx-de-perf__kpis b{display:block;font-size:18px;color:#e0f2fe}
.lx-de-perf__kpis span{font-size:11px;color:#94a3b8}
.lx-de-perf__trends{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.lx-de-perf__trends>div span{font-size:11px;color:#94a3b8;display:block;margin-bottom:6px}
.lx-de-spark{display:flex;align-items:flex-end;gap:3px;height:40px}
.lx-de-spark i{display:block;width:8px;border-radius:3px 3px 0 0;background:linear-gradient(180deg,#38bdf8,#6366f1);opacity:.85}
.lx-de-perf__blocks{margin-top:10px;font-size:12px;color:#fca5a5}
.lx-de-perf__blocks ul{margin:4px 0 0;padding-left:16px;color:#cbd5e1}
.lx-de__inst.is-paused{opacity:.72}


/* =========================================================
   职位列表 · 酷炫加载动画（招聘市场）
   ========================================================= */
.lx-de__tpl-grid.is-loading,
.lx-de__tpl-grid[aria-busy="true"] {
	display: block !important;
	min-height: 320px;
}

.lx-de-jobs-load {
	--jl-cyan: #00fff0;
	--jl-pink: #ff2bd6;
	--jl-purple: #8b5cff;
	position: relative;
	width: 100%;
	padding: 8px 0 20px;
}

.lx-de-jobs-load__core {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 28px 16px 24px;
	margin: 0 auto 22px;
	max-width: 420px;
	border-radius: 20px;
	background:
		radial-gradient(circle at 50% 30%, rgba(0, 255, 240, 0.12), transparent 55%),
		linear-gradient(165deg, rgba(8, 14, 32, 0.92), rgba(5, 8, 18, 0.88));
	border: 1px solid rgba(0, 255, 240, 0.28);
	box-shadow:
		0 0 0 1px rgba(255, 43, 214, 0.08) inset,
		0 0 40px rgba(0, 255, 240, 0.12),
		0 20px 48px rgba(0, 0, 0, 0.45);
	overflow: hidden;
}
.lx-de-jobs-load__core::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 40%,
		rgba(0, 255, 240, 0.07) 48%,
		rgba(255, 43, 214, 0.06) 52%,
		transparent 60%
	);
	background-size: 220% 100%;
	animation: lx-jl-scan 2.4s linear infinite;
	pointer-events: none;
}
@keyframes lx-jl-scan {
	0% { background-position: 120% 0; }
	100% { background-position: -120% 0; }
}

.lx-de-jobs-load__rings {
	position: relative;
	width: 120px;
	height: 120px;
	margin-bottom: 8px;
}
.lx-de-jobs-load__rings .r {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: var(--jl-cyan);
	border-right-color: rgba(0, 255, 240, 0.25);
	box-shadow: 0 0 16px rgba(0, 255, 240, 0.25);
}
.lx-de-jobs-load__rings .r2 {
	inset: 12px;
	border-top-color: var(--jl-pink);
	border-right-color: rgba(255, 43, 214, 0.3);
	animation: lx-jl-spin-rev 1.6s linear infinite;
	box-shadow: 0 0 14px rgba(255, 43, 214, 0.25);
}
.lx-de-jobs-load__rings .r1 {
	animation: lx-jl-spin 2.2s linear infinite;
}
.lx-de-jobs-load__rings .r3 {
	inset: 26px;
	border-top-color: var(--jl-purple);
	border-left-color: rgba(139, 92, 255, 0.35);
	animation: lx-jl-spin 1.1s linear infinite;
}
.lx-de-jobs-load__rings .beam {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 48%;
	height: 2px;
	margin-left: -1px;
	transform-origin: left center;
	background: linear-gradient(90deg, var(--jl-cyan), transparent);
	box-shadow: 0 0 12px var(--jl-cyan);
	animation: lx-jl-beam 1.4s linear infinite;
}
@keyframes lx-jl-spin { to { transform: rotate(360deg); } }
@keyframes lx-jl-spin-rev { to { transform: rotate(-360deg); } }
@keyframes lx-jl-beam { to { transform: rotate(360deg); } }

.lx-de-jobs-load__orb {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 52px;
	height: 52px;
	margin: -26px 0 0 -26px;
	display: grid;
	place-items: center;
	z-index: 2;
}
.lx-de-jobs-load__orb .orb-glow {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 240, 0.45), transparent 70%);
	animation: lx-jl-pulse 1.2s ease-in-out infinite;
}
.lx-de-jobs-load__orb .orb-ic {
	position: relative;
	font-size: 28px;
	line-height: 1;
	filter: drop-shadow(0 0 10px rgba(0, 255, 240, 0.65));
	animation: lx-jl-bob 1.5s ease-in-out infinite;
}
@keyframes lx-jl-pulse {
	0%, 100% { opacity: 0.55; transform: scale(0.92); }
	50% { opacity: 1; transform: scale(1.12); }
}
@keyframes lx-jl-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

.lx-de-jobs-load__title {
	position: relative;
	z-index: 1;
	margin: 10px 0 4px;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #e8f7ff;
	text-shadow: 0 0 14px rgba(0, 255, 240, 0.35);
}
.lx-de-jobs-load__sub {
	position: relative;
	z-index: 1;
	margin: 0 0 14px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	color: rgba(122, 248, 255, 0.75);
}

.lx-de-jobs-load__bar {
	position: relative;
	z-index: 1;
	width: min(260px, 70vw);
	height: 4px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
	margin-bottom: 14px;
	box-shadow: 0 0 0 1px rgba(0, 255, 240, 0.12) inset;
}
.lx-de-jobs-load__bar i {
	display: block;
	height: 100%;
	width: 38%;
	border-radius: inherit;
	background: linear-gradient(90deg, #00fff0, #ff2bd6, #8b5cff);
	box-shadow: 0 0 12px rgba(0, 255, 240, 0.55);
	animation: lx-jl-bar 1.15s ease-in-out infinite;
}
@keyframes lx-jl-bar {
	0% { transform: translateX(-120%); }
	100% { transform: translateX(320%); }
}

.lx-de-jobs-load__ticks {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	justify-content: center;
}
.lx-de-jobs-load__ticks li {
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: #8aa0b8;
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(0, 0, 0, 0.2);
	transition: color 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.lx-de-jobs-load__ticks li.on {
	color: #041016;
	border-color: rgba(0, 255, 240, 0.55);
	background: linear-gradient(135deg, rgba(0, 255, 240, 0.9), rgba(122, 248, 255, 0.75));
	box-shadow: 0 0 14px rgba(0, 255, 240, 0.35);
}

.lx-de-jobs-load__skels {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 14px;
}
.lx-de-jobs-skel {
	position: relative;
	overflow: hidden;
	min-height: 210px;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid rgba(0, 255, 240, 0.16);
	background:
		linear-gradient(155deg, rgba(0, 255, 240, 0.06), transparent 50%),
		rgba(4, 8, 18, 0.72);
	box-shadow: 0 0 0 1px rgba(255, 43, 214, 0.05) inset;
	animation: lx-jl-skel-in 0.55s ease both;
	animation-delay: calc(var(--d, 0) * 0.08s);
}
@keyframes lx-jl-skel-in {
	from { opacity: 0; transform: translateY(12px) scale(0.98); }
	to { opacity: 1; transform: none; }
}
.lx-de-jobs-skel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 35%,
		rgba(0, 255, 240, 0.1) 48%,
		rgba(255, 43, 214, 0.08) 52%,
		transparent 65%
	);
	background-size: 220% 100%;
	animation: lx-jl-shimmer 1.8s ease-in-out infinite;
	animation-delay: calc(var(--d, 0) * 0.12s);
	pointer-events: none;
}
@keyframes lx-jl-shimmer {
	0% { background-position: 120% 0; }
	100% { background-position: -120% 0; }
}

.lx-de-jobs-skel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}
.lx-de-jobs-skel .sh {
	display: block;
	border-radius: 8px;
	background: linear-gradient(
		90deg,
		rgba(148, 163, 184, 0.12),
		rgba(0, 255, 240, 0.18),
		rgba(148, 163, 184, 0.12)
	);
	background-size: 200% 100%;
	animation: lx-jl-sh 1.4s ease-in-out infinite;
}
@keyframes lx-jl-sh {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}
.lx-de-jobs-skel__top .sh:first-child {
	width: 44px;
	height: 44px;
	border-radius: 12px;
}
.lx-de-jobs-skel .sh--sm {
	width: 64px;
	height: 18px;
	border-radius: 999px;
}
.lx-de-jobs-skel .sh--title {
	width: 62%;
	height: 16px;
	margin-bottom: 10px;
}
.lx-de-jobs-skel .sh--line {
	width: 100%;
	height: 10px;
	margin-bottom: 8px;
	opacity: 0.85;
}
.lx-de-jobs-skel .sh--short { width: 72%; }
.lx-de-jobs-skel__tags {
	display: flex;
	gap: 6px;
	margin: 12px 0 16px;
}
.lx-de-jobs-skel .sh--tag {
	width: 52px;
	height: 18px;
	border-radius: 999px;
}
.lx-de-jobs-skel .sh--btn {
	width: 100%;
	height: 36px;
	border-radius: 10px;
	margin-top: auto;
}

.lx-de__tpl-card--enter {
	animation: lx-jl-card-in 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: calc(var(--enter-i, 0) * 0.045s);
}
@keyframes lx-jl-card-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.96);
		filter: blur(4px);
	}
	to {
		opacity: 1;
		transform: none;
		filter: none;
	}
}

.lx-de-jd-load {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 120px;
	padding: 28px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #9ef0ff;
	letter-spacing: 0.04em;
}
.lx-de-jd-load__spin {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid rgba(0, 255, 240, 0.2);
	border-top-color: #00fff0;
	box-shadow: 0 0 12px rgba(0, 255, 240, 0.35);
	animation: lx-jl-spin 0.7s linear infinite;
}

@media (max-width: 640px) {
	.lx-de-jobs-load__rings { width: 96px; height: 96px; }
	.lx-de-jobs-load__title { font-size: 14px; }
	.lx-de-jobs-load__skels { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.lx-de-jobs-load__core::before,
	.lx-de-jobs-load__rings .r,
	.lx-de-jobs-load__rings .beam,
	.lx-de-jobs-load__orb .orb-glow,
	.lx-de-jobs-load__orb .orb-ic,
	.lx-de-jobs-load__bar i,
	.lx-de-jobs-skel,
	.lx-de-jobs-skel::after,
	.lx-de-jobs-skel .sh,
	.lx-de__tpl-card--enter,
	.lx-de-jd-load__spin {
		animation: none !important;
	}
}


/* =========================================================
   职位卡片 · 鼠标悬停赛博特效 (v3.379.2)
   ========================================================= */
.lx-de--claim-cyber .lx-de__tpl-grid--cyber {
	perspective: 900px;
}
.lx-de--claim-cyber .lx-de__tpl-card {
	cursor: pointer !important;
	transform-style: preserve-3d;
	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.35s ease,
		filter 0.35s ease !important;
	will-change: transform, box-shadow;
}
.lx-de--claim-cyber .lx-de__tpl-card::before {
	content: "" !important;
	position: absolute !important;
	inset: -45% !important;
	z-index: 0 !important;
	pointer-events: none !important;
	background: conic-gradient(
		from 0deg,
		transparent 0%,
		color-mix(in srgb, var(--tpl-color, #00fff0) 40%, transparent) 10%,
		transparent 20%,
		rgba(255, 43, 214, 0.32) 36%,
		transparent 48%,
		color-mix(in srgb, var(--tpl-color, #00fff0) 28%, transparent) 66%,
		transparent 78%
	) !important;
	opacity: 0 !important;
	transform: scale(0.8) rotate(0deg) !important;
	transition: opacity 0.35s ease !important;
}
.lx-de--claim-cyber .lx-de__tpl-card::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	pointer-events: none !important;
	background: linear-gradient(
		115deg,
		transparent 32%,
		rgba(255, 255, 255, 0.16) 46%,
		rgba(0, 255, 240, 0.22) 50%,
		rgba(255, 255, 255, 0.12) 54%,
		transparent 68%
	) !important;
	background-size: 240% 100% !important;
	background-position: 140% 0 !important;
	opacity: 0 !important;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover {
	transform: translateY(-12px) scale(1.03) !important;
	border-color: color-mix(in srgb, var(--tpl-color, #00fff0) 90%, #fff) !important;
	filter: brightness(1.08) !important;
	box-shadow:
		0 0 0 1px color-mix(in srgb, var(--tpl-color, #00fff0) 40%, transparent) inset,
		0 0 0 1px color-mix(in srgb, var(--tpl-color, #00fff0) 50%, transparent),
		0 0 40px color-mix(in srgb, var(--tpl-color, #00fff0) 40%, transparent),
		0 0 72px color-mix(in srgb, var(--tpl-color, #00fff0) 14%, transparent),
		0 32px 60px rgba(0, 0, 0, 0.55) !important;
	z-index: 3;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover::before {
	opacity: 0.6 !important;
	animation: lx-de-card-orbit 2.8s linear infinite !important;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover::after {
	opacity: 1 !important;
	animation: lx-de-card-shine 1.05s ease-out forwards !important;
}
@keyframes lx-de-card-orbit {
	to { transform: scale(1.05) rotate(360deg); }
}
@keyframes lx-de-card-shine {
	0% { background-position: 140% 0; }
	100% { background-position: -50% 0; }
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-corner {
	width: 20px !important;
	height: 20px !important;
	opacity: 1 !important;
	box-shadow: 0 0 14px color-mix(in srgb, var(--tpl-color, #00fff0) 60%, transparent);
	animation: lx-de-corner-glow 1.1s ease-in-out infinite;
}
@keyframes lx-de-corner-glow {
	0%, 100% { opacity: 0.7; filter: brightness(1); }
	50% { opacity: 1; filter: brightness(1.4); }
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-scan {
	opacity: 1 !important;
	animation: lx-de-claim-scan 1.45s linear infinite !important;
}
.lx-de--claim-cyber .lx-de__tpl-icon {
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-icon {
	transform: translateY(-6px) scale(1.14) rotate(-5deg);
	border-color: color-mix(in srgb, var(--tpl-color, #00fff0) 85%, #fff) !important;
	box-shadow:
		0 0 0 5px color-mix(in srgb, var(--tpl-color, #00fff0) 14%, transparent),
		0 0 32px color-mix(in srgb, var(--tpl-color, #00fff0) 50%, transparent) !important;
	animation: lx-de-icon-float 1.35s ease-in-out infinite;
}
@keyframes lx-de-icon-float {
	0%, 100% { transform: translateY(-6px) scale(1.14) rotate(-5deg); }
	50% { transform: translateY(-11px) scale(1.16) rotate(4deg); }
}
.lx-de--claim-cyber .lx-de__tpl-card h3 {
	transition: color 0.25s ease, text-shadow 0.25s ease, letter-spacing 0.25s ease !important;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover h3 {
	color: #fff !important;
	letter-spacing: 0.03em;
	text-shadow: 0 0 20px color-mix(in srgb, var(--tpl-color, #00fff0) 60%, transparent);
}
.lx-de--claim-cyber .lx-de__tpl-tagline {
	transition: transform 0.3s ease;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-tagline {
	transform: translateX(4px);
}
.lx-de--claim-cyber .lx-de-badge {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de-badge {
	transform: translateY(-1px);
	box-shadow: 0 0 10px color-mix(in srgb, var(--tpl-color, #00fff0) 25%, transparent);
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-actions .lx-de-btn {
	box-shadow: 0 8px 22px color-mix(in srgb, var(--tpl-color, #00fff0) 28%, transparent);
}
.lx-de--claim-cyber .lx-de__tpl-card.is-featured:hover {
	box-shadow:
		0 0 0 1px rgba(251, 146, 60, 0.65),
		0 0 48px rgba(251, 146, 60, 0.32),
		0 0 36px color-mix(in srgb, var(--tpl-color, #00fff0) 28%, transparent),
		0 32px 60px rgba(0, 0, 0, 0.55) !important;
}
.lx-de--claim-cyber .lx-de__tpl-card .lx-de__tpl-scan::before,
.lx-de--claim-cyber .lx-de__tpl-card .lx-de__tpl-scan::after {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--tpl-color, #00fff0);
	box-shadow: 0 0 8px var(--tpl-color, #00fff0);
	opacity: 0;
	pointer-events: none;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-scan::before {
	opacity: 1;
	left: 18%;
	animation: lx-de-particle-a 1.8s ease-in-out infinite;
}
.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-scan::after {
	opacity: 1;
	right: 22%;
	background: #ff2bd6;
	box-shadow: 0 0 8px #ff2bd6;
	animation: lx-de-particle-b 2.1s ease-in-out infinite 0.3s;
}
@keyframes lx-de-particle-a {
	0% { top: 75%; opacity: 0; transform: scale(0.5); }
	30% { opacity: 1; }
	100% { top: 12%; opacity: 0; transform: scale(1.2); }
}
@keyframes lx-de-particle-b {
	0% { top: 80%; opacity: 0; transform: scale(0.4); }
	35% { opacity: 1; }
	100% { top: 18%; opacity: 0; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
	.lx-de--claim-cyber .lx-de__tpl-card:hover,
	.lx-de--claim-cyber .lx-de__tpl-card:hover::before,
	.lx-de--claim-cyber .lx-de__tpl-card:hover::after,
	.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-icon,
	.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-scan,
	.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-corner,
	.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-scan::before,
	.lx-de--claim-cyber .lx-de__tpl-card:hover .lx-de__tpl-scan::after {
		animation: none !important;
		transform: none !important;
	}
}
