/**
 * Twenty Twenty-Five 子主题 — 双层顶栏（参考：蓝顶条 + 白底主导航 + 右侧工具/登录）
 */

:root {
	--wp--preset--color--base: #ffffff;
	--t25c-site-pad-x: clamp(1rem, 4vw, 2.25rem);
	/* 顶栏内文字/链接与屏幕左右间距（背景条仍全宽，见 .t25c-topbar / .t25c-header-main） */
	--t25c-header-content-pad-x: 1.25rem;
	--t25c-bg: #f3f4f6;
	--t25c-topbar-blue: #1a73e8;
	--t25c-topbar-blue-hover: #155fc4;
	--t25c-text: #1f2937;
	--t25c-text-soft: #4b5563;
	--t25c-primary: #1a73e8;
	--t25c-nav-active: #1a73e8;
	--t25c-cta-orange: #e4572e;
	--t25c-border: #e5e7eb;
	/* 顶栏内内容与屏幕左右边缘的间距 */
	--t25c-header-edge-inset: 8px;
}

body {
	background-color: var(--t25c-bg);
	color: var(--t25c-text);
}

.wp-site-blocks {
	min-height: 50vh;
	padding-left: var(--t25c-site-pad-x);
	padding-right: var(--t25c-site-pad-x);
	/* 避免与 html 同时成为纵向滚动容器（双滚动条） */
	overflow-x: clip;
	overflow-y: visible;
}

/* ========== 整段顶栏容器 ========== */
/* 全宽铺满：与 .wp-site-blocks 的左右 padding 对冲，不用 100vw（有垂直滚动条时 100vw 常比可视区宽，导致整页横向溢出） */
.t25c-header-shell {
	position: sticky;
	top: 0;
	z-index: 100;
	background: transparent;
	box-shadow: none;
	border: none;
	width: calc(100% + 2 * var(--t25c-site-pad-x));
	max-width: none;
	margin-left: calc(-1 * var(--t25c-site-pad-x));
	margin-right: calc(-1 * var(--t25c-site-pad-x));
	box-sizing: border-box;
	overflow-x: clip;
}

.t25c-header-shell::after {
	display: none;
}

.t25c-header-inner {
	width: 100%;
	max-width: none;
	margin: 0;
	/* 背景条需要贴边铺满；左右内容间距由 .t25c-topbar / .t25c-header-main 提供 */
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
	/* 蓝条与白条紧贴：去掉主题默认的 block-gap / 子块上下间距 */
	gap: 0 !important;
	row-gap: 0 !important;
	column-gap: 0 !important;
	--wp--style--block-gap: 0 !important;
}

/* 顶部导航：随屏幕自适应，不产生水平溢出（顶栏全宽由 .t25c-header-shell 单独处理，勿对其 max-width:100%） */
.t25c-header-inner,
.t25c-topbar,
.t25c-header-main {
	max-width: 100%;
	box-sizing: border-box;
}

.t25c-topbar,
.t25c-header-main {
	width: 100%;
}

.t25c-header-inner.is-layout-flow > * + * {
	margin-block-start: 0 !important;
}

.t25c-header-inner > .wp-block-group {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
}

.t25c-header-shell.alignfull {
	width: calc(100% + 2 * var(--t25c-site-pad-x)) !important;
	max-width: none !important;
	margin-left: calc(-1 * var(--t25c-site-pad-x)) !important;
	margin-right: calc(-1 * var(--t25c-site-pad-x)) !important;
	box-sizing: border-box;
	padding-left: 0 !important;
	padding-right: 0 !important;
	overflow-x: clip;
}

/* 顶部两条导航条永不超出视口 */
.t25c-topbar,
.t25c-header-main {
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: clip;
}

/* 兜底：防止横向溢出；纵向滚动只交给 html，避免 html/body 双纵向滚动条 */
html {
	overflow-x: hidden;
	overflow-y: auto;
}

/* ========== 首页右侧悬浮按钮组（参考截图） ========== */
.t25c-fab {
	position: fixed;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.t25c-fab__item {
	position: relative;
	display: flex;
	flex-direction: column;
}

.t25c-fab__item--support {
	isolation: isolate;
}

.t25c-fab__item--support::before {
	content: "";
	position: absolute;
	right: 100%;
	top: -10px;
	width: 28px;
	height: calc(100% + 20px);
	/* 悬停“桥接区”：避免鼠标移动到弹窗时断开 hover */
	background: transparent;
}

.t25c-fab__item--qr::before {
	content: "";
	position: absolute;
	right: 100%;
	top: -10px;
	width: 28px;
	height: calc(100% + 20px);
	background: transparent;
}

.t25c-fab-qr {
	position: absolute;
	right: calc(100% + 8px);
	top: 50%;
	transform: translateY(-50%) translateX(8px);
	width: 220px;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 10px;
	box-shadow: 0 40px 90px -60px rgba(2, 6, 23, 0.7);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	overflow: hidden;
}

.t25c-fab-qr::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 50%;
	width: 14px;
	height: 14px;
	background: #ffffff;
	border-right: 1px solid rgba(226, 232, 240, 0.9);
	border-top: 1px solid rgba(226, 232, 240, 0.9);
	transform: translateY(-50%) rotate(45deg);
}

.t25c-fab__item--qr:hover .t25c-fab-qr,
.t25c-fab__item--qr:focus-within .t25c-fab-qr {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
	pointer-events: auto;
}

.t25c-fab-qr__img {
	width: 100%;
	aspect-ratio: 1 / 1;
	background:
		linear-gradient(135deg, rgba(26, 115, 232, 0.06), rgba(99, 102, 241, 0.05)),
		radial-gradient(circle at 30% 30%, rgba(26, 115, 232, 0.12), transparent 45%);
	border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.t25c-fab-qr__title {
	padding: 0.7rem 0.85rem 0.35rem;
	text-align: center;
	font-weight: 900;
	color: rgba(15, 23, 42, 0.9);
}

.t25c-fab-qr__sub {
	padding: 0 0.85rem 0.85rem;
	text-align: center;
	font-weight: 800;
	color: rgba(100, 116, 139, 0.9);
}

.t25c-fab-pop {
	position: absolute;
	right: calc(100% + 8px);
	top: 50%;
	transform: translateY(-50%) translateX(8px);
	width: 280px;
	max-width: min(80vw, 320px);
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 14px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 40px 90px -60px rgba(2, 6, 23, 0.7);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	overflow: hidden;
}

.t25c-fab-pop::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 50%;
	width: 14px;
	height: 14px;
	background: #ffffff;
	border-right: 1px solid rgba(226, 232, 240, 0.9);
	border-top: 1px solid rgba(226, 232, 240, 0.9);
	transform: translateY(-50%) rotate(45deg);
	z-index: 2;
}

.t25c-fab__item--support:hover .t25c-fab-pop,
.t25c-fab__item--support:focus-within .t25c-fab-pop {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
	pointer-events: auto;
}

.t25c-fab-pop__top {
	padding: 1rem 1.1rem 0.75rem;
}

.t25c-fab-pop__hint {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: rgba(100, 116, 139, 0.95);
	font-weight: 800;
	font-size: 1rem;
	justify-content: center;
}

.t25c-fab-pop__hint-svg {
	width: 22px;
	height: 22px;
	display: block;
	flex: 0 0 auto;
	color: rgba(148, 163, 184, 0.95);
}

.t25c-fab-pop__actions {
	padding: 0 1.1rem 1.05rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.t25c-fab-pop__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	border-radius: 999px;
	background: #1a73e8;
	color: #ffffff !important;
	font-weight: 900;
	font-size: 1.05rem;
	text-decoration: none !important;
	letter-spacing: 0.02em;
	box-shadow:
		0 18px 38px -28px rgba(26, 115, 232, 0.8),
		0 1px 0 rgba(255, 255, 255, 0.22) inset;
	transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.t25c-fab-pop__btn:hover {
	transform: translateY(-1px);
	filter: brightness(0.98);
	box-shadow:
		0 22px 46px -34px rgba(26, 115, 232, 0.9),
		0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.t25c-fab-pop__foot {
	border-top: 1px solid rgba(226, 232, 240, 0.95);
	background: #ffffff;
	padding: 0.85rem 1.1rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	align-items: center;
	text-align: center;
}

.t25c-fab-pop__foot-title {
	color: rgba(15, 23, 42, 0.72);
	font-weight: 800;
	font-size: 0.9rem;
}

.t25c-fab-pop__verify {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(26, 115, 232, 0.95) !important;
	font-weight: 900;
	text-decoration: none !important;
}

.t25c-fab-pop__shield-svg {
	width: 20px;
	height: 20px;
	display: block;
	flex: 0 0 auto;
	color: rgba(26, 115, 232, 0.95);
}

.t25c-fab__btn {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.38);
	color: #2563eb;
	text-decoration: none;
	appearance: none;
	cursor: pointer;
	padding: 0;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.t25c-fab__btn:hover {
	transform: translateY(-1px);
	border-color: rgba(148, 163, 184, 0.75);
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 24px 58px -40px rgba(15, 23, 42, 0.5);
}

.t25c-fab__btn:active {
	transform: translateY(0);
}

.t25c-fab__btn:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.45);
	outline-offset: 3px;
}

.t25c-fab__svg {
	width: 26px;
	height: 26px;
	display: block;
}

@media (max-width: 720px) {
	.t25c-fab {
		right: 12px;
	}
	.t25c-fab__btn {
		width: 50px;
		height: 50px;
	}
	.t25c-fab__svg {
		width: 24px;
		height: 24px;
	}
}
body {
	overflow-x: hidden;
	overflow-y: visible;
}

.t25c-header-shell.alignfull.wp-block-group {
	padding-inline: 0 !important;
}

/* ========== 上层：蓝色顶条 ========== */
.t25c-topbar {
	background: var(--t25c-topbar-blue);
	color: #ffffff;
	font-size: 0.8125rem;
	line-height: 1.3;
	padding-top: 0.22rem;
	padding-bottom: 0.22rem;
	padding-left: var(--t25c-header-edge-inset);
	padding-right: var(--t25c-header-edge-inset);
	margin: 0 !important;
	gap: 0.35rem 1rem;
	overflow: visible;
	/* 与下方白底主导航之间不出现分隔线/缝隙 */
	border-bottom: none !important;
	box-shadow: none !important;
}

.t25c-topbar-left {
	min-width: 0;
}

.t25c-topbar-welcome {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #ffffff;
}

.t25c-topbar-bell-svg {
	flex-shrink: 0;
	opacity: 0.95;
}

.t25c-topbar-nav.wp-block-navigation {
	gap: 0.35rem 1rem;
	overflow: visible;
}

/* 顶栏「关于我们」：父项前团队图标 + 子菜单白底下拉（当前页以色条高亮，无勾选框） */
.t25c-topbar-nav li.wp-block-navigation-item.has-child {
	position: relative;
}

