.news-list-page {
            background: #fff;
            color: #333;
        }

        /* ========== Banner ========== */
        .news-banner {
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            padding: 110px 0;
            background: #eaf3ff url("/app/news/news_list/banner-bg-img.png") center center / cover no-repeat;
            background-color: #eaf3ff;
        }

        .news-banner-content h1 {
            font-family: "Source Han Sans CN", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            font-weight: 700;
            font-size: 40px;
            color: #1a1a1a;
            line-height: 1.35;
            margin: 0 0 16px;
        }

        .news-banner-content p {
            font-family: "Source Han Sans CN", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            font-weight: 400;
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin: 0;
            max-width: 520px;
        }

        /* ========== 列表区 ========== */
        .news-list-section {
            padding: 72px 0 90px;
        }

        .news-list-title {
            text-align: center;
            margin: 0 0 48px;
            font-family: "Source Han Sans CN", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            font-weight: 500;
            font-size: 32px;
            color: #1a1a1a;
            line-height: 45px;
        }

        .news-list-row {
            display: flex;
            flex-wrap: wrap;
        }

        .news-list-row > [class*="layui-col-"] {
            display: flex;
            margin-bottom: 36px;
        }

        .news-item {
            display: block;
            width: 100%;
            text-decoration: none;
            color: inherit;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            padding-bottom: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .news-item:hover .news-item-title {
            color: #1e9fff;
        }

        .news-item-cover {
            width: 100%;
            aspect-ratio: 16 / 10;
            border-radius: 12px;
            overflow: hidden;
            background: #f2f5f8;
            line-height: 0;
        }

        .news-item-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
        }

        .news-item:hover .news-item-cover img {
            transform: scale(1.04);
        }

        .news-item-title {
            margin: 18px 16px 10px;
            font-family: "Source Han Sans CN", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            font-weight: 500;
            font-size: 18px;
            color: #1a1a1a;
            line-height: 26px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            transition: color 0.2s;
        }

        .news-item-summary {
            margin: 0 16px;
            font-family: "Source Han Sans CN", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            font-weight: 400;
            font-size: 14px;
            color: #999;
            line-height: 22px;
            height: 44px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        /* ========== 加载更多 ========== */
        #newsFlow {
            display: none;
        }

        #newsFlow .layui-flow-more {
            margin: 12px 0 0;
            text-align: center;
        }

        #newsFlow .layui-flow-more a cite {
            background: transparent;
            color: #999;
            font-size: 14px;
            font-style: normal;
            padding: 0;
        }

        #newsFlow .layui-flow-more a cite::before {
            content: "";
            display: inline-block;
            width: 14px;
            height: 14px;
            margin-right: 8px;
            vertical-align: -2px;
            border: 2px solid #ccc;
            border-top-color: transparent;
            border-radius: 50%;
            box-sizing: border-box;
        }

        #newsFlowSeed {
            display: block;
        }

        .news-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 8px;
        }

        .news-pagination a,
        .news-pagination .page-current {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 12px;
            box-sizing: border-box;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            background: #fff;
            color: #4b5563;
            font-size: 14px;
            line-height: 1;
            text-decoration: none;
            transition: border-color 0.2s, background-color 0.2s, color 0.2s;
        }

        .news-pagination a:hover {
            border-color: #1e9fff;
            color: #1e9fff;
        }

        .news-pagination .page-current {
            border-color: #1e9fff;
            background: #1e9fff;
            color: #fff;
            font-weight: 500;
        }

        .news-pagination .page-arrow {
            padding: 0;
        }

        .news-pagination .page-arrow svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2;
        }

        .news-empty {
            text-align: center;
            padding: 60px 0;
            color: #999;
            font-size: 14px;
        }

        /* ========== 移动端 ========== */
        @media screen and (max-width: 768px) {
            .news-banner {
                padding: 56px 0 64px;
                background-image: url("/app/news/news_list/banner-bg-img.png");
                background-position: center center;
                background-size: cover;
                background-repeat: no-repeat;
                text-align: center;
            }

            .news-banner-content h1 {
                font-size: 28px;
            }

            .news-banner-content p {
                margin: 0 auto;
                font-size: 14px;
            }

            .news-list-section {
                padding: 48px 0 64px;
            }

            .news-list-title {
                font-size: 24px;
                margin-bottom: 32px;
                line-height: 34px;
            }

            .news-list-row > [class*="layui-col-"] {
                margin-bottom: 28px;
            }

            .news-item-title {
                font-size: 16px;
                margin-top: 14px;
            }

            .news-pagination {
                gap: 6px;
                margin-top: 4px;
            }

            .news-pagination a,
            .news-pagination .page-current {
                min-width: 36px;
                height: 36px;
                padding: 0 9px;
            }
        }
