/* 资讯中心页面样式 */

.page-banner {
    margin-top: 80px;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-green) 100%);
    text-align: center;
    color: var(--color-cream);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    padding: 20px 0;
    background: var(--color-white);
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb span {
    color: var(--color-text-light);
    margin: 0 10px;
}

.news-list-section {
    padding: 60px 0;
    background: var(--color-cream-light);
}

.news-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.news-item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-wine);
    margin-bottom: 15px;
}

.news-item-excerpt {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-item-date {
    font-size: 14px;
    color: var(--color-gold);
}

.news-item-read {
    font-size: 14px;
    color: var(--color-wine);
    font-weight: 600;
}

@media (max-width: 768px) {
    .news-item {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 32px;
    }
}