/* 悬停时抬高层级，避免相邻顶栏链接盖住下拉或抢走点击 */
.t25c-topbar-nav li.wp-block-navigation-item.has-child:hover,
.t25c-topbar-nav li.wp-block-navigation-item.has-child:focus-within {
	z-index: 160;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child > .wp-block-navigation-item__content > .wp-block-navigation-item__label {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child > .wp-block-navigation-item__content > .wp-block-navigation-item__label::before {
	content: "";
	display: inline-block;
	width: 0.95em;
	height: 0.95em;
	margin-right: 0.35em;
	flex-shrink: 0;
	background-color: currentColor;
	opacity: 0.92;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child > button.wp-block-navigation-submenu__toggle {
	color: #ffffff;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-left: 0.2rem;
	width: 1.35rem;
	height: 1.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	opacity: 0.92;
	flex: 0 0 auto;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child > button.wp-block-navigation-submenu__toggle:hover {
	opacity: 1;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-icon svg path {
	stroke: currentColor;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container {
	background: #ffffff;
	border: 1px solid var(--t25c-border);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
	min-width: 11.5rem;
	padding: 0.35rem 0;
	margin-top: 0 !important;
	z-index: 170;
	/* 向上延伸透明命中区，避免鼠标经缝隙移入时 li 失焦导致菜单收起 */
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container::before {
	content: "";
	position: absolute;
	left: -6px;
	right: -6px;
	top: -14px;
	height: 16px;
	pointer-events: auto;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item .wp-block-navigation-item__content {
	color: #1e293b !important;
	text-decoration: none !important;
	padding: 0.55rem 0.9rem !important;
	min-height: 2.5rem;
	display: flex !important;
	align-items: center;
	gap: 0;
	opacity: 1 !important;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item .wp-block-navigation-item__content:hover {
	background: rgba(26, 115, 232, 0.08);
	text-decoration: none !important;
}

.t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container a.t25c-nav-active,
.t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container a[aria-current="page"] {
	background: rgba(26, 115, 232, 0.1) !important;
	font-weight: 600;
	color: var(--t25c-topbar-blue) !important;
	box-shadow: inset 3px 0 0 var(--t25c-topbar-blue);
}

.t25c-topbar-nav .wp-block-navigation-item .wp-block-navigation-item__content {
	color: #ffffff !important;
	text-decoration: none !important;
	font-weight: 400;
	padding: 0.05rem 0;
	opacity: 0.95;
	transition: opacity 0.15s ease;
}

.t25c-topbar-nav .wp-block-navigation-item .wp-block-navigation-item__content:hover {
	opacity: 1;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

/* ========== 下层：白底主导航 ========== */
.t25c-header-main {
	background: #ffffff;
	border-bottom: 1px solid var(--t25c-border);
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: var(--t25c-header-edge-inset);
	padding-right: var(--t25c-header-edge-inset);
	margin: 0 !important;
	gap: 0.65rem 1rem;
	box-shadow: none;
	align-items: center;
	/* 与蓝条之间无缝：无上边线（去掉导航栏上方横线） */
	border-top: none !important;
	outline: none;
}

.t25c-header-inner > .wp-block-group.t25c-header-main {
	border-top: none !important;
}

/* 品牌：仅 Logo（站点标题已在模板中移除；旧模板若仍含标题则强制隐藏） */
.t25c-brand {
	gap: 0.5rem 0.65rem;
	flex-shrink: 0;
}

.t25c-brand .wp-block-site-title.t25c-brand-title {
	display: none !important;
}

/* Logo 放大：覆盖区块与父主题可能写入的较小尺寸 */
.wp-block-site-logo.t25c-site-logo .custom-logo-link,
.wp-block-site-logo.t25c-site-logo .custom-logo-link img,
.wp-block-site-logo.t25c-site-logo img {
	display: block;
}

.wp-block-site-logo.t25c-site-logo img.custom-logo,
.wp-block-site-logo.t25c-site-logo .custom-logo,
.wp-block-site-logo.t25c-site-logo .custom-logo-link img {
	width: auto !important;
	height: auto !important;
	max-width: min(320px, 48vw) !important;
	max-height: 88px !important;
	min-width: 0;
	object-fit: contain;
}

/* 导航 Logo：周期性流光扫过（高光斜条） */
.t25c-brand .wp-block-site-logo.t25c-site-logo {
	position: relative;
	display: inline-block;
	overflow: hidden;
	line-height: 0;
	border-radius: 8px;
	isolation: isolate;
}

.t25c-brand .wp-block-site-logo.t25c-site-logo::after {
	content: "";
	position: absolute;
	top: -25%;
	left: -60%;
	width: 55%;
	height: 150%;
	background: linear-gradient(
		105deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.08) 35%,
		rgba(255, 255, 255, 0.75) 50%,
		rgba(255, 255, 255, 0.08) 65%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-20deg) translateX(-180%);
	animation: t25c-logo-shine 12s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes t25c-logo-shine {
	0%,
	72%,
	100% {
		transform: skewX(-20deg) translateX(-180%);
		opacity: 0;
	}

	74% {
		opacity: 1;
	}

	91% {
		transform: skewX(-20deg) translateX(320%);
		opacity: 1;
	}

	94%,
	100% {
		transform: skewX(-20deg) translateX(320%);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.t25c-brand .wp-block-site-logo.t25c-site-logo::after {
		animation: none;
	}
}

.t25c-site-logo-fallback-link {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--t25c-text);
	text-decoration: none;
}

.t25c-site-logo-fallback-link:hover {
	color: var(--t25c-primary);
}

.t25c-brand-title.wp-block-site-title a[rel="home"],
.t25c-brand-title.wp-block-site-title {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
}

.t25c-brand-title.wp-block-site-title a[rel="home"] {
	color: var(--t25c-text) !important;
	text-decoration: none !important;
}

.t25c-brand-title.wp-block-site-title a[rel="home"]:hover {
	color: var(--t25c-primary) !important;
}

/* 主导航：灰字 + 当前页/悬停下划线（参考图首页样式） */
.t25c-header-nav-wrap {
	flex: 1 1 auto;
	min-width: 0;
	justify-content: flex-start;
}

.t25c-main-nav.wp-block-navigation {
	gap: 0.15rem 0.25rem;
	align-items: center;
}

/* 去掉父主题 Twenty Twenty-Five 对 .wp-site-blocks :focus 的描边 + 导航 outline-offset */
.t25c-header-shell .t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content,
.t25c-header-shell .t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content:hover,
.t25c-header-shell .t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content:focus,
.t25c-header-shell .t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content:focus-visible,
.t25c-header-shell .t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content:active {
	outline: none !important;
	outline-width: 0 !important;
	outline-style: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
}

.t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content {
	position: relative;
	padding: 0.5rem 0.65rem 0.6rem;
	border-radius: 0;
	border: none !important;
	box-shadow: none !important;
	font-weight: 500;
	font-size: 1.125rem;
	color: var(--t25c-text-soft) !important;
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content:hover {
	color: var(--t25c-text) !important;
}

.t25c-main-nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.t25c-main-nav a.wp-block-navigation-item__content[aria-current="page"],
.t25c-main-nav a.wp-block-navigation-item__content.t25c-nav-active,
.t25c-main-nav a.wp-block-home-link__content.t25c-nav-active {
	color: var(--t25c-text) !important;
	font-weight: 600;
	border: none !important;
	box-shadow: none !important;
}

/* 选中项：短胶囊形蓝色渐变下划线 + 底部柔光（与参考图一致；含 JS 路径匹配 .t25c-nav-active） */
.t25c-main-nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
.t25c-main-nav a.wp-block-navigation-item__content[aria-current="page"]::after,
.t25c-main-nav a.wp-block-navigation-item__content.t25c-nav-active::after,
.t25c-main-nav a.wp-block-home-link__content.t25c-nav-active::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0.38rem;
	transform: translateX(-50%);
	width: 56%;
	max-width: 3.25rem;
	min-width: 1.5rem;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #7eb6ff 0%, #3b8cff 35%, var(--t25c-topbar-blue) 70%, #155fc4 100%);
	box-shadow:
		0 2px 12px rgba(26, 115, 232, 0.55),
		0 3px 20px rgba(59, 140, 255, 0.35),
		0 1px 2px rgba(26, 115, 232, 0.4);
	pointer-events: none;
	z-index: 0;
}

/* 「服务市场」选中时：橙色渐变下划线（与橙色字一致） */
.t25c-main-nav .wp-block-navigation__container > li:nth-child(5).current-menu-item .wp-block-navigation-item__content::after,
.t25c-main-nav > ul > li.wp-block-navigation-item:nth-child(5).current-menu-item .wp-block-navigation-item__content::after,
.t25c-main-nav .wp-block-navigation-item:nth-child(5) a.wp-block-navigation-item__content[aria-current="page"]::after,
.t25c-main-nav .wp-block-navigation__container > li:nth-child(5) a.wp-block-navigation-item__content.t25c-nav-active::after,
.t25c-main-nav > ul > li.wp-block-navigation-item:nth-child(5) a.wp-block-navigation-item__content.t25c-nav-active::after,
.t25c-main-nav .wp-block-navigation-item:nth-child(5) a.wp-block-navigation-item__content.t25c-nav-active::after {
	background: linear-gradient(90deg, #fdba74 0%, #fb923c 40%, #ea580c 100%);
	box-shadow:
		0 2px 12px rgba(234, 88, 12, 0.45),
		0 3px 18px rgba(251, 146, 60, 0.35),
		0 1px 2px rgba(234, 88, 12, 0.35);
}

.t25c-main-nav .wp-block-navigation-item.current-menu-item,
.t25c-main-nav .wp-block-navigation-item:has(.wp-block-navigation-item__content[aria-current="page"]) {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}

/* 「服务市场」强调色 — 第 5 个主导航项 */
.t25c-main-nav .wp-block-navigation__container > li:nth-child(5) .wp-block-navigation-item__content,
.t25c-main-nav > ul > li.wp-block-navigation-item:nth-child(5) .wp-block-navigation-item__content,
.t25c-main-nav .wp-block-navigation-item:nth-child(5) .wp-block-navigation-item__content {
	color: var(--t25c-cta-orange) !important;
}

/* 导航徽章：区块 class t25c-nav-badge + 描述字段为文案（见 functions.php） */
.t25c-main-nav li.t25c-nav-badge .wp-block-navigation-item__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	row-gap: 0.2rem;
	min-height: 2.5rem;
	padding-top: 0.35rem;
	padding-bottom: 0.65rem;
}

.t25c-main-nav li.t25c-nav-badge .wp-block-navigation-item__label {
	order: 2;
	line-height: 1.25;
}

.t25c-main-nav li.t25c-nav-badge .wp-block-navigation-item__description {
	order: 1;
	display: inline-block;
	margin: 0;
	padding: 0.14rem 0.55rem;
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #ffffff !important;
	text-decoration: none !important;
	border-radius: 999px;
	background: linear-gradient(90deg, #ff4b6b 0%, #f43f8c 45%, #e51d8f 100%);
	box-shadow: 0 2px 8px rgba(229, 29, 143, 0.35);
	white-space: nowrap;
}

.t25c-main-nav li.t25c-nav-badge .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
.t25c-main-nav li.t25c-nav-badge a.wp-block-navigation-item__content[aria-current="page"]::after,
.t25c-main-nav li.t25c-nav-badge a.wp-block-navigation-item__content.t25c-nav-active::after {
	bottom: 0.22rem;
}

/* 蓝条顶栏：同款徽章（略小） */
.t25c-topbar-nav li.t25c-nav-badge .wp-block-navigation-item__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 0.12rem;
	padding-top: 0.15rem;
	padding-bottom: 0.08rem;
}

.t25c-topbar-nav li.t25c-nav-badge .wp-block-navigation-item__label {
	order: 2;
}

.t25c-topbar-nav li.t25c-nav-badge .wp-block-navigation-item__description {
	order: 1;
	margin: 0;
	padding: 0.1rem 0.4rem;
	font-size: 0.6rem;
	font-weight: 700;
	line-height: 1.15;
	color: #fff !important;
	border-radius: 999px;
	background: linear-gradient(90deg, #ff4b6b 0%, #e51d8f 100%);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
	white-space: nowrap;
}

/* ========== 右侧：搜索 + 图标 + 登录 ========== */
.t25c-header-utilities {
	flex-shrink: 0;
	gap: 0.35rem 0.5rem;
	align-items: center;
}

.t25c-header-actions {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
}

.t25c-header-util-divider {
	width: 1px;
	height: 1rem;
	background: var(--t25c-border);
	margin: 0 0.15rem;
}

.t25c-header-util-divider--thick {
	height: 1.25rem;
	background: #d1d5db;
}

.t25c-header-icon-btn {
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	background: transparent center / 1.15rem 1.15rem no-repeat;
	cursor: pointer;
	opacity: 0.85;
	border-radius: 8px;
	transition: opacity 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.t25c-header-icon-btn:hover {
	opacity: 1;
	background-color: #f3f4f6;
}

.t25c-header-icon-btn:focus-visible {
	outline: 2px solid var(--t25c-primary);
	outline-offset: 2px;
}

/* 浅色：月亮（进入深色）；深色：太阳（回到浅色）— 线框图标易辨认 */
.t25c-theme-toggle {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z'/%3E%3C/svg%3E");
}

html.t25c-dark .t25c-theme-toggle {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fcd34d' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E");
}

.t25c-announce-toggle {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234b5563'%3E%3Cpath d='M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z'/%3E%3C/svg%3E");
}

.t25c-announce-toggle[aria-expanded="true"] {
	background-color: #eff6ff;
	opacity: 1;
}

/* 搜索：默认仅顶栏图标；点击后弹窗（遮罩 + 居中卡片，见 .t25c-search-modal-root） */
.t25c-search-modal-root {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

/* 表单 position:fixed 后占位，避免顶栏工具区瞬间塌缩 */
.t25c-search-modal-root.is-open {
	width: 2.75rem;
	min-width: 2.75rem;
	flex: 0 0 2.75rem;
	min-height: 2.5rem;
}

/* 弹窗未打开时隐藏 JS 注入的标题区元素，避免出现在顶栏 */
.t25c-search-modal-root:not(.is-open) .t25c-search-modal-hint,
.t25c-search-modal-root:not(.is-open) .t25c-search-modal-close {
	display: none !important;
}

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

@keyframes t25c-search-backdrop-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes t25c-search-panel-in {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.94) translateY(16px);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateY(0);
	}
}

.t25c-search-modal-backdrop:not([hidden]) {
	display: block;
	position: fixed;
	inset: 0;
	z-index: 228;
	margin: 0;
	padding: 0;
	border: 0;
	background: radial-gradient(ellipse 120% 80% at 50% 40%, rgba(26, 115, 232, 0.12), transparent 55%),
		rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(8px) saturate(1.05);
	-webkit-backdrop-filter: blur(8px) saturate(1.05);
	cursor: pointer;
	animation: t25c-search-backdrop-in 0.24s ease-out forwards;
}

.t25c-search-modal-root.is-open form.t25c-header-search.wp-block-search {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 229;
	width: min(92vw, 420px);
	max-width: 420px;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06) inset,
		0 4px 6px -1px rgba(15, 23, 42, 0.06),
		0 28px 65px -15px rgba(15, 23, 42, 0.35);
	animation: t25c-search-panel-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.t25c-search-modal-root.is-open form.t25c-header-search.wp-block-search::before {
	content: "";
	display: block;
	height: 4px;
	flex-shrink: 0;
	background: linear-gradient(90deg, var(--t25c-topbar-blue) 0%, #38bdf8 45%, #818cf8 100%);
}

.t25c-search-modal-root.is-open .wp-block-search__label.screen-reader-text {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
	white-space: normal !important;
	border: 0 !important;
	display: block;
	padding: 1.15rem 3.25rem 0.35rem 1.35rem !important;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.25;
	color: #0f172a;
}

.t25c-search-modal-hint {
	margin: 0 1.35rem 0.85rem;
	padding: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #64748b;
}

.t25c-search-modal-close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(241, 245, 249, 0.95);
	color: #64748b;
	font-size: 1.35rem;
	line-height: 1;
	font-weight: 400;
	cursor: pointer;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.t25c-search-modal-close:hover {
	background: #e2e8f0;
	color: #0f172a;
	transform: scale(1.06);
}

.t25c-search-modal-close:active {
	transform: scale(0.96);
}

.t25c-search-modal-close:focus-visible {
	outline: 2px solid var(--t25c-topbar-blue);
	outline-offset: 2px;
}

.t25c-search-modal-root.is-open .wp-block-search.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper {
	min-width: 0 !important;
	max-width: none !important;
	width: auto;
	margin: 0 1.2rem 1.2rem;
	padding: 0.35rem 0.45rem 0.35rem 0.65rem !important;
	background: #f1f5f9;
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 999px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) inset;
	gap: 0.35rem;
	align-items: center;
}

.t25c-search-modal-root.is-open .wp-block-search__input {
	border: none !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	outline: none !important;
	background: transparent !important;
	padding: 0.5rem 0.5rem 0.5rem 0.35rem !important;
	font-size: 0.9375rem !important;
	color: #0f172a !important;
}

.t25c-search-modal-root.is-open .wp-block-search__input::placeholder {
	color: #94a3b8;
}

.t25c-search-modal-root.is-open .wp-block-search__input:focus {
	box-shadow: none !important;
}

.t25c-search-modal-root.is-open .wp-block-search__inside-wrapper:focus-within {
	border-color: var(--t25c-topbar-blue);
	box-shadow:
		0 0 0 3px rgba(26, 115, 232, 0.15),
		0 1px 2px rgba(15, 23, 42, 0.04) inset;
	background: #fff;
}

.t25c-search-modal-root.is-open .wp-block-search:not(.wp-block-search__searchfield-hidden) .wp-block-search__button {
	flex-shrink: 0;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0 !important;
	border-radius: 999px !important;
	background: linear-gradient(165deg, #1a7cff 0%, var(--t25c-topbar-blue) 45%, #155fc4 100%) !important;
	border: none !important;
	color: #fff !important;
	box-shadow: 0 2px 8px rgba(26, 115, 232, 0.4);
	transition:
		filter 0.15s ease,
		box-shadow 0.15s ease,
		transform 0.15s ease;
}

.t25c-search-modal-root.is-open .wp-block-search:not(.wp-block-search__searchfield-hidden) .wp-block-search__button:hover {
	filter: brightness(1.06);
	box-shadow: 0 4px 14px rgba(26, 115, 232, 0.45);
	transform: translateY(-1px);
}

body.t25c-search-modal-open {
	overflow: hidden;
}

.t25c-header-search.wp-block-search {
	margin: 0;
	flex-shrink: 0;
}

.t25c-header-search .wp-block-search__inside-wrapper {
	min-height: 0;
	border: none;
	align-items: center;
}

.t25c-header-search .wp-block-search__button {
	background: transparent !important;
	border: 1px solid transparent !important;
	color: var(--t25c-text-soft) !important;
	padding: 0.35rem !important;
	border-radius: 8px !important;
}

.t25c-header-search .wp-block-search__button:hover {
	background: #f3f4f6 !important;
	color: var(--t25c-text) !important;
}

.t25c-header-search.wp-block-search__searchfield-hidden .wp-block-search__input {
	min-width: 0;
}

/* 展开后：搜索框 + 提交按钮成组 */
.t25c-header-search.wp-block-search.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper {
	min-width: 11.5rem;
	max-width: 18rem;
	padding: 0.2rem 0.35rem;
	background: #ffffff;
	border: 1px solid var(--t25c-border);
	border-radius: 10px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	gap: 0.25rem;
}

.t25c-header-search:not(.wp-block-search__searchfield-hidden) .wp-block-search__input {
	border: none !important;
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0.35rem 0.5rem !important;
	min-width: 0 !important;
	flex: 1 1 auto;
	font-size: 0.875rem;
}

.t25c-header-search:not(.wp-block-search__searchfield-hidden) .wp-block-search__button {
	margin-left: 0 !important;
	border-radius: 8px !important;
	background: var(--t25c-topbar-blue) !important;
	border-color: var(--t25c-topbar-blue) !important;
	color: #fff !important;
}

.t25c-header-search:not(.wp-block-search__searchfield-hidden) .wp-block-search__button:hover {
	filter: brightness(1.05);
}

/* 登录按钮 */
.t25c-header-loginout.wp-block-loginout a {
	display: inline-block;
	padding: 0.4rem 1.15rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #ffffff !important;
	background: var(--t25c-topbar-blue) !important;
	border-radius: 6px;
	text-decoration: none !important;
	box-shadow: 0 2px 6px rgba(26, 115, 232, 0.35);
	transition: background 0.15s ease, box-shadow 0.15s ease;
}

.t25c-header-loginout.wp-block-loginout a:hover {
	background: var(--t25c-topbar-blue-hover) !important;
	box-shadow: 0 3px 10px rgba(26, 115, 232, 0.4);
}

/* ========== 主导航移动端抽屉 ========== */
.t25c-main-nav .wp-block-navigation__responsive-container-open {
	border: 1px solid var(--t25c-border);
	border-radius: 6px;
	background: #fff;
	color: var(--t25c-text);
}

/* 桌面端：导航块内的 responsive 容器不应有顶线/灰底，否则会在主导航文字上方出现一条灰横线 */
@media (min-width: 782px) {
	.t25c-header-shell .t25c-main-nav .wp-block-navigation__responsive-container {
		border: none !important;
		border-top: none !important;
		background: transparent !important;
		box-shadow: none !important;
	}
}

@media (max-width: 781px) {
	.t25c-main-nav .wp-block-navigation__responsive-container {
		border-top: 1px solid var(--t25c-border);
		background: #fafafa;
	}
}

/* 后台管理条 */
body.admin-bar .t25c-header-shell {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .t25c-header-shell {
		top: 46px;
	}
}

@media (max-width: 781px) {
	.t25c-header-main {
		flex-direction: column;
		align-items: stretch;
	}

	.t25c-header-nav-wrap {
		order: 3;
		width: 100%;
	}

	.t25c-header-utilities {
		order: 2;
		width: 100%;
		justify-content: flex-end;
		flex-wrap: wrap;
	}

	.t25c-brand {
		order: 1;
		width: 100%;
		justify-content: flex-start;
		align-items: center;
	}

	/* 弹窗打开时表单已 fixed，勿再施加顶栏流式 flex，避免内层错位 */
	.t25c-search-modal-root:not(.is-open) .t25c-header-search.wp-block-search.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper {
		max-width: 100%;
		flex: 1 1 12rem;
	}
}

/* ========== 公告弹层 ========== */
@keyframes t25c-announce-overlay-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes t25c-announce-panel-in {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.94) translateY(8px);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateY(0);
	}
}

.t25c-announce-overlay[hidden],
.t25c-announce-panel[hidden] {
	display: none !important;
}

.t25c-announce-overlay {
	position: fixed;
	inset: 0;
	z-index: 220;
	background: rgba(15, 23, 42, 0.56);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.t25c-announce-overlay:not([hidden]) {
	animation: t25c-announce-overlay-in 0.22s ease-out forwards;
}

.t25c-announce-panel {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 221;
	width: min(92vw, 620px);
	max-height: min(86vh, 720px);
	display: flex;
	flex-direction: column;
	background: #ffffff;
	color: var(--t25c-text);
	border-radius: 20px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.92) inset,
		0 40px 90px -60px rgba(2, 6, 23, 0.75);
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.95);
}

.t25c-announce-panel:not([hidden]) {
	animation: t25c-announce-panel-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.t25c-announce-panel::before {
	content: "";
	display: block;
	height: 0;
	flex-shrink: 0;
	background: transparent;
}

.t25c-announce-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.05rem 1.15rem 1.05rem 1.25rem;
	border-bottom: 0;
	background:
		radial-gradient(ellipse 90% 140% at 15% 0%, rgba(255, 255, 255, 0.22), transparent 55%),
		linear-gradient(110deg, #2f6cff 0%, #2a62f0 32%, #2456d9 70%, #1f4fc9 100%);
}

.t25c-announce-panel__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
}

.t25c-announce-panel__title::after {
	content: "";
	display: none;
}

.t25c-announce-panel__title::before {
	content: "";
	display: none;
}

.t25c-announce-head__left {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.t25c-announce-head__logo {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow:
		0 10px 22px rgba(15, 23, 42, 0.18),
		0 1px 0 rgba(255, 255, 255, 0.85) inset;
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.t25c-announce-head__logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
	display: block;
}

.t25c-announce-head__logo.is-fallback::before {
	content: "";
	position: absolute;
	inset: 12px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 17h5l-1.4-1.4A2 2 0 0 1 18 14.2V11a6 6 0 1 0-12 0v3.2c0 .5-.2 1-.6 1.4L4 17h5'/%3E%3Cpath%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10 21a2 2 0 0 0 4 0'/%3E%3Cpath%3E%3C/svg%3E") center / contain no-repeat;
	opacity: 0.95;
}

.t25c-announce-head__kicker {
	font-size: 0.86rem;
	font-weight: 700;
	opacity: 0.92;
	letter-spacing: 0.02em;
}
.t25c-announce-head__main {
	font-size: 1.34rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.t25c-announce-close {
	flex-shrink: 0;
	width: 2.375rem;
	height: 2.375rem;
	border: none;
	background: rgba(255, 255, 255, 0.18);
	font-size: 1.35rem;
	line-height: 1;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	border-radius: 999px;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.t25c-announce-close:hover {
	background: rgba(255, 255, 255, 0.26);
	color: #ffffff;
	transform: scale(1.05);
}

.t25c-announce-close:active {
	transform: scale(0.97);
}

.t25c-announce-panel__body {
	padding: 1.05rem 1.15rem 1.1rem;
	overflow-y: auto;
	font-size: 0.95rem;
	line-height: 1.75;
	color: rgba(51, 65, 85, 0.92);
	background: #eef3ff;
}

.t25c-announce-panel__body p {
	margin: 0 0 0.75em;
}

.t25c-announce-panel__body p:last-child {
	margin-bottom: 0;
}

body.t25c-announce-open {
	overflow: hidden;
}

.t25c-announce-panel__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
	padding: 0.95rem 1.25rem 1.1rem;
	border-top: 1px solid rgba(226, 232, 240, 0.75);
	background: #eef3ff;
}

.t25c-announce-ack {
	flex-shrink: 0;
	border: 0;
	cursor: pointer;
	padding: 0.7rem 1.15rem;
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	box-shadow: 0 10px 22px rgba(220, 38, 38, 0.22);
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.t25c-announce-ack:hover {
	filter: brightness(1.02);
	box-shadow: 0 14px 28px rgba(220, 38, 38, 0.28);
	transform: translateY(-1px);
}
.t25c-announce-ack:active {
	transform: translateY(0);
	box-shadow: 0 10px 22px rgba(220, 38, 38, 0.2);
}
.t25c-announce-ack:focus-visible {
	outline: 2px solid rgba(26, 115, 232, 0.55);
	outline-offset: 2px;
}

.t25c-announce-snooze {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	min-width: 0;
	user-select: none;
	cursor: pointer;
	color: rgba(71, 85, 105, 0.95);
	font-weight: 600;
}
.t25c-announce-snooze__input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.t25c-announce-snooze__track {
	position: relative;
	width: 46px;
	height: 26px;
	border-radius: 999px;
	background: rgba(203, 213, 225, 0.9);
	box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.45);
	transition: background 0.16s ease, box-shadow 0.16s ease;
	flex-shrink: 0;
}
.t25c-announce-snooze__thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 6px 14px rgba(2, 6, 23, 0.16);
	transition: transform 0.16s ease;
}
.t25c-announce-snooze__input:checked + .t25c-announce-snooze__track {
	background: rgba(26, 115, 232, 0.92);
	box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.25);
}
.t25c-announce-snooze__input:checked + .t25c-announce-snooze__track .t25c-announce-snooze__thumb {
	transform: translateX(20px);
}
.t25c-announce-snooze__input:focus-visible + .t25c-announce-snooze__track {
	outline: 2px solid rgba(26, 115, 232, 0.55);
	outline-offset: 2px;
}

@media (max-width: 420px) {
	.t25c-announce-panel__foot {
		padding-inline: 1rem;
	}
	.t25c-announce-ack {
		padding-inline: 1rem;
	}
}

.t25c-announce-panel__body::-webkit-scrollbar {
	width: 10px;
}
.t25c-announce-panel__body::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.55);
	border-radius: 999px;
	border: 3px solid rgba(255, 255, 255, 0.9);
}
.t25c-announce-panel__body::-webkit-scrollbar-track {
	background: transparent;
}

/* 公告条目：简约商务分段 */
.t25c-pa-item + .t25c-pa-item {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.t25c-pa-item__title {
	margin: 0 0 0.6rem;
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: rgba(15, 23, 42, 0.92);
}

.t25c-pa-item__content {
	color: rgba(51, 65, 85, 0.92);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(148, 163, 184, 0.4);
	border-radius: 14px;
	padding: 0.95rem 0.95rem;
	box-shadow: 0 14px 32px -26px rgba(15, 23, 42, 0.35);
}

/* 公告正文排版修复：段落/列表/标题/表格统一间距，避免“挤在一起/缩进错乱” */
.t25c-pa-item__content {
	font-size: 0.95rem;
	line-height: 1.8;
}
.t25c-pa-item__content > *:first-child {
	margin-top: 0;
}
.t25c-pa-item__content > *:last-child {
	margin-bottom: 0;
}
.t25c-pa-item__content p {
	margin: 0 0 0.85em;
}
.t25c-pa-item__content h1,
.t25c-pa-item__content h2,
.t25c-pa-item__content h3,
.t25c-pa-item__content h4 {
	margin: 1.05em 0 0.55em;
	color: rgba(15, 23, 42, 0.92);
	letter-spacing: -0.01em;
}
.t25c-pa-item__content ul,
.t25c-pa-item__content ol {
	margin: 0.65em 0 0.85em;
	padding-left: 1.25em;
}
.t25c-pa-item__content li {
	margin: 0.25em 0;
}
.t25c-pa-item__content blockquote {
	margin: 0.85em 0;
	padding: 0.65em 0.8em;
	border-left: 3px solid rgba(47, 108, 255, 0.55);
	background: rgba(15, 23, 42, 0.03);
	border-radius: 10px;
}
.t25c-pa-item__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 0.85em 0;
	font-size: 0.93em;
}
.t25c-pa-item__content th,
.t25c-pa-item__content td {
	border: 1px solid rgba(148, 163, 184, 0.35);
	padding: 0.55em 0.6em;
	vertical-align: top;
}
.t25c-pa-item__content hr {
	border: 0;
	border-top: 1px solid rgba(148, 163, 184, 0.3);
	margin: 1em 0;
}
.t25c-pa-item__content a {
	color: #2456d9;
	text-decoration: none;
}
.t25c-pa-item__content a:hover {
	text-decoration: underline;
}

.t25c-pa-item__content p {
	margin: 0 0 0.7rem;
}

.t25c-pa-item__content p:last-child {
	margin-bottom: 0;
}

/* 预留：如遇样式被覆盖，可在此处追加更高优先级覆盖 */

/* ========== 深色模式（html.t25c-dark） ========== */
html.t25c-dark body {
	background-color: #0f172a;
	color: #e2e8f0;
}

html.t25c-dark .t25c-header-main {
	background: #1e293b;
	border-bottom-color: #334155;
}

html.t25c-dark .t25c-brand-title.wp-block-site-title a[rel="home"] {
	color: #f1f5f9 !important;
}

html.t25c-dark .t25c-site-logo-fallback-link {
	color: #f1f5f9;
}

html.t25c-dark .t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container {
	background: #1e293b;
	border-color: #334155;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

html.t25c-dark .t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item .wp-block-navigation-item__content {
	color: #e2e8f0 !important;
}

html.t25c-dark .t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item .wp-block-navigation-item__content:hover {
	background: rgba(59, 130, 246, 0.15);
}

html.t25c-dark .t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container a.t25c-nav-active,
html.t25c-dark .t25c-topbar-nav li.wp-block-navigation-item.has-child .wp-block-navigation__submenu-container a[aria-current="page"] {
	background: rgba(59, 130, 246, 0.18) !important;
	color: #93c5fd !important;
	box-shadow: inset 3px 0 0 #60a5fa;
}

html.t25c-dark .t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content {
	color: #94a3b8 !important;
}

html.t25c-dark .t25c-main-nav .wp-block-navigation-item .wp-block-navigation-item__content:hover,
html.t25c-dark .t25c-main-nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
html.t25c-dark .t25c-main-nav a.wp-block-navigation-item__content[aria-current="page"],
html.t25c-dark .t25c-main-nav a.wp-block-navigation-item__content.t25c-nav-active,
html.t25c-dark .t25c-main-nav a.wp-block-home-link__content.t25c-nav-active {
	color: #f1f5f9 !important;
}

html.t25c-dark .t25c-main-nav .wp-block-navigation__container > li:nth-child(5) .wp-block-navigation-item__content,
html.t25c-dark .t25c-main-nav .wp-block-navigation-item:nth-child(5) .wp-block-navigation-item__content {
	color: #fb923c !important;
}

html.t25c-dark .t25c-header-icon-btn:hover {
	background-color: #334155;
}

html.t25c-dark .t25c-header-search .wp-block-search__button:hover {
	background: #334155 !important;
	color: #e2e8f0 !important;
}

html.t25c-dark .t25c-header-search.wp-block-search.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper {
	background: #0f172a;
	border-color: #475569;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

html.t25c-dark .t25c-header-search:not(.wp-block-search__searchfield-hidden) .wp-block-search__input {
	color: #f1f5f9 !important;
	background: transparent !important;
}

html.t25c-dark .t25c-search-modal-backdrop:not([hidden]) {
	background: radial-gradient(ellipse 120% 80% at 50% 35%, rgba(59, 130, 246, 0.14), transparent 50%),
		rgba(0, 0, 0, 0.68);
}

html.t25c-dark .t25c-search-modal-root.is-open form.t25c-header-search.wp-block-search {
	background: #1e293b;
	border-color: rgba(71, 85, 105, 0.85);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 28px 65px -15px rgba(0, 0, 0, 0.55);
}

html.t25c-dark .t25c-search-modal-root.is-open .wp-block-search__label.screen-reader-text {
	color: #f1f5f9 !important;
}

html.t25c-dark .t25c-search-modal-hint {
	color: #94a3b8;
}

html.t25c-dark .t25c-search-modal-close {
	background: rgba(51, 65, 85, 0.75);
	color: #cbd5e1;
}

html.t25c-dark .t25c-search-modal-close:hover {
	background: #475569;
	color: #f8fafc;
}

html.t25c-dark .t25c-search-modal-root.is-open .wp-block-search.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper {
	background: #0f172a;
	border-color: #475569;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) inset;
}

html.t25c-dark .t25c-search-modal-root.is-open .wp-block-search__inside-wrapper:focus-within {
	border-color: #60a5fa;
	box-shadow:
		0 0 0 3px rgba(96, 165, 250, 0.2),
		0 1px 2px rgba(0, 0, 0, 0.25) inset;
	background: #1e293b;
}

html.t25c-dark .t25c-search-modal-root.is-open .wp-block-search__input {
	color: #f1f5f9 !important;
}

html.t25c-dark .t25c-search-modal-root.is-open .wp-block-search__input::placeholder {
	color: #64748b;
}

html.t25c-dark .t25c-header-loginout.wp-block-loginout a {
	box-shadow: 0 2px 10px rgba(26, 115, 232, 0.45);
}

html.t25c-dark .t25c-main-nav .wp-block-navigation__responsive-container-open {
	background: #1e293b;
	border-color: #475569;
	color: #e2e8f0;
}

@media (max-width: 781px) {
	html.t25c-dark .t25c-main-nav .wp-block-navigation__responsive-container {
		background: #0f172a;
		border-top-color: #334155;
	}
}

@media (min-width: 782px) {
	html.t25c-dark .t25c-header-shell .t25c-main-nav .wp-block-navigation__responsive-container {
		background: transparent !important;
		border: none !important;
	}
}

html.t25c-dark .t25c-announce-panel {
	background: #1e293b;
	color: #e2e8f0;
	border-color: rgba(51, 65, 85, 0.85);
	box-shadow:
		0 0 0 1px rgba(15, 23, 42, 0.5),
		0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

html.t25c-dark .t25c-announce-panel__head {
	background:
		radial-gradient(ellipse 90% 140% at 15% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
		linear-gradient(110deg, #2f6cff 0%, #2a62f0 32%, #2456d9 70%, #1f4fc9 100%);
	border-bottom-color: transparent;
}

html.t25c-dark .t25c-announce-panel__title {
	color: #f1f5f9;
}

html.t25c-dark .t25c-announce-panel__title::after,
html.t25c-dark .t25c-announce-panel__title::before {
	display: none;
}

html.t25c-dark .t25c-announce-panel__body {
	color: #cbd5e1;
	background: #0b1224;
}

html.t25c-dark .t25c-pa-item__content {
	background: rgba(15, 23, 42, 0.35);
	border-color: rgba(51, 65, 85, 0.85);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

html.t25c-dark .t25c-pa-item__content h1,
html.t25c-dark .t25c-pa-item__content h2,
html.t25c-dark .t25c-pa-item__content h3,
html.t25c-dark .t25c-pa-item__content h4 {
	color: rgba(241, 245, 249, 0.95);
}
html.t25c-dark .t25c-pa-item__content blockquote {
	background: rgba(255, 255, 255, 0.04);
	border-left-color: rgba(96, 165, 250, 0.65);
}
html.t25c-dark .t25c-pa-item__content th,
html.t25c-dark .t25c-pa-item__content td {
	border-color: rgba(51, 65, 85, 0.85);
}
html.t25c-dark .t25c-pa-item__content a {
	color: #93c5fd;
}

html.t25c-dark .t25c-announce-close {
	background: rgba(51, 65, 85, 0.65);
	color: #94a3b8;
}

html.t25c-dark .t25c-announce-close:hover {
	background: #334155;
	color: #f1f5f9;
}

/* ========== 关于我们 / 免责声明 / 版权声明（.t25c-site-doc） ========== */
.t25c-site-doc-page {
	background: linear-gradient(180deg, #eef4ff 0%, #f4f7fb 28%, rgba(248, 250, 252, 0.65) 55%, transparent 100%);
}

/* 简约商务：关于页更克制的视觉语言（不影响免责声明/版权声明） */
.t25c-site-doc--about {
	--t25c-sd-radius: 14px;
	--t25c-sd-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.t25c-site-doc--about .t25c-site-doc__hero {
	box-shadow: 0 8px 26px rgba(15, 23, 42, 0.12);
}

.t25c-site-doc--about .t25c-site-doc__hero-bg {
	background: linear-gradient(120deg, #0f172a 0%, #1f3a8a 52%, #1a73e8 100%);
}

.t25c-site-doc--about .t25c-site-doc__hero-bg::after {
	opacity: 0.12;
}

.t25c-site-doc--about .t25c-site-doc__lead {
	max-width: 46rem;
}

.t25c-site-doc--about .t25c-site-doc__layout {
	grid-template-columns: minmax(0, 1fr);
	max-width: 62rem;
}

.t25c-about-kpis {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1.25rem auto 0;
	max-width: 46rem;
}

.t25c-about-kpi {
	text-align: left;
	padding: 0.85rem 0.95rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.t25c-about-kpi__label {
	margin: 0 0 0.25rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.t25c-about-kpi__value {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 720px) {
	.t25c-about-kpis {
		grid-template-columns: 1fr;
	}
}

.t25c-site-doc--about .t25c-site-doc__list--checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 1.25rem;
	row-gap: 0.25rem;
}

@media (max-width: 680px) {
	.t25c-site-doc--about .t25c-site-doc__list--checks {
		grid-template-columns: 1fr;
	}
}

.t25c-site-doc--about .t25c-site-doc__article {
	padding: 1.65rem 1.6rem 1.9rem;
}

.t25c-site-doc--about .t25c-site-doc__section + .t25c-site-doc__section {
	margin-top: 1.75rem;
	padding-top: 1.75rem;
}

.t25c-site-doc {
	--t25c-sd-blue: #1a73e8;
	--t25c-sd-blue-mid: #3b82f6;
	--t25c-sd-blue-deep: #155fc4;
	--t25c-sd-blue-soft: #e8f1fd;
	--t25c-sd-text: #0f172a;
	--t25c-sd-muted: #64748b;
	--t25c-sd-border: #e2e8f0;
	--t25c-sd-radius: 18px;
	--t25c-sd-pad-x: max(1.25rem, env(safe-area-inset-left, 0px));
	--t25c-sd-pad-x-end: max(1.25rem, env(safe-area-inset-right, 0px));
	--t25c-sd-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 12px 28px -8px rgba(26, 115, 232, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
	color: var(--t25c-sd-text);
	font-size: 1rem;
	line-height: 1.65;
}

.t25c-site-doc__hero {
	position: relative;
	z-index: 1;
	margin-left: calc(-1 * var(--t25c-site-pad-x, 1.25rem));
	margin-right: calc(-1 * var(--t25c-site-pad-x, 1.25rem));
	width: calc(100% + 2 * var(--t25c-site-pad-x, 1.25rem));
	max-width: none;
	box-sizing: border-box;
	padding: 2.15rem var(--t25c-sd-pad-x) 2.5rem var(--t25c-sd-pad-x-end);
	border-radius: 0 0 var(--t25c-sd-radius) var(--t25c-sd-radius);
	overflow: hidden;
	box-shadow:
		0 4px 6px -2px rgba(15, 23, 42, 0.08),
		0 18px 40px -12px rgba(26, 115, 232, 0.35);
}

.t25c-site-doc__hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 100% 80% at 50% 120%, rgba(59, 130, 246, 0.25) 0%, transparent 55%),
		radial-gradient(ellipse 70% 90% at 12% -10%, rgba(255, 255, 255, 0.45) 0%, transparent 45%),
		radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.12) 0%, transparent 28%),
		linear-gradient(118deg, #5b9cf9 0%, var(--t25c-sd-blue) 38%, var(--t25c-sd-blue-deep) 100%);
}

.t25c-site-doc__hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.22;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff'/%3E%3C/svg%3E");
	background-size: 56px 56px;
	pointer-events: none;
}

/* 旧版 HTML 若仍带修饰类，与主 Hero 统一为品牌蓝 */
.t25c-site-doc__hero-bg--amber,
.t25c-site-doc__hero-bg--violet {
	background:
		radial-gradient(ellipse 100% 80% at 50% 120%, rgba(59, 130, 246, 0.25) 0%, transparent 55%),
		radial-gradient(ellipse 70% 90% at 12% -10%, rgba(255, 255, 255, 0.45) 0%, transparent 45%),
		linear-gradient(118deg, #5b9cf9 0%, var(--t25c-sd-blue) 38%, var(--t25c-sd-blue-deep) 100%);
}

.t25c-site-doc__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 52rem;
	margin: 0 auto;
	text-align: center;
}

.t25c-site-doc__eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 0.65rem;
	padding: 0.35rem 0.85rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	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 1px 2px rgba(0, 0, 0, 0.06);
}

.t25c-site-doc__eyebrow--amber,
.t25c-site-doc__eyebrow--violet {
	color: rgba(255, 255, 255, 0.95);
}

.t25c-site-doc__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4.2vw, 2.35rem);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.03em;
	color: #ffffff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

.t25c-site-doc__lead {
	margin: 0 auto;
	max-width: 38rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.94);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.t25c-site-doc__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 16rem;
	gap: 1.75rem 2rem;
	align-items: start;
	max-width: 58rem;
	margin: -1.1rem auto 0;
	padding: 0 var(--t25c-sd-pad-x) 0 var(--t25c-sd-pad-x-end);
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

.t25c-site-doc__layout--single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 44rem;
}

.t25c-site-doc__article {
	position: relative;
	min-width: 0;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: var(--t25c-sd-radius);
	padding: 1.85rem 1.75rem 2.1rem;
	box-shadow: var(--t25c-sd-shadow);
	overflow: hidden;
}

.t25c-site-doc__article::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, #93c5fd 0%, var(--t25c-sd-blue) 42%, var(--t25c-sd-blue-deep) 100%);
	border-radius: var(--t25c-sd-radius) var(--t25c-sd-radius) 0 0;
}

@media (prefers-reduced-motion: no-preference) {
	.t25c-site-doc__chip {
		transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	}
}

.t25c-site-doc__section + .t25c-site-doc__section {
	margin-top: 2.1rem;
	padding-top: 2.1rem;
	border-top: none;
	background: linear-gradient(90deg, transparent 0%, var(--t25c-sd-border) 12%, var(--t25c-sd-border) 88%, transparent 100%) 0 0 / 100% 1px no-repeat;
}

.t25c-site-doc__h2 {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 0.95rem;
	font-size: 1.22rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--t25c-sd-text);
	letter-spacing: -0.02em;
}

.t25c-site-doc__h2::before {
	content: "";
	flex-shrink: 0;
	width: 4px;
	height: 1.1em;
	border-radius: 4px;
	background: linear-gradient(180deg, var(--t25c-sd-blue-mid) 0%, var(--t25c-sd-blue) 50%, var(--t25c-sd-blue-deep) 100%);
	box-shadow: 0 1px 4px rgba(26, 115, 232, 0.35);
}

.t25c-site-doc__prose {
	font-size: 1rem;
	line-height: 1.72;
	color: var(--t25c-sd-muted);
}

.t25c-site-doc__prose p {
	margin: 0 0 1.05rem;
}

.t25c-site-doc__prose p:last-child {
	margin-bottom: 0;
}

.t25c-site-doc__muted {
	margin: 0 0 1.05rem;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--t25c-sd-muted);
}

.t25c-site-doc__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.t25c-site-doc__list--checks li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	margin-bottom: 1rem;
	padding: 0.35rem 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--t25c-sd-muted);
}

.t25c-site-doc__list--checks li:last-child {
	margin-bottom: 0;
}

.t25c-site-doc__list-mark {
	flex-shrink: 0;
	width: 1.45rem;
	height: 1.45rem;
	margin-top: 0.15rem;
	border-radius: 8px;
	background: linear-gradient(145deg, #eff6ff 0%, var(--t25c-sd-blue-soft) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 0 0 1px rgba(26, 115, 232, 0.18);
	position: relative;
}

.t25c-site-doc__list-mark::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.38rem;
	height: 0.62rem;
	border: solid var(--t25c-sd-blue);
	border-width: 0 2.5px 2.5px 0;
	transform: translate(-50%, -58%) rotate(45deg);
}

.t25c-site-doc__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 0.7rem;
}

.t25c-site-doc__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--t25c-sd-blue);
	text-decoration: none !important;
	background: linear-gradient(180deg, #f8fbff 0%, var(--t25c-sd-blue-soft) 100%);
	border-radius: 999px;
	border: 1px solid rgba(26, 115, 232, 0.22);
	box-shadow: 0 1px 2px rgba(26, 115, 232, 0.06);
}

.t25c-site-doc__chip:hover {
	background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
	border-color: rgba(26, 115, 232, 0.42);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px -4px rgba(26, 115, 232, 0.25);
}

.t25c-site-doc__toc {
	position: sticky;
	top: calc(0.85rem + env(safe-area-inset-top, 0px));
}

.t25c-site-doc__toc-card {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: var(--t25c-sd-radius);
	padding: 1.2rem 1.2rem 1.25rem;
	box-shadow: var(--t25c-sd-shadow);
	overflow: hidden;
}

.t25c-site-doc__toc-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--t25c-sd-blue-mid), var(--t25c-sd-blue-deep));
	border-radius: 3px 0 0 3px;
}

.t25c-site-doc__toc-title {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 0.75rem;
	padding-left: 0.15rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.t25c-site-doc__toc-title::before {
	content: "";
	display: block;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 2px;
	background: linear-gradient(135deg, var(--t25c-sd-blue-mid), var(--t25c-sd-blue));
	box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.15);
}

.t25c-site-doc__toc-list {
	margin: 0;
	padding-left: 1.15rem;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--t25c-sd-muted);
}

