/* 阅读页：引用、列表、待办、字体（与编辑器内观感接近） */
.kehua-page-read .kehua-article-body blockquote,
.kehua-article-body blockquote,
.message blockquote {
	margin: 0.75em 0;
	padding: 0.5em 0.85em 0.5em 1em;
	border-left: 4px solid rgba(0, 0, 0, 0.12);
	background: rgba(0, 0, 0, 0.03);
	color: inherit;
}
/* 主题全局 ul { list-style:none; padding:0 } 会去掉圆点，须用 !important 恢复 */
.kehua-page-read .kehua-article-body ul,
.kehua-article-body ul,
.message ul {
	margin: 0.5em 0 !important;
	padding-left: 1.5em !important;
	list-style: disc outside !important;
	list-style-type: disc !important;
}
.kehua-page-read .kehua-article-body ul ul,
.kehua-article-body ul ul,
.message ul ul {
	list-style: circle outside !important;
	list-style-type: circle !important;
}
.kehua-page-read .kehua-article-body ol,
.kehua-article-body ol,
.message ol {
	margin: 0.5em 0 !important;
	padding-left: 1.5em !important;
	list-style: decimal outside !important;
	list-style-type: decimal !important;
}
.kehua-page-read .kehua-article-body li,
.kehua-article-body li,
.message li {
	display: list-item !important;
	margin: 0.2em 0;
}
.kehua-page-read .kehua-article-body ul li input[type="checkbox"],
.kehua-article-body ul li input[type="checkbox"],
.message ul li input[type="checkbox"] {
	margin: 0 0.4em 0 0;
	vertical-align: middle;
	width: 1em;
	height: 1em;
}

/* 代码块：wangEditor 为 pre>code，详情页无编辑器样式；主题 pre 有 word-break:break-all 会破坏排版 */
.kehua-page-read .kehua-article-body pre,
.kehua-read-main .kehua-article-body pre,
.kehua-article-body pre,
.message pre,
.kehua-post-message pre {
	display: block;
	margin: 0.85em 0 !important;
	padding: 0.9em 1em !important;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
	font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", Menlo, monospace !important;
	font-size: 0.9em;
	line-height: 1.5;
	tab-size: 4;
	-moz-tab-size: 4;
	color: #24292f;
	background: rgba(0, 0, 0, 0.055) !important;
	border: 1px solid rgba(0, 0, 0, 0.1) !important;
	border-radius: 8px;
	white-space: pre !important;
	word-break: normal !important;
	word-wrap: normal !important;
	overflow-wrap: normal !important;
}
.kehua-page-read .kehua-article-body pre code,
.kehua-read-main .kehua-article-body pre code,
.kehua-article-body pre code,
.message pre code,
.kehua-post-message pre code {
	display: block;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	font-family: inherit !important;
	font-size: inherit !important;
	line-height: inherit;
	color: inherit;
	background: transparent !important;
	border: none !important;
	border-radius: 0;
	white-space: inherit !important;
	word-break: inherit !important;
}
/* 语法高亮 token（编辑器内 Prism 类名，详情页无对应 CSS 时至少保留区分度） */
.kehua-article-body pre code .token.comment,
.kehua-article-body pre code .token.prolog,
.kehua-article-body pre code .token.doctype,
.kehua-article-body pre code .token.cdata,
.message pre code .token.comment {
	color: #6a737d;
}
.kehua-article-body pre code .token.keyword,
.kehua-article-body pre code .token.operator,
.message pre code .token.keyword {
	color: #d73a49;
}
.kehua-article-body pre code .token.string,
.kehua-article-body pre code .token.char,
.message pre code .token.string {
	color: #032f62;
}
.kehua-article-body pre code .token.function,
.kehua-article-body pre code .token.class-name,
.message pre code .token.function {
	color: #6f42c1;
}
.kehua-article-body pre code .token.number,
.kehua-article-body pre code .token.boolean,
.message pre code .token.number {
	color: #005cc5;
}
/* 行内 code（非 pre 包裹） */
.kehua-page-read .kehua-article-body p code,
.kehua-read-main .kehua-article-body p code,
.kehua-article-body p code,
.kehua-article-body li code,
.message p code,
.message li code {
	font-family: Consolas, Monaco, Menlo, monospace !important;
	font-size: 0.9em;
	padding: 0.12em 0.4em;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 4px;
	word-break: break-word;
}

