            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
        }

        .page-wrapper {
            display: flex;
            gap: 38px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 左侧菜单：样式全部走 common.css，此处不覆盖 */

        /* ===== 右侧内容区 ===== */
        .content-area {
            flex: 1;
            min-width: 0;
        }

        /* ===== 页面标题 ===== */
        .page-title {
            display: flex;
            align-items: baseline;
            gap: var(--space-sm);
            margin-bottom: 24px;
            line-height: 32px;
        }

        .page-title h1 {
            font-size: 28px;
            font-weight: normal;
            color: #008F98;
            margin: 0;
        }

        .page-title .subtitle {
            font-size: 16px;
            font-weight: normal;
            color: #898989;
        }

        /* ===== 搜索结果文字 ===== */
        .result-text {
            font-size: 22px;
            color: #898989;
            padding-left: 0;          /* 2026-06-11 取消左缩进，与标题左对齐 */
        }

        .result-text .kw {
            color: #008F98;
        }

        .result-text .count {
            color: #008F98;
        }

        /* ===== 资源列表（行式布局） ===== */
        .result-list {
            display: flex;
            flex-direction: column;
            margin-top: var(--space-md);
            margin-bottom: var(--module-gap);
        }

        .result-item {
            padding: 25px 0 15px;
            border-bottom: 1px solid var(--primary-color);
        }

        /* 第一行：序号+标题，右侧日期 */
        .result-row-top {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }

        .result-title-area {
            display: flex;
            align-items: baseline;
            flex: 1;
            min-width: 0;
        }

        .result-item-num {
            display: inline-block;
            width: 30px;
            flex-shrink: 0;
            color: #898989;
            font-size: 18px;
        }

        .result-item-title {
            font-size: 20px;
            color: #323333;
            line-height: 28px;
            cursor: default;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-decoration: none;
        }

        a.result-item-title {
            cursor: pointer;
        }

        .result-item:hover .result-item-title {
            color: var(--primary-color);
        }

        .result-item-date {
            flex-shrink: 0;
            font-size: 14px;
            line-height: 20px;
            color: #898989;
            margin-left: var(--space-md);
        }

        /* 第二行：摘要，右侧下载icon */
        .result-row-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 8px;
            padding-left: 30px;
        }

        .result-item-remark {
            flex: 1;
            min-width: 0;
            font-size: 14px;
            line-height: 22px;
            color: #898989;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 下载图标 */
        .download-icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-left: 1rem;
            cursor: pointer;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            background-image: url('../assets/icons/icon-download.png');
            transition: background-image 0.2s ease;
        }

        .download-icon:hover {
            background-image: url('../assets/icons/icon-download-hover.png');
        }

        /* ===== 分页 ===== */

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .page-wrapper {
                flex-direction: column;
            }

            .side-nav {
                width: 100%;
            }

            .search-module {
                flex-wrap: wrap;
            }

            .result-row-top {
                flex-direction: column;
                gap: var(--space-xs);
            }

            .result-item-date {
                margin-left: 30px;
            }

            .result-row-bottom {
                flex-wrap: wrap;
            }
        }
