
/* 新闻列表 */
.page-news-list {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-news-item {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}



.page-news-img {
    flex: 0 0 300px;
}

.img-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
}

    .img-wrap img {
        width: 100%;
        height: 200px;
        object-fit: fill;
        transition: transform 0.5s ease; /* 添加过渡动画 */
    }


 .img-wrap img:hover {
    transform: scale(1.2); /* 放大为原来的1.2倍 */
}


.page-news-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .news-content h3{
    }
.news-content-title {
    margin: 0 0 10px;
    font-size: 20px;
    color: #E60012;
}

.page-news-meta {
    font-size: 13px;
    color: #999;
}