/* 阅读页正文表格：主题 style 常在 table/td/th 上 border:0，需提高优先级 */
.kehua-page-read .kehua-article-body table,
.kehua-article-body table,
.message table {
	border-collapse: collapse !important;
	border-spacing: 0;
	max-width: 100%;
	margin: 0.75em 0;
	border: 1px solid rgba(0, 0, 0, 0.14) !important;
	box-sizing: border-box;
}
.kehua-page-read .kehua-article-body table td,
.kehua-page-read .kehua-article-body table th,
.kehua-article-body table td,
.kehua-article-body table th,
.message table td,
.message table th {
	border: 1px solid rgba(0, 0, 0, 0.14) !important;
	padding: 0.4em 0.55em !important;
	min-width: 2em;
	vertical-align: top;
	box-sizing: border-box;
	/* 覆盖正文 overflow-wrap:anywhere，避免窄列下一字一行像「竖排」 */
	word-break: normal !important;
	overflow-wrap: break-word !important;
	writing-mode: horizontal-tb !important;
	text-orientation: mixed !important;
}

/* wangEditor 单元格内常为 <p>，会继承 .kehua-article-body 的 overflow-wrap:anywhere，必须单独覆盖 */
.kehua-page-read .kehua-article-body table td p,
.kehua-page-read .kehua-article-body table th p,
.kehua-article-body table td p,
.kehua-article-body table th p,
.message table td p,
.message table th p {
	overflow-wrap: break-word !important;
	word-break: keep-all !important;
}

/* 小屏：表格保持横向排版，列过窄时整表横向滑动，而不是把每个字拆成一行 */
@media (max-width: 768px) {
	.kehua-page-read .kehua-article-body,
	.kehua-read-main .kehua-article-body,
	.kehua-article-body {
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
		/* 避免 flex 子项 min-width:0 把表格压到极窄 */
		min-width: 0;
	}

	.kehua-page-read .kehua-article-body table,
	.kehua-article-body table,
	.message table {
		max-width: none !important;
		width: max-content !important;
		/* 多列时空列仍会占位，须让整表最小宽度明显大于屏宽以触发横向滑动 */
		min-width: max(100%, 36rem);
		table-layout: auto !important;
	}

	.kehua-page-read .kehua-article-body table td,
	.kehua-page-read .kehua-article-body table th,
	.kehua-article-body table td,
	.kehua-article-body table th,
	.message table td,
	.message table th {
		min-width: 4.5em !important;
		white-space: normal !important;
		word-break: keep-all !important;
		overflow-wrap: break-word !important;
	}

	.kehua-page-read .kehua-article-body table td p,
	.kehua-page-read .kehua-article-body table th p,
	.kehua-article-body table td p,
	.kehua-article-body table th p,
	.message table td p,
	.message table th p {
		word-break: keep-all !important;
		overflow-wrap: break-word !important;
	}
}

