/* Ranklist page styles (from kehua my_ranklist.htm) */
.kcr-page {
	--kcr-bg: #F5F7FA;
	--kcr-primary: var(--color-primary, #0066ff);
	--kcr-primary-rgb: var(--color-primary-rgb);
	--kcr-text: #1a1a1a;
	--kcr-muted: #8B95A8;
	--kcr-gold: #FFB800;
	--kcr-silver: #A1B1C7;
	--kcr-bronze: #E28E5C;
	--kcr-card-radius: 14px;
	margin: 0;
	padding: 0 0 48px;
	background: var(--kcr-bg);
	box-sizing: border-box;
	min-width: 0;
	width: 100%;
	font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
}
.kcr-wrap {
	/* 与 .kehua-layout / .kehua-header-inner 同宽：不在此层再缩进，避免左右比顶栏多出空白 */
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* 桌面横向三栏：左右侧栏均为 sticky，详见 style.css body.kehua-ranklist-route */
.kcr-grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--layout-gap);
	min-width: 0;
	box-sizing: border-box;
}
/* 左侧不用 .kehua-sidebar-left 类名：全局 992px 会把它 display:none */
.kcr-rank-aside {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	min-height: 0;
}
.kcr-rank-sidebar-sticky {
	width: 100%;
	box-sizing: border-box;
}
@media (min-width: 993px) {
	/*
	 * 左右侧栏均为 sticky（见 style.css body.kehua-ranklist-route），不在此写 position。
	 */
	.kcr-rank-aside--left {
		align-self: flex-start;
		width: var(--sidebar-left-w);
		flex: 0 0 auto;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		gap: 20px;
		min-height: 0;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
	}
	.kcr-rank-sidebar-sticky {
		flex: 0 0 auto;
		align-self: stretch;
		min-height: 0;
		display: flex;
		flex-direction: column;
		width: 100%;
		box-sizing: border-box;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
	}
	.kcr-rank-aside--right {
		align-self: stretch;
		width: var(--sidebar-right-w);
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		gap: 20px;
		min-height: 0;
		box-sizing: border-box;
	}
}

