 <style>
        /* ---------- 全局重置 ---------- */
        * { margin:0; padding:0; box-sizing:border-box; }
        body { font-family:'Inter',sans-serif; background:#f9fafc; color:#1f2937; line-height:1.5; }
        .container { max-width:1280px; margin:0 auto; padding:0 24px; }

        /* ---------- 导航 ---------- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255,255,255,0.96);
            box-shadow: 0 1px 12px rgba(0,0,0,0.05);
            z-index: 1000;
        }
        .nav-container {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-pack: justify;
            justify-content: space-between;
            padding: 0 32px;
            max-width: 1400px;
            margin: 0 auto;
            height: 72px;
        }
        .logo { display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; }
        .logo a { display: inline-block; margin-right: 12px; line-height: 0; }
        .logo-img { width: 38px; height: 38px; display: block; border-radius: 8px; }
        .logo h1 { font-size: 1.6rem; font-weight: 700; color: #0f2b4d; letter-spacing: -0.3px; margin: 0; line-height: 1.2; }
        .logo span { font-size: 0.7rem; font-weight: 400; color: #4b5563; display: inline-block; margin-left: 4px; }
        .nav-links { display: -ms-flexbox; display: flex; list-style: none; margin: 0; padding: 0; }
        .nav-links li { margin-right: 2rem; }
        .nav-links li:last-child { margin-right: 0; }
        .nav-links a { text-decoration: none; font-weight: 700; font-size: 1rem; color: #1a6c9e; padding-bottom: 4px; border-bottom: 2px solid transparent; display: inline-block; }
        .nav-links a:hover { color: #0d4668; border-bottom-color: #1a6c9e; }
        .menu-toggle { display: none; font-size: 1.6rem; background: none; border: none; cursor: pointer; color: #1f2a44; }
        @media (max-width: 920px) {
            .nav-links { position: fixed; top: 72px; left: -100%; -ms-flex-direction: column; flex-direction: column; background: white; width: 70%; height: calc(100vh - 72px); padding: 2rem 1.5rem; box-shadow: 2px 0 12px rgba(0,0,0,0.1); transition: left 0.3s ease; z-index: 999; overflow-y: auto; }
            .nav-links.active { left: 0; }
            .nav-links li { margin-right: 0; margin-bottom: 1.8rem; }
            .nav-links li:last-child { margin-bottom: 0; }
            .menu-toggle { display: block; }
            .nav-container { padding: 0 20px; }
            .nav-links a { font-size: 1.2rem; display: block; padding: 6px 0; }
        }

        /* ---------- 主区域 ---------- */
        .more-section {
            padding-top: 100px;
            padding-bottom: 60px;
            min-height: calc(100vh - 180px);
        }
        .more-container {
            display: -ms-flexbox;
            display: flex;
            background: white;
            border-radius: 32px;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.06);
            overflow: hidden;
            min-height: 500px;
        }

        /* 左侧边栏 */
        .more-sidebar {
            width: 220px;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            background: #f8fafc;
            border-right: 1px solid #eef2f6;
            padding: 1.8rem 0;
        }
        .more-sidebar h4 {
            font-size: 15px;
            text-transform: uppercase;
            color: #8b9aaa;
            padding: 0 1.5rem 0.8rem 1.5rem;
            border-bottom: 1px solid #eef2f6;
            margin-bottom: 0.5rem;
        }
        .more-sidebar ul { list-style: none; margin: 0; padding: 0; }
        .more-sidebar li {
            padding: 0.9rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: #4b5563;
            transition: 0.2s;
            border-left: 3px solid transparent;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
            align-items: center;
        }
        .more-sidebar li i { width: 20px; text-align: center; margin-right: 10px; }
        .more-sidebar li:hover { background: #eef2f6; color: #1a6c9e; }
        .more-sidebar li.active { background: white; color: #1a6c9e; border-left-color: #1a6c9e; }
        .more-sidebar .badge { margin-left: auto; background: #eef2f6; color: #4b5563; font-size: 0.7rem; padding: 2px 10px; border-radius: 30px; }

        /* 右侧内容 */
        .more-content {
            -ms-flex: 1;
            flex: 1;
            padding: 1.8rem 2rem 1.8rem;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
            flex-direction: column;
            min-height: 500px;
        }

        .content-header {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -ms-flex-align: center;
            align-items: center;
            border-bottom: 1px solid #eef2f6;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }
        .content-header h2 { font-size: 1.5rem; font-weight: 700; color: #0b2b44; }
        .content-header .count { font-size: 0.85rem; color: #6c757d; background: #f1f4f9; padding: 4px 14px; border-radius: 30px; }

        /* 列表区域 */
        .content-list {
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
            flex-direction: column;
        }
        .list-item {
            padding: 1rem 1.2rem;
            background: #fafbfc;
            border-radius: 16px;
            border: 1px solid #f0f2f6;
            cursor: pointer;
            transition: 0.2s;
            margin-bottom: 0.8rem;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }
        .list-item:last-child { margin-bottom: 0; }
        .list-item:hover { background: #f0f4fa; border-color: #d0dae8; transform: translateX(4px); }
        .list-item .item-title { font-weight: 700; font-size: 1.05rem; color: #0b2b44; }
        .list-item .item-meta { display: -ms-flexbox; display: flex; font-size: 0.8rem; color: #7a8a9e; margin-top: 4px; }
        .list-item .item-meta span { margin-right: 1.2rem; }
        .list-item .item-desc { color: #4b5563; font-size: 0.9rem; margin-top: 4px; }

        /* 分页 - 使用 margin-top: auto 自动沉底 */
        .pagination {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: center;
            justify-content: center;
            -ms-flex-align: center;
            align-items: center;
            margin-top: auto;
            padding-top: 1.2rem;
            border-top: 1px solid #eef2f6;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }
        .pagination a, .pagination span {
            display: inline-block;
            padding: 6px 14px;
            margin: 0 3px;
            border: 1px solid #dce2ec;
            border-radius: 30px;
            color: #1f2937;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            min-width: 36px;
            text-align: center;
        }
        .pagination a:hover { background: #eef2f6; border-color: #b0c0d0; }
        .pagination span.active { background: #1a6c9e; color: white; border-color: #1a6c9e; }
        .pagination .page-info { border: none; background: transparent; color: #6c757d; pointer-events: none; }

        /* ---------- 模态框（与 index.asp 保持一致） ---------- */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-overlay.active { display: -ms-flexbox; display: flex; }
        .modal-box {
            background: white;
            max-width: 640px;
            width: 100%;
            max-height: 90vh;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            position: relative;
            animation: slideUp 0.3s ease;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
            flex-direction: column;
        }
        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #6c757d;
            z-index: 10;
        }
        .modal-close:hover { color: #1f2937; }
        .modal-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #0b2b44;
            padding-right: 40px;
        }
        .modal-date {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 1.2rem;
        }
        .modal-body {
            font-size: 1rem;
            color: #1f2937;
            line-height: 1.7;
            overflow-y: auto;
            max-height: 60vh;
            padding-right: 4px;
        }
        .modal-body img { max-width: 100% !important; height: auto !important; border-radius: 12px; margin: 12px 0; }
        .modal-body p { margin-bottom: 1rem; }

        /* ---------- 页脚 ---------- */
        footer { background:#0f1a24; color:#b0c4d9; padding:2rem 0; text-align:center; clear:both; }

        /* 响应式 */
        @media (max-width: 768px) {
            .more-container { -ms-flex-direction: column; flex-direction: column; }
            .more-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #eef2f6; padding: 0.8rem 0; }
            .more-sidebar ul { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: 0 1rem; }
            .more-sidebar li { padding: 0.6rem 1.2rem; border-left: none; border-radius: 30px; font-size: 0.9rem; -ms-flex: 1 0 auto; flex: 1 0 auto; -ms-flex-pack: center; justify-content: center; }
            .more-sidebar li.active { border-left: none; background: #eef2f6; }
            .more-sidebar .badge { display: none; }
            .more-sidebar h4 { display: none; }
            .more-content { padding: 1.2rem; }
            .content-header h2 { font-size: 1.2rem; }
            .more-section { padding-bottom: 40px; }
            .modal-box { padding: 1.5rem; }
            .modal-body { max-height: 50vh; }
        }
    </style>