.t25c-site-doc__toc-list a {
	color: var(--t25c-sd-text);
	text-decoration: none !important;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.t25c-site-doc__toc-list a:hover {
	color: var(--t25c-sd-blue);
	border-bottom-color: rgba(26, 115, 232, 0.4);
}

.t25c-site-doc__callout {
	border-radius: 14px;
	padding: 1.1rem 1.2rem 1.15rem;
	margin-bottom: 1.85rem;
}

.t25c-site-doc__callout--warn {
	background: linear-gradient(145deg, #fffbeb 0%, #fef9c3 48%, #fef3c7 100%);
	border: 1px solid rgba(251, 191, 36, 0.55);
	box-shadow: 0 2px 12px rgba(245, 158, 11, 0.12);
	border-left: 4px solid #f59e0b;
}

.t25c-site-doc__callout--soft {
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	border: 1px solid var(--t25c-sd-border);
	margin-top: 1.6rem;
	margin-bottom: 0;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.t25c-site-doc__callout-title {
	margin: 0 0 0.4rem;
	font-size: 0.75rem;
	font-weight: 800;
	color: #b45309;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.t25c-site-doc__callout-text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.68;
	color: #92400e;
}

.t25c-site-doc__callout--soft .t25c-site-doc__callout-text {
	color: var(--t25c-sd-muted);
}

.t25c-site-doc__inline-link {
	color: var(--t25c-sd-blue);
	font-weight: 600;
	text-decoration: underline !important;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.t25c-site-doc__inline-link:hover {
	color: var(--t25c-sd-blue-deep);
}

.t25c-site-doc__meta {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 2rem 0 0;
	padding-top: 1.35rem;
	border-top: 1px solid var(--t25c-sd-border);
	font-size: 0.8125rem;
	color: #94a3b8;
}

.t25c-site-doc__meta::before {
	content: "";
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #cbd5e1, #94a3b8);
	flex-shrink: 0;
	opacity: 0.85;
}

@media (max-width: 782px) {
	.t25c-site-doc__hero {
		padding: 1.75rem var(--t25c-sd-pad-x) 2.1rem var(--t25c-sd-pad-x-end);
	}

	.t25c-site-doc__layout {
		grid-template-columns: 1fr;
		margin-top: -0.65rem;
		padding-top: 0;
	}

	.t25c-site-doc__toc {
		position: static;
		order: -1;
	}

	.t25c-site-doc__article {
		padding: 1.45rem 1.25rem 1.75rem;
	}
}

html.t25c-dark .t25c-site-doc-page {
	background: linear-gradient(180deg, #0c1222 0%, #0f172a 40%, transparent 100%);
}

html.t25c-dark .t25c-site-doc {
	--t25c-sd-text: #f1f5f9;
	--t25c-sd-muted: #94a3b8;
	--t25c-sd-border: #334155;
	--t25c-sd-blue-soft: rgba(59, 130, 246, 0.18);
	--t25c-sd-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(148, 163, 184, 0.08) inset;
}

html.t25c-dark .t25c-site-doc__hero {
	box-shadow:
		0 4px 6px -2px rgba(0, 0, 0, 0.4),
		0 20px 48px -12px rgba(37, 99, 235, 0.35);
}

html.t25c-dark .t25c-site-doc__hero-bg {
	background:
		radial-gradient(ellipse 100% 80% at 50% 120%, rgba(37, 99, 235, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 70% 90% at 12% -10%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
		linear-gradient(118deg, #3b6fb8 0%, #1d4ed8 45%, #1e3a8a 100%);
}

html.t25c-dark .t25c-site-doc__hero-bg--amber,
html.t25c-dark .t25c-site-doc__hero-bg--violet {
	background:
		radial-gradient(ellipse 100% 80% at 50% 120%, rgba(37, 99, 235, 0.35) 0%, transparent 55%),
		linear-gradient(118deg, #3b6fb8 0%, #1d4ed8 45%, #1e3a8a 100%);
}

html.t25c-dark .t25c-site-doc__article,
html.t25c-dark .t25c-site-doc__toc-card {
	background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
	border-color: rgba(51, 65, 85, 0.9);
}

html.t25c-dark .t25c-site-doc__h2 {
	color: #f1f5f9;
}

html.t25c-dark .t25c-site-doc__h2::before {
	background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
	box-shadow: 0 1px 6px rgba(59, 130, 246, 0.45);
}

html.t25c-dark .t25c-site-doc__toc-title {
	color: #94a3b8;
}

html.t25c-dark .t25c-site-doc__toc-list a {
	color: #e2e8f0;
}

html.t25c-dark .t25c-site-doc__toc-list a:hover {
	color: #93c5fd;
	border-bottom-color: rgba(147, 197, 253, 0.45);
}

html.t25c-dark .t25c-site-doc__chip {
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(59, 130, 246, 0.15) 100%);
	border-color: rgba(96, 165, 250, 0.35);
	color: #93c5fd;
}

html.t25c-dark .t25c-site-doc__chip:hover {
	border-color: rgba(96, 165, 250, 0.55);
	box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.45);
}

html.t25c-dark .t25c-site-doc__callout--warn {
	background: linear-gradient(145deg, rgba(120, 53, 15, 0.5) 0%, rgba(146, 64, 14, 0.35) 100%);
	border-color: rgba(245, 158, 11, 0.45);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

html.t25c-dark .t25c-site-doc__callout-title {
	color: #fcd34d;
}

html.t25c-dark .t25c-site-doc__callout-text {
	color: #fde68a;
}

html.t25c-dark .t25c-site-doc__callout--soft {
	background: #0f172a;
	border-color: #334155;
}

html.t25c-dark .t25c-site-doc__callout--soft .t25c-site-doc__callout-text {
	color: #94a3b8;
}

html.t25c-dark .t25c-site-doc__list-mark {
	background: linear-gradient(145deg, rgba(59, 130, 246, 0.25) 0%, rgba(30, 58, 138, 0.35) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(96, 165, 250, 0.3);
}

html.t25c-dark .t25c-site-doc__list-mark::after {
	border-color: #93c5fd;
}

html.t25c-dark .t25c-site-doc__meta {
	color: #64748b;
	border-top-color: #334155;
}

html.t25c-dark .t25c-site-doc__meta::before {
	background: linear-gradient(135deg, #475569, #64748b);
}

/* ========== 网址导航页（.t25c-wn）三列卡片 ========== */
.t25c-webnav-page {
	background:
		radial-gradient(ellipse 85% 55% at 50% -12%, rgba(26, 115, 232, 0.09) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 100% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse 45% 35% at 0% 70%, rgba(147, 197, 253, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, #f0f5fc 0%, #eef2f8 38%, #f8fafc 100%);
}

/* 网址导航：不展示顶部介绍卡（默认 HTML 已去掉；旧正文里若仍保留 .t25c-wn__head 也一并隐藏） */
.t25c-webnav-page .t25c-wn__head {
	display: none !important;
}

.t25c-wn {
	--t25c-wn-border: #c8daf0;
	--t25c-wn-border-strong: #93c5fd;
	--t25c-wn-title: #0f172a;
	--t25c-wn-sub: #64748b;
	--t25c-wn-btn: #1a73e8;
	--t25c-wn-btn-bg: linear-gradient(180deg, #f8fbff 0%, #e8f2fc 100%);
	--t25c-wn-btn-border: #9dc2f0;
	--t25c-wn-radius: 16px;
	--t25c-wn-blue: #1a73e8;
	position: relative;
	max-width: 72rem;
	margin: 0 auto;
	padding: 1.25rem max(1.25rem, env(safe-area-inset-right, 0px)) 2.5rem max(1.25rem, env(safe-area-inset-left, 0px));
	box-sizing: border-box;
}

.t25c-wn::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -2rem;
	width: min(42rem, 90vw);
	height: 10rem;
	transform: translateX(-50%);
	background: radial-gradient(ellipse closest-side, rgba(59, 130, 246, 0.12) 0%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

.t25c-wn__head {
	position: relative;
	z-index: 1;
	text-align: center;
	margin: 0 auto 2.25rem;
	max-width: 38rem;
	padding: 1.65rem 1.5rem 1.75rem;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 251, 255, 0.88) 100%);
	border: 1px solid rgba(200, 218, 240, 0.85);
	border-radius: 20px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 10px 40px -12px rgba(26, 115, 232, 0.15),
		0 2px 8px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.t25c-wn__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 0.75rem;
	padding: 0.3rem 0.85rem 0.32rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--t25c-wn-blue);
	background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
	border: 1px solid rgba(26, 115, 232, 0.18);
	border-radius: 999px;
}

.t25c-wn__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, var(--t25c-wn-blue));
	box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
	animation: t25c-wn-pulse 2.4s ease-in-out infinite;
}

@keyframes t25c-wn-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.75;
		transform: scale(0.92);
	}
}

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

.t25c-wn__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.65rem, 4vw, 2.05rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
	background: linear-gradient(115deg, #0f172a 0%, #1e3a5f 40%, var(--t25c-wn-blue) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.t25c-wn__intro {
	margin: 0 auto;
	max-width: 32rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--t25c-wn-sub);
}

.t25c-wn__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem 1.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

@media (prefers-reduced-motion: no-preference) {
	.t25c-wn-card {
		animation: t25c-wn-card-in 0.55s ease backwards;
	}

	.t25c-wn-card:nth-child(1) {
		animation-delay: 0.03s;
	}
	.t25c-wn-card:nth-child(2) {
		animation-delay: 0.06s;
	}
	.t25c-wn-card:nth-child(3) {
		animation-delay: 0.09s;
	}
	.t25c-wn-card:nth-child(4) {
		animation-delay: 0.12s;
	}
	.t25c-wn-card:nth-child(5) {
		animation-delay: 0.15s;
	}
	.t25c-wn-card:nth-child(6) {
		animation-delay: 0.18s;
	}
	.t25c-wn-card:nth-child(7) {
		animation-delay: 0.21s;
	}
	.t25c-wn-card:nth-child(8) {
		animation-delay: 0.24s;
	}
	.t25c-wn-card:nth-child(9) {
		animation-delay: 0.27s;
	}
	.t25c-wn-card:nth-child(10) {
		animation-delay: 0.3s;
	}
	.t25c-wn-card:nth-child(11) {
		animation-delay: 0.33s;
	}
	.t25c-wn-card:nth-child(12) {
		animation-delay: 0.36s;
	}
	.t25c-wn-card:nth-child(13) {
		animation-delay: 0.39s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.t25c-wn-card {
		animation: none !important;
	}

	.t25c-wn-card__link,
	.t25c-wn-card__icon,
	.t25c-wn-card__btn {
		transition: none;
	}

	.t25c-wn-card__link:hover {
		transform: none;
	}
}

@keyframes t25c-wn-card-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.t25c-wn-card__link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: 4.65rem;
	padding: 0.95rem 1.05rem 0.95rem 1rem;
	text-decoration: none !important;
	color: inherit;
	overflow: hidden;
	background: linear-gradient(165deg, #ffffff 0%, #f5f9ff 48%, #eef4fc 100%);
	border: 1px solid var(--t25c-wn-border);
	border-radius: var(--t25c-wn-radius);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 1px 3px rgba(26, 115, 232, 0.05),
		0 12px 28px -8px rgba(26, 115, 232, 0.14);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.t25c-wn-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
	transform: translateX(-100%);
	transition: transform 0.55s ease;
	pointer-events: none;
}

.t25c-wn-card__link:hover::after {
	transform: translateX(100%);
}

.t25c-wn-card__link:hover {
	border-color: var(--t25c-wn-border-strong);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 4px 12px rgba(26, 115, 232, 0.08),
		0 20px 40px -12px rgba(26, 115, 232, 0.22);
	transform: translateY(-3px);
}

.t25c-wn-card__link:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 2px #ffffff,
		0 0 0 4px var(--t25c-wn-blue),
		0 12px 28px -8px rgba(26, 115, 232, 0.2);
}

.t25c-wn-card__icon {
	flex-shrink: 0;
	width: 3.15rem;
	height: 3.15rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #ff6b6b 0%, #ee5a5a 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(238, 90, 90, 0.4);
	overflow: hidden;
	transition: transform 0.25s ease;
}

.t25c-wn-card__icon.has-img {
	background-image: var(--t25c-icon-img);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.t25c-wn-card__icon.has-img .t25c-wn-card__icon-text {
	display: none;
}

.t25c-wn-card__link:hover .t25c-wn-card__icon {
	transform: scale(1.06);
}

.t25c-wn-card__icon-text {
	font-size: 1rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.t25c-wn-card__icon--b {
	background: linear-gradient(145deg, #111827 0%, #374151 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(17, 24, 39, 0.4);
}

.t25c-wn-card__icon--c {
	background: linear-gradient(145deg, #ff6a00 0%, #ff8c42 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(255, 106, 0, 0.4);
}

.t25c-wn-card__icon--d {
	background: linear-gradient(145deg, #e1251b 0%, #ff4d4d 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(225, 37, 27, 0.4);
}

.t25c-wn-card__icon--e {
	background: linear-gradient(145deg, #e02e24 0%, #ff6b6b 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(224, 46, 36, 0.4);
}

.t25c-wn-card__icon--f {
	background: linear-gradient(145deg, #07c160 0%, #38d973 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(7, 193, 96, 0.4);
}

.t25c-wn-card__icon--g {
	background: linear-gradient(145deg, #1677ff 0%, #69b1ff 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(22, 119, 255, 0.4);
}

.t25c-wn-card__icon--h {
	background: linear-gradient(145deg, #2932e1 0%, #5b63f5 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(41, 50, 225, 0.4);
}

.t25c-wn-card__icon--i {
	background: linear-gradient(145deg, #ff6a00 0%, #ff9f1a 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(255, 106, 0, 0.4);
}

.t25c-wn-card__icon--j {
	background: linear-gradient(145deg, #ffc300 0%, #ffdc53 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(255, 195, 0, 0.42);
}

.t25c-wn-card__icon--k {
	background: linear-gradient(145deg, #00b578 0%, #34d399 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(0, 181, 120, 0.38);
}

.t25c-wn-card__icon--l {
	background: linear-gradient(145deg, #0ea5e9 0%, #38bdf8 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(14, 165, 233, 0.38);
}

.t25c-wn-card__icon--m {
	background: linear-gradient(145deg, #f97316 0%, #fb923c 100%);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.85),
		0 4px 14px rgba(249, 115, 22, 0.4);
}

.t25c-wn-card__main {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: left;
}

.t25c-wn-card__name {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--t25c-wn-title);
	line-height: 1.35;
	transition: color 0.2s ease;
}

.t25c-wn-card__link:hover .t25c-wn-card__name {
	color: var(--t25c-wn-blue);
}

.t25c-wn-card__url {
	font-size: 0.8125rem;
	color: var(--t25c-wn-sub);
	line-height: 1.45;
	word-break: break-all;
	opacity: 0.92;
}

.t25c-wn-card__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.45rem 1rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--t25c-wn-btn);
	background: var(--t25c-wn-btn-bg);
	border: 1px solid var(--t25c-wn-btn-border);
	border-radius: 10px;
	line-height: 1.2;
	box-shadow: 0 1px 2px rgba(26, 115, 232, 0.08);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.t25c-wn-card__btn::after {
	content: "›";
	font-size: 1.05em;
	font-weight: 400;
	opacity: 0.75;
	line-height: 1;
}

.t25c-wn-card__link:hover .t25c-wn-card__btn {
	background: linear-gradient(180deg, #e3f0ff 0%, #d0e7fc 100%);
	border-color: #6ba8e8;
	color: #155fc4;
	transform: translateX(2px);
}

@media (max-width: 900px) {
	.t25c-wn__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.1rem;
	}
}

@media (max-width: 520px) {
	.t25c-wn__head {
		padding: 1.35rem 1.15rem 1.45rem;
		margin-bottom: 1.75rem;
	}

	.t25c-wn__grid {
		grid-template-columns: 1fr;
	}

	.t25c-wn-card__link {
		padding: 0.85rem 0.95rem;
		min-height: 4.35rem;
	}
}

html.t25c-dark .t25c-webnav-page {
	background:
		radial-gradient(ellipse 80% 50% at 50% -5%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
		linear-gradient(180deg, #0c1222 0%, #0f172a 45%, #111827 100%);
}

html.t25c-dark .t25c-wn {
	--t25c-wn-border: rgba(51, 65, 85, 0.95);
	--t25c-wn-border-strong: rgba(96, 165, 250, 0.55);
	--t25c-wn-title: #f1f5f9;
	--t25c-wn-sub: #94a3b8;
	--t25c-wn-btn: #93c5fd;
	--t25c-wn-btn-bg: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(30, 58, 138, 0.35) 100%);
	--t25c-wn-btn-border: rgba(96, 165, 250, 0.4);
	--t25c-wn-blue: #60a5fa;
}

html.t25c-dark .t25c-wn__head {
	background: linear-gradient(165deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.88) 100%);
	border-color: rgba(51, 65, 85, 0.9);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.04) inset,
		0 12px 40px -10px rgba(0, 0, 0, 0.45);
}

html.t25c-dark .t25c-wn__title {
	background: linear-gradient(115deg, #f8fafc 0%, #e2e8f0 45%, #93c5fd 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

html.t25c-dark .t25c-wn-card__link {
	background: linear-gradient(165deg, #1e293b 0%, #1a2332 52%, #172033 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.04) inset,
		0 2px 6px rgba(0, 0, 0, 0.2),
		0 14px 32px -10px rgba(0, 0, 0, 0.5);
}

html.t25c-dark .t25c-wn-card__link:hover {
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.05) inset,
		0 8px 24px rgba(0, 0, 0, 0.35),
		0 20px 48px -12px rgba(59, 130, 246, 0.18);
}

html.t25c-dark .t25c-wn-card__link:hover .t25c-wn-card__name {
	color: #93c5fd;
}

html.t25c-dark .t25c-wn-card__link:hover .t25c-wn-card__btn {
	background: linear-gradient(180deg, rgba(59, 130, 246, 0.22) 0%, rgba(37, 99, 235, 0.28) 100%);
	border-color: rgba(96, 165, 250, 0.55);
	color: #bfdbfe;
}

html.t25c-dark .t25c-wn-card__icon {
	box-shadow:
		0 0 0 2px rgba(30, 41, 59, 0.9),
		0 4px 14px rgba(0, 0, 0, 0.35);
}

/* ========== 每日早报（.t25c-db）清晨行业海报风（竖版约 400px） ========== */
.t25c-daily-brief-page {
	background: #ebf1ff;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: clip;
}

.t25c-daily-brief-page .wp-block-shortcode {
	display: block;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.t25c-db {
	--t25c-db-blue: #2563eb;
	--t25c-db-blue-deep: #1d4ed8;
	--t25c-db-blue-mid: #3b82f6;
	--t25c-db-ice: #ebf1ff;
	--t25c-db-ice2: #dbe7ff;
	--t25c-db-page-bg: #ebf1ff;
	--t25c-db-text: #0f172a;
	--t25c-db-muted: #64748b;
	--t25c-db-sub: #334155;
	--t25c-db-line: #cbd5e1;
	/* 插槽区左右留白（更窄）与白卡左右留白（更宽）：差值使插槽比白卡略宽 */
	--t25c-db-slot-x-inset: 0.32rem;
	--t25c-db-paper-x-inset: 0.82rem;
	width: 100%;
	max-width: min(400px, 100%);
	margin: 0 auto;
	padding: 1rem max(1rem, env(safe-area-inset-right, 0px)) 2.25rem max(1rem, env(safe-area-inset-left, 0px));
	box-sizing: border-box;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
	container-type: inline-size;
	container-name: t25c-db;
}

.t25c-db-shell {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

/* 海报实际宽度不足约 400px 时（多为手机竖屏）：日历区换行后占满一行，避免仅靠 360px 视口才换行导致溢出 */
@container t25c-db (max-width: 399px) {
	.t25c-db-hero__aside {
		flex: 1 1 100%;
		max-width: none;
		width: 100%;
		text-align: left;
		align-self: stretch;
	}

	.t25c-db-date {
		align-items: flex-start;
	}

	.t25c-db-date__lunar,
	.t25c-db-date__tip,
	.t25c-db-date__solar {
		text-align: left;
	}

	.t25c-db-date__topbar,
	.t25c-db-date__dash {
		margin-left: 0;
		margin-right: auto;
	}
}

/* 海报外框：152° 浅蓝渐变、16px 圆角、细描边、轻外阴影、右上冷色高光 */
.t25c-db-poster {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid rgba(37, 99, 235, 0.28);
	background: linear-gradient(152deg, #dbe7ff 0%, #ebf1ff 36%, #e8f0ff 70%, #dee8ff 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 18px 54px -18px rgba(29, 78, 216, 0.24),
		0 6px 22px -10px rgba(15, 23, 42, 0.1);
	padding: clamp(0.85rem, 3vw, 1.2rem) clamp(0.75rem, 2.8vw, 1.05rem) clamp(1rem, 3vw, 1.25rem);
}

.t25c-db-poster::before {
	content: "";
	position: absolute;
	top: -18%;
	right: -12%;
	width: 58%;
	height: 48%;
	background: radial-gradient(ellipse at 40% 40%, rgba(255, 255, 255, 0.7) 0%, rgba(191, 219, 254, 0.25) 45%, transparent 70%);
	opacity: 0.55;
	pointer-events: none;
}

.t25c-db-poster::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.45) 0%, transparent 42%),
		radial-gradient(circle at 85% 92%, rgba(191, 219, 254, 0.32) 0%, transparent 48%);
	opacity: 0.55;
	pointer-events: none;
}

.t25c-db-poster > * {
	position: relative;
	z-index: 1;
}

.t25c-db-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0.65rem;
	z-index: 6;
}

.t25c-db-savebtn {
	appearance: none;
	border: 1px solid rgba(37, 99, 235, 0.28);
	background: linear-gradient(152deg, #dbe7ff 0%, #ebf1ff 36%, #e8f0ff 70%, #dee8ff 100%);
	backdrop-filter: blur(6px);
	color: var(--t25c-db-blue-deep);
	border-radius: 12px;
	padding: 0.45rem 0.95rem;
	font-size: 0.98rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.7),
		0 18px 54px -26px rgba(29, 78, 216, 0.24);
	cursor: pointer;
}

.t25c-db-savebtn:hover {
	border-color: rgba(37, 99, 235, 0.38);
	background: linear-gradient(152deg, #cfe0ff 0%, #e7efff 36%, #e4eeff 70%, #d7e5ff 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.75),
		0 22px 62px -30px rgba(29, 78, 216, 0.3);
}

.t25c-db-savebtn:active {
	transform: translateY(1px);
}

.t25c-db-savebtn:focus-visible {
	outline: 2px solid rgba(37, 99, 235, 0.38);
	outline-offset: 2px;
}

/* 导出图片时隐藏按钮，避免出现在截图中 */
.t25c-db--capturing .t25c-db-actions {
	visibility: hidden;
}

.t25c-db-hero-wrap {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	margin-bottom: 0;
}

/* 头区：略透白纸感，与海报底衔接 */
.t25c-db-hero {
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 55%, rgba(248, 250, 255, 0.66) 100%);
	border: 1px solid rgba(37, 99, 235, 0.09);
	border-radius: 14px;
	/* 不增加卡片高度：放大标题后，压缩上下内边距以抵消增高 */
	padding: clamp(0.6rem, 2.3vw, 0.9rem) clamp(0.85rem, 3vw, 1.15rem);
	box-shadow:
		0 18px 46px -30px rgba(29, 78, 216, 0.55),
		0 4px 14px rgba(29, 78, 216, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
}

.t25c-db-hero__top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.4rem 0.55rem;
	min-width: 0;
}

.t25c-db-hero__left {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.45rem;
	flex: 1 1 auto;
	min-width: 0;
}

/* 顶部站点标识：位于头区卡片上方 */
.t25c-db-topbrand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	margin: 0 0 0.55rem;
	padding: 0.32rem 0.6rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(37, 99, 235, 0.14);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 14px 30px -20px rgba(29, 78, 216, 0.45);
	backdrop-filter: blur(6px);
}

.t25c-db-topbrand__name {
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	color: var(--t25c-db-blue-deep);
}

.t25c-db-topbrand__dot {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.45);
}

.t25c-db-topbrand__url {
	font-size: 0.72rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	color: var(--t25c-db-sub);
	max-width: 100%;
	word-break: break-all;
	text-align: center;
}

/* 竖排印章：浅蓝白渐变底、细蓝框 */
.t25c-db-tab {
	display: none;
}

/* 域名已移动到头区卡片上方（.t25c-db-topbrand）。 */

.t25c-db-hero__center {
	flex: 1 1 auto;
	min-width: 0;
}

.t25c-db-masthead {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.04rem;
}

/* 每日早报页：进一步缩小「每日」与「早报」间距，避免被其它样式覆盖 */
body.t25c-page-daily-brief .t25c-db-masthead {
	gap: 0.04rem !important;
}

/* 视觉上「每日」字形底部留白较多时，手动把「早报」方格上移一点 */
body.t25c-page-daily-brief .t25c-db-masthead__cells {
	margin-top: -0.32rem !important;
}

@media (max-width: 480px) {
	body.t25c-page-daily-brief .t25c-db-masthead__cells {
		margin-top: -0.22rem !important;
	}
}

/* 「每日」超大超粗深蓝 + 下横线渐变 */
.t25c-db-masthead__daily {
	font-size: clamp(4.05rem, 17.1vw, 5.3rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--t25c-db-blue-deep);
	display: inline-block;
	text-shadow: 0 18px 30px rgba(29, 78, 216, 0.1);
}

.t25c-db-masthead__bar {
	display: none;
}

/* 「早」「报」相邻方格：蓝底白字、单格米字虚线 */
.t25c-db-masthead__cells {
	display: inline-flex;
	flex-direction: row;
	gap: 3px;
	margin-top: 0;
}

.t25c-db-masthead__cell {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(3.75rem, 16.2vw, 4.75rem);
	height: clamp(3.75rem, 16.2vw, 4.75rem);
	font-size: clamp(2.5rem, 11.2vw, 3.25rem);
	font-weight: 900;
	line-height: 1;
	color: #ffffff;
	background-color: var(--t25c-db-blue-deep);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.48)' stroke-width='0.75'%3E%3Crect x='0.5' y='0.5' width='43' height='43' stroke-dasharray='2.2 2'/%3E%3Cline x1='22' y1='0' x2='22' y2='44' stroke-opacity='0.9'/%3E%3Cline x1='0' y1='22' x2='44' y2='22' stroke-opacity='0.9'/%3E%3Cline x1='0' y1='0' x2='44' y2='44' stroke-opacity='0.55'/%3E%3Cline x1='44' y1='0' x2='0' y2='44' stroke-opacity='0.55'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 5px;
	box-shadow:
		0 3px 10px rgba(29, 78, 216, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 旧版 HTML：单行「早报」米字格（未拆两字方格时） */
.t25c-db-masthead__brief {
	display: inline-block;
	padding: 0.4rem 1rem 0.48rem;
	font-size: clamp(1.55rem, 7vw, 2rem);
	font-weight: 900;
	white-space: nowrap;
	letter-spacing: 0.12em;
	color: #ffffff;
	background-color: var(--t25c-db-blue-deep);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='44' viewBox='0 0 88 44'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.45)' stroke-width='0.75'%3E%3Crect x='0.5' y='0.5' width='43' height='43' stroke-dasharray='2.2 2'/%3E%3Cline x1='22' y1='0' x2='22' y2='44' stroke-opacity='0.9'/%3E%3Cline x1='0' y1='22' x2='44' y2='22' stroke-opacity='0.9'/%3E%3Cline x1='0' y1='0' x2='44' y2='44' stroke-opacity='0.55'/%3E%3Cline x1='44' y1='0' x2='0' y2='44' stroke-opacity='0.55'/%3E%3Crect x='44.5' y='0.5' width='43' height='43' stroke-dasharray='2.2 2'/%3E%3Cline x1='66' y1='0' x2='66' y2='44' stroke-opacity='0.9'/%3E%3Cline x1='44' y1='22' x2='88' y2='22' stroke-opacity='0.9'/%3E%3Cline x1='44' y1='0' x2='88' y2='44' stroke-opacity='0.55'/%3E%3Cline x1='88' y1='0' x2='44' y2='44' stroke-opacity='0.55'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100% 100%;
	border-radius: 5px;
	box-shadow: 0 3px 10px rgba(29, 78, 216, 0.35);
	margin-top: 0.08rem;
}

.t25c-db-hero__aside {
	flex: 0 0 auto;
	flex-shrink: 0;
	text-align: center;
	max-width: 7.15rem;
	min-width: 0;
}

/* 日历卡：无独立浅底卡片（透明叠在头区卡片上） */
.t25c-db-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 0;
}

.t25c-db-date__topbar {
	display: block;
	width: 100%;
	height: 14px;
	margin: 0 0 0.55rem 0;
	border-radius: 6px;
	background: linear-gradient(90deg, #93c5fd 0%, var(--t25c-db-blue) 52%, var(--t25c-db-blue-deep) 100%);
}

.t25c-db-date__y {
	display: block;
	font-size: 0.60rem;
	font-weight: 900;
	color: var(--t25c-db-blue);
	letter-spacing: 0.22em;
}

.t25c-db-date__md {
	display: block;
	margin-top: 0.15rem;
	font-size: clamp(1.9rem, 7.2vw, 2.5rem);
	font-weight: 900;
	color: #0b0f1a;
	line-height: 1;
	letter-spacing: 0.01em;
}

.t25c-db-date__wk {
	display: block;
	margin-top: 0.24rem;
	font-size: 0.86rem;
	font-weight: 600;
	color: rgba(15, 23, 42, 0.55);
}

.t25c-db-date__solar {
	display: block;
	margin-top: 0.45rem;
	font-size: 1rem;
	font-weight: 900;
	color: var(--t25c-db-blue);
	line-height: 1.1;
}

.t25c-db-date__dash {
	display: none;
}

/* 农历/经营短句可选：无内容时不应占空间 */
.t25c-db-date__lunar:empty,
.t25c-db-date__tip:empty {
	display: none;
}

.t25c-db-date__lunar {
	margin: 0.35rem 0 0;
	font-size: 0.64rem;
	line-height: 1.25;
	color: rgba(15, 23, 42, 0.52);
	text-align: center;
}

.t25c-db-date__tip {
	margin: 0.35rem 0 0;
	font-size: 0.68rem;
	line-height: 1.5;
	font-weight: 700;
	color: var(--t25c-db-text);
}

/* 域名已移动到头区卡片上方（.t25c-db-topbrand）。 */

.t25c-db-quote {
	margin: 0.65rem 0 0;
	padding: 0;
	font-size: 0.82rem;
	line-height: 1.65;
	color: var(--t25c-db-muted);
	font-style: normal;
	font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
	border: none;
	letter-spacing: 0.03em;
}

.t25c-db-quote__text {
	display: inline;
}

.t25c-db-quote cite {
	display: inline-block;
	margin-left: 0.65rem;
	font-style: normal;
	font-size: 0.82rem;
	color: var(--t25c-db-sub);
}

/* 打印机槽：外框压住纸缘，纸舌从槽内穿出再接白卡 */
.t25c-db-printer {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin-top: 0.45rem;
	padding: 0 var(--t25c-db-slot-x-inset);
	position: relative;
	z-index: 5;
}

.t25c-db-printer__frame {
	position: relative;
	z-index: 2;
	border-radius: 12px;
	padding: 4px;
	background: linear-gradient(165deg, #93c5fd 0%, var(--t25c-db-blue) 50%, var(--t25c-db-blue-deep) 100%);
	box-shadow:
		0 4px 14px rgba(29, 78, 216, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		0 10px 22px -6px rgba(15, 23, 42, 0.14);
}

.t25c-db-printer__groove {
	position: relative;
	height: 17px;
	border-radius: 7px;
	background: linear-gradient(180deg, #020617 0%, #0f172a 28%, #1e293b 58%, #1e3a5f 100%);
	box-shadow:
		inset 0 5px 12px rgba(0, 0, 0, 0.65),
		inset 0 -2px 6px rgba(0, 0, 0, 0.35),
		inset 0 -1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

/* 槽口底缘微光：纸刚从滚轴间露出的缝隙感 */
.t25c-db-printer__groove::after {
	content: "";
	position: absolute;
	left: 9%;
	right: 9%;
	bottom: 0;
	height: 5px;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.18) 55%, rgba(248, 250, 252, 0.55) 100%);
	border-radius: 0 0 4px 4px;
	pointer-events: none;
}

/* 穿出插槽的纸带：宽度与白卡一致（窄于蓝框插槽） */
.t25c-db-printer__feed {
	flex-shrink: 0;
	height: 22px;
	width: calc(100% - 2 * (var(--t25c-db-paper-x-inset) - var(--t25c-db-slot-x-inset)));
	max-width: none;
	margin: -11px auto 0;
	position: relative;
	z-index: 1;
	border-radius: 0 0 5px 5px;
	border-left: 1px solid rgba(148, 163, 184, 0.55);
	border-right: 1px solid rgba(148, 163, 184, 0.55);
	background: linear-gradient(
		180deg,
		#475569 0%,
		#94a3b8 8%,
		#cbd5e1 22%,
		#f1f5f9 48%,
		#ffffff 100%
	);
	box-shadow:
		inset 0 5px 12px rgba(15, 23, 42, 0.28),
		0 4px 12px rgba(15, 23, 42, 0.07);
	pointer-events: none;
}

/* 旧版 HTML：头图下深色装订条（无打印机槽时） */
.t25c-db-hero__binding {
	height: 11px;
	margin: 0.35rem 0.5rem 0;
	border-radius: 0 0 8px 8px;
	background: linear-gradient(180deg, #020617 0%, #0f172a 35%, #1e3a5f 70%, var(--t25c-db-blue) 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.12) inset,
		0 6px 14px rgba(15, 23, 42, 0.35);
	position: relative;
	z-index: 1;
}

.t25c-db-hero-wrap + .t25c-db-receipt {
	margin-top: -5px;
	position: relative;
	z-index: 2;
}

/* 纸张区：白底 + 极淡圆点 + 上沿压辊阴影（承接纸舌） */
.t25c-db-receipt {
	position: relative;
	background-color: #ffffff;
	background-image: radial-gradient(circle at center, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
	background-size: 8px 8px;
	border-radius: 14px 14px 0 0;
	border: 1px solid rgba(37, 99, 235, 0.14);
	border-bottom: none;
	box-shadow: 0 10px 28px -10px rgba(29, 78, 216, 0.2);
	/* 允许齿孔“挂”在白卡外侧 */
	overflow: visible;
}

/* 白卡外侧白底延伸：承托下挂齿孔（与参考图一致的“撕边”白底） */
/* 齿孔已移除。 */

/* 有打印机时：白卡略收窄、上提，蓝框底缘叠在纸带之上，与纸舌连成一张（须在 .t25c-db-receipt 之后以保留阴影） */
.t25c-db-hero-wrap:has(.t25c-db-printer) + .t25c-db-receipt {
	margin-top: -24px;
	margin-left: var(--t25c-db-paper-x-inset);
	margin-right: var(--t25c-db-paper-x-inset);
	width: auto;
	z-index: 1;
	border-radius: 4px 4px 0 0;
	border-top-color: rgba(148, 163, 184, 0.45);
	box-shadow:
		0 -1px 0 rgba(255, 255, 255, 0.95),
		0 10px 28px -10px rgba(29, 78, 216, 0.22);
}

.t25c-db-receipt::before {
	content: "";
	display: block;
	height: 10px;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0.08) 0%,
		rgba(15, 23, 42, 0.03) 40%,
		transparent 100%
	);
	pointer-events: none;
}

.t25c-db-list {
	margin: 0;
	padding: 0.2rem 0 0;
	list-style: none;
}

.t25c-db-item {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	padding: 0.52rem 0.95rem;
	border-bottom: 1px dashed rgba(203, 213, 225, 0.95);
}

.t25c-db-item:last-of-type {
	border-bottom: none;
	padding-bottom: 0.4rem;
}

/* 齿孔已移除（不再显示白卡底部撕边）。 */

/* 序号：无底色，黑色数字（与正文层级一致） */
.t25c-db-item__num {
	flex-shrink: 0;
	min-width: 1.72rem;
	height: auto;
	min-height: 1.72rem;
	padding: 0 0.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.62rem;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	color: #0f172a;
	line-height: 1;
	margin-top: 0.06rem;
	background: none;
	border-radius: 0;
	box-shadow: none;
}

html.t25c-dark body.t25c-page-daily-brief .t25c-db-item__num {
	color: rgba(226, 232, 240, 0.95);
}

.t25c-db-item__body {
	min-width: 0;
	flex: 1;
}

.t25c-db-item__title {
	margin: 0 0 0.28rem;
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.45;
	color: var(--t25c-db-text);
}

.t25c-db-item__src {
	margin: 0;
	font-size: 0.66rem;
	color: var(--t25c-db-muted);
}

.t25c-db-item__src2 {
	margin: 0.15rem 0 0;
	font-size: 0.66rem;
	font-weight: 700;
	color: rgba(100, 116, 139, 0.95);
}

.t25c-db-item__comment + .t25c-db-item__src2 {
	margin-top: 0.5rem;
}

/* 点评：简约商务风；顶对齐避免多行时站点徽标被拉伸、底色显示不全 */
body.t25c-page-daily-brief .t25c-db-item__comment {
	margin: 0.32rem 0 0;
	padding: 0.4rem 0.5rem;
	border-radius: 6px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-left: 3px solid #2563eb;
	line-height: 1.45;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.45rem;
	align-items: flex-start;
	align-content: flex-start;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	backdrop-filter: none;
}

body.t25c-page-daily-brief .t25c-db-item__comment::before {
	content: "";
	display: none;
}

body.t25c-page-daily-brief .t25c-db-item__comment-site {
	flex: 0 0 auto;
	align-self: flex-start;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #334155;
	white-space: nowrap;
	line-height: 1.25;
	padding: 0.12rem 0.42rem;
	border-radius: 4px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-sizing: border-box;
	box-shadow: none;
}

body.t25c-page-daily-brief .t25c-db-item__comment-k {
	flex: 0 0 auto;
	align-self: flex-start;
	margin-top: 0.1rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #64748b;
}

body.t25c-page-daily-brief .t25c-db-item__comment-v {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.7rem;
	font-weight: 500;
	color: #0f172a;
}

html.t25c-dark body.t25c-page-daily-brief .t25c-db-item__comment {
	background: rgba(15, 23, 42, 0.42);
	border-color: rgba(148, 163, 184, 0.22);
	border-left-color: rgba(96, 165, 250, 0.85);
	box-shadow: none;
}

html.t25c-dark body.t25c-page-daily-brief .t25c-db-item__comment::before {
	content: "";
	display: none;
}

html.t25c-dark body.t25c-page-daily-brief .t25c-db-item__comment-site {
	color: #e2e8f0;
	background: rgba(30, 41, 59, 0.85);
	border-color: rgba(148, 163, 184, 0.35);
}

html.t25c-dark body.t25c-page-daily-brief .t25c-db-item__comment-v {
	color: rgba(226, 232, 240, 0.92);
}

/* 类目小标题已移除。 */


/* 底部浅蓝区：渐变 + 微弱光斑 */
.t25c-db-bottom {
	margin-top: 0;
	padding: 0.6rem 0.15rem 0.15rem;
	border-radius: 0 0 14px 14px;
	position: relative;
	background: linear-gradient(180deg, rgba(219, 231, 255, 0.5) 0%, var(--t25c-db-ice2) 38%, var(--t25c-db-ice) 100%);
	display: flex;
	flex-direction: column;
}

.t25c-db-bottom::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(ellipse 70% 45% at 15% 25%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
		radial-gradient(ellipse 50% 35% at 88% 78%, rgba(191, 219, 254, 0.4) 0%, transparent 50%);
	pointer-events: none;
	opacity: 0.85;
}

.t25c-db-bottom > * {
	position: relative;
	z-index: 1;
}

.t25c-db-disclaimer {
	margin: 0.5rem 0 0;
	padding: 0 0.2rem 0.05rem;
	font-size: 0.66rem;
	line-height: 1.45;
	color: rgba(100, 116, 139, 0.95);
	text-align: center;
}

/* TIP：浅蓝渐变描边感 + 内层半透白 */
.t25c-db-tip {
	position: relative;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 14px;
	padding: 0.85rem 0.95rem 0.95rem;
	box-shadow:
		0 0 0 1px rgba(37, 99, 235, 0.14),
		0 0 0 5px rgba(219, 231, 255, 0.75),
		0 10px 28px -12px rgba(29, 78, 216, 0.18);
	backdrop-filter: blur(4px);
}

.t25c-db-tip__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.45rem;
	margin-bottom: 0.6rem;
}

.t25c-db-tip__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.18rem 0.42rem;
	font-size: 0.55rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	color: #ffffff;
	background: linear-gradient(180deg, var(--t25c-db-blue) 0%, var(--t25c-db-blue-deep) 100%);
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(29, 78, 216, 0.3);
}

.t25c-db-tip__title {
	margin: 0;
	flex: 1 1 auto;
	min-width: 8rem;
	padding: 0.26rem 0.55rem;
	font-size: 0.78rem;
	font-weight: 900;
	color: #ffffff;
	background: linear-gradient(90deg, var(--t25c-db-blue-deep) 0%, var(--t25c-db-blue) 100%);
	border-radius: 5px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.t25c-db-tip__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.t25c-db-tip__list li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.42rem;
	font-size: 0.76rem;
	line-height: 1.55;
	color: var(--t25c-db-sub);
}

.t25c-db-tip__list li:last-child {
	margin-bottom: 0;
}

.t25c-db-tip__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--t25c-db-blue) 0%, var(--t25c-db-blue-deep) 100%);
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

.t25c-db-foot {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.75rem 0.2rem 0.35rem;
}

.t25c-db-foot__qr {
	flex-shrink: 0;
	position: relative;
	width: 4.6rem;
	height: 4.6rem;
	border: 2px dashed rgba(37, 99, 235, 0.32);
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.5);
	background-image:
		linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px),
		repeating-linear-gradient(
			-45deg,
			rgba(37, 99, 235, 0.03),
			rgba(37, 99, 235, 0.03) 3px,
			transparent 3px,
			transparent 7px
		);
	background-size: 10px 10px, 10px 10px, auto;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
	overflow: hidden;
}

.t25c-db-foot__qr-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 8px;
}

.t25c-db-foot__qr-label {
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--t25c-db-muted);
	letter-spacing: 0.08em;
}

.t25c-db-foot__meta {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.t25c-db-foot__cta {
	margin: 0 0 0.22rem;
	font-size: 0.86rem;
	font-weight: 900;
	color: var(--t25c-db-blue-deep);
	line-height: 1.35;
}

.t25c-db-foot__hint {
	margin: 0;
	font-size: 0.7rem;
	color: var(--t25c-db-muted);
}

/* 底部 slogan 已移除。 */

/* 每日早报落地页：移动端（常见手机宽度 >360px 也需换行，避免头区与日历并排挤出视口） */
@media (max-width: 640px) {
	.t25c-db {
		padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
		padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
		padding-bottom: 1.75rem;
	}

	.t25c-db-poster {
		padding-left: clamp(0.55rem, 3vw, 1.05rem);
		padding-right: clamp(0.55rem, 3vw, 1.05rem);
	}

	.t25c-db-hero__left {
		flex: 1 1 auto;
		min-width: 0;
	}

	/* 不支持 @container 的浏览器回退（与上方 @container t25c-db 规则一致） */
	.t25c-db-hero__aside {
		flex: 1 1 100%;
		max-width: none;
		width: 100%;
		text-align: left;
		align-self: stretch;
	}

	.t25c-db-date {
		align-items: flex-start;
	}

	.t25c-db-date__lunar,
	.t25c-db-date__tip,
	.t25c-db-date__solar {
		text-align: left;
	}

	.t25c-db-date__topbar,
	.t25c-db-date__dash {
		margin-left: 0;
		margin-right: auto;
	}

	.t25c-db-item {
		padding-left: 0.65rem;
		padding-right: 0.65rem;
		gap: 0.5rem;
	}

	.t25c-db-item__title,
	.t25c-db-item__src,
	.t25c-db-item__src2 {
		word-break: break-word;
		overflow-wrap: anywhere;
	}

	.t25c-db-foot {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		gap: 0.65rem;
	}

	.t25c-db-foot__meta {
		flex: 1 1 100%;
		min-width: 0;
		align-items: center;
	}

	.t25c-db-foot__cta {
		hyphens: auto;
		word-break: break-word;
		overflow-wrap: anywhere;
	}
}

html.t25c-dark .t25c-daily-brief-page {
	background: linear-gradient(180deg, #0f172a 0%, #111827 50%, #0c1222 100%);
}

html.t25c-dark .t25c-db {
	--t25c-db-blue: #60a5fa;
	--t25c-db-blue-deep: #3b82f6;
	--t25c-db-blue-mid: #93c5fd;
	--t25c-db-ice: #1e293b;
	--t25c-db-ice2: #172033;
	--t25c-db-page-bg: #0f172a;
	--t25c-db-text: #f1f5f9;
	--t25c-db-muted: #94a3b8;
	--t25c-db-sub: #cbd5e1;
	--t25c-db-line: #334155;
}

html.t25c-dark .t25c-db-poster {
	background: linear-gradient(152deg, #172033 0%, #1e293b 45%, #0f172a 100%);
	border-color: rgba(96, 165, 250, 0.28);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.05) inset,
		0 14px 42px -12px rgba(0, 0, 0, 0.5);
}

html.t25c-dark .t25c-db-poster::before {
	opacity: 0.25;
}

html.t25c-dark .t25c-db-hero {
	background: linear-gradient(165deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.75) 100%);
	border-color: rgba(51, 65, 85, 0.85);
	box-shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.45);
}

html.t25c-dark .t25c-db-tab {
	background: linear-gradient(180deg, rgba(51, 65, 85, 0.9) 0%, rgba(30, 41, 59, 0.95) 100%);
	border-color: rgba(96, 165, 250, 0.35);
	color: #93c5fd;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html.t25c-dark .t25c-db-masthead__daily {
	color: #93c5fd;
}

html.t25c-dark .t25c-db-masthead__bar {
	background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, rgba(96, 165, 250, 0.15) 100%);
}

html.t25c-dark .t25c-db-masthead__cell {
	background-color: #2563eb;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cg fill='none' stroke='rgba(255%2C255%2C255%2C0.45)' stroke-width='0.75'%3E%3Crect x='0.5' y='0.5' width='43' height='43' stroke-dasharray='2.2 2'/%3E%3Cline x1='22' y1='0' x2='22' y2='44' stroke-opacity='0.9'/%3E%3Cline x1='0' y1='22' x2='44' y2='22' stroke-opacity='0.9'/%3E%3Cline x1='0' y1='0' x2='44' y2='44' stroke-opacity='0.55'/%3E%3Cline x1='44' y1='0' x2='0' y2='44' stroke-opacity='0.55'/%3E%3C/g%3E%3C/svg%3E");
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

html.t25c-dark .t25c-db-masthead__brief {
	background-color: #2563eb;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

html.t25c-dark .t25c-db-hero__binding {
	background: linear-gradient(180deg, #020617 0%, #0f172a 35%, #1e3a5f 70%, #2563eb 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.08) inset,
		0 6px 16px rgba(0, 0, 0, 0.45);
}

html.t25c-dark .t25c-db-date__topbar {
	display: block;
}

html.t25c-dark .t25c-db-date__md {
	color: #f1f5f9;
}

html.t25c-dark .t25c-db-date__wk,
html.t25c-dark .t25c-db-date__lunar {
	color: rgba(241, 245, 249, 0.65);
}

html.t25c-dark .t25c-db-date__solar {
	color: #93c5fd;
}

html.t25c-dark .t25c-db-date__tip {
	color: #e2e8f0;
}

html.t25c-dark .t25c-db-topbrand {
	background: rgba(15, 23, 42, 0.55);
	border-color: rgba(96, 165, 250, 0.2);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 10px 22px -14px rgba(0, 0, 0, 0.55);
}

html.t25c-dark .t25c-db-topbrand__name {
	color: #93c5fd;
}

html.t25c-dark .t25c-db-topbrand__dot {
	background: rgba(96, 165, 250, 0.55);
}

html.t25c-dark .t25c-db-topbrand__url {
	color: #bfdbfe;
}

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

html.t25c-dark .t25c-db-quote cite {
	color: #64748b;
}

html.t25c-dark .t25c-db-printer__frame {
	background: linear-gradient(165deg, #334155 0%, #2563eb 55%, #1d4ed8 100%);
	box-shadow:
		0 4px 14px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 10px 22px -6px rgba(0, 0, 0, 0.35);
}

html.t25c-dark .t25c-db-printer__groove::after {
	background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, rgba(148, 163, 184, 0.22) 100%);
}

html.t25c-dark .t25c-db-printer__feed {
	background: linear-gradient(
		180deg,
		#020617 0%,
		#1e293b 18%,
		#334155 45%,
		#475569 72%,
		#1e293b 100%
	);
	border-left-color: rgba(71, 85, 105, 0.9);
	border-right-color: rgba(71, 85, 105, 0.9);
	box-shadow:
		inset 0 5px 14px rgba(0, 0, 0, 0.55),
		0 4px 12px rgba(0, 0, 0, 0.3);
}

html.t25c-dark .t25c-db-receipt {
	background-color: #1e293b;
	background-image: radial-gradient(circle at center, rgba(96, 165, 250, 0.07) 1px, transparent 1px);
	background-size: 8px 8px;
	border-color: rgba(51, 65, 85, 0.95);
	box-shadow: 0 10px 32px -8px rgba(0, 0, 0, 0.5);
}

html.t25c-dark .t25c-db-hero-wrap:has(.t25c-db-printer) + .t25c-db-receipt {
	border-top-color: rgba(71, 85, 105, 0.85);
	box-shadow:
		0 -1px 0 rgba(255, 255, 255, 0.06),
		0 10px 32px -8px rgba(0, 0, 0, 0.5);
}

html.t25c-dark .t25c-db-receipt::before {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.25) 0%,
		rgba(0, 0, 0, 0.08) 45%,
		transparent 100%
	);
}

/* 齿孔已移除。 */

html.t25c-dark .t25c-db-bottom {
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.65) 0%, #172033 50%, #0f172a 100%);
}

html.t25c-dark .t25c-db-bottom::before {
	opacity: 0.4;
}

html.t25c-dark .t25c-db-tip {
	background: rgba(30, 41, 59, 0.88);
	box-shadow:
		0 0 0 1px rgba(96, 165, 250, 0.2),
		0 0 0 5px rgba(15, 23, 42, 0.6),
		0 10px 28px -12px rgba(0, 0, 0, 0.45);
}

html.t25c-dark .t25c-db-tip__title {
	background: linear-gradient(90deg, #1e3a5f 0%, #2563eb 100%);
}

html.t25c-dark .t25c-db-tip__list li {
	color: #bfdbfe;
}

html.t25c-dark .t25c-db-foot__qr {
	border-color: rgba(96, 165, 250, 0.35);
	background-color: rgba(15, 23, 42, 0.6);
	background-image:
		linear-gradient(rgba(96, 165, 250, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(96, 165, 250, 0.08) 1px, transparent 1px),
		repeating-linear-gradient(-45deg, rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85) 3px, transparent 3px, transparent 7px);
	background-size: 10px 10px, 10px 10px, auto;
}

html.t25c-dark .t25c-db-foot__qr-label {
	color: #94a3b8;
}

html.t25c-dark .t25c-db-foot__cta {
	color: #93c5fd;
}

/* 类目小标题已移除。 */

html.t25c-dark .t25c-db-item__src2 {
	color: rgba(148, 163, 184, 0.95);
}

html.t25c-dark .t25c-db-disclaimer {
	color: rgba(148, 163, 184, 0.9);
}

/* 底部 slogan 已移除。 */

/* 真假客服验证页样式已迁至 assets/css/customer-verify.css（在对应页面于 global-styles 之后加载，避免被覆盖）。 */

/* ========== 常用软件页（.t25c-soft）简约商务风 ========== */
.t25c-soft-page {
	background: #f6f7fb;
}

.t25c-soft {
	--t25c-soft-border: rgba(226, 232, 240, 0.95);
	--t25c-soft-border-strong: rgba(203, 213, 225, 0.95);
	--t25c-soft-text: #0f172a;
	--t25c-soft-muted: #64748b;
	--t25c-soft-primary: #1a73e8;
	--t25c-soft-primary-hover: #155fc4;
	--t25c-soft-radius: 14px;
	--t25c-soft-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 10px 22px -18px rgba(15, 23, 42, 0.16);
	max-width: 72rem;
	margin: 0 auto;
	padding: 1.75rem max(1.25rem, env(safe-area-inset-right, 0px)) 3rem max(1.25rem, env(safe-area-inset-left, 0px));
	box-sizing: border-box;
	color: var(--t25c-soft-text);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.t25c-soft__head {
	text-align: left;
	margin: 0 0 1.15rem;
}

.t25c-soft__title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.45rem, 2.4vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t25c-soft-text);
}

.t25c-soft__sub {
	margin: 0;
	max-width: 48rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--t25c-soft-muted);
}

.t25c-soft__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(16.5rem, 100%), 1fr));
	/* 让行距在常见桌面宽度也持续变化：避免过早触顶 clamp(max) */
	row-gap: clamp(1.1rem, 3.2vw, 3.6rem);
	column-gap: clamp(0.75rem, 1.6vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.t25c-soft__grid > * {
	margin: 0 !important;
}

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

.t25c-soft-card__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0.9rem;
	background: #ffffff;
	border: 1px solid var(--t25c-soft-border);
	border-radius: var(--t25c-soft-radius);
	box-shadow: var(--t25c-soft-shadow);
	padding: 1.05rem 1.05rem 0.95rem;
	position: relative;
	overflow: hidden;
}

.t25c-soft-card__inner:hover {
	border-color: var(--t25c-soft-border-strong);
}

.t25c-soft-card__top {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 0.75rem;
	align-items: start;
}

.t25c-soft-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: block;
	object-fit: contain;
	background: #f8fafc;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: none;
}

.t25c-soft-card__icon--text {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #0f172a;
	background: #f1f5f9;
	border: 1px solid rgba(203, 213, 225, 0.95);
	box-shadow: none;
}

.t25c-soft-card__icon--pink {
	background: #f1f5f9;
	border-color: rgba(203, 213, 225, 0.95);
	box-shadow: none;
}

.t25c-soft-card__meta {
	min-width: 0;
}

.t25c-soft-card__line1 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}

.t25c-soft-card__name {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	color: var(--t25c-soft-text);
}

.t25c-soft-card__tag {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	height: 1.35rem;
	padding: 0 0.5rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #334155;
	background: #f1f5f9;
	border: 1px solid rgba(226, 232, 240, 0.95);
}

.t25c-soft-card__desc {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--t25c-soft-muted);
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t25c-soft-card__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.5rem;
}

.t25c-soft-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.75rem;
	padding: 0.48rem 1.05rem;
	border-radius: 10px;
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--t25c-soft-text);
	background: #ffffff;
	border: 1px solid var(--t25c-soft-border-strong);
	text-decoration: none !important;
	box-shadow: none;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.t25c-soft-card__btn:hover {
	background: #f8fafc;
	border-color: rgba(148, 163, 184, 0.85);
	transform: translateY(-1px);
}

.t25c-soft-card__btn:active {
	transform: translateY(0);
}

.t25c-soft-card__btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(26, 115, 232, 0.55);
}

.t25c-soft-card__btn--primary {
	color: #ffffff;
	background: var(--t25c-soft-primary);
	border-color: var(--t25c-soft-primary);
}

.t25c-soft-card__btn--primary:hover {
	background: var(--t25c-soft-primary-hover);
	border-color: var(--t25c-soft-primary-hover);
}

/* auto-fit 已覆盖断点列数，无需额外 media */

html.t25c-dark .t25c-soft-page {
	background: #0f172a;
}

html.t25c-dark .t25c-soft {
	--t25c-soft-border: rgba(51, 65, 85, 0.95);
	--t25c-soft-border-strong: rgba(71, 85, 105, 0.95);
	--t25c-soft-text: #f1f5f9;
	--t25c-soft-muted: #94a3b8;
	--t25c-soft-primary: #60a5fa;
	--t25c-soft-primary-hover: #3b82f6;
	--t25c-soft-shadow: 0 12px 32px -18px rgba(0, 0, 0, 0.65);
}

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

html.t25c-dark .t25c-soft-card__icon {
	background: rgba(15, 23, 42, 0.5);
	border-color: rgba(51, 65, 85, 0.95);
}

html.t25c-dark .t25c-soft-card__icon--text,
html.t25c-dark .t25c-soft-card__icon--pink {
	color: #e2e8f0;
	background: rgba(15, 23, 42, 0.55);
	border-color: rgba(71, 85, 105, 0.95);
}

html.t25c-dark .t25c-soft-card__tag {
	color: #cbd5e1;
	background: rgba(15, 23, 42, 0.55);
	border-color: rgba(51, 65, 85, 0.95);
}

html.t25c-dark .t25c-soft-card__btn {
	color: #e2e8f0;
	background: rgba(15, 23, 42, 0.25);
	border-color: rgba(71, 85, 105, 0.95);
}

html.t25c-dark .t25c-soft-card__btn:hover {
	background: rgba(30, 41, 59, 0.55);
	border-color: rgba(96, 165, 250, 0.35);
}

html.t25c-dark .t25c-soft-card__btn--primary {
	color: #0b1220;
	background: var(--t25c-soft-primary);
	border-color: var(--t25c-soft-primary);
}

html.t25c-dark .t25c-soft-card__btn--primary:hover {
	background: var(--t25c-soft-primary-hover);
	border-color: var(--t25c-soft-primary-hover);
}

/* ========== 工具箱页（.t25c-tb）简约商务卡片 + 分页（参考截图） ========== */
.t25c-toolbox-page {
	background: #f6f7fb;
}

.t25c-tb-page {
	background: #f6f7fb;
	--t25c-tb-text: #0f172a;
	--t25c-tb-muted: #64748b;
}

/* 工具箱/装修设计/服务市场 落地页：标题区 + 列表（列表内层仍用 .t25c-tb / .t25c-tb--home-embed） */
.t25c-tb-page__section {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 1.75rem 0 3rem;
	box-sizing: border-box;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
	color: var(--t25c-tb-text);
}

.t25c-tb {
	--t25c-tb-text: #0f172a;
	--t25c-tb-muted: #64748b;
	--t25c-tb-border: rgba(226, 232, 240, 0.95);
	--t25c-tb-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 14px 34px -22px rgba(15, 23, 42, 0.18);
	--t25c-tb-radius: 14px;
	--t25c-tb-primary: #1a73e8;
	max-width: 74rem;
	margin: 0 auto;
	padding: 1.75rem max(1.25rem, env(safe-area-inset-right, 0px)) 3rem max(1.25rem, env(safe-area-inset-left, 0px));
	box-sizing: border-box;
	color: var(--t25c-tb-text);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.t25c-tb__head {
	margin: 0 0 1.15rem;
}

.t25c-tb__title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.45rem, 2.4vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.t25c-tb__sub {
	margin: 0;
	max-width: 52rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--t25c-tb-muted);
}

.t25c-tb__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	row-gap: clamp(1.1rem, 3.2vw, 3.2rem);
	column-gap: clamp(0.75rem, 1.6vw, 1.4rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 1240px) {
	.t25c-tb__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.t25c-tb__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.t25c-tb__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 460px) {
	.t25c-tb__grid {
		grid-template-columns: 1fr;
	}
}

.t25c-tb__grid > * {
	margin: 0 !important;
}

/* 缩略图贴齐卡片顶边与左右：覆盖主题/站点编辑器对链接、区块的 spacing 与 flex gap */
.t25c-tb li.t25c-tb-card,
.t25c-templates li.t25c-tb-card {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0;
}

.t25c-tb-card__inner,
.t25c-tb-card__link {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	gap: 0;
	row-gap: 0;
	column-gap: 0;
	padding: 0;
	background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.75) 100%);
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: var(--t25c-tb-radius);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 18px 44px -34px rgba(15, 23, 42, 0.38);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.t25c-tb .t25c-tb-card__link,
.t25c-templates .t25c-tb .t25c-tb-card__link {
	padding: 0 !important;
	padding-block: 0 !important;
	padding-inline: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
	row-gap: 0 !important;
	column-gap: 0 !important;
	box-sizing: border-box;
}