/* 正文内网易云链接：隐藏（阅页用正文开头内嵌播放器；多首时取 DOM 中第一首预载） */
/* 修罗阅读页主容器为 .kehua-article-body，须与 .message 一并处理，否则仍会显示「🎵 歌名 — 歌手」 */
.kehua-page-read .kehua-article-body a[href*='music.163.com/song?'],
.kehua-read-main .kehua-article-body a[href*='music.163.com/song?'],
.kehua-article-body a[href*='music.163.com/song?'],
.message a[href*='music.163.com/song?'] {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
}
.kehua-page-read .kehua-article-body a[href*='music.163.com/song?']::before,
.kehua-page-read .kehua-article-body a[href*='music.163.com/song?']::after,
.kehua-read-main .kehua-article-body a[href*='music.163.com/song?']::before,
.kehua-read-main .kehua-article-body a[href*='music.163.com/song?']::after,
.kehua-article-body a[href*='music.163.com/song?']::before,
.kehua-article-body a[href*='music.163.com/song?']::after,
.message a[href*='music.163.com/song?']::before,
.message a[href*='music.163.com/song?']::after {
	content: none !important;
}
.kehua-page-read .kehua-article-body p.xn-netease-marker-p,
.kehua-read-main .kehua-article-body p.xn-netease-marker-p,
.kehua-article-body p.xn-netease-marker-p,
.message p.xn-netease-marker-p,
.kehua-page-read .kehua-article-body p.xn-netease-marker-p:has(> a[href*='music.163.com/song?']:only-child),
.kehua-read-main .kehua-article-body p.xn-netease-marker-p:has(> a[href*='music.163.com/song?']:only-child),
.kehua-article-body p.xn-netease-marker-p:has(> a[href*='music.163.com/song?']:only-child),
.kehua-page-read .kehua-article-body p:has(> a[href*='music.163.com/song?']:only-child),
.kehua-read-main .kehua-article-body p:has(> a[href*='music.163.com/song?']:only-child),
.kehua-article-body p:has(> a[href*='music.163.com/song?']:only-child),
.message p.xn-netease-marker-p:has(> a[href*='music.163.com/song?']:only-child),
.message p:has(> a[href*='music.163.com/song?']:only-child) {
	position: relative;
	margin: 0;
	padding: 0;
	height: 0;
	min-height: 0;
	overflow: hidden;
	line-height: 0;
	font-size: 0;
}

