    body {
      background:#f8f9fa;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
      line-height: 1.7;
    }

    .article-list .article-item {
      padding: 1.2rem 0;
      border-bottom: 1px solid #e9ecef;
      transition: background 0.2s;
    }
    .article-list .article-item:hover {
      background: #f1f8f5;
    }
    .article-list .article-item:last-child {
      border-bottom: none;
    }
    .article-title {
      font-size: 1.35rem;
      color: #212529;
    }
    .article-title a {
      text-decoration: none;
      color: inherit;
    }
    .article-title a:hover {
      color: #198754;
    }
    .article-meta {
      font-size: 0.88rem;
      color: #6c757d;
      margin-top: 0.4rem;
    }
/* 分页颜色完全统一为 success 绿 */
    .pagination .page-link {
      color: #198754;
      border-color: #d4edda;
      background-color: #fff;
    }
    .pagination .page-link:hover {
      color: #146c43;
      background-color: #d4edda;
      border-color: #198754;
    }
    .pagination .page-item.active .page-link {
      color: #fff !important;
      background-color: #198754 !important;
      border-color: #198754 !important;
    }
    .pagination .page-item.disabled .page-link {
      color: #adb5bd;
      background-color: #f8f9fa;
      border-color: #dee2e6;
    }

/*分页*/
/* 分页容器 */
/* 分页整体 */
/* ===== 分页整体 ===== */
.custom-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}


/* ===== 分页按钮（现代扁平卡片风） ===== */
.custom-pagination a {
    padding: 1px 2px;
    background: #eaf7f0;
    border-radius: 2px;
    text-decoration: none;
    color: #198754;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* hover 效果 */
.custom-pagination a:hover {
    background: #198754;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(25,135,84,0.25);
}

/* 下拉框 */
.custom-pagination select {
    padding: 10px 16px;
    border-radius: 12px;
    border: none;
    background: #f1f3f5;
    font-size: 14px;
}

/* ===== 手机端优化 ===== */
@media (max-width: 576px) {


    .custom-pagination a,
    .custom-pagination select {
        font-size: 14px;
    }

    .custom-pagination select {
        width: 100%;
        max-width: 260px;
    }
}


/*分页end*/
/*tab start*/
.nav-tabs .nav-link {
    font-size: 14px;
    color: #198754;
    border: none;
}

.nav-tabs .nav-link.active {
    background: #198754;
    color: #fff;
    border-radius: 0;
}

.nav-tabs {
    border-bottom: 1px solid #e9ecef;
}

/*tab end*/
.sidebar-sticky {
    position: sticky;
    top: 2rem;
}
        /* 搜索框聚焦样式优化（贴合主题色） */
        .search-input:focus {
            border-color: #198754;
            box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.1);
            outline: none;
        }
