/* 上下篇导航样式 */ .post-navigation { padding: 15px; background: #fff; /* 假设你的背景是白色,根据 sb 类名决定 */ line-height: 1.6; overflow: hidden; } .post-navigation a { color: #666; transition: color 0.3s; } .post-navigation a:hover { color: #333; /* 悬停颜色,建议改为主题色 */ } .post-nav-prev { max-width: 48%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .post-nav-next { max-width: 48%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: right; } @media (max-width: 768px) { .post-nav-prev, .post-nav-next { float: none; max-width: 100%; display: block; margin-bottom: 10px; text-align: left; } }