/* 正文开头内嵌网易云播放器（横向极简条） */
.xn-gnp.xn-gnp--inline {
	position: relative;
	z-index: 10050;
	box-sizing: border-box;
	margin: 0 0 1rem;
	font-size: 14px;
	color: #444;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
	overflow: visible;
}
.xn-gnp-inner {
	display: flex;
	align-items: stretch;
	gap: 0;
	min-height: 66px;
	height: 66px;
	box-sizing: border-box;
	overflow: visible;
}
.xn-gnp--has-plist .xn-gnp-inner {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
/* 多首：主条下方的内嵌歌单（与网易客户端列表风格接近） */
.xn-gnp-plist {
	max-height: min(48vh, 360px);
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	border-radius: 0 0 5px 5px;
	overscroll-behavior: contain;
}
/* 正文 .message/.kehua-article-body 对 ul/li 强制了圆点与 padding-left，须用更高优先级清零 */
.kehua-page-read .kehua-article-body .xn-gnp ul.xn-gnp-plist-list,
.kehua-read-main .kehua-article-body .xn-gnp ul.xn-gnp-plist-list,
.kehua-article-body .xn-gnp ul.xn-gnp-plist-list,
.message .xn-gnp ul.xn-gnp-plist-list,
.xn-gnp ul.xn-gnp-plist-list {
	list-style: none !important;
	list-style-type: none !important;
	margin: 0 !important;
	margin-left: 0 !important;
	padding: 4px 0 8px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.kehua-page-read .kehua-article-body .xn-gnp li.xn-gnp-plist-item,
.kehua-read-main .kehua-article-body .xn-gnp li.xn-gnp-plist-item,
.kehua-article-body .xn-gnp li.xn-gnp-plist-item,
.message .xn-gnp li.xn-gnp-plist-item,
.xn-gnp li.xn-gnp-plist-item {
	list-style: none !important;
	list-style-type: none !important;
	display: flex !important;
	margin: 0 !important;
}
.xn-gnp-plist-list li.xn-gnp-plist-item::marker {
	content: none;
	font-size: 0;
	line-height: 0;
}
.xn-gnp-plist-item {
	position: relative;
	display: flex !important;
	align-items: center;
	gap: 12px;
	padding: 8px 12px 8px 10px;
	margin: 0 !important;
	box-sizing: border-box;
	min-height: 56px;
}
.xn-gnp-plist-item:hover {
	background: rgba(0, 0, 0, 0.03);
}
.xn-gnp-plist-hit {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
}
.xn-gnp-plist-cover {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 6px;
	object-fit: cover;
	background: #eee;
	pointer-events: none;
}
.xn-gnp-plist-cover--ph {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 6px;
	background: linear-gradient(135deg, #e8e8e8, #f2f2f2);
	pointer-events: none;
}
.xn-gnp-plist-mid {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	pointer-events: none;
}
.xn-gnp-plist-lines {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.xn-gnp-plist-title {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.xn-gnp-plist-artist {
	font-size: 12px;
	font-weight: 400;
	color: #888;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.xn-gnp-plist-item.is-current .xn-gnp-plist-title,
.xn-gnp-plist-item.is-current .xn-gnp-plist-artist {
	color: #6b3d3d;
}
.xn-gnp-plist-eq {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 14px;
	height: 12px;
	color: #c62828;
	opacity: 0;
}
.xn-gnp-plist-item.is-current .xn-gnp-plist-eq {
	opacity: 1;
}
.xn-gnp-plist-eq-svg {
	display: block;
}
@keyframes xn-gnp-eq-bar {
	0%,
	100% {
		transform: scaleY(0.35);
	}
	50% {
		transform: scaleY(1);
	}
}
.xn-gnp.is-playing .xn-gnp-plist-item.is-current .xn-gnp-plist-eq-b1 {
	animation: xn-gnp-eq-bar 0.52s ease-in-out infinite;
	transform-origin: center bottom;
}
.xn-gnp.is-playing .xn-gnp-plist-item.is-current .xn-gnp-plist-eq-b2 {
	animation: xn-gnp-eq-bar 0.42s ease-in-out 0.1s infinite;
	transform-origin: center bottom;
}
.xn-gnp.is-playing .xn-gnp-plist-item.is-current .xn-gnp-plist-eq-b3 {
	animation: xn-gnp-eq-bar 0.48s ease-in-out 0.05s infinite;
	transform-origin: center bottom;
}
.xn-gnp-plist-tail {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
	position: relative;
}
.xn-gnp-plist-dur {
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	color: #b0b0b0;
	min-width: 3.1em;
	text-align: right;
}
.xn-gnp-plist-item.is-current .xn-gnp-plist-dur {
	color: #9a7575;
}
.xn-gnp-plist-heart {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	opacity: 0.42;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21C12 21 4 15.5 4 10.5C4 7.42 6.24 5 9 5c1.74 0 3.28.95 4 2.05A4.98 4.98 0 0 1 15 5c2.76 0 5 2.42 5 5.5C20 15.5 12 21 12 21z'/%3E%3C/svg%3E")
		center/17px 17px no-repeat;
}
.xn-gnp-plist-heart:hover {
	opacity: 0.85;
	background-color: rgba(0, 0, 0, 0.05);
}
.xn-gnp-cover-wrap {
	position: relative;
	flex: 0 0 auto;
	width: 66px;
	min-width: 66px;
	height: 66px;
	align-self: stretch;
	background: #eee;
	border-radius: 5px 0 0 5px;
	overflow: hidden;
}
.xn-gnp-cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: top;
}
.xn-gnp-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.22);
	cursor: pointer;
	touch-action: manipulation;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.xn-gnp-play:hover {
	background: rgba(0, 0, 0, 0.32);
}
.xn-gnp-play:focus-visible {
	outline: 2px solid #a68b8b;
	outline-offset: 2px;
}
.xn-gnp-play::after {
	content: '';
	position: absolute;
	left: 52%;
	top: 50%;
	transform: translate(-40%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 11px;
	border-color: transparent transparent transparent #fff;
	pointer-events: none;
}
.xn-gnp.is-playing .xn-gnp-play::after {
	width: 9px;
	height: 11px;
	border: none;
	transform: translate(-50%, -50%);
	background: linear-gradient(
		90deg,
		#fff 0 28%,
		transparent 28% 72%,
		#fff 72% 100%
	);
}
.xn-gnp-main {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 10px 12px 6px 14px;
	overflow: visible;
}
.xn-gnp-line {
	font-size: 13px;
	line-height: 1.35;
	color: #3a3a3a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-shrink: 0;
	margin-top: 1px;
}
.xn-gnp-seek-row {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
	flex: 0 0 auto;
	overflow: visible;
}
.xn-gnp-seek {
	flex: 1 1 auto;
	min-width: 0;
	display: block;
}
.xn-gnp-track {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 18px;
	padding: 0;
	cursor: pointer;
	box-sizing: border-box;
}
.xn-gnp-track-rail {
	position: relative;
	width: 100%;
	height: 3px;
	background: #e5e5e5;
	border-radius: 2px;
	flex: 1 1 auto;
	align-self: center;
}
.xn-gnp-track-fill {
	height: 100%;
	width: 0;
	background: #a68b8b;
	border-radius: 2px;
	pointer-events: none;
}
.xn-gnp-track-thumb {
	position: absolute;
	top: 50%;
	left: 0;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #c8c8c8;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
	pointer-events: none;
	transform: translate(-50%, -50%);
}
.xn-gnp-time {
	font-size: 11px;
	line-height: 1;
	color: #9a9a9a;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	flex: 0 0 auto;
}
.xn-gnp-tools {
	display: flex;
	align-items: center;
	align-content: center;
	gap: 0;
	flex-shrink: 0;
	overflow: visible;
}
.xn-gnp-tools .xn-gnp-vol-wrap {
	position: relative;
	overflow: visible;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	align-self: center;
	box-sizing: border-box;
}
.xn-gnp-tools .xn-gnp-loop {
	position: relative;
	z-index: 1;
	align-self: center;
}
.xn-gnp-loop {
	width: 32px;
	height: 32px;
	min-width: 32px;
	padding: 0;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.8'%3E%3Cpath d='M17 3l4 4-4 4M3 11V9a4 4 0 0 1 4-4h14M7 21l-4-4 4-4M21 13v2a4 4 0 0 1-4 4H3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
	cursor: pointer;
	opacity: 0.8;
	border-radius: 4px;
	position: relative;
	box-sizing: border-box;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	margin: 0;
	vertical-align: middle;
}
.xn-gnp-loop:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.05);
}
.xn-gnp-loop.is-on {
	opacity: 1;
}
.xn-gnp-loop.is-on.is-single::after {
	content: '1';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -54%);
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
	color: #888;
	pointer-events: none;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'PingFang SC', sans-serif;
}
.xn-gnp-vol {
	width: 32px;
	height: 32px;
	min-width: 32px;
	padding: 0;
	margin: 0;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	overflow: visible;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5 6 9H3v6h3l5 4V5z'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3C/svg%3E")
		center/20px 20px no-repeat;
	cursor: pointer;
	opacity: 0.75;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	font-size: 0;
	vertical-align: middle;
}
.xn-gnp-vol:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.05);
}
.xn-gnp.is-muted .xn-gnp-vol {
	opacity: 0.4;
}
.xn-gnp-vol-pop {
	display: none;
/* 由 JS 设为 position:fixed，避免被正文 overflow 裁剪 */
	position: absolute;
	bottom: 100%;
	top: auto;
	right: 0;
	margin-bottom: 6px;
	margin-top: 0;
	padding: 16px 5px;
	min-width: 0;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 999px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
	z-index: 10070;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.xn-gnp-vol-pop.is-open {
	display: flex;
}
/* 窄槽 + 水平 range 旋转 90°：轨道可做到 1px 且拇指与轨道严格居中对齐（WebKit 竖向原生滑块易错位） */
.xn-gnp-vol-range-slot {
	position: relative;
	width: 18px;
	height: 100px;
	flex-shrink: 0;
	overflow: visible;
}
.xn-gnp-vol-range {
	--xn-vol-pct: 100;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 96px;
	height: 18px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	cursor: pointer;
	transform: translate(-50%, -50%) rotate(-90deg);
	transform-origin: center center;
	accent-color: #3d3d3d;
	touch-action: none;
}
.xn-gnp-vol-range:focus {
	outline: none;
}
.xn-gnp-vol-range:focus-visible {
	outline: 2px solid rgba(61, 61, 61, 0.35);
	outline-offset: 2px;
}
.xn-gnp-vol-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 9px;
	height: 9px;
	margin-top: -4px;
	border-radius: 50%;
	background: #1a1a1a;
	border: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.xn-gnp-vol-range::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	appearance: none;
	height: 1px;
	border-radius: 0.5px;
	border: none;
	background: linear-gradient(
		to right,
		#3d3d3d 0%,
		#3d3d3d calc(var(--xn-vol-pct) * 1%),
		#e8e8e8 calc(var(--xn-vol-pct) * 1%),
		#e8e8e8 100%
	);
}
.xn-gnp-vol-range::-moz-range-thumb {
	width: 9px;
	height: 9px;
	border: none;
	border-radius: 50%;
	background: #1a1a1a;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.xn-gnp-vol-range::-moz-range-track {
	height: 1px;
	background: #e8e8e8;
	border-radius: 0.5px;
	border: none;
}
.xn-gnp-vol-range::-moz-range-progress {
	height: 1px;
	background: #3d3d3d;
	border-radius: 0.5px;
}

