/* 补充样式（Tailwind 编译产物之外的定制） */

/* 字体：阿里普惠体兜底 */
body {
    font-family: font-4f4fe6433ae2a259, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 分页样式 */
.page-bar {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.page-bar a, .page-bar span {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}
.page-bar a:hover {
    background-color: #E8F5E9;
    border-color: #00C853;
    color: #00C853;
}
.page-bar span.page-current, .page-bar span.current {
    background-color: #00C853;
    border-color: #00C853;
    color: #fff;
}

/* 内容详情排版 */
.prose img { border-radius: 0.5rem; }
