﻿/* 新闻列表 */
.newslist {

}

    .newslist .news-header {
        padding-bottom: 15px;
        border-bottom: 2px solid var(--primary-blue);
        position: relative;
    }

        .newslist .news-header h2 {
            color: var(--primary-blue);
            font-size: 2rem;
            display: inline-block;
        }

            .newslist .news-header h2:after {
                content: '';
                position: absolute;
                width: 60px;
                height: 2px;
                background-color: var(--accent-orange);
                bottom: -2px;
                left: 0;
            }

        .newslist .news-header p {
            color: var(--medium-gray);
            margin-top: 10px;
        }

    .newslist .news-item {
        display: flex;
        padding: 30px 0;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s;
    }

        .newslist .news-item:hover {
            background-color: rgba(10, 36, 99, 0.02);
            padding-left: 10px;
            padding-right: 10px;
            border-radius: 8px;
        }

        .newslist .news-item:last-child {
            border-bottom: none;
        }

    .newslist .news-img {
        width: 300px;
        height: 200px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        margin-right: 30px;
    }

        .newslist .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.5s;
        }

    .newslist .news-item:hover .news-img img {
        transform: scale(1.05);
    }

    .newslist .news-content {
        width:650px;
    }

    .newslist .news-meta {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: var(--medium-gray);
        font-size: 0.9rem;
    }

    .newslist .news-category {
        background-color: rgba(10, 36, 99, 0.1);
        color: var(--primary-blue);
        padding: 3px 10px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-right: 15px;
    }

    .newslist .news-date {
        display: flex;
        align-items: center;
    }

        .newslist .news-date i {
            margin-right: 5px;
        }

    .newslist .news-content h3 {
        color: var(--primary-blue);
        font-size: 1.4rem;
        margin-bottom: 15px;
        transition: color 0.3s;
    }

    .newslist .news-item:hover .news-content h3 {
        color: var(--accent-orange);
    }

    .newslist .news-excerpt {
        color: var(--medium-gray);
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .newslist .news-read-more {
        color: var(--accent-orange);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s;
    }

        .newslist .news-read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .newslist .news-read-more:hover i {
            transform: translateX(5px);
        }
