添加知识产权部分

This commit is contained in:
2025-09-08 14:28:17 +08:00
parent b7d788e959
commit b33b48fb0f
7 changed files with 38 additions and 1 deletions

View File

@@ -143,4 +143,29 @@ h2.text:hover {
.dark .curtain {
background-color: #1b1b1f !important;
}
/* 底下著作权部分 */
.VPFooter .message a {
/* 基础状态(非悬浮) */
text-decoration: none;
color: inherit;
/* 继承父级文字颜色(匹配第一张图的灰色) */
/* 悬浮状态 */
&:hover {
text-decoration: underline;
color: #2563eb;
/* 标准蓝色,色值可调整 */
transition: all 0.2s ease;
/* 平滑过渡效果 */
}
}
/* 实现知识产权部分居中 */
.vp-doc._copyright_ {
margin-left: 210px !important;
/* 强制右移 */
width: calc(100% - 120px);
/* 防止溢出 */
}