/* news.html 专用样式 */

.page-banner {
    background-image: url("../images/bg/news_background.png");
}

.news-section {
    padding: 80px 0;
}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.news-img {
    width: 100%;
    background: linear-gradient(135deg, #3B5990 0%, #2A4A7A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 50px;
    overflow: hidden;
    aspect-ratio: 5 / 3;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info {
    padding: 25px;
}

.news-date {
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.news-title {
    font-family: "思源宋体", "SimSun", serif;
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
}

.news-summary {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list {
    margin-top: 60px;
}

.news-list-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #E5E5E5;
    transition: all 0.3s;
    gap: 24px;
    text-decoration: none;
    color: inherit;
}

.news-list-item:hover {
    background: #FAFAFA;
    padding-left: 15px;
}

.news-list-img {
    width: 160px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    background: #E5E5E5;
}

.news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-list-item:hover .news-list-img img {
    transform: scale(1.05);
}

.news-list-info {
    flex: 1;
    min-width: 0;
}

.news-list-info h3 {
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-list-info h3 .list-date {
    font-size: 12px;
    color: #999999;
    font-weight: 400;
    white-space: nowrap;
}

.news-list-info p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.news-list-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #FFF5F5;
    color: #C41E3A;
    font-size: 12px;
    border-radius: 2px;
    margin-top: 10px;
}

.pagination {
    text-align: center;
    padding: 40px 0 80px;
}

.pagination .page-list {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pagination .page-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #E5E5E5;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-list a:hover {
    border-color: #C41E3A;
    color: #C41E3A;
}

.pagination .page-list a.on {
    background: #C41E3A;
    border-color: #C41E3A;
    color: #fff;
}