.t25c-tb-card__link {
	text-decoration: none !important;
	color: inherit;
}

.t25c-tb-card__inner:hover,
.t25c-tb-card__link:hover {
	transform: translateY(-2px);
	border-color: rgba(148, 163, 184, 0.7);
	background: #ffffff;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 24px 58px -38px rgba(15, 23, 42, 0.48);
}

.t25c-tb-card__media {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
	align-self: stretch;
	overflow: hidden;
	background: transparent;
}

.t25c-tb-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(900px 260px at 20% 10%, rgba(255, 255, 255, 0.35), transparent 58%);
	pointer-events: none;
}

.t25c-tb .t25c-tb-card__media,
.t25c-templates .t25c-tb .t25c-tb-card__media {
	margin: 0 !important;
	margin-block: 0 !important;
	padding: 0 !important;
	padding-block: 0 !important;
	padding-inline: 0 !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	box-sizing: border-box;
}

.t25c-tb-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	height: 1.45rem;
	padding: 0 0.55rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #0b1220;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.76) 100%);
	border: 1px solid rgba(226, 232, 240, 0.92);
	box-shadow:
		0 16px 34px -26px rgba(15, 23, 42, 0.55),
		0 1px 0 rgba(255, 255, 255, 0.75) inset;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.t25c-tb-badge::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 999px;
	margin-right: 0.42rem;
	background: currentColor;
	opacity: 0.55;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
	flex-shrink: 0;
}

