.waline-pageview-count {
    margin-left: 0.3em;
    font-weight: bold;
    color: var(--color-primary);
} 

/* 返回目录按钮 */
.back-to-toc {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #333;
	color: white;
	border: none;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 999;
}

.back-to-toc.visible {
	opacity: 1;
}

@media (max-width: 768px) {
	.back-to-toc {
		left: 10px;  /* 移动端左侧间距缩小 */
		bottom: 10px;
	}
}