/* 小屏：内嵌播放器略紧凑 */
@media (max-width: 768px) {
	/*
	 * 桌面端 z-index 较高是为盖住正文；小屏顶栏多为 position:fixed 且 z-index 在 100～9999。
	 * 保持播放器低于常见导航，避免上滑时整块卡片盖住顶栏。
	 */
	.xn-gnp.xn-gnp--inline {
		margin-bottom: 0.85rem;
		z-index: 2;
	}
	/* 覆盖 JS 内联的 10070，使音量浮层仍高于正文但低于多数 fixed 导航 */
	.xn-gnp-vol-pop {
		z-index: 500 !important;
	}
	.xn-gnp-inner {
		min-height: 66px;
		height: 66px;
	}
	.xn-gnp-cover-wrap {
		width: 66px;
		min-width: 66px;
		height: 66px;
	}
	.xn-gnp-main {
		padding: 9px 8px 5px 10px;
		gap: 4px;
	}
	.xn-gnp-line {
		font-size: 12px;
	}
	.xn-gnp-seek-row {
		gap: 6px;
	}
	.xn-gnp-time {
		font-size: 10px;
	}
	.xn-gnp-tools .xn-gnp-vol-wrap {
		flex-basis: 28px;
		width: 28px;
		height: 28px;
	}
	.xn-gnp-vol,
	.xn-gnp-loop {
		width: 28px;
		height: 28px;
		min-width: 28px;
	}
	.xn-gnp-loop {
		background-size: 18px 18px;
	}
	.xn-gnp-vol {
		background-size: 18px 18px;
	}
	.xn-gnp-plist-item {
		padding: 7px 10px 7px 8px;
		gap: 10px;
		min-height: 52px;
	}
	.xn-gnp-plist-cover,
	.xn-gnp-plist-cover--ph {
		width: 40px;
		height: 40px;
		border-radius: 5px;
	}
	.xn-gnp-plist-title {
		font-size: 13px;
	}
	.xn-gnp-plist-artist {
		font-size: 11px;
	}
}