.t25c-tb-badge::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 55%);
	pointer-events: none;
}

.t25c-tb-badge--blue {
	color: #155fc4;
	background: linear-gradient(180deg, rgba(219, 234, 254, 0.95) 0%, rgba(191, 219, 254, 0.82) 100%);
	border-color: rgba(147, 197, 253, 0.7);
}

.t25c-tb-badge--violet {
	color: #5b21b6;
	background: linear-gradient(180deg, rgba(237, 233, 254, 0.95) 0%, rgba(221, 214, 254, 0.82) 100%);
	border-color: rgba(196, 181, 253, 0.65);
}

.t25c-tb-badge--amber {
	color: #b45309;
	background: linear-gradient(180deg, rgba(254, 243, 199, 0.95) 0%, rgba(253, 230, 138, 0.82) 100%);
	border-color: rgba(253, 186, 116, 0.65);
}

.t25c-tb-badge--pink {
	color: #be185d;
	background: linear-gradient(180deg, rgba(252, 231, 243, 0.95) 0%, rgba(251, 207, 232, 0.82) 100%);
	border-color: rgba(244, 114, 182, 0.6);
}

.t25c-tb-card__thumb {
	display: block;
	width: 100%;
	margin: 0;
	aspect-ratio: 16 / 9;
	border-radius: var(--t25c-tb-radius) var(--t25c-tb-radius) 0 0;
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 40%, #0ea5e9 100%);
	background-size: cover;
	background-position: center top;
	/* 避免四周一圈浅色 inset 被看成「缩略图未贴边」 */
	box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.06);
	position: relative;
	overflow: hidden;
}

.t25c-tb .t25c-tb-card__thumb,
.t25c-templates .t25c-tb .t25c-tb-card__thumb {
	margin: 0 !important;
	margin-block: 0 !important;
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

.t25c-tb-card__thumb img {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.t25c-tb-card__thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.18) 100%);
}

