.content-wrapper {
            width: var(--content-width);
            max-width: var(--content-max-width);
            margin: 0 auto 50px; /* 统一模块间距 */
            display: flex;
            gap: 2%; /* 左右栏间距 */
        }

        /* 右侧竖排二级目录（宽度15%，符合10-20%要求） */
        .secondary-sidebar {
            width: 15%;
            background-color: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px 15px;
            border-top: 4px solid var(--secondary-color);
            height: fit-content; /* 自适应高度 */
            position: sticky; /* 滚动时固定侧边栏 */
            top: 80px; /* 导航下方 */
        }

        /* 二级目录标题 */
        .sidebar-title {
            font-size: 18px;
            color: var(--primary-color);
            padding-bottom: 12px;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }

        .sidebar-title::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 40px;
            height: 1px;
            background-color: var(--secondary-color);
        }

        /* 二级目录列表 */
        .sidebar-menu {
            list-style: none;
        }

        .sidebar-item {
            margin-bottom: 8px;
        }

        .sidebar-item a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            padding: 8px 10px;
            display: block;
            border-radius: var(--radius-sm);
            transition: var(--transition-fast);
            position: relative;
            overflow: hidden;
        }

        .sidebar-item a:hover {
            background-color: var(--bg-hover);
            color: var(--primary-color);
            padding-left: 14px;
        }

        .sidebar-item a::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background-color: var(--secondary-color);
            border-radius: 2px;
            transition: var(--transition);
        }

        .sidebar-item a:hover::after {
            height: 60%;
        }

        /* 左侧文章列表（宽度83% = 100% - 15% - 2%间距） */
        .article-list-wrap {
            width: 83%;
        }

        /* 文章列表标题 */
        .article-list-title {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }

        /* 文章列表容器 */
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 12px; /* 列表项间距 */
            margin-bottom: 30px;
        }

        /* 单篇文章项样式 */
        .article-item {
            background-color: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px 25px;
            transition: var(--transition);
        }

        .article-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        /* 文章标题 */
        .article-item-title {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 10px;
            transition: var(--transition-fast);
        }

        .article-item-title a {
            text-decoration: none;
            color: inherit;
        }

        .article-item-title a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        /* 文章元信息（时间+作者） */
        .article-meta {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: var(--text-tertiary);
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta span::before {
            content: "";
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: var(--text-tertiary);
        }

        /* 分页栏样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 15px 0;
        }

        .pagination-btn {
            padding: 8px 14px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            background-color: #fff;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            cursor: pointer;
        }

        .pagination-btn:hover {
            background-color: var(--bg-hover);
            border-color: var(--secondary-color);
            color: var(--secondary-color);
        }

        .pagination-btn.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background-color: var(--bg-light);
            border-color: var(--border-color);
            color: var(--text-tertiary);
        }

        .pagination-btn.disabled:hover {
            background-color: var(--bg-light);
            border-color: var(--border-color);
            color: var(--text-tertiary);
        }
         .content-wrapper {
            width: var(--content-width);
            max-width: var(--content-max-width);
            margin: 0 auto 50px; /* 统一模块间距 */
            display: flex;
            justify-content: center;
        }

        /* 文章正文容器（宽度70%，保证阅读舒适度） */
        .article-detail {
            width: 70%;
            background-color: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px 50px;
            position: relative;
        }

        /* 文章标题 */
        .article-detail-title {
            font-size: 28px;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            font-weight: 700;
        }

        /* 文章元信息（时间+作者） */
        .article-detail-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 16px;
            color: var(--text-tertiary);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--border-color);
        }

        .article-detail-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-detail-meta span::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--secondary-color);
        }

        /* 文章正文内容 */
        .article-detail-content {
            font-size: 16px;
            color: var(--text-primary);
            margin-bottom: 40px;
        }

        /* 正文段落样式 */
        .article-detail-content p {
            margin-bottom: 20px;
            text-indent: 2em; /* 首行缩进2字符，符合中文阅读习惯 */
        }

        /* 正文强调文本 */
        .article-detail-content strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* 正文引用样式（诗词块） */
        .article-detail-content blockquote {
            background-color: var(--bg-hover);
            border-left: 4px solid var(--secondary-color);
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: var(--text-secondary);
        }

        /* 上下篇导航 */
        .article-nav {
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            margin-top: 10px;
        }

        .article-nav-item {
            display: flex;
            flex-direction: column;
            width: 45%;
        }

        .article-nav-label {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 5px;
        }

        .article-nav-link {
            font-size: 16px;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition-fast);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-nav-link:hover {
            color: var(--secondary-color);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        /* 禁用状态的上下篇链接 */
        .article-nav-link.disabled {
            color: var(--text-tertiary);
            cursor: not-allowed;
            text-decoration: none;
        }

        .article-nav-link.disabled:hover {
            color: var(--text-tertiary);
            text-decoration: none;
        }
         <style>
        /* 人员展示容器（替换原文章列表容器） */
        .person-list-wrap {
            width: 83%;
        }

        /* 人员列表标题（复用原文章列表标题样式，仅改类名兼容） */
        .person-list-title {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }

        /* 人员卡片网格布局：一排5个（4-6区间），自动换行 */
        .person-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* 一排5个 */
            gap: 20px; /* 卡片间距 */
            margin-bottom: 30px;
        }

        /* 人员卡片样式 */
        .person-card {
            background-color: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 15px;
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 卡片悬浮动效 */
        .person-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-deep);
        }

        /* 人员照片容器 */
        .person-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%; /* 圆形头像 */
            overflow: hidden;
            margin-bottom: 10px;
            border: 3px solid var(--bg-hover);
        }

        /* 人员照片 */
        .person-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持比例，裁剪多余部分 */
            transition: var(--transition);
        }

        /* 照片悬浮缩放 */
        .person-card:hover .person-avatar img {
            transform: scale(1.05);
        }

        /* 人员姓名 */
        .person-name {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        /* 响应式适配：不同屏幕宽度调整列数 */
        @media (max-width: 1200px) {
            .person-list {
                grid-template-columns: repeat(4, 1fr); /* 大屏：一排4个 */
            }
        }

        @media (max-width: 992px) {
            .person-list-wrap {
                width: 100%;
            }
            .person-list {
                grid-template-columns: repeat(3, 1fr); /* 平板：一排3个 */
            }
        }

        @media (max-width: 768px) {
            .person-list {
                grid-template-columns: repeat(2, 1fr); /* 小平板：一排2个 */
            }
        }

        @media (max-width: 480px) {
            .person-list {
                grid-template-columns: 1fr; /* 手机：一排1个 */
            }
            .person-avatar {
                width: 100px;
                height: 100px;
            }
        }
    </style>