/**
 * 蓝顶壳落地页：真假客服验证 + 平台公告（同壳不同正文区）。
 * 由 functions.php 在上述页面通过 wp_enqueue_scripts（依赖 global-styles / 子主题前台样式）输出，保证加载顺序。
 */
/* ========== 真假客服验证页（参考图：蓝顶栏 + 搜索条 + 提示 + 结果卡，模板 page-customer-verify） ========== */
.t25c-verify-page {
	overflow-x: clip;
	background-color: #f5f6f8;
	border-bottom: 1px solid var(--t25c-border);
}

.t25c-verify-page .wp-block-post-content {
	margin-block: 0;
}

.t25c-cv {
	--t25c-cv-blue: #4a90e2;
	--t25c-cv-blue-deep: #2d6bcf;
	--t25c-cv-blue-soft: rgba(74, 144, 226, 0.12);
	font-family: "PingFang SC", "Microsoft YaHei", "Heiti SC", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 顶栏：渐变、水纹、柔光装饰、底部圆角过渡 */
.t25c-cv-hero {
	position: relative;
	overflow: hidden;
	padding: 3rem 1.25rem 4.75rem;
	text-align: center;
	color: #fff;
	border-radius: 0 0 clamp(1.25rem, 5vw, 2.25rem) clamp(1.25rem, 5vw, 2.25rem);
	background:
		radial-gradient(ellipse 120% 80% at 50% -35%, rgba(255, 255, 255, 0.22), transparent 58%),
		radial-gradient(ellipse 70% 50% at 8% 92%, rgba(255, 255, 255, 0.07), transparent 52%),
		radial-gradient(ellipse 55% 45% at 92% 78%, rgba(255, 255, 255, 0.1), transparent 48%),
		repeating-radial-gradient(circle at 0 0, transparent 0, transparent 3px, rgba(255, 255, 255, 0.028) 3px, rgba(255, 255, 255, 0.028) 4px),
		linear-gradient(168deg, #6ba8f0 0%, var(--t25c-cv-blue) 42%, #3d84d6 68%, var(--t25c-cv-blue-deep) 100%);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.t25c-cv-hero::before,
.t25c-cv-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(0);
}

.t25c-cv-hero::before {
	inset: auto -15% 10% 50%;
	width: min(100vw, 28rem);
	height: min(100vw, 28rem);
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 65%);
	opacity: 0.9;
}

.t25c-cv-hero::after {
	top: -40%;
	right: -10%;
	width: min(60vw, 16rem);
	height: min(60vw, 16rem);
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.t25c-cv-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 36rem;
	margin: 0 auto;
}

.t25c-cv-hero__label {
	display: inline-block;
	margin: 0 0 0.85rem;
	padding: 0.35rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.98);
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.t25c-cv-hero__title {
	margin: 0 0 1.15rem;
	font-size: clamp(1.55rem, 5.2vw, 2rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: 0.03em;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.t25c-cv-hero__tags {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
}

.t25c-cv-hero__tags > span:not(.t25c-cv-hero__dot) {
	padding: 0.35rem 0.75rem;
	color: rgba(255, 255, 255, 0.96);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.t25c-cv-hero__dot {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
	vertical-align: middle;
	opacity: 0.85;
}

/* 白底区：搜索条上移压住蓝白交界 */
.t25c-cv-body {
	position: relative;
	z-index: 2;
	max-width: 42rem;
	margin: -2.75rem auto 0;
	padding: 0 1.25rem 3rem;
}

.t25c-cv-search {
	display: flex;
	align-items: stretch;
	gap: 0;
	background: #fff;
	border-radius: 14px;
	box-shadow:
		0 4px 6px -1px rgba(15, 23, 42, 0.05),
		0 12px 32px -8px rgba(74, 144, 226, 0.18),
		0 0 0 1px rgba(226, 232, 240, 0.95);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.8);
	transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.t25c-cv-search:focus-within {
	box-shadow:
		0 4px 6px -1px rgba(15, 23, 42, 0.06),
		0 16px 40px -10px rgba(74, 144, 226, 0.28),
		0 0 0 3px rgba(74, 144, 226, 0.22),
		0 0 0 1px rgba(74, 144, 226, 0.15);
}

.t25c-cv-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	padding: 1rem 1.15rem;
	font-size: 0.9375rem;
	color: #1e293b;
	background: transparent;
	outline: none;
	transition: color 0.15s ease;
}

.t25c-cv-search__input::placeholder {
	color: #94a3b8;
	transition: opacity 0.2s ease;
}

.t25c-cv-search:focus-within .t25c-cv-search__input::placeholder {
	opacity: 0.75;
}

.t25c-cv-search__btn {
	flex: 0 0 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	margin: 0.35rem 0.35rem 0.35rem 0;
	border-radius: 10px;
	background: linear-gradient(165deg, #5b9ef0 0%, var(--t25c-cv-blue) 45%, #3a7fd4 100%);
	color: #fff;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
	transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.t25c-cv-search__btn:hover {
	filter: brightness(1.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 4px 14px rgba(45, 107, 207, 0.35);
}

.t25c-cv-search__btn:active {
	transform: scale(0.96);
}

.t25c-cv-search__btn:focus-visible {
	outline: 2px solid var(--t25c-cv-blue);
	outline-offset: 2px;
}

.t25c-cv-search__icon {
	display: block;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

/* 提示条 */
.t25c-cv-tip {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 1.35rem;
	padding: 1rem 1.1rem 1rem 1rem;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	border-left: 4px solid var(--t25c-cv-blue);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.t25c-cv-tip__icon {
	flex-shrink: 0;
	width: 1.375rem;
	height: 1.375rem;
	margin-top: 0.05rem;
	border-radius: 50%;
	border: 0;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	font-style: italic;
	line-height: 1.375rem;
	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	background: linear-gradient(145deg, #94a3b8 0%, #64748b 100%);
	box-shadow: 0 2px 6px rgba(100, 116, 139, 0.35);
}

.t25c-cv-tip__text {
	margin: 0;
	font-size: 0.78125rem;
	line-height: 1.7;
	color: #475569;
}

/* 官方联系方式 — 强视觉：与结果卡同系蓝渐变顶栏 + 分层阴影 + 大号正文 */
.t25c-cv-contacts {
	position: relative;
	margin-top: 1.15rem;
	padding: 0;
	overflow: hidden;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 2px 4px rgba(15, 23, 42, 0.04),
		0 14px 36px -10px rgba(74, 144, 226, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.6) inset;
	transition: box-shadow 0.28s ease, transform 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
	.t25c-cv-contacts:hover {
		box-shadow:
			0 4px 8px rgba(15, 23, 42, 0.06),
			0 20px 48px -12px rgba(74, 144, 226, 0.28);
		transform: translateY(-2px);
	}
}

.t25c-cv-contacts__title {
	position: relative;
	margin: 0;
	padding: 1rem 1.25rem 1.05rem;
	font-size: clamp(0.9375rem, 2.8vw, 1.0625rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	background: linear-gradient(
		168deg,
		#6ba8f0 0%,
		var(--t25c-cv-blue) 42%,
		#3d84d6 68%,
		var(--t25c-cv-blue-deep) 100%
	);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.t25c-cv-contacts__title::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	opacity: 0.9;
	pointer-events: none;
}

.t25c-cv-contacts__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
	padding: 0.95rem 1.15rem;
	border-bottom: 1px solid #eef2f6;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.t25c-cv-contacts__row:nth-child(2) {
	--t25c-cv-contact-accent: #16a34a;
}

.t25c-cv-contacts__row:nth-child(3) {
	--t25c-cv-contact-accent: #2563eb;
}

.t25c-cv-contacts__row:nth-child(4) {
	--t25c-cv-contact-accent: #0d9488;
}

.t25c-cv-contacts__row:last-child {
	border-bottom: none;
}

@media (hover: hover) and (pointer: fine) {
	.t25c-cv-contacts__row:hover {
		background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
		box-shadow: inset 3px 0 0 var(--t25c-cv-contact-accent);
	}
}

.t25c-cv-contacts__k {
	position: relative;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 5rem;
	padding-left: 0.15rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #475569;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.t25c-cv-contacts__k::before {
	content: "";
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--t25c-cv-contact-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--t25c-cv-contact-accent) 22%, transparent);
}

@supports not (background: color-mix(in srgb, red 50%, blue)) {
	.t25c-cv-contacts__row:nth-child(2) .t25c-cv-contacts__k::before {
		box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
	}

	.t25c-cv-contacts__row:nth-child(3) .t25c-cv-contacts__k::before {
		box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
	}

	.t25c-cv-contacts__row:nth-child(4) .t25c-cv-contacts__k::before {
		box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2);
	}
}

.t25c-cv-contacts__v {
	flex: 1 1 auto;
	min-width: 0;
	text-align: right;
	font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
	font-weight: 700;
	color: #0f172a;
	line-height: 1.45;
	word-break: break-word;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
}

button.t25c-cv-contacts__copy {
	font: inherit;
	text-align: right;
	cursor: pointer;
	border: 0;
	padding: 0.15rem 0;
	margin: 0;
	background: transparent;
	color: inherit;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border-radius: 4px;
	transition: color 0.15s ease, background 0.15s ease;
}

button.t25c-cv-contacts__copy:hover {
	color: var(--t25c-cv-blue-deep);
	text-decoration: underline;
	text-decoration-color: rgba(45, 107, 207, 0.45);
	text-underline-offset: 3px;
}

button.t25c-cv-contacts__copy:focus {
	outline: none;
}

button.t25c-cv-contacts__copy:focus-visible {
	outline: 2px solid var(--t25c-cv-blue);
	outline-offset: 2px;
}

.t25c-cv-contacts__v--empty {
	font-weight: 500;
	color: #94a3b8;
	cursor: default;
}

.t25c-cv-contacts[data-t25c-cv='ok'] {
	box-shadow:
		0 2px 4px rgba(15, 23, 42, 0.04),
		0 14px 36px -10px rgba(22, 163, 74, 0.22),
		0 0 0 1px rgba(22, 163, 74, 0.2);
}

.t25c-cv-contacts[data-t25c-cv='bad'] {
	box-shadow:
		0 2px 4px rgba(15, 23, 42, 0.04),
		0 14px 36px -10px rgba(217, 119, 6, 0.2),
		0 0 0 1px rgba(217, 119, 6, 0.22);
}

.t25c-cv-contacts--pulse {
	animation: t25c-cv-contact-pulse 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes t25c-cv-contact-pulse {
	0% {
		box-shadow:
			0 2px 4px rgba(15, 23, 42, 0.04),
			0 14px 36px -10px rgba(74, 144, 226, 0.22),
			0 0 0 1px rgba(255, 255, 255, 0.6) inset;
		transform: translateY(0);
	}
	45% {
		box-shadow:
			0 8px 24px rgba(74, 144, 226, 0.22),
			0 0 0 1px rgba(74, 144, 226, 0.28);
		transform: translateY(-1px);
	}
	100% {
		box-shadow:
			0 2px 4px rgba(15, 23, 42, 0.04),
			0 14px 36px -10px rgba(74, 144, 226, 0.22),
			0 0 0 1px rgba(255, 255, 255, 0.6) inset;
		transform: translateY(0);
	}
}

.t25c-cv-toast {
	position: fixed;
	z-index: 100050;
	left: 50%;
	bottom: 1.5rem;
	transform: translate3d(-50%, 12px, 0);
	padding: 0.55rem 1.15rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
	background: rgba(15, 23, 42, 0.92);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.t25c-cv-toast--show {
	opacity: 1;
	transform: translate3d(-50%, 0, 0);
}

/* 查询结果弹窗（与验证页蓝顶同系 + 内容分区卡片 + 主按钮） */
body.t25c-cv-modal-open {
	overflow: hidden;
}

.t25c-cv-modal {
	--t25c-cv-blue: #4a90e2;
	--t25c-cv-blue-deep: #2d6bcf;
	position: fixed;
	inset: 0;
	z-index: 100200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	box-sizing: border-box;
}

.t25c-cv-modal[hidden] {
	display: none !important;
}

.t25c-cv-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.52);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.t25c-cv-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 28rem;
	max-height: min(90vh, 34rem);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 2px 4px rgba(15, 23, 42, 0.04),
		0 12px 28px rgba(15, 23, 42, 0.08),
		0 32px 64px -24px rgba(74, 144, 226, 0.22);
	animation: t25c-cv-modal-in 0.32s cubic-bezier(0.34, 1.02, 0.68, 1);
}

@keyframes t25c-cv-modal-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.t25c-cv-modal__head {
	position: relative;
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
	padding: 1.15rem 3rem 1rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: linear-gradient(
		168deg,
		#6ba8f0 0%,
		var(--t25c-cv-blue) 42%,
		#3d84d6 68%,
		var(--t25c-cv-blue-deep) 100%
	);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.t25c-cv-modal__head--neutral {
	border-bottom-color: #e2e8f0;
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	box-shadow: none;
}

.t25c-cv-modal__pill {
	display: inline-block;
	padding: 0.22rem 0.6rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	backdrop-filter: blur(4px);
}

.t25c-cv-modal__head--neutral .t25c-cv-modal__pill {
	border-color: rgba(148, 163, 184, 0.35);
	background: rgba(255, 255, 255, 0.85);
	color: #64748b;
}

.t25c-cv-modal__pill.is-ok {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.t25c-cv-modal__pill.is-warn {
	border-color: rgba(254, 243, 199, 0.6);
	background: rgba(251, 191, 36, 0.35);
	color: #fffbeb;
}

.t25c-cv-modal__head--neutral .t25c-cv-modal__pill.is-ok {
	color: #1d4ed8;
	background: linear-gradient(180deg, rgba(74, 144, 226, 0.16) 0%, rgba(74, 144, 226, 0.08) 100%);
	border-color: rgba(74, 144, 226, 0.28);
}

.t25c-cv-modal__head--neutral .t25c-cv-modal__pill.is-warn {
	color: #b45309;
	background: linear-gradient(180deg, rgba(251, 191, 36, 0.22) 0%, rgba(245, 158, 11, 0.1) 100%);
	border-color: rgba(245, 158, 11, 0.35);
}

.t25c-cv-modal__title {
	flex: 1 1 auto;
	margin: 0;
	font-size: clamp(1.05rem, 3vw, 1.2rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.04em;
	line-height: 1.35;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.t25c-cv-modal__head--neutral .t25c-cv-modal__title {
	color: #0f172a;
	text-shadow: none;
}

.t25c-cv-modal__close {
	position: absolute;
	top: 0.6rem;
	right: 0.5rem;
	width: 2.35rem;
	height: 2.35rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.t25c-cv-modal__close:hover {
	background: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.t25c-cv-modal__head--neutral .t25c-cv-modal__close {
	background: rgba(15, 23, 42, 0.06);
	color: #64748b;
}

.t25c-cv-modal__head--neutral .t25c-cv-modal__close:hover {
	background: rgba(15, 23, 42, 0.1);
	color: #0f172a;
}

.t25c-cv-modal__close:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 2px;
}

.t25c-cv-modal__head--neutral .t25c-cv-modal__close:focus-visible {
	outline-color: var(--t25c-cv-blue);
}

.t25c-cv-modal__body {
	flex: 1 1 auto;
	overflow: auto;
	padding: 1.1rem 1.25rem 0.75rem;
	-webkit-overflow-scrolling: touch;
}

.t25c-cv-modal__query {
	margin: 0 0 0.85rem;
	padding: 0.65rem 0.85rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #0f172a;
	line-height: 1.55;
	word-break: break-all;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 10px;
	border: 1px solid #e2e8f0;
}

.t25c-cv-modal__card {
	margin: 0 0 0.85rem;
	padding: 0.75rem 0.9rem;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e8ecf1;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.t25c-cv-modal__contacts {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: #334155;
	word-break: break-word;
}

.t25c-cv-modal__tip {
	margin: 0;
	padding-top: 0.25rem;
	font-size: 0.8125rem;
	line-height: 1.7;
	color: #64748b;
}

.t25c-cv-modal__footer {
	flex-shrink: 0;
	padding: 0.85rem 1.25rem 1.15rem;
	border-top: 1px solid #eef2f6;
	background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}

.t25c-cv-modal__primary {
	display: block;
	width: 100%;
	padding: 0.7rem 1rem;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff !important;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	background: linear-gradient(165deg, #5b9ef0 0%, var(--t25c-cv-blue) 48%, #3a7fd4 100%);
	box-shadow:
		0 2px 6px rgba(45, 107, 207, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
	transition: filter 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.t25c-cv-modal__primary:hover {
	filter: brightness(1.05);
	box-shadow:
		0 6px 16px rgba(45, 107, 207, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.t25c-cv-modal__primary:active {
	transform: scale(0.99);
}

.t25c-cv-modal__primary:focus-visible {
	outline: 2px solid var(--t25c-cv-blue);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.t25c-cv-modal__panel {
		animation: none;
	}

	.t25c-cv-modal__primary:active {
		transform: none;
	}
}

html.t25c-dark .t25c-cv-modal__backdrop {
	background: rgba(0, 0, 0, 0.62);
}

html.t25c-dark .t25c-cv-modal__panel {
	background: linear-gradient(180deg, #1e293b 0%, #172033 100%);
	border-color: #334155;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(51, 65, 85, 0.5) inset;
}

html.t25c-dark .t25c-cv-modal__head {
	background: linear-gradient(168deg, #4a7fc4 0%, #3b6fb8 45%, #2d5aa0 100%);
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

html.t25c-dark .t25c-cv-modal__head--neutral {
	background: linear-gradient(180deg, #1e293b 0%, #172033 100%);
	border-bottom-color: #334155;
}

html.t25c-dark .t25c-cv-modal__title {
	color: #f8fafc;
}

html.t25c-dark .t25c-cv-modal__head--neutral .t25c-cv-modal__title {
	color: #f1f5f9;
}

html.t25c-dark .t25c-cv-modal__query {
	background: rgba(15, 23, 42, 0.55);
	border-color: #334155;
	color: #e2e8f0;
}

html.t25c-dark .t25c-cv-modal__card {
	background: rgba(15, 23, 42, 0.4);
	border-color: #334155;
	box-shadow: none;
}

html.t25c-dark .t25c-cv-modal__contacts {
	color: #cbd5e1;
}

html.t25c-dark .t25c-cv-modal__tip {
	color: #94a3b8;
}

html.t25c-dark .t25c-cv-modal__footer {
	border-top-color: #334155;
	background: linear-gradient(180deg, #172033 0%, #1a2332 100%);
}

html.t25c-dark .t25c-cv-modal__close {
	background: rgba(0, 0, 0, 0.2);
	color: #f1f5f9;
}

html.t25c-dark .t25c-cv-modal__close:hover {
	background: rgba(0, 0, 0, 0.35);
}

html.t25c-dark .t25c-cv-modal__head--neutral .t25c-cv-modal__close {
	background: rgba(255, 255, 255, 0.08);
	color: #94a3b8;
}

html.t25c-dark .t25c-cv-modal__head--neutral .t25c-cv-modal__close:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
}

@media (max-width: 420px) {
	.t25c-cv-contacts__title {
		padding: 0.9rem 1rem;
		letter-spacing: 0.08em;
	}

	.t25c-cv-contacts__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		padding: 1rem 1.1rem;
	}

	.t25c-cv-contacts__k {
		min-width: 0;
	}

	.t25c-cv-contacts__v {
		text-align: left;
		width: 100%;
		font-size: 1rem;
	}

	button.t25c-cv-contacts__copy {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.t25c-cv-contacts,
	.t25c-cv-contacts__row {
		transition: none;
	}

	.t25c-cv-contacts--pulse {
		animation: none;
	}

	.t25c-cv-toast {
		transition: none;
	}

	@media (hover: hover) and (pointer: fine) {
		.t25c-cv-contacts:hover {
			transform: none;
		}
	}
}

html.t25c-dark .t25c-cv-contacts {
	background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
	border-color: #334155;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(51, 65, 85, 0.6) inset;
}

@media (hover: hover) and (pointer: fine) {
	html.t25c-dark .t25c-cv-contacts:hover {
		box-shadow:
			0 12px 40px rgba(0, 0, 0, 0.45),
			0 0 0 1px rgba(96, 165, 250, 0.15) inset;
		transform: translateY(-2px);
	}
}

html.t25c-dark .t25c-cv-contacts__title {
	background: linear-gradient(168deg, #4a7fc4 0%, #3b6fb8 45%, #2d5aa0 100%);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

html.t25c-dark .t25c-cv-contacts__row {
	border-bottom-color: #334155;
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.65) 100%);
}

@media (hover: hover) and (pointer: fine) {
	html.t25c-dark .t25c-cv-contacts__row:hover {
		background: linear-gradient(180deg, rgba(51, 65, 85, 0.35) 0%, rgba(30, 41, 59, 0.55) 100%);
		box-shadow: inset 3px 0 0 var(--t25c-cv-contact-accent);
	}
}

html.t25c-dark .t25c-cv-contacts__k {
	color: #cbd5e1;
}

html.t25c-dark .t25c-cv-contacts__v {
	color: #f8fafc;
}

html.t25c-dark button.t25c-cv-contacts__copy:hover {
	color: #93c5fd;
	text-decoration-color: rgba(147, 197, 253, 0.55);
}

html.t25c-dark button.t25c-cv-contacts__copy:focus-visible {
	outline-color: #60a5fa;
}

html.t25c-dark .t25c-cv-contacts__v--empty {
	color: #64748b;
}

html.t25c-dark .t25c-cv-contacts[data-t25c-cv='ok'] {
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(34, 197, 94, 0.35) inset;
}

html.t25c-dark .t25c-cv-contacts[data-t25c-cv='bad'] {
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(251, 191, 36, 0.35) inset;
}

html.t25c-dark .t25c-cv-toast {
	background: rgba(30, 41, 59, 0.96);
	border: 1px solid #475569;
}

html.t25c-dark .t25c-cv-contacts__row:nth-child(2) {
	--t25c-cv-contact-accent: #4ade80;
}

html.t25c-dark .t25c-cv-contacts__row:nth-child(3) {
	--t25c-cv-contact-accent: #60a5fa;
}

html.t25c-dark .t25c-cv-contacts__row:nth-child(4) {
	--t25c-cv-contact-accent: #2dd4bf;
}

/* 结果卡片 */
.t25c-cv-result {
	display: flex;
	align-items: stretch;
	margin-top: 1.85rem;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow:
		0 2px 4px rgba(15, 23, 42, 0.04),
		0 8px 24px -6px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.95);
	transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
	.t25c-cv-result:hover {
		transform: translateY(-2px);
		border-color: rgba(74, 144, 226, 0.22);
		box-shadow:
			0 4px 8px rgba(15, 23, 42, 0.05),
			0 16px 40px -12px rgba(74, 144, 226, 0.2);
	}
}

.t25c-cv-result--pulse {
	animation: t25c-cv-pulse 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes t25c-cv-pulse {
	0% {
		box-shadow:
			0 2px 4px rgba(15, 23, 42, 0.04),
			0 8px 24px -6px rgba(15, 23, 42, 0.08);
		transform: translateY(0);
	}
	45% {
		box-shadow:
			0 8px 20px rgba(74, 144, 226, 0.18),
			0 0 0 1px rgba(74, 144, 226, 0.25);
		transform: translateY(-1px);
	}
	100% {
		box-shadow:
			0 2px 4px rgba(15, 23, 42, 0.04),
			0 8px 24px -6px rgba(15, 23, 42, 0.08);
		transform: translateY(0);
	}
}

.t25c-cv-result__badge {
	position: relative;
	flex: 0 0 5.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.1rem 0.7rem;
	overflow: hidden;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0.02em;
	background: linear-gradient(160deg, #5b9ef0 0%, var(--t25c-cv-blue) 40%, var(--t25c-cv-blue-deep) 100%);
	box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
}

.t25c-cv-result__badge::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
	pointer-events: none;
}

.t25c-cv-result__main {
	flex: 1;
	padding: 1.25rem 1.35rem 1.35rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
	background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.t25c-cv-result__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
}

.t25c-cv-result__title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: 0.02em;
}

.t25c-cv-result__pill {
	display: inline-block;
	padding: 0.25rem 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #2563b8;
	background: linear-gradient(180deg, rgba(74, 144, 226, 0.16) 0%, var(--t25c-cv-blue-soft) 100%);
	border: 1px solid rgba(74, 144, 226, 0.22);
	border-radius: 999px;
	box-shadow: 0 1px 2px rgba(74, 144, 226, 0.08);
}

.t25c-cv-result__sub {
	margin: 0;
	font-size: 0.84375rem;
	color: #64748b;
	line-height: 1.5;
}

.t25c-cv-result__sub strong,
.t25c-cv-result__sub b {
	color: #334155;
	font-weight: 600;
}

.t25c-cv-result__btn {
	display: inline-block;
	margin-top: 0.4rem;
	padding: 0.6rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 9px;
	background: linear-gradient(165deg, #5b9ef0 0%, var(--t25c-cv-blue) 50%, #3a7fd4 100%);
	box-shadow:
		0 2px 4px rgba(45, 107, 207, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.t25c-cv-result__btn:hover {
	filter: brightness(1.06);
	box-shadow:
		0 6px 16px rgba(45, 107, 207, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
	color: #fff !important;
}

.t25c-cv-result__btn:active {
	transform: scale(0.98);
}

.t25c-cv-result__btn:focus-visible {
	outline: 2px solid var(--t25c-cv-blue);
	outline-offset: 3px;
}

@media (max-width: 480px) {
	.t25c-cv-result {
		flex-direction: column;
	}

	.t25c-cv-result__badge {
		flex: none;
		padding: 0.85rem 1rem;
		box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
	}

	.t25c-cv-result__badge::after {
		background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.t25c-cv-search,
	.t25c-cv-result,
	.t25c-cv-search__btn,
	.t25c-cv-result__btn {
		transition: none;
	}

	.t25c-cv-result--pulse {
		animation: none;
	}

	@media (hover: hover) and (pointer: fine) {
		.t25c-cv-result:hover {
			transform: none;
		}
	}
}

/* 深色模式 */
html.t25c-dark .t25c-verify-page {
	background: radial-gradient(ellipse 120% 80% at 50% 0%, #1e293b 0%, #0f172a 45%);
	border-bottom-color: #334155;
}

html.t25c-dark .t25c-cv-hero {
	background:
		radial-gradient(ellipse 100% 70% at 50% -30%, rgba(255, 255, 255, 0.1), transparent 55%),
		linear-gradient(168deg, #4a7fc4 0%, #3b6fb8 45%, #2d5aa0 100%);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

html.t25c-dark .t25c-cv-hero__label {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

html.t25c-dark .t25c-cv-hero__tags > span:not(.t25c-cv-hero__dot) {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.16);
}

html.t25c-dark .t25c-cv-search {
	background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
	border-color: rgba(51, 65, 85, 0.8);
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(51, 65, 85, 0.6);
}

html.t25c-dark .t25c-cv-search:focus-within {
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.45),
		0 0 0 3px rgba(96, 165, 250, 0.25),
		0 0 0 1px rgba(96, 165, 250, 0.2);
}

html.t25c-dark .t25c-cv-search__input {
	color: #f1f5f9;
}

html.t25c-dark .t25c-cv-search__input::placeholder {
	color: #64748b;
}

html.t25c-dark .t25c-cv-search__btn:focus-visible {
	outline-color: #93c5fd;
}

html.t25c-dark .t25c-cv-tip {
	background: linear-gradient(135deg, #1e293b 0%, #172033 100%);
	border-color: #334155;
	border-left-color: #60a5fa;
}

html.t25c-dark .t25c-cv-tip__icon {
	background: linear-gradient(145deg, #64748b 0%, #475569 100%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

html.t25c-dark .t25c-cv-tip__text {
	color: #94a3b8;
}

html.t25c-dark .t25c-cv-result {
	background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
	border-color: #334155;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

html.t25c-dark .t25c-cv-result__main {
	background: linear-gradient(180deg, #1e293b 0%, #172033 100%);
}

html.t25c-dark .t25c-cv-result__title {
	color: #f9fafb;
}

html.t25c-dark .t25c-cv-result__pill {
	color: #93c5fd;
	background: rgba(96, 165, 250, 0.12);
	border-color: rgba(96, 165, 250, 0.28);
}

html.t25c-dark .t25c-cv-result__sub {
	color: #94a3b8;
}

html.t25c-dark .t25c-cv-result__sub strong,
html.t25c-dark .t25c-cv-result__sub b {
	color: #cbd5e1;
}

@media (hover: hover) and (pointer: fine) {
	html.t25c-dark .t25c-cv-result:hover {
		border-color: rgba(96, 165, 250, 0.28);
		box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
	}
}

/* ========== 网站公告页（顶栏与卡片统一：#00a2ff + 左日期条横向卡片） ========== */
/* 旧版 t25c-pa 内嵌的提示条（与客服验证共用 class），公告页不再展示 */
body.t25c-page-platform-announce #t25c-pa-root .t25c-cv-tip,
body.t25c-page-platform-announce .t25c-pa .t25c-cv-tip {
	display: none !important;
}

body.t25c-page-platform-announce .t25c-verify-page {
	background-color: #f5f7f9;
}

/* 块主题 contentSize 会收窄 post-content，公告页与顶栏拉齐同宽 */
body.t25c-page-platform-announce .t25c-verify-page .entry-content,
body.t25c-page-platform-announce .t25c-verify-page .wp-block-post-content {
	max-width: none !important;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* 旧版 t25c-pa：白底区与验证页共用 .t25c-cv-body，在公告页拉满与蓝顶同宽 */
body.t25c-page-platform-announce .t25c-pa .t25c-cv-body {
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}

.t25c-wa {
	--t25c-wa-blue: #00a2ff;
	--t25c-wa-blue-deep: #0088d4;
	--t25c-wa-blue-mid: #0096ea;
	--t25c-wa-title: #111827;
	--t25c-wa-body: #64748b;
	--t25c-wa-meta: #94a3b8;
	--t25c-wa-radius: 14px;
	--t25c-wa-hero-pad-x: 1.25rem;
	--t25c-wa-date-tint-from: #f0f9ff;
	--t25c-wa-date-tint-to: #e8f4fc;
	font-family: "PingFang SC", "Microsoft YaHei", "Heiti SC", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	box-sizing: border-box;
}

.t25c-wa-hero {
	position: relative;
	overflow: hidden;
	padding: 1.75rem var(--t25c-wa-hero-pad-x) 2rem;
	text-align: center;
	color: #fff;
	border-radius: 0 0 var(--t25c-wa-radius) var(--t25c-wa-radius);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.t25c-wa-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 90% 55% at 50% -25%, rgba(255, 255, 255, 0.2), transparent 55%),
		radial-gradient(ellipse 50% 40% at 8% 100%, rgba(255, 255, 255, 0.08), transparent 50%),
		radial-gradient(ellipse 45% 35% at 92% 85%, rgba(255, 255, 255, 0.1), transparent 48%),
		linear-gradient(105deg, var(--t25c-wa-blue-mid) 0%, var(--t25c-wa-blue) 42%, #00b8e8 100%);
}

.t25c-wa-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	margin: 0;
}

.t25c-wa-hero__label {
	display: inline-block;
	margin: 0 0 0.65rem;
	padding: 0.32rem 0.95rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.98);
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.t25c-wa-hero__title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.4rem, 4.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0.06em;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.12);
}

.t25c-wa-hero__tags {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
}

.t25c-wa-hero__tags > span:not(.t25c-wa-hero__dot) {
	padding: 0.35rem 0.8rem;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.t25c-wa-hero__dot {
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	opacity: 0.88;
	vertical-align: middle;
}

/* 与顶栏同宽：不再单独收窄列表，左右边距与 hero 一致 */
.t25c-wa-body {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0.5rem var(--t25c-wa-hero-pad-x) 2.25rem;
	box-sizing: border-box;
}

.t25c-wa-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.t25c-wa-card {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 新布局：左日期条 + 右正文（与顶栏同色渐变） */
.t25c-wa-card__surface--split {
	display: flex;
	align-items: stretch;
	min-height: 4.85rem;
	position: relative; /* VIP 角标等 */
	background: #fff;
	border-radius: var(--t25c-wa-radius);
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.035),
		0 6px 20px -10px rgba(15, 23, 42, 0.08);
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
	.t25c-wa-card:hover .t25c-wa-card__surface--split {
		transform: translateY(-2px);
		border-color: rgba(0, 162, 255, 0.22);
		box-shadow:
			0 4px 10px rgba(15, 23, 42, 0.06),
			0 16px 40px -12px rgba(0, 162, 255, 0.18);
	}
}

/* 浅色调日期区：与顶栏蓝形成呼应但不抢白卡片主体 */
.t25c-wa-card__dateblock {
	flex: 0 0 4.65rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.08rem;
	padding: 0.75rem 0.4rem;
	text-align: center;
	color: var(--t25c-wa-blue);
	background: linear-gradient(180deg, var(--t25c-wa-date-tint-from) 0%, var(--t25c-wa-date-tint-to) 100%);
	border-right: 1px solid rgba(0, 162, 255, 0.14);
	position: relative;
}

.t25c-wa-card__dateblock::after {
	display: none;
}

.t25c-wa-card__day {
	display: block;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0.02em;
	color: var(--t25c-wa-blue);
}

.t25c-wa-card__year {
	font-size: 0.65rem;
	font-weight: 600;
	color: #64748b;
	letter-spacing: 0.06em;
	opacity: 0.92;
}

.t25c-wa-card__main {
	flex: 1;
	min-width: 0;
	padding: 0.85rem 1.1rem 0.9rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.35rem;
	background: #fff;
}

.t25c-wa-card__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.65rem;
}

.t25c-wa-card__surface--split .t25c-wa-card__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--t25c-wa-title);
	letter-spacing: 0.02em;
}

.t25c-wa-pill {
	flex-shrink: 0;
	display: inline-block;
	padding: 0.18rem 0.52rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 999px;
	border: 1px solid transparent;
}

.t25c-wa-pill--warn {
	color: #b45309;
	background: linear-gradient(180deg, rgba(251, 191, 36, 0.22) 0%, rgba(245, 158, 11, 0.12) 100%);
	border-color: rgba(245, 158, 11, 0.38);
}

.t25c-wa-pill--soft {
	color: #1d6fc9;
	background: linear-gradient(180deg, rgba(0, 162, 255, 0.14) 0%, rgba(0, 162, 255, 0.07) 100%);
	border-color: rgba(0, 162, 255, 0.28);
}

.t25c-wa-card__excerpt {
	margin: 0;
	font-size: 0.84375rem;
	line-height: 1.65;
	color: var(--t25c-wa-body);
}

.t25c-wa-card__excerpt a {
	color: var(--t25c-wa-blue);
	text-decoration: none;
	font-weight: 500;
}

.t25c-wa-card__excerpt a:hover {
	text-decoration: underline;
}

/* 兼容：无日期条的旧版 .t25c-wa 卡片（.t25c-wa-card__head / __content） */
.t25c-wa-card__surface:not(.t25c-wa-card__surface--split) {
	position: relative;
	display: block;
	background: #fff;
	border-radius: var(--t25c-wa-radius);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 10px 28px -12px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.t25c-wa-card__surface:not(.t25c-wa-card__surface--split)::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--t25c-wa-blue) 0%, #00c4e0 100%);
	opacity: 0.9;
}

@media (hover: hover) and (pointer: fine) {
	.t25c-wa-card:hover .t25c-wa-card__surface:not(.t25c-wa-card__surface--split) {
		transform: translateY(-2px);
		border-color: rgba(0, 162, 255, 0.22);
		box-shadow:
			0 4px 12px rgba(15, 23, 42, 0.06),
			0 18px 40px -14px rgba(0, 162, 255, 0.2);
	}
}

.t25c-wa-card__vip {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	padding: 0;
	font-size: 0.46rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0.02em;
	color: #fff;
	text-align: center;
	background: linear-gradient(150deg, #ff8a3d 0%, #ff4d6d 48%, #e62854 100%);
	border-radius: 50%;
	box-shadow:
		0 4px 14px rgba(230, 40, 84, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.t25c-wa-card__vip-icon {
	display: block;
	font-size: 0.58rem;
	line-height: 1;
	margin-bottom: 0.05rem;
	opacity: 0.95;
}

.t25c-wa-card__head {
	padding: 1.05rem 1.3rem 0.85rem 1.5rem;
	border-bottom: 1px solid #eef2f6;
}

.t25c-wa-card--vip .t25c-wa-card__head {
	padding-right: 3.1rem;
}

.t25c-wa-card__surface:not(.t25c-wa-card__surface--split) .t25c-wa-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.38;
	color: var(--t25c-wa-title);
	letter-spacing: 0.02em;
}

.t25c-wa-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.75rem;
	margin-top: 0.5rem;
}

.t25c-wa-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	padding: 0.2rem 0.6rem 0.2rem 0.48rem;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	background: linear-gradient(135deg, #00a2ff 0%, #0090e8 100%);
	border: none;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 162, 255, 0.28);
}

.t25c-wa-badge__icon {
	flex-shrink: 0;
	opacity: 0.95;
}

.t25c-wa-card__date {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--t25c-wa-meta);
}

.t25c-wa-card__content {
	padding: 0.95rem 1.3rem 1.15rem 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, #f4f7fa 100%);
}

.t25c-wa-card__content p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.78;
	color: #64748b;
}

.t25c-wa-card__content p + p {
	margin-top: 0.75rem;
}

.t25c-wa-card__content a {
	color: var(--t25c-wa-blue);
	text-decoration: none;
	font-weight: 500;
}

.t25c-wa-card__content a:hover {
	text-decoration: underline;
}

.t25c-wa-code {
	padding: 0.12em 0.4em;
	font-size: 0.84em;
	font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
	color: #475569;
	background: #e8eef4;
	border-radius: 4px;
}

/* 兼容旧 HTML：仍使用 .t25c-wa-quote 的页面 */
.t25c-wa-quote {
	position: relative;
	margin: 1.1rem 0 0;
	padding: 0.35rem 2rem 0.5rem 1.85rem;
	min-height: 2.5rem;
}

.t25c-wa-quote::before,
.t25c-wa-quote::after {
	position: absolute;
	font-family: Georgia, "Times New Roman", "Songti SC", serif;
	font-weight: 400;
	line-height: 1;
	color: #e4e8ec;
	pointer-events: none;
}

.t25c-wa-quote::before {
	content: "\201C";
	left: 0;
	top: -0.05em;
	font-size: 3rem;
}

.t25c-wa-quote::after {
	content: "\201D";
	right: 0;
	bottom: -0.15em;
	font-size: 3rem;
}

.t25c-wa-quote p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.75;
	color: var(--t25c-wa-body);
}

.t25c-wa-quote a {
	color: var(--t25c-wa-blue);
	text-decoration: none;
	font-weight: 500;
}

.t25c-wa-quote a:hover {
	text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
	.t25c-wa-card__surface--split,
	.t25c-wa-card__surface:not(.t25c-wa-card__surface--split) {
		transition: none;
	}

	@media (hover: hover) and (pointer: fine) {
		.t25c-wa-card:hover .t25c-wa-card__surface--split,
		.t25c-wa-card:hover .t25c-wa-card__surface:not(.t25c-wa-card__surface--split) {
			transform: none;
		}
	}
}

/* 深色模式 */
html.t25c-dark body.t25c-page-platform-announce .t25c-verify-page {
	background-color: #0f1419;
}

html.t25c-dark .t25c-wa-card__surface--split {
	background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
	border-color: #334155;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

html.t25c-dark .t25c-wa-card__dateblock {
	color: #38bdf8;
	background: linear-gradient(180deg, rgba(56, 189, 248, 0.14) 0%, rgba(56, 189, 248, 0.08) 100%);
	border-right-color: rgba(56, 189, 248, 0.22);
}

html.t25c-dark .t25c-wa-card__day {
	color: #38bdf8;
}

html.t25c-dark .t25c-wa-card__year {
	color: #94a3b8;
}

html.t25c-dark .t25c-wa-card__main {
	background: linear-gradient(180deg, #1e293b 0%, #172033 100%);
}

html.t25c-dark .t25c-wa-card__surface--split .t25c-wa-card__title {
	color: #f1f5f9;
}

html.t25c-dark .t25c-wa-card__excerpt {
	color: #94a3b8;
}

html.t25c-dark .t25c-wa-card__excerpt a {
	color: #38bdf8;
}

html.t25c-dark .t25c-wa-card__surface:not(.t25c-wa-card__surface--split) {
	background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
	border-color: #334155;
}

html.t25c-dark .t25c-wa-card__surface:not(.t25c-wa-card__surface--split)::before {
	background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
}

html.t25c-dark .t25c-wa-card__head {
	border-bottom-color: #334155;
}

html.t25c-dark .t25c-wa-card__surface:not(.t25c-wa-card__surface--split) .t25c-wa-card__title {
	color: #f1f5f9;
}

html.t25c-dark .t25c-wa-card__date {
	color: #94a3b8;
}

html.t25c-dark .t25c-wa-badge {
	color: #fff;
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	box-shadow: 0 2px 10px rgba(14, 165, 233, 0.25);
}

html.t25c-dark .t25c-wa-card__content {
	background: linear-gradient(180deg, #172033 0%, #1a2332 100%);
}

html.t25c-dark .t25c-wa-card__content p {
	color: #94a3b8;
}

html.t25c-dark .t25c-wa-card__content a {
	color: #38bdf8;
}

html.t25c-dark .t25c-wa-quote p {
	color: #94a3b8;
}

html.t25c-dark .t25c-wa-quote::before,
html.t25c-dark .t25c-wa-quote::after {
	color: #334155;
}

html.t25c-dark .t25c-wa-quote a {
	color: #38bdf8;
}

html.t25c-dark .t25c-wa-code {
	color: #cbd5e1;
	background: #334155;
}

html.t25c-dark .t25c-wa-hero__bg {
	background:
		radial-gradient(ellipse 90% 55% at 50% -25%, rgba(255, 255, 255, 0.08), transparent 55%),
		linear-gradient(105deg, #0369a1 0%, #0e7490 50%, #155e75 100%);
}

@media (max-width: 520px) {
	.t25c-wa-card__surface--split {
		flex-direction: column;
		min-height: 0;
	}

	.t25c-wa-card__dateblock {
		flex: none;
		flex-direction: row;
		justify-content: center;
		align-items: baseline;
		gap: 0.5rem;
		width: 100%;
		padding: 0.65rem 1rem;
	}

	.t25c-wa-card__day {
		font-size: 1.05rem;
	}

	.t25c-wa-card__main {
		padding: 0.9rem 1rem 1rem;
	}
}

@media (hover: hover) and (pointer: fine) {
	html.t25c-dark .t25c-wa-card:hover .t25c-wa-card__surface--split,
	html.t25c-dark .t25c-wa-card:hover .t25c-wa-card__surface:not(.t25c-wa-card__surface--split) {
		border-color: rgba(56, 189, 248, 0.28);
		box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
	}
}

/* ========== 旧版平台公告 HTML（.t25c-pa / .t25c-pa-item）兼容：后台仍存旧块时仍需这些规则 ========== */
.t25c-pa-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.t25c-pa-item {
	display: flex;
	align-items: stretch;
	margin: 0;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 2px 4px rgba(15, 23, 42, 0.04),
		0 8px 24px -6px rgba(15, 23, 42, 0.08);
	transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
	.t25c-pa-item:hover {
		transform: translateY(-2px);
		border-color: rgba(74, 144, 226, 0.22);
		box-shadow:
			0 4px 8px rgba(15, 23, 42, 0.05),
			0 16px 40px -12px rgba(74, 144, 226, 0.2);
	}
}

.t25c-pa-item__badge {
	flex: 0 0 5.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	padding: 1rem 0.5rem;
	text-align: center;
	color: #fff;
	background: linear-gradient(160deg, #5b9ef0 0%, var(--t25c-cv-blue) 40%, var(--t25c-cv-blue-deep) 100%);
	box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
	position: relative;
}

.t25c-pa-item__badge::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
	pointer-events: none;
}

.t25c-pa-item__date {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.t25c-pa-item__year {
	font-size: 0.6875rem;
	font-weight: 600;
	opacity: 0.88;
	letter-spacing: 0.06em;
}

.t25c-pa-item__main {
	flex: 1;
	padding: 1.15rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
	min-width: 0;
}

.t25c-pa-item__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
}

.t25c-pa-item__title {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: 0.02em;
}

.t25c-pa-item__pill {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #b45309;
	background: linear-gradient(180deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.12) 100%);
	border: 1px solid rgba(245, 158, 11, 0.35);
	border-radius: 999px;
}

.t25c-pa-item__pill--soft {
	color: #2563b8;
	background: linear-gradient(180deg, rgba(74, 144, 226, 0.16) 0%, var(--t25c-cv-blue-soft) 100%);
	border-color: rgba(74, 144, 226, 0.22);
}

.t25c-pa-item__excerpt {
	margin: 0;
	font-size: 0.84375rem;
	line-height: 1.65;
	color: #64748b;
}

@media (max-width: 520px) {
	.t25c-pa-item {
		flex-direction: column;
	}

	.t25c-pa-item__badge {
		flex: none;
		flex-direction: row;
		justify-content: center;
		gap: 0.65rem;
		padding: 0.75rem 1rem;
		box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
	}

	.t25c-pa-item__badge::after {
		background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.t25c-pa-item {
		transition: none;
	}

	@media (hover: hover) and (pointer: fine) {
		.t25c-pa-item:hover {
			transform: none;
		}
	}
}

html.t25c-dark .t25c-pa-item {
	background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
	border-color: #334155;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

html.t25c-dark .t25c-pa-item__main {
	background: linear-gradient(180deg, #1e293b 0%, #172033 100%);
}

html.t25c-dark .t25c-pa-item__title {
	color: #f9fafb;
}

html.t25c-dark .t25c-pa-item__excerpt {
	color: #94a3b8;
}

html.t25c-dark .t25c-pa-item__pill {
	color: #fcd34d;
	border-color: rgba(251, 191, 36, 0.35);
}

html.t25c-dark .t25c-pa-item__pill--soft {
	color: #93c5fd;
	background: rgba(96, 165, 250, 0.12);
	border-color: rgba(96, 165, 250, 0.28);
}

@media (hover: hover) and (pointer: fine) {
	html.t25c-dark .t25c-pa-item:hover {
		border-color: rgba(96, 165, 250, 0.28);
		box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
	}
}