.t25c-tb-card__thumb--b {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 42%, #22c55e 100%);
}
.t25c-tb-card__thumb--c {
	background: linear-gradient(135deg, #16a34a 0%, #22c55e 45%, #60a5fa 100%);
}
.t25c-tb-card__thumb--d {
	background: linear-gradient(135deg, #ef4444 0%, #f97316 44%, #22c55e 100%);
}
.t25c-tb-card__thumb--e {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 45%, #0ea5e9 100%);
}

.t25c-tb-card__body {
	padding: 0.85rem 0.95rem 0.55rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-height: 0;
	flex: 1 1 auto;
	justify-content: flex-start;
}

.t25c-tb-card__title {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.32;
	letter-spacing: -0.01em;
	color: rgba(15, 23, 42, 0.94);
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t25c-tb-card__desc {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.55;
	color: var(--t25c-tb-muted);
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t25c-tb-card__body {
	background: transparent;
}

.t25c-tb-card__link:hover .t25c-tb-card__title {
	color: rgba(15, 23, 42, 0.98);
}

.t25c-tb-card__desc2 {
	margin: 0.05rem 0 0;
	font-size: 0.74rem;
	line-height: 1.45;
	color: rgba(100, 116, 139, 0.9);
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t25c-tb-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.05rem;
	padding: 0 0.95rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: rgba(26, 115, 232, 0.95);
	border: 1px solid rgba(26, 115, 232, 0.25);
	background: linear-gradient(180deg, rgba(26, 115, 232, 0.08) 0%, rgba(26, 115, 232, 0.05) 100%);
	flex: 0 0 auto;
	white-space: nowrap;
	box-shadow:
		0 10px 22px -20px rgba(26, 115, 232, 0.55),
		0 1px 0 rgba(255, 255, 255, 0.75) inset;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.t25c-tb-card__link:hover .t25c-tb-card__cta {
	background: rgba(26, 115, 232, 0.09);
	border-color: rgba(26, 115, 232, 0.33);
	box-shadow:
		0 16px 30px -24px rgba(26, 115, 232, 0.6),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transform: translateY(-1px);
}

.t25c-tb-card__learn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.05rem;
	padding: 0 0.95rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: rgba(26, 115, 232, 0.95);
	border: 1px solid rgba(26, 115, 232, 0.25);
	background: linear-gradient(180deg, rgba(26, 115, 232, 0.08) 0%, rgba(26, 115, 232, 0.05) 100%);
	flex: 0 0 auto;
	white-space: nowrap;
	margin-top: auto;
	box-shadow:
		0 10px 22px -20px rgba(26, 115, 232, 0.55),
		0 1px 0 rgba(255, 255, 255, 0.75) inset;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.t25c-tb-card__link:hover .t25c-tb-card__learn {
	background: rgba(26, 115, 232, 0.09);
	border-color: rgba(26, 115, 232, 0.33);
	box-shadow:
		0 16px 30px -24px rgba(26, 115, 232, 0.6),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transform: translateY(-1px);
}

.t25c-ops-docs-card .t25c-tb-card__body {
	padding-bottom: 0.85rem;
}

.t25c-tb-card--service .t25c-tb-card__facts {
	gap: 0.75rem;
}

/* 服务市场页：分类筛选（不显示在卡片上） */
.t25c-svc-cats {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
	margin: 0 0 1.15rem;
	padding: 0.85rem 1rem;
	border-radius: 14px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
	box-sizing: border-box;
}

.t25c-svc-cats__label {
	flex: 0 0 auto;
	font-size: 0.82rem;
	font-weight: 800;
	color: rgba(15, 23, 42, 0.72);
	padding-top: 0.35rem;
}

.t25c-svc-cats__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	min-width: 0;
	flex: 1 1 auto;
}

.t25c-svc-cats__btn {
	appearance: none;
	border: 1px solid rgba(15, 23, 42, 0.1);
	background: rgba(248, 250, 252, 0.95);
	color: rgba(51, 65, 85, 0.95);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.42rem 0.85rem;
	border-radius: 999px;
	cursor: pointer;
	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease,
		box-shadow 0.15s ease;
}

.t25c-svc-cats__btn:hover {
	border-color: rgba(26, 115, 232, 0.28);
	color: rgba(26, 115, 232, 0.95);
	background: rgba(26, 115, 232, 0.06);
}

.t25c-svc-cats__btn.is-active {
	border-color: rgba(26, 115, 232, 0.45);
	color: #fff;
	background: linear-gradient(180deg, rgba(26, 115, 232, 0.98) 0%, rgba(21, 95, 196, 0.98) 100%);
	box-shadow: 0 10px 22px -18px rgba(26, 115, 232, 0.55);
}

.t25c-svc-cats__btn:focus-visible {
	outline: 2px solid rgba(26, 115, 232, 0.55);
	outline-offset: 2px;
}

/* 首页两块区分行数：工具箱 2 行，运营资料 1 行 */
.t25c-toolbox-card .t25c-tb-card__title,
.t25c-toolbox-card .t25c-tb-card__desc {
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.t25c-ops-docs-card .t25c-tb-card__title {
	-webkit-line-clamp: 1;
	line-clamp: 1;
}

.t25c-tb-card__facts {
	margin-top: auto;
	padding: 0.45rem 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.t25c-tb-card__left {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	flex: 1 1 auto;
	min-width: 0;
}

.t25c-tb-card__sep {
	width: 1px;
	height: 0.95rem;
	background: rgba(226, 232, 240, 0.95);
	margin: 0 0.1rem 0 0.15rem;
	opacity: 0.9;
	flex-shrink: 0;
}

.t25c-tb-card__views-num {
	font-size: 0.85rem;
	line-height: 1;
	margin-left: 0.25rem;
	color: rgba(51, 65, 85, 0.88);
	letter-spacing: 0.01em;
}


.t25c-tb-icon {
	width: 1.25rem;
	height: 1.25rem;
	display: inline-block;
	background-color: rgba(51, 65, 85, 0.9);
	opacity: 0.85;
}

.t25c-tb-icon--views {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c-7.633 0-10 7-10 7s2.367 7 10 7 10-7 10-7-2.367-7-10-7zm0 12a5 5 0 110-10 5 5 0 010 10zm0-8a3 3 0 100 6 3 3 0 000-6z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c-7.633 0-10 7-10 7s2.367 7 10 7 10-7 10-7-2.367-7-10-7zm0 12a5 5 0 110-10 5 5 0 010 10zm0-8a3 3 0 100 6 3 3 0 000-6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-icon--devices {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h14a2 2 0 012 2v7a2 2 0 01-2 2H4a2 2 0 01-2-2V8a2 2 0 012-2zm0 2v7h14V8H4zm4 11h4v2H8v-2z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h14a2 2 0 012 2v7a2 2 0 01-2 2H4a2 2 0 01-2-2V8a2 2 0 012-2zm0 2v7h14V8H4zm4 11h4v2H8v-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-icon--web {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.93 9H16.9a15.6 15.6 0 00-1.25-5.05A8.02 8.02 0 0119.93 11zM12 4c1.26 0 2.9 2.18 3.7 7H8.3C9.1 6.18 10.74 4 12 4zM4.07 13H7.1c.18 1.82.63 3.54 1.25 5.05A8.02 8.02 0 014.07 13zM7.1 11H4.07a8.02 8.02 0 014.28-5.05A15.6 15.6 0 007.1 11zm1.2 2h7.4c-.8 4.82-2.44 7-3.7 7s-2.9-2.18-3.7-7zm8.6 5.05c.62-1.51 1.07-3.23 1.25-5.05h3.03a8.02 8.02 0 01-4.28 5.05z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.93 9H16.9a15.6 15.6 0 00-1.25-5.05A8.02 8.02 0 0119.93 11zM12 4c1.26 0 2.9 2.18 3.7 7H8.3C9.1 6.18 10.74 4 12 4zM4.07 13H7.1c.18 1.82.63 3.54 1.25 5.05A8.02 8.02 0 014.07 13zM7.1 11H4.07a8.02 8.02 0 014.28-5.05A15.6 15.6 0 007.1 11zm1.2 2h7.4c-.8 4.82-2.44 7-3.7 7s-2.9-2.18-3.7-7zm8.6 5.05c.62-1.51 1.07-3.23 1.25-5.05h3.03a8.02 8.02 0 01-4.28 5.05z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-icon--win {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5.2l8-1.2v8H3V5.2zm10-1.5l8-1.2V12h-8V3.7zM3 13h8v8L3 19.8V13zm10 0h8v9.5l-8-1.2V13z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5.2l8-1.2v8H3V5.2zm10-1.5l8-1.2V12h-8V3.7zM3 13h8v8L3 19.8V13zm10 0h8v9.5l-8-1.2V13z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-icon--ios {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 2h8a2 2 0 012 2v16a2 2 0 01-2 2H8a2 2 0 01-2-2V4a2 2 0 012-2zm0 3v14h8V5H8zm4 15.6a.9.9 0 100 1.8.9.9 0 000-1.8z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 2h8a2 2 0 012 2v16a2 2 0 01-2 2H8a2 2 0 01-2-2V4a2 2 0 012-2zm0 3v14h8V5H8zm4 15.6a.9.9 0 100 1.8.9.9 0 000-1.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-icon--mac {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 012 2v8a2 2 0 01-2 2H13v2h3v1H8v-1h3v-2H4a2 2 0 01-2-2V8a2 2 0 012-2zm0 2v8h16V8H4z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16a2 2 0 012 2v8a2 2 0 01-2 2H13v2h3v1H8v-1h3v-2H4a2 2 0 01-2-2V8a2 2 0 012-2zm0 2v8h16V8H4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-icon--android {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M704.134437 375.517559c1.169639-9.720386 0.023536-10.863419-9.570983-10.863419-61.034075-0.013303-122.066103-0.008186-183.099155-0.00307-60.802808 0.00307-121.606639-0.002047-182.41047 0.008186-11.116175 0-11.121292 0.027629-11.121292 10.995425 0.01228 104.398722 0.024559 208.79949 0.040932 313.197188 0 2.293229-0.046049 4.592598 0.090051 6.880711 1.128707 19.045775 14.948457 32.263821 34.036187 32.476669 9.864672 0.106424 19.733437 0.145309 29.598108 0.002047 5.167696-0.071631 7.700379 2.1295 7.67889 7.324826-0.118704 30.2827-0.188288 60.564377-0.325411 90.846054-0.094144 21.053502 8.293897 33.428344 26.431999 37.114293 11.924587 2.426259 24.197098 2.038426 36.243459-0.137123 12.986779-2.347464 25.01165-19.964704 24.810059-31.238468-0.573051-31.882128-0.026606-63.782675-0.240477-95.67606-0.042979-6.374174 2.240017-8.410554 8.444323-8.308223 17.663288 0.284479 35.331693 0.089028 53.000098 0.100284 10.854209 0.008186 11.336186 0.446162 11.349489 11.180644 0.034792 30.514991-0.066515 61.035098 0.069585 91.550089 0.080841 17.727757 11.275811 31.103392 28.596292 33.121352 9.247618 1.079588 18.690688 1.772366 28.090778 0.551562 3.682879-0.478907 7.120165-1.379417 10.489912-3.027963 14.363126-7.016811 19.641339-19.267832 19.709901-34.320667 0.137123-30.055526 0.008186-60.112076 0.047072-90.170672 0.011256-8.464789 0.447185-8.830109 9.061376-8.871041 9.406231-0.042979 18.820648 0.198521 28.219715-0.082888 14.971993-0.451278 31.391964-15.611559 30.769794-29.992081-0.51677-11.971659 0.555655-23.800056 0.565888-35.69292 0.084934-89.943498 0.011256-179.88495 0.127913-269.828448C704.846658 386.916167 703.435519 381.315612 704.134437 375.517559z'/%3E%3Cpath fill='black' d='M326.756507 342.624405c61.252039 0.019443 122.506125 0.011256 183.759187 0.019443 61.483306 0.008186 122.964566 0.024559 184.448896-0.008186 9.17701-0.00307 9.882068-1.090844 6.880711-9.434883-16.585747-46.130643-45.537126-82.226746-87.434352-107.832937-6.599302-4.034896-7.150864-6.851035-2.862187-13.399171 4.771677-7.28594 9.549493-14.567787 14.217816-21.919219 4.418636-6.961552 8.792247-13.95585 12.998035-21.045315 1.967818-3.317559 1.893116-6.606465-1.687432-9.042957-3.66139-2.492774-6.523577-0.954745-8.965186 1.959631-1.172709 1.39886-2.075265 3.022847-3.119037 4.5312-9.634428 13.950733-17.406438 29.083385-27.41335 42.813085-2.856048 3.920286-5.362124 4.718465-9.741875 2.774183-6.272867-2.780323-12.685927-5.468548-19.296485-7.232728-45.594431-12.170181-90.632183-11.539824-134.719284 6.747681-4.095271 1.698688-6.862291 1.02433-9.211802-2.852978-4.396123-7.255241-9.05626-14.347776-13.623275-21.49864-5.306866-8.305153-10.595312-16.622586-15.962553-24.886807-2.202155-3.38919-5.270027-4.365424-8.898671-2.366907-3.854794 2.12029-3.935636 5.258771-2.00261 8.78406 1.210571 2.210341 2.276856 4.511757 3.63376 6.625908 7.553023 11.757788 15.174608 23.471574 22.774703 35.199687 4.652973 7.179516 4.186346 10.118452-2.572592 13.990642-16.813944 9.639544-32.042787 21.203928-45.263903 35.493375-19.596314 21.180392-34.293037 45.223994-43.512003 72.559573C316.014862 342.003258 316.582797 342.622358 326.756507 342.624405zM590.503447 260.449847c9.732665-0.062422 20.057825 9.900487 20.36891 19.655665 0.319272 9.975189-9.906627 20.706601-19.956517 20.947078-10.327206 0.243547-20.326954-9.497305-20.632923-20.100804C570.000484 271.188422 580.529281 260.514315 590.503447 260.449847zM427.753759 263.364223c9.661034-0.448208 18.359137 9.683547 18.299785 20.22974-0.057305 10.615779-8.701173 19.986193-18.597567 20.163225-10.353812 0.186242-20.011776-9.534144-20.046568-20.174482C406.632719 270.723841 416.695912 263.880993 427.753759 263.364223z'/%3E%3Cpath fill='black' d='M815.054689 473.553363c-0.00307-19.254529 0.334621-38.518269-0.170892-57.758472-0.354064-13.44522-6.056949-23.737634-18.874883-30.258141-10.108219-5.14109-20.438495-4.313236-30.883381-4.326539-22.680559-0.026606-36.866652 14.242376-36.895305 36.929074-0.039909 31.629371-0.010233 63.260789-0.013303 94.89323-0.004093 32.320103 0.016373 64.637136-0.013303 96.957239-0.01228 13.46364 5.282307 23.585161 17.161868 30.685883 11.148921 6.665817 23.01518 5.046946 34.795481 4.485151 3.598968-0.171915 7.599072 1.075495 10.752902-0.475837 15.259542-7.516184 24.419156-18.8493 24.261567-37.044708C814.787606 562.949392 815.058782 518.249331 815.054689 473.553363z'/%3E%3Cpath fill='black' d='M256.934279 381.175419c-5.275143 0.023536-10.55131-0.037862-15.826454 0.005117-23.113417 0.188288-39.505759 18.456351-37.012985 41.535999 0.618077 5.724375 0.843204 11.422144 0.843204 17.154705 0 27.29567 0 54.590316 0.002047 81.884962 0.002047 30.048363-0.091074 60.096726 0.045025 90.14509 0.059352 13.069667 6.396687 22.252817 17.687848 28.9084 11.629875 6.851035 24.089651 5.434779 36.217876 4.355191 20.502963-1.816369 32.988322-16.457834 32.846082-36.995589-0.086981-12.368702-1.052982-24.735357-0.976234-37.09792 0.320295-51.588959-1.213641-103.19429 1.025353-154.766876C292.745902 394.208247 271.895015 381.107881 256.934279 381.175419z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M704.134437 375.517559c1.169639-9.720386 0.023536-10.863419-9.570983-10.863419-61.034075-0.013303-122.066103-0.008186-183.099155-0.00307-60.802808 0.00307-121.606639-0.002047-182.41047 0.008186-11.116175 0-11.121292 0.027629-11.121292 10.995425 0.01228 104.398722 0.024559 208.79949 0.040932 313.197188 0 2.293229-0.046049 4.592598 0.090051 6.880711 1.128707 19.045775 14.948457 32.263821 34.036187 32.476669 9.864672 0.106424 19.733437 0.145309 29.598108 0.002047 5.167696-0.071631 7.700379 2.1295 7.67889 7.324826-0.118704 30.2827-0.188288 60.564377-0.325411 90.846054-0.094144 21.053502 8.293897 33.428344 26.431999 37.114293 11.924587 2.426259 24.197098 2.038426 36.243459-0.137123 12.986779-2.347464 25.01165-19.964704 24.810059-31.238468-0.573051-31.882128-0.026606-63.782675-0.240477-95.67606-0.042979-6.374174 2.240017-8.410554 8.444323-8.308223 17.663288 0.284479 35.331693 0.089028 53.000098 0.100284 10.854209 0.008186 11.336186 0.446162 11.349489 11.180644 0.034792 30.514991-0.066515 61.035098 0.069585 91.550089 0.080841 17.727757 11.275811 31.103392 28.596292 33.121352 9.247618 1.079588 18.690688 1.772366 28.090778 0.551562 3.682879-0.478907 7.120165-1.379417 10.489912-3.027963 14.363126-7.016811 19.641339-19.267832 19.709901-34.320667 0.137123-30.055526 0.008186-60.112076 0.047072-90.170672 0.011256-8.464789 0.447185-8.830109 9.061376-8.871041 9.406231-0.042979 18.820648 0.198521 28.219715-0.082888 14.971993-0.451278 31.391964-15.611559 30.769794-29.992081-0.51677-11.971659 0.555655-23.800056 0.565888-35.69292 0.084934-89.943498 0.011256-179.88495 0.127913-269.828448C704.846658 386.916167 703.435519 381.315612 704.134437 375.517559z'/%3E%3Cpath fill='black' d='M326.756507 342.624405c61.252039 0.019443 122.506125 0.011256 183.759187 0.019443 61.483306 0.008186 122.964566 0.024559 184.448896-0.008186 9.17701-0.00307 9.882068-1.090844 6.880711-9.434883-16.585747-46.130643-45.537126-82.226746-87.434352-107.832937-6.599302-4.034896-7.150864-6.851035-2.862187-13.399171 4.771677-7.28594 9.549493-14.567787 14.217816-21.919219 4.418636-6.961552 8.792247-13.95585 12.998035-21.045315 1.967818-3.317559 1.893116-6.606465-1.687432-9.042957-3.66139-2.492774-6.523577-0.954745-8.965186 1.959631-1.172709 1.39886-2.075265 3.022847-3.119037 4.5312-9.634428 13.950733-17.406438 29.083385-27.41335 42.813085-2.856048 3.920286-5.362124 4.718465-9.741875 2.774183-6.272867-2.780323-12.685927-5.468548-19.296485-7.232728-45.594431-12.170181-90.632183-11.539824-134.719284 6.747681-4.095271 1.698688-6.862291 1.02433-9.211802-2.852978-4.396123-7.255241-9.05626-14.347776-13.623275-21.49864-5.306866-8.305153-10.595312-16.622586-15.962553-24.886807-2.202155-3.38919-5.270027-4.365424-8.898671-2.366907-3.854794 2.12029-3.935636 5.258771-2.00261 8.78406 1.210571 2.210341 2.276856 4.511757 3.63376 6.625908 7.553023 11.757788 15.174608 23.471574 22.774703 35.199687 4.652973 7.179516 4.186346 10.118452-2.572592 13.990642-16.813944 9.639544-32.042787 21.203928-45.263903 35.493375-19.596314 21.180392-34.293037 45.223994-43.512003 72.559573C316.014862 342.003258 316.582797 342.622358 326.756507 342.624405zM590.503447 260.449847c9.732665-0.062422 20.057825 9.900487 20.36891 19.655665 0.319272 9.975189-9.906627 20.706601-19.956517 20.947078-10.327206 0.243547-20.326954-9.497305-20.632923-20.100804C570.000484 271.188422 580.529281 260.514315 590.503447 260.449847zM427.753759 263.364223c9.661034-0.448208 18.359137 9.683547 18.299785 20.22974-0.057305 10.615779-8.701173 19.986193-18.597567 20.163225-10.353812 0.186242-20.011776-9.534144-20.046568-20.174482C406.632719 270.723841 416.695912 263.880993 427.753759 263.364223z'/%3E%3Cpath fill='black' d='M815.054689 473.553363c-0.00307-19.254529 0.334621-38.518269-0.170892-57.758472-0.354064-13.44522-6.056949-23.737634-18.874883-30.258141-10.108219-5.14109-20.438495-4.313236-30.883381-4.326539-22.680559-0.026606-36.866652 14.242376-36.895305 36.929074-0.039909 31.629371-0.010233 63.260789-0.013303 94.89323-0.004093 32.320103 0.016373 64.637136-0.013303 96.957239-0.01228 13.46364 5.282307 23.585161 17.161868 30.685883 11.148921 6.665817 23.01518 5.046946 34.795481 4.485151 3.598968-0.171915 7.599072 1.075495 10.752902-0.475837 15.259542-7.516184 24.419156-18.8493 24.261567-37.044708C814.787606 562.949392 815.058782 518.249331 815.054689 473.553363z'/%3E%3Cpath fill='black' d='M256.934279 381.175419c-5.275143 0.023536-10.55131-0.037862-15.826454 0.005117-23.113417 0.188288-39.505759 18.456351-37.012985 41.535999 0.618077 5.724375 0.843204 11.422144 0.843204 17.154705 0 27.29567 0 54.590316 0.002047 81.884962 0.002047 30.048363-0.091074 60.096726 0.045025 90.14509 0.059352 13.069667 6.396687 22.252817 17.687848 28.9084 11.629875 6.851035 24.089651 5.434779 36.217876 4.355191 20.502963-1.816369 32.988322-16.457834 32.846082-36.995589-0.086981-12.368702-1.052982-24.735357-0.976234-37.09792 0.320295-51.588959-1.213641-103.19429 1.025353-154.766876C292.745902 394.208247 271.895015 381.107881 256.934279 381.175419z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-icon--mini {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M664.250054 368.541681c10.015098 0 19.892049 0.732687 29.67281 1.795902-26.647917-122.810047-159.358451-214.077703-310.826188-214.077703-169.353083 0-308.085774 114.232694-308.085774 259.274068 0 83.708494 46.165436 152.460344 123.281791 205.78483l-30.80868 91.730191 107.688651-53.455469c38.558178 7.53665 69.459978 15.308661 107.924012 15.308661 9.66308 0 19.230993-0.470721 28.752858-1.225921-6.025227-20.36584-9.521864-41.723264-9.521864-63.862493C402.328693 476.632491 517.908058 368.541681 664.250054 368.541681zM498.62897 285.87389c23.200398 0 38.557154 15.120372 38.557154 38.061874 0 22.846334-15.356756 38.156018-38.557154 38.156018-23.107277 0-46.260603-15.309684-46.260603-38.156018C452.368366 300.994262 475.522716 285.87389 498.62897 285.87389zM283.016307 362.090758c-23.107277 0-46.402843-15.309684-46.402843-38.156018 0-22.941502 23.295566-38.061874 46.402843-38.061874 23.081695 0 38.46301 15.120372 38.46301 38.061874C321.479317 346.782098 306.098002 362.090758 283.016307 362.090758zM945.448458 606.151333c0-121.888048-123.258255-221.236753-261.683954-221.236753-146.57838 0-262.015505 99.348706-262.015505 221.236753 0 122.06508 115.437126 221.200938 262.015505 221.200938 30.66644 0 61.617359-7.609305 92.423993-15.262612l84.513836 45.786813-23.178909-76.17082C899.379213 735.776599 945.448458 674.90216 945.448458 606.151333zM598.803483 567.994292c-15.332197 0-30.807656-15.096836-30.807656-30.501688 0-15.190981 15.47546-30.477129 30.807656-30.477129 23.295566 0 38.558178 15.286148 38.558178 30.477129C637.361661 552.897456 622.099049 567.994292 598.803483 567.994292zM768.25071 567.994292c-15.213493 0-30.594809-15.096836-30.594809-30.501688 0-15.190981 15.381315-30.477129 30.594809-30.477129 23.107277 0 38.558178 15.286148 38.558178 30.477129C806.808888 552.897456 791.357987 567.994292 768.25071 567.994292z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M664.250054 368.541681c10.015098 0 19.892049 0.732687 29.67281 1.795902-26.647917-122.810047-159.358451-214.077703-310.826188-214.077703-169.353083 0-308.085774 114.232694-308.085774 259.274068 0 83.708494 46.165436 152.460344 123.281791 205.78483l-30.80868 91.730191 107.688651-53.455469c38.558178 7.53665 69.459978 15.308661 107.924012 15.308661 9.66308 0 19.230993-0.470721 28.752858-1.225921-6.025227-20.36584-9.521864-41.723264-9.521864-63.862493C402.328693 476.632491 517.908058 368.541681 664.250054 368.541681zM498.62897 285.87389c23.200398 0 38.557154 15.120372 38.557154 38.061874 0 22.846334-15.356756 38.156018-38.557154 38.156018-23.107277 0-46.260603-15.309684-46.260603-38.156018C452.368366 300.994262 475.522716 285.87389 498.62897 285.87389zM283.016307 362.090758c-23.107277 0-46.402843-15.309684-46.402843-38.156018 0-22.941502 23.295566-38.061874 46.402843-38.061874 23.081695 0 38.46301 15.120372 38.46301 38.061874C321.479317 346.782098 306.098002 362.090758 283.016307 362.090758zM945.448458 606.151333c0-121.888048-123.258255-221.236753-261.683954-221.236753-146.57838 0-262.015505 99.348706-262.015505 221.236753 0 122.06508 115.437126 221.200938 262.015505 221.200938 30.66644 0 61.617359-7.609305 92.423993-15.262612l84.513836 45.786813-23.178909-76.17082C899.379213 735.776599 945.448458 674.90216 945.448458 606.151333zM598.803483 567.994292c-15.332197 0-30.807656-15.096836-30.807656-30.501688 0-15.190981 15.47546-30.477129 30.807656-30.477129 23.295566 0 38.558178 15.286148 38.558178 30.477129C637.361661 552.897456 622.099049 567.994292 598.803483 567.994292zM768.25071 567.994292c-15.213493 0-30.594809-15.096836-30.594809-30.501688 0-15.190981 15.381315-30.477129 30.594809-30.477129 23.107277 0 38.558178 15.286148 38.558178 30.477129C806.808888 552.897456 791.357987 567.994292 768.25071 567.994292z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t25c-tb-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	color: var(--t25c-tb-muted);
	font-size: 0.78rem;
}

.t25c-tb-chip {
	display: inline-flex;
	align-items: center;
	height: 1.35rem;
	padding: 0 0.55rem;
	border-radius: 999px;
	font-weight: 800;
	color: #0b1220;
	background: #e8f1fd;
	border: 1px solid rgba(147, 197, 253, 0.65);
}

.t25c-tb-chip--violet {
	background: rgba(168, 85, 247, 0.12);
	border-color: rgba(168, 85, 247, 0.35);
}

.t25c-tb-chip--blue {
	background: rgba(26, 115, 232, 0.1);
	border-color: rgba(26, 115, 232, 0.35);
}

.t25c-tb-chip--amber {
	background: rgba(245, 158, 11, 0.12);
	border-color: rgba(245, 158, 11, 0.35);
}

.t25c-tb-chip--pink {
	background: rgba(236, 72, 153, 0.1);
	border-color: rgba(236, 72, 153, 0.32);
}

.t25c-tb-meta::before {
	content: "•";
	margin-right: 0.45rem;
	opacity: 0.55;
}

.t25c-tb-meta:first-of-type::before {
	content: "";
	margin: 0;
}

.t25c-tb-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.t25c-tb-pagebtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.85rem;
	border-radius: 10px;
	font-size: 0.875rem;
	font-weight: 800;
	text-decoration: none !important;
	color: #334155;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.t25c-tb-pagebtn.is-active {
	color: #ffffff;
	background: var(--t25c-tb-primary);
	border-color: var(--t25c-tb-primary);
	box-shadow: 0 10px 22px -16px rgba(26, 115, 232, 0.65);
}

.t25c-tb-pagebtn--disabled {
	color: rgba(100, 116, 139, 0.75);
	background: rgba(241, 245, 249, 0.95);
	border-color: rgba(226, 232, 240, 0.95);
	box-shadow: none;
}

html.t25c-dark .t25c-toolbox-page,
html.t25c-dark .t25c-tb-page {
	background: #0f172a;
}

html.t25c-dark .t25c-tb {
	--t25c-tb-text: #f1f5f9;
	--t25c-tb-muted: #94a3b8;
	--t25c-tb-border: rgba(51, 65, 85, 0.95);
	--t25c-tb-shadow: 0 18px 48px -26px rgba(0, 0, 0, 0.7);
	--t25c-tb-primary: #60a5fa;
}

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

html.t25c-dark .t25c-tb-card__media {
	background: transparent;
}

html.t25c-dark .t25c-tb-badge {
	color: #e2e8f0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.42) 100%);
	border-color: rgba(51, 65, 85, 0.95);
	box-shadow:
		0 14px 28px -18px rgba(0, 0, 0, 0.75),
		0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

html.t25c-dark .t25c-tb-badge--blue {
	color: #bfdbfe;
	background: linear-gradient(180deg, rgba(59, 130, 246, 0.22) 0%, rgba(37, 99, 235, 0.16) 100%);
	border-color: rgba(96, 165, 250, 0.4);
}

html.t25c-dark .t25c-tb-badge--violet {
	color: #e9d5ff;
	background: linear-gradient(180deg, rgba(168, 85, 247, 0.22) 0%, rgba(124, 58, 237, 0.16) 100%);
	border-color: rgba(196, 181, 253, 0.4);
}

html.t25c-dark .t25c-tb-badge--amber {
	color: #fde68a;
	background: linear-gradient(180deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.14) 100%);
	border-color: rgba(253, 186, 116, 0.4);
}

html.t25c-dark .t25c-tb-badge--pink {
	color: #fbcfe8;
	background: linear-gradient(180deg, rgba(236, 72, 153, 0.2) 0%, rgba(190, 24, 93, 0.14) 100%);
	border-color: rgba(244, 114, 182, 0.4);
}

html.t25c-dark .t25c-tb-icon {
	background-color: rgba(226, 232, 240, 0.92);
	opacity: 0.9;
}

html.t25c-dark .t25c-tb-card__sep {
	background: rgba(51, 65, 85, 0.95);
	opacity: 1;
}

/* ========== 工具详情页（.t25c-tbd）简约商务 ========== */
.t25c-toolbox-detail-page,
.t25c-tbd-page {
	background: #f6f7fb;
}

.t25c-bc {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	max-width: 76rem;
	margin: 0 auto 1rem;
	padding: 0.25rem 0.15rem;
	border-radius: 0;
	background: transparent;
	color: rgba(30, 41, 59, 0.92);
	box-shadow: none;
}

.t25c-bc__home {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: inherit;
	text-decoration: none;
	font-weight: 700;
}

.t25c-bc__home:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.t25c-bc__home-ico {
	width: 1.05rem;
	height: 1.05rem;
	opacity: 0.95;
}

.t25c-bc__sep {
	opacity: 0.55;
}

.t25c-bc__mid {
	opacity: 0.9;
	font-weight: 700;
	color: inherit;
	text-decoration: none;
}

.t25c-bc__mid:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.t25c-bc__cur {
	opacity: 0.98;
	font-weight: 800;
}

.t25c-tbd {
	--t25c-tbd-text: #0f172a;
	--t25c-tbd-muted: #64748b;
	--t25c-tbd-border: rgba(226, 232, 240, 0.95);
	--t25c-tbd-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 14px 34px -22px rgba(15, 23, 42, 0.18);
	--t25c-tbd-radius: 16px;
	--t25c-tbd-primary: #1a73e8;
	--t25c-tbd-primary-hover: #155fc4;
	max-width: 76rem;
	margin: 0 auto;
	padding: 1.5rem max(1.25rem, env(safe-area-inset-right, 0px)) 3rem max(1.25rem, env(safe-area-inset-left, 0px));
	box-sizing: border-box;
	color: var(--t25c-tbd-text);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.t25c-tbd .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.t25c-tbd-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 18.5rem;
	gap: 2rem;
	align-items: start;
	margin: 0 0 1.2rem;
}

.t25c-tbd-buy,
.t25c-tbd-info {
	padding-top: 0.15rem;
}

.t25c-tbd-info {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.65) 100%);
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 16px;
	padding: 1.1rem 1.2rem 1.05rem;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 10px 26px -22px rgba(15, 23, 42, 0.22);
}

.t25c-tbd-title {
	margin: 0 0 0.35rem;
	font-size: 1.4rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.25;
	padding-left: 0.75rem;
	position: relative;
}

.t25c-tbd-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2rem;
	bottom: 0.2rem;
	width: 4px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.75);
}

.t25c-tbd-stars {
	display: inline-flex;
	gap: 0.2rem;
	align-items: center;
	margin: 0 0 0.55rem;
}

.t25c-tbd-star {
	width: 0.95rem;
	height: 0.95rem;
	background: #f59e0b;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 17.27L18.18 21 16.54 13.97 22 9.24 14.81 8.62 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 17.27L18.18 21 16.54 13.97 22 9.24 14.81 8.62 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.t25c-tbd-sub {
	margin: 0;
	color: rgba(100, 116, 139, 0.95);
	font-size: 0.92rem;
	line-height: 1.75;
	padding-left: 0.75rem;
}

.t25c-tbd-info__meta {
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(226, 232, 240, 0.95);
	display: flex;
	flex-wrap: nowrap;
	gap: 0.6rem;
	align-items: flex-start;
	flex: 1 1 auto;
	min-width: 0;
}

.t25c-tbd-info__bar {
	margin-top: 0.9rem;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(226, 232, 240, 0.95);
	display: block;
}

.t25c-tbd-info__bar .t25c-tbd-info__meta {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
	min-width: 0;
}

.t25c-tbd-meta2 {
	display: flex;
	align-items: stretch;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	min-height: 2.85rem;
	width: auto;
	max-width: 100%;
	flex: 1 1 0;
	min-width: 0;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.t25c-tbd-meta2:hover {
	border-color: rgba(203, 213, 225, 0.9);
	box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.22);
	transform: translateY(-1px);
}

.t25c-tbd-meta2[aria-label="支持设备"] {
	flex: 1.35 1 0;
}

.t25c-tbd-meta2__k {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 0.75rem 0 1.05rem;
	background: rgba(37, 99, 235, 0.07);
	border-right: 1px solid rgba(226, 232, 240, 0.95);
	font-weight: 900;
	font-size: 0.86rem;
	white-space: nowrap;
	color: rgba(30, 41, 59, 0.92);
	flex: 0 0 auto;
	max-width: 6rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t25c-tbd-meta2__k::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: rgba(37, 99, 235, 0.7);
}

.t25c-tbd-meta2__k::before {
	content: "";
	position: absolute;
	left: 0.7rem;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 999px;
	background: #2563eb;
}

.t25c-tbd-meta2__v {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0 1rem;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgba(30, 41, 59, 0.92);
	font-size: 0.88rem;
	line-height: 1;
	background: #ffffff;
	flex: 1 1 auto;
}

.t25c-tbd-meta2__v .t25c-tb-icon {
	width: 0.95rem;
	height: 0.95rem;
	background-color: rgba(30, 41, 59, 0.9);
	opacity: 0.9;
	flex: 0 0 auto;
}

.t25c-tbd-meta2[aria-label="支持设备"] .t25c-tbd-meta2__v {
	overflow: hidden;
	text-overflow: ellipsis;
}

.t25c-tbd-meta2__num {
	font-weight: 900;
	color: rgba(30, 41, 59, 0.95);
}

.t25c-tbd-info__actions {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.95rem;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(226, 232, 240, 0.9);
	padding-left: 0;
	flex: 0 0 auto;
	white-space: nowrap;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.t25c-tbd-act {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.45rem;
	padding: 0 0.95rem;
	border-radius: 12px;
	font-weight: 900;
	font-size: 0.92rem;
	border: 1px solid rgba(226, 232, 240, 0.95);
	background: #ffffff;
	color: rgba(30, 41, 59, 0.95);
	text-decoration: none !important;
	cursor: pointer;
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

@media (max-width: 980px) {
	.t25c-tbd-info__bar {
		gap: 0.6rem;
	}
	.t25c-tbd-act {
		height: 2.35rem;
		padding: 0 0.85rem;
		border-radius: 10px;
		font-size: 0.88rem;
	}
	.t25c-tbd-meta2__v {
		padding: 0 0.8rem;
		font-size: 0.88rem;
	}
}

@media (max-width: 760px) {
	/* 小屏强制单行：减少支持设备图标数量，避免换行/滚动条 */
	.t25c-tbd-meta2[aria-label="支持设备"] .t25c-tb-icon:nth-child(n+5) {
		display: none;
	}
}

/* 避免在“强制一行 + 不滚动”时内容被压到 0 宽 */
@media (min-width: 761px) {
	.t25c-tbd-meta2 {
		min-width: 10.5rem;
	}
	.t25c-tbd-meta2[aria-label="支持设备"] {
		min-width: 13.2rem;
	}
}

@media (max-width: 760px) {
	.t25c-tbd-meta2 {
		min-width: 9.6rem;
	}
	.t25c-tbd-meta2[aria-label="支持设备"] {
		min-width: 11.6rem;
	}
}

@media (max-width: 640px) {
	/* 超窄屏保证可读：平台与浏览仅显示短内容，避免整块被挤没 */
	.t25c-tbd-meta2[aria-label="适用平台"] .t25c-tbd-meta2__v {
		max-width: 7.8rem;
	}
	.t25c-tbd-meta2[aria-label="浏览人数"] .t25c-tbd-meta2__num {
		display: none;
	}
}

.t25c-tbd-act--primary {
	background: rgba(37, 99, 235, 1);
	border-color: rgba(37, 99, 235, 1);
	color: #ffffff !important;
	box-shadow: 0 14px 26px -18px rgba(37, 99, 235, 0.85);
}

.t25c-tbd-act--ghost:hover {
	filter: brightness(0.99);
	box-shadow: 0 10px 20px -18px rgba(15, 23, 42, 0.2);
	transform: translateY(-1px);
}

.t25c-tbd-act--primary:hover {
	filter: brightness(0.98);
	transform: translateY(-1px);
}

html.t25c-modal-open {
	overflow: hidden;
}

.t25c-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.t25c-modal[aria-hidden="false"] {
	display: block;
}

.t25c-modal__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 520px at 20% 10%, rgba(37, 99, 235, 0.16), transparent 60%),
		radial-gradient(900px 520px at 80% 90%, rgba(14, 165, 233, 0.14), transparent 62%),
		rgba(15, 23, 42, 0.42);
	backdrop-filter: blur(10px) saturate(120%);
	-webkit-backdrop-filter: blur(10px) saturate(120%);
}

.t25c-modal__panel {
	position: absolute;
	left: 50%;
	top: 18vh;
	transform: translateX(-50%);
	width: min(38rem, calc(100vw - 2rem));
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(226, 232, 240, 0.7);
	border-radius: 18px;
	box-shadow:
		0 34px 90px -52px rgba(0, 0, 0, 0.65),
		0 1px 0 rgba(255, 255, 255, 0.55) inset;
	backdrop-filter: blur(16px) saturate(150%);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	overflow: hidden;
}

.t25c-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.95rem 1.05rem;
	border-bottom: 1px solid rgba(226, 232, 240, 0.7);
	background: rgba(255, 255, 255, 0.35);
}

.t25c-modal__title {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 900;
	color: rgba(30, 41, 59, 0.95);
}

.t25c-modal__close {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 10px;
	border: 1px solid rgba(226, 232, 240, 0.7);
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
	color: rgba(30, 41, 59, 0.9);
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.t25c-modal__close:hover {
	filter: brightness(0.98);
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.25);
}

.t25c-modal__body {
	padding: 0.95rem 1.05rem 0.25rem;
	color: rgba(51, 65, 85, 0.92);
	font-size: 0.95rem;
	line-height: 1.7;
}

.t25c-modal__body p {
	margin: 0 0 0.75rem;
}

.t25c-modal__link {
	color: rgba(37, 99, 235, 1) !important;
	font-weight: 900;
	text-decoration: none !important;
	word-break: break-all;
}

.t25c-modal__inline {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin: 0.25rem 0 0.85rem;
}

.t25c-modal__unlock {
	display: grid;
	grid-template-columns: 7.5rem minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	margin: 0.25rem 0 0.85rem;
}

.t25c-modal__qr {
	width: 7.5rem;
	aspect-ratio: 1 / 1;
	border-radius: 14px;
	border: 1px solid rgba(226, 232, 240, 0.75);
	background:
		linear-gradient(135deg, rgba(37, 99, 235, 0.14) 0%, rgba(14, 165, 233, 0.12) 60%, rgba(16, 185, 129, 0.12) 100%),
		repeating-linear-gradient(0deg, rgba(30, 41, 59, 0.05) 0 10px, rgba(30, 41, 59, 0.02) 10px 20px);
	position: relative;
	overflow: hidden;
	box-shadow: 0 16px 36px -28px rgba(15, 23, 42, 0.35);
}

.t25c-modal__qr::after {
	content: "二维码";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(30, 41, 59, 0.75);
	font-weight: 900;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

.t25c-modal__text p {
	margin: 0 0 0.5rem;
}

.t25c-modal__text p:last-child {
	margin-bottom: 0;
}

.t25c-modal__text p:nth-child(1) {
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: rgba(30, 41, 59, 0.96);
}

.t25c-modal__text p:nth-child(2) {
	font-size: 1.12rem;
	font-weight: 1000;
	letter-spacing: -0.02em;
	color: rgba(37, 99, 235, 1);
}

.t25c-modal__text p:nth-child(3) {
	font-size: 0.98rem;
	font-weight: 800;
	color: rgba(51, 65, 85, 0.92);
}

.t25c-modal__foot {
	padding: 0.8rem 1.05rem 1rem;
	border-top: 1px solid rgba(226, 232, 240, 0.7);
	display: flex;
	justify-content: flex-end;
}

.t25c-tbd-info__rows {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.6rem;
	padding-top: 0.85rem;
	margin-top: 0.55rem;
	border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.t25c-tbd-info__row {
	display: grid;
	grid-template-columns: 8.4rem minmax(0, 1fr);
	align-items: center;
	overflow: hidden;
	min-height: 2.85rem;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 12px;
	box-shadow: none;
}

.t25c-tbd-info__k {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0 1rem 0 1.2rem;
	background: rgba(37, 99, 235, 0.07);
	border-right: 1px solid rgba(226, 232, 240, 0.95);
	color: rgba(30, 41, 59, 0.92);
	font-weight: 900;
	font-size: 0.86rem;
	letter-spacing: 0;
	white-space: nowrap;
}

.t25c-tbd-info__k::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: rgba(37, 99, 235, 0.7);
}

.t25c-tbd-info__k::before {
	content: "";
	position: absolute;
	left: 0.78rem;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 999px;
	background: #2563eb;
}

.t25c-tbd-info__v {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.6rem;
	padding: 0 1rem;
	background: #ffffff;
	color: rgba(30, 41, 59, 0.92);
	font-size: 0.92rem;
	line-height: 1;
	white-space: nowrap;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t25c-tbd-info__row .t25c-tb-icon {
	width: 1.1rem;
	height: 1.1rem;
	/* 设备图标用 mask + 背景色着色；保持深色保证可见 */
	background-color: rgba(30, 41, 59, 0.9);
	opacity: 0.9;
	flex: 0 0 auto;
}

.t25c-tbd-info__row[aria-label="支持设备"] .t25c-tbd-info__v {
	overflow-x: auto;
	overflow-y: hidden;
	text-overflow: clip;
	scrollbar-width: none;
}

.t25c-tbd-info__row[aria-label="支持设备"] .t25c-tbd-info__v::-webkit-scrollbar {
	display: none;
}

.t25c-tbd-info__num {
	font-weight: 900;
	color: rgba(30, 41, 59, 0.95);
	font-size: 0.92rem;
}

.t25c-tbd-pricebar {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	background: #fbefe7;
	border: 1px solid rgba(251, 146, 60, 0.18);
	border-radius: 10px;
	padding: 0.95rem 1.05rem;
	margin: 0 0 1.1rem;
}

.t25c-tbd-pricebar__left {
	display: inline-flex;
	align-items: baseline;
	gap: 0.5rem;
}

.t25c-tbd-pricebar__k {
	color: rgba(51, 65, 85, 0.8);
	font-size: 0.92rem;
	font-weight: 800;
}

.t25c-tbd-pricebar__price {
	color: #f97316;
	font-weight: 900;
	font-size: 1.55rem;
}

.t25c-tbd-pricebar__right {
	padding-left: 1.05rem;
	margin-left: 1.05rem;
	border-left: 1px solid rgba(226, 232, 240, 0.95);
	color: rgba(100, 116, 139, 0.95);
	font-size: 0.9rem;
}

.t25c-tbd-row {
	display: grid;
	grid-template-columns: 6.2rem 1fr;
	gap: 0.65rem;
	align-items: start;
	margin: 0 0 1rem;
}

.t25c-tbd-row__k {
	padding-top: 0.15rem;
	color: rgba(51, 65, 85, 0.8);
	font-weight: 800;
	font-size: 0.92rem;
}

.t25c-tbd-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 0.85rem;
}

.t25c-tbd-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.1rem;
	padding: 0 1rem;
	border-radius: 10px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	background: #ffffff;
	color: rgba(30, 41, 59, 0.92);
	font-size: 0.9rem;
	font-weight: 800;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.t25c-tbd-pill.is-compact {
	min-height: 1.9rem;
	padding: 0 0.85rem;
	border-radius: 8px;
}

.t25c-tbd-pill.is-active {
	border-color: rgba(249, 115, 22, 0.55);
	background: rgba(255, 237, 213, 0.55);
	color: #c2410c;
}

.t25c-tbd-cta {
	margin-top: 1.55rem;
}

.t25c-tbd-buybtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 9.5rem;
	height: 2.6rem;
	padding: 0 1.25rem;
	border-radius: 10px;
	background: #f97316;
	color: #ffffff !important;
	font-weight: 900;
	text-decoration: none !important;
	box-shadow: 0 10px 22px -16px rgba(249, 115, 22, 0.85);
}

.t25c-tbd-buybtn:hover {
	filter: brightness(0.98);
	transform: translateY(-1px);
}

.t25c-tbd-side__card {
	background: #ffffff;
	border: 1px solid var(--t25c-tbd-border);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.t25c-tbd-side__thumb {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: linear-gradient(180deg, #7dd3fc 0%, #93c5fd 50%, #e0f2fe 100%);
}

.t25c-tbd-side__info {
	padding: 0.85rem 0.85rem 0.95rem;
	display: grid;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: rgba(51, 65, 85, 0.92);
}

.t25c-tbd-side__line span {
	color: rgba(100, 116, 139, 0.95);
	margin-right: 0.35rem;
}

.t25c-tbd-side__line strong {
	font-weight: 900;
	color: rgba(30, 41, 59, 0.95);
}

.t25c-tbd-side__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.25rem;
	color: #f97316 !important;
	font-weight: 900;
	text-decoration: none !important;
}

.t25c-tbd-side__link::before {
	content: "";
	width: 1rem;
	height: 1rem;
	background: #f59e0b;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10.59 13.41a1.996 1.996 0 0 1 0-2.82l3.88-3.88a2 2 0 1 1 2.83 2.83l-1.41 1.41a1 1 0 1 1-1.42-1.42l1.41-1.41a.999.999 0 1 0-1.41-1.41l-3.88 3.88a1 1 0 0 0 1.41 1.41 1 1 0 1 1 1.41 1.41 2 2 0 0 1-2.82 0zM13.41 10.59a1.996 1.996 0 0 1 0 2.82l-3.88 3.88a2 2 0 1 1-2.83-2.83l1.41-1.41a1 1 0 1 1 1.42 1.42l-1.41 1.41a.999.999 0 1 0 1.41 1.41l3.88-3.88a1 1 0 0 0-1.41-1.41 1 1 0 1 1-1.41-1.41 2 2 0 0 1 2.82 0z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10.59 13.41a1.996 1.996 0 0 1 0-2.82l3.88-3.88a2 2 0 1 1 2.83 2.83l-1.41 1.41a1 1 0 1 1-1.42-1.42l1.41-1.41a.999.999 0 0 0-1.41-1.41l-3.88 3.88a1 1 0 0 0 1.41 1.41 1 1 0 1 1 1.41 1.41 2 2 0 0 1-2.82 0zM13.41 10.59a1.996 1.996 0 0 1 0 2.82l-3.88 3.88a2 2 0 1 1-2.83-2.83l1.41-1.41a1 1 0 1 1 1.42 1.42l-1.41 1.41a.999.999 0 1 0 1.41 1.41l3.88-3.88a1 1 0 0 0-1.41-1.41 1 1 0 1 1-1.41-1.41 2 2 0 0 1 2.82 0z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.t25c-tbd-buybtn {
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.t25c-tbd-buybtn:active {
	transform: translateY(0);
}

@media (max-width: 860px) {
	.t25c-tbd-head {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.15rem;
	}
	.t25c-tbd-row {
		grid-template-columns: 5.6rem 1fr;
	}
	.t25c-tbd-info__row {
		grid-template-columns: 7.2rem 1fr;
	}
}

.t25c-tbd-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.t25c-tbd-card {
	background: #ffffff;
	border: 1px solid var(--t25c-tbd-border);
	border-radius: var(--t25c-tbd-radius);
	box-shadow: var(--t25c-tbd-shadow);
	padding: 1.05rem 1.05rem 1.1rem;
}

.t25c-tbd-h2 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: -0.01em;
}

.t25c-tbd-list {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--t25c-tbd-muted);
	line-height: 1.7;
	font-size: 0.92rem;
}

.t25c-tbd-kv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.55rem;
}

.t25c-tbd-kv__item {
	display: grid;
	grid-template-columns: 4.2rem minmax(0, 1fr);
	gap: 0.75rem;
	align-items: start;
	font-size: 0.92rem;
	line-height: 1.65;
}

.t25c-tbd-kv__k {
	font-weight: 900;
	color: rgba(100, 116, 139, 0.95);
	white-space: nowrap;
}

.t25c-tbd-kv__v {
	color: var(--t25c-tbd-muted);
}

.t25c-tbd-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
}

.t25c-tbd-steps li {
	display: flex;
	gap: 0.6rem;
	align-items: center;
	padding: 0.7rem 0.75rem;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid rgba(226, 232, 240, 0.95);
}

.t25c-tbd-step__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 900;
	color: #ffffff;
	background: linear-gradient(135deg, #1a73e8, #155fc4);
}

.t25c-tbd-step__t {
	font-weight: 800;
	color: var(--t25c-tbd-text);
	font-size: 0.92rem;
}

.t25c-tbd-faq__item {
	border: 1px solid rgba(226, 232, 240, 0.95);
	background: #ffffff;
	border-radius: 14px;
	padding: 0.7rem 0.8rem;
}

.t25c-tbd-faq__item + .t25c-tbd-faq__item {
	margin-top: 0.6rem;
}

.t25c-tbd-faq__item summary {
	cursor: pointer;
	font-weight: 900;
	color: var(--t25c-tbd-text);
}

.t25c-tbd-faq__a {
	margin-top: 0.5rem;
	color: var(--t25c-tbd-muted);
	line-height: 1.7;
	font-size: 0.92rem;
}

.t25c-tbd-sticky {
	position: sticky;
	top: calc(0.85rem + env(safe-area-inset-top, 0px));
}

.t25c-tbd-mini {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
}

.t25c-tbd-mini li {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--t25c-tbd-muted);
}

.t25c-tbd-mini strong {
	color: var(--t25c-tbd-text);
	font-weight: 900;
}

.t25c-tbd-aside-actions {
	margin-top: 0.85rem;
	display: grid;
	gap: 0.55rem;
}

.t25c-tbd-hint {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
	line-height: 1.6;
	color: rgba(100, 116, 139, 0.95);
}

@media (max-width: 980px) {
	.t25c-tbd-hero {
		grid-template-columns: 1fr;
	}
	.t25c-tbd-layout {
		grid-template-columns: 1fr;
	}
	.t25c-tbd-sticky {
		position: static;
	}
	.t25c-tbd-steps {
		grid-template-columns: 1fr;
	}
}

html.t25c-dark .t25c-toolbox-detail-page,
html.t25c-dark .t25c-tbd-page {
	background: #0f172a;
}

html.t25c-dark .t25c-tbd {
	--t25c-tbd-text: #f1f5f9;
	--t25c-tbd-muted: #94a3b8;
	--t25c-tbd-border: rgba(51, 65, 85, 0.95);
	--t25c-tbd-shadow: 0 18px 48px -26px rgba(0, 0, 0, 0.7);
	--t25c-tbd-primary: #60a5fa;
	--t25c-tbd-primary-hover: #3b82f6;
}

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

html.t25c-dark .t25c-tbd-hero__meta,
html.t25c-dark .t25c-tbd-card,
html.t25c-dark .t25c-tbd-hero__media,
html.t25c-dark .t25c-tbd-faq__item,
html.t25c-dark .t25c-tbd-steps li {
	border-color: rgba(51, 65, 85, 0.95);
}

html.t25c-dark .t25c-tbd-btn--ghost {
	background: rgba(15, 23, 42, 0.35);
	border-color: rgba(51, 65, 85, 0.95);
	color: #e2e8f0;
}

html.t25c-dark .t25c-tb-card__facts {
	border-top-color: rgba(51, 65, 85, 0.95);
}

html.t25c-dark .t25c-tb-card__icons {
	border-left-color: rgba(51, 65, 85, 0.95);
}

html.t25c-dark .t25c-tb-pagebtn {
	color: #e2e8f0;
	background: rgba(15, 23, 42, 0.35);
	border-color: rgba(51, 65, 85, 0.95);
	box-shadow: none;
}

html.t25c-dark .t25c-tb-pagebtn.is-active {
	color: #0b1220;
	background: var(--t25c-tb-primary);
	border-color: var(--t25c-tb-primary);
}

/* ========== 首页 Banner 占位容器（简约商务） ========== */
.t25c-home-banner {
	width: calc(100% + 2 * var(--t25c-site-pad-x));
	max-width: none;
	margin-left: calc(-1 * var(--t25c-site-pad-x)) !important;
	margin-right: calc(-1 * var(--t25c-site-pad-x)) !important;
	box-sizing: border-box;
	padding-left: var(--t25c-site-pad-x) !important;
	padding-right: var(--t25c-site-pad-x) !important;
}

/* 让首页「工具箱 / 运营资料」卡片区域宽度与 Banner 一致（对冲 .wp-site-blocks 的左右 padding） */
.t25c-toolbox-card,
.t25c-ops-docs-card {
	width: calc(100% + 2 * var(--t25c-site-pad-x));
	max-width: none;
	margin-left: calc(-1 * var(--t25c-site-pad-x)) !important;
	margin-right: calc(-1 * var(--t25c-site-pad-x)) !important;
	box-sizing: border-box;
	padding-left: var(--t25c-site-pad-x) !important;
	padding-right: var(--t25c-site-pad-x) !important;
}

.t25c-apps-card {
	width: calc(100% + 2 * var(--t25c-site-pad-x));
	max-width: none;
	margin-left: calc(-1 * var(--t25c-site-pad-x)) !important;
	margin-right: calc(-1 * var(--t25c-site-pad-x)) !important;
	box-sizing: border-box;
	padding-left: var(--t25c-site-pad-x) !important;
	padding-right: var(--t25c-site-pad-x) !important;
}

.t25c-services-card,
.t25c-decor-design-card {
	width: calc(100% + 2 * var(--t25c-site-pad-x));
	max-width: none;
	margin-left: calc(-1 * var(--t25c-site-pad-x)) !important;
	margin-right: calc(-1 * var(--t25c-site-pad-x)) !important;
	box-sizing: border-box;
	padding-left: var(--t25c-site-pad-x) !important;
	padding-right: var(--t25c-site-pad-x) !important;
}

/* 工具箱 / 装修设计 / 服务市场 落地页：宽度对齐首页 Banner 容器并自适应屏幕 */
.t25c-toolbox-page,
.t25c-operations-page,
.t25c-services-page {
	width: calc(100% + 2 * var(--t25c-site-pad-x));
	max-width: none;
	margin-left: calc(-1 * var(--t25c-site-pad-x)) !important;
	margin-right: calc(-1 * var(--t25c-site-pad-x)) !important;
	box-sizing: border-box;
	padding-left: var(--t25c-site-pad-x) !important;
	padding-right: var(--t25c-site-pad-x) !important;
}

.t25c-webnav-card,
.t25c-daily-brief-card {
	width: calc(100% + 2 * var(--t25c-site-pad-x));
	max-width: none;
	margin-left: calc(-1 * var(--t25c-site-pad-x)) !important;
	margin-right: calc(-1 * var(--t25c-site-pad-x)) !important;
	box-sizing: border-box;
	padding-left: var(--t25c-site-pad-x) !important;
	padding-right: var(--t25c-site-pad-x) !important;
}

/* ========== 首页快捷网址导航（参考截图） ========== */
.t25c-webnav {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 16px;
	box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.32);
	padding: 1.05rem 1.15rem 1.15rem;
}

.t25c-webnav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0 0 0.85rem;
}

.t25c-webnav__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: rgba(15, 23, 42, 0.95);
}

.t25c-webnav__more {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: rgba(248, 250, 252, 0.9);
	color: rgba(15, 23, 42, 0.72);
	font-size: 12px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.t25c-webnav__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
	padding: 0;
}

@media (max-width: 1240px) {
	.t25c-webnav__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.t25c-webnav__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 460px) {
	.t25c-webnav__grid {
		grid-template-columns: 1fr;
	}
}

.t25c-webnav-item {
	margin: 0;
}

.t25c-webnav-item__link {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.7rem 0.75rem;
	border-radius: 14px;
	background: rgba(248, 250, 252, 0.75);
	border: 1px solid rgba(226, 232, 240, 0.95);
	text-decoration: none !important;
	color: inherit;
	box-sizing: border-box;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.t25c-webnav-item__link:hover {
	background: rgba(248, 250, 252, 0.95);
	border-color: rgba(148, 163, 184, 0.55);
	transform: translateY(-1px);
	box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.35);
}

.t25c-webnav-item__icon {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	flex: 0 0 auto;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.98), rgba(16, 185, 129, 0.98));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.t25c-webnav-item__icon.has-img {
	background-image: var(--t25c-icon-img);
}