.kcr-left-panel {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 0;
	width: 100%;
	background: #fff;
	border-radius: var(--kcr-card-radius);
	box-shadow: none;
	border: none;
	padding: 12px 10px 10px;
	box-sizing: border-box;
	overflow: hidden;
}
@media (min-width: 993px) {
	.kcr-left-panel {
		flex: 0 0 auto;
		min-height: 0;
		background: #fff;
		border-radius: var(--kcr-card-radius);
		box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 0px;
		overflow: visible;
	}
}
.kcr-nav-card {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	border: none;
	padding: 0;
	box-sizing: border-box;
	flex-shrink: 0;
}
.kcr-snav {
	list-style: none;
	margin: 0;
	padding: 4px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.kcr-snav li { margin: 0; padding: 0; }
.kcr-snav a {
	display: flex;
	align-items: center;
	gap: 10px;
	box-sizing: border-box;
	height: 50px;
	padding: 0 14px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 400;
	color: #64748B;
	text-decoration: none;
	transition: color 0.15s, background 0.15s;
	position: relative;
}
.kcr-snav a:hover {
	color: #334155;
	background: #F5F7FA;
	text-decoration: none;
}
.kcr-snav a.kcr-snav--on {
	box-sizing: border-box;
	height: 50px;
	font-weight: 400;
	color: var(--kcr-primary);
	background: rgba(var(--kcr-primary-rgb), 0.08);
	padding-right: 22px;
}
.kcr-snav a.kcr-snav--on::before {
	content: "";
	position: absolute;
	right: 12px;
	left: auto;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--kcr-primary);
}
.kcr-snav-ico {
	width: 22px;
	min-width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: inherit;
}
.kcr-snav-ico .kcr-snav-ri {
	font-size: 18px;
	line-height: 1;
	color: inherit;
	font-weight: 400;
}
.kcr-snav-ico .kcr-snav-svg {
	width: 18px;
	height: 18px;
	display: block;
	flex-shrink: 0;
	color: inherit;
}
/* SVG sprite（如主题榜 ri-quill-pen-ai-line）：含星标等完整造型，略放大以接近 Remix line 字标线粗 */
.kcr-snav-ico .kcr-snav-svg.kcr-snav-sprite {
	width: 22px;
	height: 22px;
}
.kcr-rules-entry {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 12px 12px;
	background: #F0F2F5;
	border-radius: 10px;
	box-shadow: none;
	border: 1px solid transparent;
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
	cursor: pointer;
	transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.kcr-rules-entry-chev {
	margin-left: auto;
	flex-shrink: 0;
	font-size: 18px;
	line-height: 1;
	color: #94A3B8;
	font-weight: 300;
	display: inline-block;
	transition: transform 0.22s ease, color 0.22s ease;
}
.kcr-rules-entry-txt {
	flex: 1;
	min-width: 0;
}
.kcr-rules-entry:hover {
	text-decoration: none;
	color: inherit;
	background: #E6EAF1;
	border-color: rgba(var(--kcr-primary-rgb), 0.18);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
	transform: translateY(-1px);
}
.kcr-rules-entry:hover .kcr-rules-entry-chev {
	color: var(--kcr-primary);
	transform: translateX(4px);
}
.kcr-rules-entry:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}
.kcr-rules-entry:focus-visible {
	outline: 2px solid var(--kcr-primary);
	outline-offset: 2px;
}
.kcr-rules-entry-ico {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(var(--kcr-primary-rgb), 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	align-self: flex-start;
	transition: background-color 0.22s ease, transform 0.22s ease;
}
.kcr-rules-entry:hover .kcr-rules-entry-ico {
	background: rgba(var(--kcr-primary-rgb), 0.2);
	transform: scale(1.04);
}
.kcr-rules-entry-ico .kcr-rules-entry-ri {
	font-size: 22px;
	line-height: 1;
	color: var(--kcr-primary);
}
.kcr-rules-entry h4 {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--kcr-text);
}
.kcr-rules-entry p {
	margin: 0;
	font-size: 12px;
	color: var(--kcr-muted);
	line-height: 1.4;
}
@media (prefers-reduced-motion: reduce) {
	.kcr-rules-entry,
	.kcr-rules-entry-chev,
	.kcr-rules-entry-ico {
		transition: none;
	}
	.kcr-rules-entry:hover {
		transform: none;
	}
	.kcr-rules-entry:hover .kcr-rules-entry-chev,
	.kcr-rules-entry:hover .kcr-rules-entry-ico {
		transform: none;
	}
}
.kcr-center-col {
	flex: 1 1 0%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.kcr-center-card {
	flex: 1;
	background: #fff;
	border-radius: var(--kcr-card-radius);
	box-shadow: none;
	border: none;
	padding: 24px 24px 28px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.kcr-chead {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.kcr-chead-txt {
	flex: 1 1 auto;
	min-width: 0;
}
.kcr-chead-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}
.kcr-chead-title-row h1 {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	font-size: 22px;
	font-weight: 800;
	color: var(--kcr-text);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.kcr-chead-title-row .kcr-filter-dd {
	flex-shrink: 0;
	max-width: 46%;
}
.kcr-chead-title-row .kcr-filter {
	max-width: 100%;
}
.kcr-chead-title-row .kcr-filter-lbl {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
	flex: 1 1 auto;
}
@media (min-width: 993px) {
	.kcr-chead-title-row .kcr-filter-dd {
		max-width: none;
	}
}
.kcr-info-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #E8EDFF;
	color: var(--kcr-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}
.kcr-chead-txt .kcr-sub {
	margin: 0;
	font-size: 13px;
	color: var(--kcr-muted);
	font-weight: 500;
	line-height: 1.5;
}
/* 手机端榜单类型：横向滑动的胶囊，替代隐藏的左侧导航 */
.kcr-mnav {
	display: none;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}
.kcr-mnav-scroll {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	padding: 0 0 12px;
	margin: 0;
	box-sizing: border-box;
}
.kcr-mnav-scroll::-webkit-scrollbar {
	display: none;
}
.kcr-mnav-pill {
	flex: 0 0 auto;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	color: #475569;
	background: #F5F7FA;
	border: 1px solid transparent;
	white-space: nowrap;
	box-sizing: border-box;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.kcr-mnav-pill:hover {
	color: var(--kcr-primary);
	background: rgba(var(--kcr-primary-rgb), 0.08);
	text-decoration: none;
}
.kcr-mnav-pill.is-active {
	color: var(--kcr-primary);
	background: rgba(var(--kcr-primary-rgb), 0.14);
	border-color: rgba(var(--kcr-primary-rgb), 0.38);
}
.kcr-mnav-pill:focus-visible {
	outline: 2px solid var(--kcr-primary);
	outline-offset: 2px;
}
.kcr-filter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: none;
	border-radius: 10px;
	background: #F5F7FA;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	cursor: default;
	flex-shrink: 0;
}
.kcr-filter svg, .kcr-filter .kcr-filter-cal { width: 16px; height: 16px; opacity: 0.75; }
.kcr-filter .kcr-filter-cal { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kcr-filter-btn { cursor: pointer; -webkit-appearance: none; appearance: none; font: inherit; font-family: inherit; }
.kcr-filter-chev { width: 16px; height: 16px; margin-left: 2px; opacity: 0.55; flex-shrink: 0; transition: transform 0.2s ease; }
.kcr-filter-dd.kcr-is-open .kcr-filter-chev { transform: rotate(180deg); }
.kcr-filter-dd { position: relative; flex-shrink: 0; }
.kcr-range-menu {
	list-style: none;
	margin: 0;
	padding: 6px;
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 8px;
	min-width: 168px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
	border: 1px solid #e2e8f0;
	box-sizing: border-box;
	z-index: 80;
}
.kcr-range-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	color: #334155;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}
.kcr-range-menu a:hover { background: #f1f5f9; color: #0f172a; }
.kcr-range-menu li.is-active a {
	color: var(--kcr-primary);
	background: rgba(var(--kcr-primary-rgb), 0.1);
}
.kcr-filter--live svg { opacity: 0.85; }
.kcr-podium {
	display: grid;
	/* 中间略宽；整体略收窄置于主栏中间 */
	grid-template-columns: 0.92fr 1.06fr 0.92fr;
	align-items: stretch;
	gap: 14px;
	width: 100%;
	max-width: 688px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	margin-bottom: 24px;
	/* 略增高，避免皇冠一半伸出顶边后与标题区贴太紧 */
	padding: 20px 0 0;
}
.kcr-podium-i {
	min-width: 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	align-self: stretch;
	position: relative;
	z-index: 1;
}
.kcr-podium-i--1 {
	z-index: 2;
}
.kcr-podium-card {
	position: relative;
	flex: 1 1 auto;
	border-radius: 14px;
	/* 皇冠跨顶：上留白略收紧；底边距减小以去掉大块空白 */
	padding: 16px 10px 14px;
	text-align: center;
	box-shadow: none;
	border: none;
	box-sizing: border-box;
	min-height: 226px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition:
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s ease,
		filter 0.28s ease;
}
.kcr-podium-i:hover,
.kcr-podium-i:focus-within {
	z-index: 10;
}
.kcr-podium-card:hover,
.kcr-podium-card:focus-within {
	transform: translateY(-8px);
	box-shadow:
		0 22px 48px rgba(15, 23, 42, 0.13),
		0 10px 28px rgba(15, 23, 42, 0.08);
	filter: saturate(1.05);
}
/* 三甲排行角标：居中跨在「白底 / 彩卡」顶部分界线上 */
.kcr-podium-rank-icon {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: block;
	width: auto;
	height: 32px;
	max-width: min(88px, 100%);
	object-fit: contain;
	margin: 0;
	flex-shrink: 0;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.14));
}
.kcr-podium-i--1 .kcr-podium-rank-icon {
	height: 40px;
	max-width: min(100px, 100%);
}
.kcr-podium-i--2 .kcr-podium-rank-icon,
.kcr-podium-i--3 .kcr-podium-rank-icon {
	height: 28px;
}
/* 第1名：更高一截；亚季军固定高度 + margin-top:auto 贴底，三卡底边仍对齐 */
.kcr-podium-i--1 .kcr-podium-card {
	min-height: 262px;
	flex: 1 1 auto;
	padding-top: 22px;
	border: none;
	background: linear-gradient(180deg, #FFEED4 0%, #FFF2DC 32%, #FFFBF6 78%, #FFFEFA 100%);
}
/* 第2名 */
.kcr-podium-i--2 .kcr-podium-card {
	min-height: 226px;
	flex: 0 0 auto;
	margin-top: auto;
	border: none;
	background: linear-gradient(180deg, #E8F3FF 0%, #EEF6FF 35%, #F8FBFF 78%, #FCFEFF 100%);
}
/* 第3名 */
.kcr-podium-i--3 .kcr-podium-card {
	min-height: 226px;
	flex: 0 0 auto;
	margin-top: auto;
	border: none;
	background: linear-gradient(180deg, #FFE8D4 0%, #FFEFDF 35%, #FFFAF5 78%, #FFFDFB 100%);
}
.kcr-podium-av {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: none;
	box-shadow: none;
	margin-bottom: 12px;
	background: #E8EDF3;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
	display: inline-block;
}
.kcr-podium-i--2 .kcr-podium-av,
.kcr-podium-i--3 .kcr-podium-av { width: 68px; height: 68px; }
.kcr-podium-i--1 .kcr-podium-av {
	width: 92px;
	height: 92px;
	border: 2px solid rgba(232, 200, 107, 0.65);
}
.kcr-podium-i--2 .kcr-podium-av {
	border: 2px solid rgba(99, 140, 220, 0.35);
}
.kcr-podium-i--3 .kcr-podium-av {
	border: 2px solid rgba(232, 180, 140, 0.55);
}
.kcr-podium-card:hover .kcr-podium-av,
.kcr-podium-card:focus-within .kcr-podium-av {
	transform: scale(1.05);
	box-shadow: 0 12px 28px rgba(var(--kcr-primary-rgb), 0.18);
}
.kcr-podium-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kcr-podium-name {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration: none;
}
.kcr-podium-name:hover { color: #1a1a1a; text-decoration: none; }
/* 亚、季军昵称与列表统一为略浅灰；VIP 仍由 .kehua-vip-username !important 着色 */
.kcr-podium-i--2 .kcr-podium-name,
.kcr-podium-i--3 .kcr-podium-name {
	color: #4B5563;
}
.kcr-podium-i--2 .kcr-podium-name:hover,
.kcr-podium-i--3 .kcr-podium-name:hover {
	color: var(--kcr-primary);
}
.kcr-lv-bar {
	display: inline-block;
	margin-top: 8px;
	padding: 3px 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}
.kcr-podium-i--1 .kcr-lv-bar {
	color: #C2410C;
	background: #FFEDD4;
}
.kcr-podium-i--2 .kcr-lv-bar {
	color: #1D4ED8;
	background: #DBEAFE;
}
.kcr-podium-i--3 .kcr-lv-bar {
	color: #C2410C;
	background: #FFEDD4;
}
.kcr-podium-pts {
	margin-top: 14px;
	font-size: 16px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}
.kcr-podium-i--1 .kcr-podium-pts { color: #EA580C; font-size: 17px; }
.kcr-podium-i--2 .kcr-podium-pts { color: #2563EB; font-size: 16px; }
.kcr-podium-i--3 .kcr-podium-pts { color: #EA580C; font-size: 16px; }

.kcr-ranklist-wrap { margin-bottom: 0; }
.kcr-ranklist {
	border: none;
	box-shadow: none;
	/* 仅底部圆角；表头与首行之间有分隔线 */
	border-radius: 0 0 12px 12px;
	overflow: hidden;
	background: #FAFBFC;
	margin-bottom: 0;
}
/* 最后一行悬停/聚焦时去掉列表容器底部圆角，避免高亮背景底边呈弧形 */
.kcr-ranklist:has(> .kcr-rank-row:last-child:hover),
.kcr-ranklist:has(> .kcr-rank-row:last-child:focus-within) {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.kcr-ranklist > .kcr-rank-row:last-child:hover,
.kcr-ranklist > .kcr-rank-row:last-child:focus-within {
	border-radius: 0;
}
.kcr-ranklist-wrap .kcr-viewfull {
	margin-top: 16px;
	position: relative;
	z-index: 5;
}
.kcr-rank-head {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 11px 18px;
	background: #fff;
	color: #94A3B8;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	box-sizing: border-box;
	border-bottom: 1px solid #EDF1F7;
}
.kcr-rank-head-num {
	text-align: center;
}
.kcr-rank-head-user {
	min-width: 0;
	padding-left: 0;
}
.kcr-rank-head-metric {
	text-align: right;
	justify-self: end;
	min-width: 0;
	max-width: 152px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.kcr-rank-row {
	position: relative;
	z-index: 0;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: #fff;
	box-sizing: border-box;
	border-bottom: 1px solid #EDF1F7;
	cursor: pointer;
	transition:
		background 0.22s ease,
		transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.kcr-ranklist > .kcr-rank-row:last-child {
	border-bottom: none;
}
.kcr-ranklist > .kcr-rank-row:hover,
.kcr-ranklist > .kcr-rank-row:focus-within {
	z-index: 1;
	background: linear-gradient(105deg, rgba(var(--kcr-primary-rgb), 0.09) 0%, rgba(var(--kcr-primary-rgb), 0.035) 42%, rgba(255, 255, 255, 0) 78%);
	transform: none;
	box-shadow: none;
}
.kcr-ranklist > .kcr-rank-row .kcr-rank-num,
.kcr-ranklist > .kcr-rank-row .kcr-rank-name,
.kcr-ranklist > .kcr-rank-row .kcr-lv-pill,
.kcr-ranklist > .kcr-rank-row .kcr-rank-pts,
.kcr-ranklist > .kcr-rank-row .kcr-rank-pts--time {
	transition:
		color 0.22s ease,
		background 0.22s ease,
		transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-num,
.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-num {
	color: var(--kcr-primary);
	transform: scale(1.08);
}
.kcr-ranklist > .kcr-rank-row:hover .kcr-lv-pill,
.kcr-ranklist > .kcr-rank-row:focus-within .kcr-lv-pill {
	color: #3f4ed4;
	background: linear-gradient(180deg, #e9edff 0%, #dfe5ff 100%);
	transform: scale(1.06);
}
.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-pts,
.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-pts,
.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-pts--time,
.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-pts--time {
	color: var(--kcr-primary);
	transform: scale(1.04);
}
.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-name,
.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-name {
	color: var(--kcr-primary);
	transform: scale(1.02);
}
.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-name.kehua-vip-username,
.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-name.kehua-vip-username {
	color: rgb(154, 27, 42) !important;
}
.kcr-ranklist > .kcr-rank-row .kcr-rank-av {
	transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-av,
.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-av {
	transform: scale(1.03);
	box-shadow: none;
}
.kcr-rank-num {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	color: #CBD5E1;
	font-variant-numeric: tabular-nums;
	text-align: center;
	transform-origin: center;
}
.kcr-rank-user {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.kcr-rank-av {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	background: #E8EDF3;
	flex-shrink: 0;
}
.kcr-rank-name-wrap {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.kcr-rank-name {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #4B5563;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 160px;
	vertical-align: middle;
	transform-origin: left center;
}
.kcr-rank-name:hover { color: var(--kcr-primary); text-decoration: none; }
.kcr-lv-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 11px;
	min-height: 22px;
	box-sizing: border-box;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.01em;
	color: #5b67d8;
	background: #f0f2ff;
	flex-shrink: 0;
	border: none;
	transform-origin: center;
}
.kcr-rank-pts {
	display: inline-block;
	font-size: 15px;
	font-weight: 800;
	color: rgb(129, 134, 146);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	transform-origin: center;
}
.kcr-rank-pts--time,
.kcr-podium-pts--time {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--kcr-muted);
	font-variant-numeric: normal;
	max-width: 152px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;
	transform-origin: center;
}
@media (prefers-reduced-motion: reduce) {
	.kcr-rank-row {
		transition: none;
	}
	.kcr-ranklist > .kcr-rank-row .kcr-rank-av,
	.kcr-ranklist > .kcr-rank-row .kcr-rank-num,
	.kcr-ranklist > .kcr-rank-row .kcr-rank-name,
	.kcr-ranklist > .kcr-rank-row .kcr-lv-pill,
	.kcr-ranklist > .kcr-rank-row .kcr-rank-pts,
	.kcr-ranklist > .kcr-rank-row .kcr-rank-pts--time {
		transition: none;
	}
	.kcr-ranklist > .kcr-rank-row:hover,
	.kcr-ranklist > .kcr-rank-row:focus-within {
		transform: none;
		box-shadow: none;
		background: rgba(var(--kcr-primary-rgb), 0.07);
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-num,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-num,
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-name,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-name,
	.kcr-ranklist > .kcr-rank-row:hover .kcr-lv-pill,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-lv-pill,
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-pts,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-pts,
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-pts--time,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-pts--time {
		transform: none;
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-lv-pill,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-lv-pill {
		background: #f0f2ff;
		color: #5b67d8;
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-pts,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-pts {
		color: rgb(129, 134, 146);
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-pts--time,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-pts--time {
		color: var(--kcr-muted);
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-num,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-num {
		color: #CBD5E1;
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-name,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-name {
		color: var(--kcr-text);
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-name.kehua-vip-username,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-name.kehua-vip-username {
		color: rgb(198, 48, 62) !important;
	}
	.kcr-ranklist > .kcr-rank-row:hover .kcr-rank-av,
	.kcr-ranklist > .kcr-rank-row:focus-within .kcr-rank-av {
		transform: none;
		box-shadow: none;
	}
	.kcr-podium-card,
	.kcr-podium-av {
		transition: none !important;
	}
	.kcr-podium-card:hover,
	.kcr-podium-card:focus-within {
		transform: none;
		box-shadow: none;
		filter: none;
	}
	.kcr-podium-card:hover .kcr-podium-av,
	.kcr-podium-card:focus-within .kcr-podium-av {
		transform: none;
		box-shadow: none;
	}
}

.kcr-viewfull {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px;
	border: none;
	border-radius: 12px;
	background: #F5F7FA;
	font-size: 14px;
	font-weight: 600;
	color: #64748B;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.15s, color 0.15s;
	cursor: pointer;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	text-align: center;
}
button.kcr-viewfull:disabled {
	opacity: 0.72;
	cursor: wait;
}
.kcr-viewfull:hover {
	border: none;
	color: var(--kcr-primary);
	background: rgba(var(--kcr-primary-rgb), 0.08);
	text-decoration: none;
}
.kcr-viewfull svg { width: 16px; height: 16px; }

.kcr-r-card {
	background: #fff;
	border-radius: var(--kcr-card-radius);
	box-shadow: none;
	border: none;
	padding: 20px;
	box-sizing: border-box;
}
.kcr-me-gradient {
	position: relative;
	border-radius: var(--kcr-card-radius);
	padding: 24px 20px 20px;
	box-sizing: border-box;
	overflow: hidden;
	box-shadow: none;
	border: none;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 0;
}

/* 有背景图：与资料页横幅一致优先用户上传，其次主题配置的默认 URL；上层叠加深保证白字可读 */
.kcr-me-gradient--banner {
	color: #fff;
	background-color: rgb(232, 238, 255);
}
.kcr-me-gradient--banner::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	background: rgba(15, 23, 42, 0.48);
	pointer-events: none;
}
.kcr-me-gradient--banner > * {
	position: relative;
	z-index: 1;
}

/* 无图：与个人中心未设背景横幅同款浅底色（后台「默认背景」留空时的表现） */
.kcr-me-gradient--plain {
	background-image: none !important;
	color: var(--kcr-text);
	background: rgb(232, 238, 255);
	background: linear-gradient(180deg, #EEF2FB 0%, #E8EEFD 50%, #E4EAFA 100%);
}
.kcr-me-rank-block {
	margin-bottom: 18px;
}
.kcr-me-rank-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: inherit;
	opacity: 0.88;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}
.kcr-me-gradient--banner .kcr-me-rank-label {
	color: rgba(255, 255, 255, 0.88);
	opacity: 1;
}
.kcr-me-gradient--plain .kcr-me-rank-label {
	color: var(--kcr-muted);
	opacity: 1;
}
.kcr-me-rank-big {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 0;
	font-variant-numeric: tabular-nums;
}
.kcr-me-gradient--banner .kcr-me-rank-big {
	color: #fff;
}
.kcr-me-gradient--plain .kcr-me-rank-big {
	color: var(--kcr-text);
}
.kcr-me-user {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.kcr-me-av {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	object-fit: cover;
	background: rgba(255,255,255,0.2);
	flex-shrink: 0;
}
.kcr-me-gradient--plain .kcr-me-av {
	background: #E8EDF3;
}
.kcr-me-meta { min-width: 0; }
.kcr-me-name {
	font-size: 15px;
	font-weight: 700;
	color: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.kcr-me-gradient--banner .kcr-me-name {
	color: #fff;
}
.kcr-me-gradient--banner .kcr-me-name.kehua-vip-username {
	color: #fff !important;
	background: none !important;
	-webkit-text-fill-color: #fff !important;
}
.kcr-me-gradient--plain .kcr-me-name {
	color: var(--kcr-text);
}
.kcr-me-lv {
	display: inline-block;
	margin-top: 6px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	background: rgba(255,255,255,0.22);
	color: #fff;
}
.kcr-me-gradient--plain .kcr-me-lv {
	background: rgba(var(--kcr-primary-rgb), 0.12);
	color: var(--kcr-primary);
}
.kcr-me-pts-line {
	font-size: 14px;
	font-weight: 600;
	color: inherit;
	margin-bottom: 16px;
}
.kcr-me-gradient--banner .kcr-me-pts-line {
	color: rgba(255, 255, 255, 0.95);
}
.kcr-me-gradient--plain .kcr-me-pts-line {
	color: var(--kcr-muted);
}
.kcr-me-gradient--plain .kcr-me-pts-line strong {
	color: var(--kcr-text);
}
.kcr-me-pts-line strong {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}
.kcr-me-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 11px 16px;
	border-radius: 999px;
	background: rgba(255,255,255,0.22);
	border: none;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.15s;
}
.kcr-me-gradient--banner .kcr-me-btn:hover {
	background: rgba(255,255,255,0.32);
	color: #fff;
	text-decoration: none;
}
.kcr-me-gradient--plain .kcr-me-btn {
	background: var(--kcr-primary);
	color: #fff;
}
.kcr-me-gradient--plain .kcr-me-btn:hover {
	background: #4d6fea;
	color: #fff;
	text-decoration: none;
}
.kcr-me-guest-txt {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: inherit;
	text-align: center;
}
.kcr-me-gradient--banner .kcr-me-guest-txt {
	color: rgba(255, 255, 255, 0.92);
}
.kcr-me-gradient--plain .kcr-me-guest-txt {
	color: var(--kcr-muted);
}

/* 与首页「社区热点」同款：双竖条标记 + 底部分隔线（卡片内全宽） */
.kcr-r-card .kcr-sidebar-widget-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: -20px -20px 12px -20px;
	width: auto;
	max-width: none;
	padding: 15px 20px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	color: rgb(17, 24, 39);
	border-bottom: var(--border);
	box-sizing: border-box;
}
.kcr-r-card#kcr-points-rules .kcr-rule:first-of-type {
	padding-top: 12px;
}
.kcr-week-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px 8px 0;
	margin: 2px 0;
	border-radius: 10px;
	border: none;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	cursor: pointer;
	transition: background 0.22s ease, transform 0.22s ease;
	-webkit-tap-highlight-color: transparent;
}
.kcr-week-row:first-of-type {
	margin-top: 0;
	padding-top: 6px;
}
.kcr-week-row:hover {
	background: linear-gradient(90deg, rgba(var(--kcr-primary-rgb), 0.09) 0%, rgba(var(--kcr-primary-rgb), 0.03) 55%, transparent 100%);
}
.kcr-week-row:active {
	transform: scale(0.99);
}
.kcr-week-row:focus-visible {
	outline: 2px solid var(--kcr-primary);
	outline-offset: 2px;
}
.kcr-week-rank {
	width: 34px;
	min-height: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: #64748B;
	background: transparent;
}
.kcr-week-rank--1 { color: #FFB800; font-size: 14px; }
.kcr-week-rank--2 { color: var(--kcr-silver); font-size: 14px; }
.kcr-week-rank--3 { color: var(--kcr-bronze); font-size: 14px; }
/* 奖章 PNG：不设固定宽高比盒子，避免 object-fit:contain 在方框里留下浅边；主题层禁止任何底色 */
.kcr-week-medal {
	width: 32px;
	height: auto;
	display: block;
	flex-shrink: 0;
	background: transparent !important;
	background-color: transparent !important;
	border: none;
	box-shadow: none;
	vertical-align: middle;
	transition: transform 0.22s ease;
}
.kcr-week-row:hover .kcr-week-medal {
	transform: scale(1.06);
}
.kcr-week-av {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	background: #E8EDF3;
	flex-shrink: 0;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.kcr-week-row:hover .kcr-week-av {
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.kcr-week-meta { flex: 1; min-width: 0; }
.kcr-week-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--kcr-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.2s ease;
}
.kcr-week-row:hover .kcr-week-name {
	color: #4a63d4;
}
.kcr-week-pts {
	font-size: 13px;
	font-weight: 700;
	color: rgb(129, 134, 146);
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
	transition: color 0.2s ease, transform 0.2s ease;
}
.kcr-week-row:hover .kcr-week-pts {
	color: var(--kcr-primary);
	transform: translateX(-1px);
}
@media (prefers-reduced-motion: reduce) {
	.kcr-week-row,
	.kcr-week-av,
	.kcr-week-name,
	.kcr-week-pts,
	.kcr-week-medal {
		transition: none;
	}
	.kcr-week-row:hover .kcr-week-av {
		transform: none;
	}
	.kcr-week-row:hover .kcr-week-medal {
		transform: none;
	}
	.kcr-week-row:hover .kcr-week-pts {
		transform: none;
	}
	.kcr-week-row:active {
		transform: none;
	}
}

.kcr-rule {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border: none;
}
.kcr-rule:first-of-type { padding-top: 0; }
.kcr-rule-ico {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #F5F7FA;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}
.kcr-rule-ico i {
	font-size: 18px;
	color: #64748b;
	line-height: 1;
}
.kcr-rule-txt { flex: 1; font-size: 13px; color: #475569; font-weight: 500; }
.kcr-rule-pt { font-weight: 800; color: #EA580C; font-size: 13px; flex-shrink: 0; }

.kcr-empty {
	text-align: center;
	padding: 48px 20px;
	color: var(--kcr-muted);
	font-size: 14px;
}
.kcr-inf {
	text-align: center;
	font-size: 13px;
	color: var(--kcr-muted);
	padding: 8px 12px 0;
	min-height: 24px;
}

/* 与首页断点一致：≤992px 仅中间主榜，左右侧栏隐藏；领奖台横向三列（2-1-3）自适应缩放 */
@media (max-width: 992px) {
	body.kehua-ranklist-route .kcr-aside-slot--left {
		display: none !important;
	}
	body.kehua-ranklist-route .kcr-rank-aside--right {
		display: none !important;
	}
	.kcr-grid {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0;
	}
	.kcr-center-col {
		order: 0;
		display: block;
		flex: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}
	.kcr-center-card {
		min-height: 0;
		display: block;
		max-width: 100%;
		box-sizing: border-box;
		/* 与首页一致：白卡片铺满 .kehua-main，仅 .kehua-layout 负责左右边距；内边距对齐 .kehua-post-card 手机端 16px */
		padding: 20px 16px 24px;
	}
	.kcr-wrap {
		padding: 0;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
	.kcr-podium {
		display: grid;
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.06fr) minmax(0, 0.92fr);
		align-items: stretch;
		gap: clamp(6px, 1.6vw, 12px);
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		overflow: visible;
		padding: clamp(10px, 2.8vw, 18px) 0 0;
		box-sizing: border-box;
	}
	.kcr-podium-i {
		display: flex;
		flex-direction: column;
		align-self: stretch;
		min-width: 0;
		width: auto;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}
	.kcr-podium-i--1 .kcr-podium-card {
		min-height: clamp(150px, 42vw, 262px);
		padding: clamp(14px, 3.2vw, 22px) clamp(4px, 1.2vw, 10px) clamp(10px, 2.4vw, 14px);
	}
	.kcr-podium-i--2 .kcr-podium-card,
	.kcr-podium-i--3 .kcr-podium-card {
		min-height: clamp(132px, 38vw, 226px);
		padding: clamp(12px, 2.8vw, 16px) clamp(4px, 1.2vw, 10px) clamp(8px, 2vw, 14px);
	}
	.kcr-podium-i--1 .kcr-podium-av {
		width: clamp(52px, 15vw, 92px);
		height: clamp(52px, 15vw, 92px);
		margin-bottom: clamp(6px, 1.8vw, 12px);
	}
	.kcr-podium-i--2 .kcr-podium-av,
	.kcr-podium-i--3 .kcr-podium-av {
		width: clamp(44px, 13vw, 68px);
		height: clamp(44px, 13vw, 68px);
		margin-bottom: clamp(5px, 1.5vw, 12px);
	}
	.kcr-podium-rank-icon {
		height: clamp(22px, 6.5vw, 32px);
	}
	.kcr-podium-i--1 .kcr-podium-rank-icon {
		height: clamp(26px, 7.5vw, 40px);
	}
	.kcr-podium-i--2 .kcr-podium-rank-icon,
	.kcr-podium-i--3 .kcr-podium-rank-icon {
		height: clamp(20px, 6vw, 28px);
	}
	.kcr-podium-name {
		font-size: clamp(11px, 3.1vw, 15px);
	}
	.kcr-lv-bar {
		margin-top: clamp(4px, 1.2vw, 8px);
		padding: clamp(2px, 0.6vw, 3px) clamp(7px, 2vw, 11px);
		font-size: clamp(9px, 2.5vw, 11px);
	}
	.kcr-podium-pts {
		margin-top: clamp(8px, 2.2vw, 14px);
	}
	.kcr-podium-i--1 .kcr-podium-pts {
		font-size: clamp(12px, 3.3vw, 17px);
	}
	.kcr-podium-i--2 .kcr-podium-pts,
	.kcr-podium-i--3 .kcr-podium-pts {
		font-size: clamp(11px, 3vw, 16px);
	}
	.kcr-chead {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.kcr-chead-txt {
		order: 0;
		width: 100%;
	}
	.kcr-mnav {
		display: block;
		margin-top: 8px;
		order: 1;
	}
	/* 下列表：中间列占满剩余宽度，昵称省略号随屏宽变化，右侧指标列按需宽度 */
	.kcr-ranklist {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}
	.kcr-rank-head,
	.kcr-rank-row {
		grid-template-columns: 36px minmax(0, 1fr) max-content;
		gap: clamp(6px, 2vw, 12px);
		padding-left: clamp(10px, 3vw, 16px);
		padding-right: clamp(10px, 3vw, 16px);
	}
	.kcr-rank-head {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.kcr-rank-row {
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.kcr-rank-head-metric {
		max-width: none;
	}
	.kcr-rank-pts,
	.kcr-rank-pts--time {
		justify-self: end;
	}
	.kcr-rank-pts--time {
		max-width: min(46vw, 180px);
		min-width: 0;
	}
	.kcr-rank-user {
		width: 100%;
		min-width: 0;
		gap: clamp(8px, 2vw, 12px);
	}
	.kcr-rank-name-wrap {
		flex: 1 1 auto;
		min-width: 0;
		flex-wrap: nowrap;
		align-items: center;
	}
	.kcr-rank-name {
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
		display: block;
	}
	.kcr-ranklist-wrap .kcr-viewfull {
		padding: 12px clamp(10px, 3vw, 16px);
		box-sizing: border-box;
	}
}
@media (max-width: 576px) {
	.kcr-chead-title-row h1 { font-size: 18px; }
	.kcr-chead-title-row { gap: 8px; margin-bottom: 6px; }
	.kcr-chead-title-row .kcr-filter-dd { max-width: 50%; }
	.kcr-chead-title-row .kcr-filter {
		padding: 7px 10px;
		gap: 6px;
		font-size: 12px;
		border-radius: 9px;
	}
	.kcr-chead-title-row .kcr-filter svg,
	.kcr-chead-title-row .kcr-filter .kcr-filter-cal { width: 14px; height: 14px; }
	.kcr-chead-title-row .kcr-filter-chev { width: 14px; height: 14px; }
	.kcr-me-rank-big { font-size: 40px; }
	.kcr-mnav-pill {
		padding: 7px 12px;
		font-size: 12px;
	}
	.kcr-mnav-scroll {
		gap: 6px;
		padding-bottom: 10px;
	}
	.kcr-rank-head,
	.kcr-rank-row {
		grid-template-columns: 30px minmax(0, 1fr) max-content;
		gap: 6px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.kcr-rank-pts--time {
		max-width: min(52vw, 176px);
		font-size: 12px;
	}
	.kcr-rank-num { font-size: 14px; }
	.kcr-rank-av {
		width: 36px;
		height: 36px;
	}
	.kcr-lv-pill {
		padding: 3px 8px;
		font-size: 11px;
		min-height: 20px;
	}
}

/* 桌面：祖先禁用 transform/filter，避免 sticky / fixed 参考系异常 */
@media (min-width: 993px) {
	body.kehua-ranklist-route #body,
	body.kehua-ranklist-route .kehua-layout-shell,
	body.kehua-ranklist-route .kehua-layout,
	body.kehua-ranklist-route .kehua-main {
		transform: none !important;
		filter: none !important;
		perspective: none !important;
		backdrop-filter: none !important;
	}
}
