/* 新闻列表区域 */
    .news-list-section {
        padding: 36px 0 60px;
        background: #f5f5f5;
        min-height: calc(100vh - 64px);
        margin-top: 0;
    }
    .news-list-container {
        width: 1280px;
        max-width: calc(100% - 48px);
        margin: 0 auto;
    }

    /* 分类标签 */
    .news-tabs {
        display: flex;
        gap: 12px;
        margin-bottom: 28px;
        background: #fff;
        padding: 18px 22px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .news-tab {
        padding: 9px 22px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 14px;
        color: #666;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    .news-tab:hover,
    .news-tab.active {
        background: linear-gradient(135deg, #ff6600 0%, #ff7722 100%);
        color: #fff;
    }

    /* 新闻列表项 */
    .news-list-item {
        background: #fff;
        border-radius: 8px;
        padding: 22px 26px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 18px;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        border: 1px solid transparent;
    }
    .news-list-item:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 16px rgba(255,102,0,0.08);
        border-color: rgba(255,102,0,0.15);
    }

    /* 日期盒子 */
    .news-date-box {
        text-align: center;
        min-width: 68px;
        padding: 13px 10px;
        background: linear-gradient(135deg, #fff5f0 0%, #ffe8d9 100%);
        border-radius: 8px;
    }
    .news-day {
        font-size: 26px;
        font-weight: 600;
        color: #ff6600;
        line-height: 1;
    }
    .news-month-year {
        font-size: 12px;
        color: #888;
        margin-top: 4px;
    }

    /* 内容信息 */
    .news-content-info {
        flex: 1;
    }
    .news-item-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 6px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }
    .news-list-item:hover .news-item-title {
        color: #ff6600;
    }
    .news-item-summary {
        font-size: 13px;
        color: #999;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 标签 */
    .news-tag {
        padding: 5px 11px;
        background: rgba(255,102,0,0.08);
        color: #ff6600;
        border-radius: 12px;
        font-size: 12px;
        white-space: nowrap;
        font-weight: 500;
    }

    /* 分页 */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-top: 35px;
        padding: 18px 0;
    }
    .page-btn {
        min-width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e8e8e8;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        color: #666;
        transition: all 0.3s ease;
        background: #fff;
    }
    .page-btn:hover,
    .page-btn.active {
        background: linear-gradient(135deg, #ff6600 0%, #ff7722 100%);
        color: #fff;
        border-color: transparent;
    }
    .page-btn.disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .news-list-section {
            padding: 36px 0 42px;
        }
        .news-list-container {
            max-width: calc(100% - 28px);
        }
        .news-tabs {
            flex-wrap: wrap;
            justify-content: center;
        }
        .news-tab {
            padding: 7px 18px;
            font-size: 13px;
        }
        .news-list-item {
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
        .news-date-box {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: auto;
            padding: 10px 15px;
        }
        .news-day {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .news-list-container {
            max-width: calc(100% - 24px);
        }
    }