.t25c-webnav-item__main {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1 1 auto;
	gap: 0.15rem;
}

.t25c-webnav-item__name {
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.2;
	color: rgba(15, 23, 42, 0.92);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t25c-webnav-item__url {
	font-size: 0.72rem;
	line-height: 1.2;
	color: rgba(100, 116, 139, 0.92);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t25c-webnav-item__btn {
	flex: 0 0 auto;
	padding: 0.34rem 0.65rem;
	border-radius: 10px;
	border: 1px solid rgba(148, 163, 184, 0.55);
	background: rgba(255, 255, 255, 0.9);
	color: rgba(15, 23, 42, 0.72);
	font-size: 0.72rem;
	font-weight: 800;
	white-space: nowrap;
}

.t25c-webnav-item__link:hover .t25c-webnav-item__btn {
	border-color: rgba(148, 163, 184, 0.75);
	background: rgba(255, 255, 255, 1);
}

/* ========== 首页每日早报（卡片展示新闻条目） ========== */
/* 外层 .t25c-daily-brief-card 与 .t25c-webnav-card 相同，对冲 .wp-site-blocks 左右 padding，与首页其它区块对齐 */

.t25c-hdb {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 16px;
	box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.32);
	padding: 1.05rem 1.15rem 1.15rem;
	max-width: 100%;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.t25c-hdb__body {
	min-width: 0;
}

.t25c-hdb__body .wp-block-shortcode {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.t25c-hdb__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0 0 0.85rem;
	min-width: 0;
}

.t25c-hdb__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: rgba(15, 23, 42, 0.95);
	min-width: 0;
	flex: 1 1 auto;
}

.t25c-hdb__more {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: rgba(248, 250, 252, 0.9);
	color: rgba(15, 23, 42, 0.72);
	font-size: 12px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.t25c-hdb-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem 0.85rem;
}

@media (max-width: 900px) {
	.t25c-hdb-list {
		grid-template-columns: 1fr;
	}
}

.t25c-hdb-item {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	min-width: 0;
	padding: 0.55rem 0.85rem;
	border-radius: 14px;
	background: rgba(248, 250, 252, 0.75);
	border: 1px solid rgba(226, 232, 240, 0.95);
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.t25c-hdb-item:hover {
	background: rgba(248, 250, 252, 0.95);
	border-color: rgba(148, 163, 184, 0.55);
	transform: translateY(-1px);
	box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.35);
}

.t25c-hdb-item__num {
	width: 2rem;
	height: auto;
	min-height: 2rem;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 0.78rem;
	color: #0f172a;
	background: none;
	border: none;
	flex: 0 0 auto;
}

html.t25c-dark .t25c-hdb-item__num {
	color: rgba(226, 232, 240, 0.95);
}

.t25c-hdb-item__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.t25c-hdb-item__title {
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
	color: rgba(15, 23, 42, 0.92);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t25c-hdb-item__desc {
	font-size: 0.78rem;
	line-height: 1.35;
	color: rgba(71, 85, 105, 0.9);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t25c-hdb-item__src {
	font-size: 0.74rem;
	line-height: 1.2;
	color: rgba(100, 116, 139, 0.92);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 点评块与「来源」之间略加大间距 */
.t25c-hdb-item__comment + .t25c-hdb-item__src {
	margin-top: 0.35rem;
}

/* 首页「每日早报」：点评（紧凑样式） */
.t25c-hdb-item__comment {
	margin-top: 0.22rem;
	padding: 0.18rem 0.34rem;
	border-radius: 9px;
	background: rgba(248, 250, 252, 0.82);
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-left: 2px solid rgba(37, 99, 235, 0.7);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	gap: 0.26rem;
	line-height: 1.25;
	min-width: 0;
}

.t25c-hdb-item__comment-site {
	flex: 0 0 auto;
	font-size: 0.62rem;
	font-weight: 900;
	color: rgba(37, 99, 235, 0.95);
	padding: 0.06rem 0.28rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.16);
}

.t25c-hdb-item__comment-k {
	flex: 0 0 auto;
	font-size: 0.62rem;
	font-weight: 900;
	color: rgba(51, 65, 85, 0.72);
	letter-spacing: 0.05em;
}

.t25c-hdb-item__comment-v {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.7rem;
	color: rgba(15, 23, 42, 0.92);
	font-weight: 500;
	line-height: 1.45;
	word-break: break-word;
	overflow-wrap: anywhere;
}

html.t25c-dark .t25c-hdb-item__comment {
	background: rgba(15, 23, 42, 0.42);
	border-color: rgba(148, 163, 184, 0.22);
	border-left-color: rgba(96, 165, 250, 0.85);
}

html.t25c-dark .t25c-hdb-item__comment-v {
	color: rgba(226, 232, 240, 0.92);
}

@media (max-width: 640px) {
	.t25c-hdb {
		padding: 0.9rem 0.75rem 1rem;
	}

	.t25c-hdb__head {
		align-items: flex-start;
		gap: 0.55rem 0.65rem;
	}

	.t25c-hdb__title {
		font-size: clamp(0.98rem, 4.2vw, 1.05rem);
	}

	.t25c-hdb__more {
		font-size: 11px;
		padding: 0 8px;
		height: 28px;
	}

	.t25c-hdb-item {
		gap: 0.5rem;
		padding: 0.5rem 0.65rem;
	}

	.t25c-hdb-item__num {
		width: 1.75rem;
		min-height: 1.75rem;
		font-size: 0.72rem;
	}

	.t25c-hdb-item__title {
		font-size: 0.86rem;
	}

	.t25c-hdb-item__desc {
		font-size: 0.74rem;
	}

	.t25c-hdb-item__src {
		white-space: normal;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		word-break: break-word;
	}
}

@media (max-width: 400px) {
	.t25c-hdb__head {
		flex-direction: column;
		align-items: stretch;
	}

	.t25c-hdb__more {
		align-self: stretch;
		justify-content: center;
		height: auto;
		min-height: 30px;
		padding: 0.4rem 10px;
		white-space: normal;
		text-align: center;
	}
}

/* 全站底部备案号条 */
.t25c-beian {
	padding: 0.75rem 1rem;
	text-align: center;
	font-size: 0.82rem;
	color: rgba(100, 116, 139, 0.9);
}

html.t25c-dark .t25c-beian {
	color: rgba(148, 163, 184, 0.9);
}

/* ========== 首页常用软件：横向小卡片（参考截图） ========== */
.t25c-apps {
	max-width: none;
	margin: 0;
	padding: 0;
}

.t25c-apps__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 1240px) {
	.t25c-apps__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.t25c-apps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 460px) {
	.t25c-apps__grid {
		grid-template-columns: 1fr;
	}
}

.t25c-app-card {
	margin: 0;
	padding: 0;
}

.t25c-app-card__link {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	height: 100%;
	padding: 0.75rem 0.85rem;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 10px 26px -22px rgba(15, 23, 42, 0.22);
	text-decoration: none !important;
	color: inherit;
	box-sizing: border-box;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.t25c-app-card__link:hover {
	transform: translateY(-1px);
	border-color: rgba(37, 99, 235, 0.22);
	box-shadow: 0 14px 32px -24px rgba(15, 23, 42, 0.26);
}

.t25c-app-card__icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	flex: 0 0 auto;
	background: linear-gradient(135deg, rgba(248, 113, 113, 0.98), rgba(244, 63, 94, 0.98));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.t25c-app-card__icon.has-img {
	background-image: var(--t25c-icon-img);
}

.t25c-app-card__icon--b {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 42%, #22c55e 100%);
}
.t25c-app-card__icon--c {
	background: linear-gradient(135deg, #16a34a 0%, #22c55e 45%, #60a5fa 100%);
}
.t25c-app-card__icon--d {
	background: linear-gradient(135deg, #ef4444 0%, #f97316 44%, #22c55e 100%);
}
.t25c-app-card__icon--e {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 45%, #0ea5e9 100%);
}

.t25c-app-card--taobao .t25c-app-card__icon {
	background: linear-gradient(135deg, rgba(251, 146, 60, 0.98), rgba(249, 115, 22, 0.98));
}
.t25c-app-card--yyb .t25c-app-card__icon {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.98), rgba(16, 185, 129, 0.98));
}
.t25c-app-card--qqmusic .t25c-app-card__icon {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.98), rgba(14, 165, 233, 0.98));
}
.t25c-app-card--youku .t25c-app-card__icon {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.98), rgba(59, 130, 246, 0.98));
}

