
        main {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        article.news-card {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            display: flex;
            overflow: hidden;
            transition: all 0.2s ease;
        }
        article.news-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .news-thumb {
            width: 320px;
            min-width: 320px;
            background-color: #e8edf2;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-content {
            padding: 24px;
            flex: 1;
        }
        .news-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .news-desc {
            font-size: 15px;
            color: #555555;
            line-height: 1.7;
        }
        /* 分页翻页栏样式 */
        nav.pagination {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
        .pagination a, .pagination span {
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            color: #333;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            transition: all 0.2s;
        }
        .pagination a:hover {
            background-color: #1677ff;
            color: #fff;
            border-color: #1677ff;
        }
        .pagination .current-page {
            background-color: #1677ff;
            color: #fff;
            border-color: #1677ff;
            cursor: default;
        }
        .pagination .disabled {
            color: #ccc;
            cursor: not-allowed;
            background-color: #f5f5f5;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            article.news-card {
                flex-direction: column;
            }
            .news-thumb {
                width: 100%;
                height: 200px;
            }
        }