.t25c-app-card__main {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1 1 auto;
	gap: 0.25rem;
}

.t25c-app-card__title {
	font-size: 0.9rem;
	font-weight: 800;
	color: rgba(15, 23, 42, 0.92);
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t25c-app-card__meta {
	font-size: 0.72rem;
	color: rgba(100, 116, 139, 0.9);
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t25c-app-card__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-top: 0.1rem;
}

.t25c-app-card__star {
	width: 10px;
	height: 10px;
	display: inline-block;
	background: rgba(148, 163, 184, 0.65);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.t25c-app-card__star.is-on {
	background: rgba(245, 158, 11, 0.95);
}

.t25c-app-card__btn {
	flex: 0 0 auto;
	margin-left: 0.25rem;
	padding: 0.35rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 800;
	color: #1a73e8;
	border: 1px solid rgba(26, 115, 232, 0.28);
	background: rgba(26, 115, 232, 0.06);
	border-radius: 10px;
	white-space: nowrap;
}

.t25c-app-card__link:hover .t25c-app-card__btn {
	background: rgba(26, 115, 232, 0.09);
	border-color: rgba(26, 115, 232, 0.34);
}

.t25c-home-banner__media {
	width: 100%;
	aspect-ratio: 21 / 6;
	border-radius: 16px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	background:
		radial-gradient(900px 320px at 20% 20%, rgba(37, 99, 235, 0.18), transparent 60%),
		radial-gradient(900px 320px at 85% 65%, rgba(14, 165, 233, 0.16), transparent 62%),
		linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.85) 100%);
	box-shadow: 0 16px 40px -34px rgba(15, 23, 42, 0.35);
	overflow: hidden;
}

@media (max-width: 860px) {
	.t25c-home-banner__media {
		aspect-ratio: 16 / 9;
		border-radius: 14px;
	}
}

/* ========== 首页标题装饰（参考图样式） ========== */
.t25c-home-heading {
	background: transparent;
}

.t25c-heading {
	max-width: 76rem;
	margin: 0 auto;
	text-align: center;
}

.t25c-heading__title {
	margin: 0;
	padding: 0.25rem 0 0.65rem;
	font-size: clamp(1.35rem, 2.6vw, 2.1rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	color: rgba(30, 41, 59, 0.95);
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
}

.t25c-heading__text {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

.t25c-heading__text::before,
.t25c-heading__text::after {
	content: "";
	width: 0.65rem;
	height: 0.65rem;
	background: rgba(37, 99, 235, 0.9);
	transform: rotate(45deg);
	border-radius: 2px;
	flex: 0 0 auto;
}

.t25c-heading__title::before,
.t25c-heading__title::after {
	content: "";
	width: clamp(5.2rem, 11vw, 10.5rem);
	height: 1.2rem;
	opacity: 0.95;
	background: rgba(37, 99, 235, 0.9);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Crect x='2' y='2' width='6' height='6' transform='rotate(45 5 5)' rx='1' fill='black'/%3E%3C/svg%3E") no-repeat center / 10px 10px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Crect x='2' y='2' width='6' height='6' transform='rotate(45 5 5)' rx='1' fill='black'/%3E%3C/svg%3E") no-repeat center / 10px 10px;
}

.t25c-heading__title::before {
	-webkit-mask-position: right center;
	mask-position: right center;
	box-shadow:
		-18px 0 0 rgba(37, 99, 235, 0.55),
		-36px 0 0 rgba(37, 99, 235, 0.32),
		-54px 0 0 rgba(37, 99, 235, 0.20),
		-72px 0 0 rgba(37, 99, 235, 0.12),
		-90px 0 0 rgba(37, 99, 235, 0.22),
		-108px 0 0 rgba(37, 99, 235, 0.16),
		-126px 0 0 rgba(37, 99, 235, 0.18);
}

.t25c-heading__title::after {
	-webkit-mask-position: left center;
	mask-position: left center;
	box-shadow:
		18px 0 0 rgba(37, 99, 235, 0.55),
		36px 0 0 rgba(37, 99, 235, 0.32),
		54px 0 0 rgba(37, 99, 235, 0.20),
		72px 0 0 rgba(37, 99, 235, 0.12),
		90px 0 0 rgba(37, 99, 235, 0.22),
		108px 0 0 rgba(37, 99, 235, 0.16),
		126px 0 0 rgba(37, 99, 235, 0.18);
}

.t25c-heading__underline {
	width: 5.2rem;
	height: 2px;
	margin: 0 auto;
	background: rgba(37, 99, 235, 0.9);
	border-radius: 999px;
}

@media (max-width: 860px) {
	.t25c-heading__title {
		gap: 0.85rem;
	}

	.t25c-heading__text {
		gap: 0.5rem;
	}
}

.t25c-card {
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: 12px;
	padding: 0.95rem 0.95rem 1.05rem;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.t25c-card__title {
	margin: 0.85rem 0 0.55rem 0;
	font-size: 1.05rem;
	line-height: 1.3;
	font-weight: 650;
}

.t25c-card__content :first-child,
.t25c-card__excerpt :first-child {
	margin-top: 0;
}

.t25c-card__content :last-child,
.t25c-card__excerpt :last-child {
	margin-bottom: 0;
}

.t25c-template-card {
	max-width: 320px;
	margin-left: 0;
	margin-right: 0;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.t25c-template-card:hover {
	transform: translateY(-3px);
	border-color: rgba(37, 99, 235, 0.22);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.t25c-template-card__preview {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #2f60ff, #b855f7);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.t25c-template-card__preview:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.55);
	outline-offset: 3px;
}

.t25c-card__excerpt {
	color: rgba(15, 23, 42, 0.72);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0 0 0.9rem 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t25c-template-card .wp-block-buttons {
	margin-top: 0.25rem;
}

.t25c-template-card .wp-block-button__link {
	padding: 0.52rem 1.05rem;
	font-size: 0.92rem;
	background: #111827 !important;
	color: #ffffff !important;
	border: 0 !important;
	box-shadow: none !important;
}

.t25c-template-card .wp-block-button__link:hover {
	background: #0b1220 !important;
	color: #ffffff !important;
}

/* 首页工具箱区块：标题栏在卡片上方（卡片样式与工具箱页 .t25c-tb-card 一致） */
.t25c-templates {
	background: transparent;
}

.t25c-templates--split {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: clamp(0.75rem, 1.5vw, 1.1rem);
}

.t25c-templates__toolbar {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
}

.t25c-templates__cards {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
}

/* 首页嵌入：复用工具箱变量与卡片样式，不套整页 .t25c-tb-page 壳 */
.t25c-tb--home-embed {
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	box-sizing: border-box;
}

.t25c-templates__cards .wp-block-shortcode {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.t25c-templates__head {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin: 0 0 0.75rem 0;
	max-width: 100%;
	text-align: left;
}

.t25c-templates__title {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	color: #0f172a;
	white-space: nowrap;
}

.t25c-templates__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	line-height: 0;
	/* 统一「常用软件 / 服务市场」标题图标颜色（覆盖 SVG 内联 fill）。 */
	color: rgba(18, 150, 219, 0.85);
}

.t25c-templates__icon-svg {
	width: 18px;
	height: 18px;
	display: block;
	vertical-align: middle;
}

.t25c-templates__icon-svg path {
	fill: currentColor !important;
	fill-opacity: 1 !important;
}

.t25c-templates__more {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(6px);
	color: rgba(15, 23, 42, 0.75);
	font-size: 12px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	box-sizing: border-box;
}

@media (max-width: 860px) {
	/* 标题区：更小字号、更紧凑 */
	.t25c-heading__title {
		font-size: clamp(1.15rem, 4.6vw, 1.6rem);
		line-height: 1.25;
	}

	.t25c-home-heading {
		padding-left: 0.9rem !important;
		padding-right: 0.9rem !important;
	}

}

@media (max-width: 520px) {
	.t25c-templates__head {
		gap: 0.5rem 0.65rem;
	}
}
