.party-news-page {
    background: #f7f7f7;
    padding: 40px 0 60px;
}

.news-banner {
    width: 100%;
    margin: 0 auto 18px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.news-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.party-news-header {
    margin-bottom: 24px;
    border-left: 4px solid #BA0001;
    padding-left: 16px;
}

.party-news-title {
    margin: 0;
    color: #BA0001;
    font-size: 32px;
    font-weight: 700;
}

.party-news-subtitle {
    margin: 12px 0 0;
    color: #666;
    font-size: 14px;
}

.party-news-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.party-news-sidebar {
    width: 220px;
    flex: 0 0 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.party-news-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.party-news-category-item {
    padding: 18px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.party-news-category-item.active,
.party-news-category-item:hover {
    background: #BA0001;
    color: #fff;
}

.party-news-content {
    flex: 1;
}

.party-news-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.party-news-items {
    display: flex;
    flex-direction: column;
}

.party-news-item {
    display: flex;
    gap: 18px;
    padding: 18px 20px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.party-news-item:hover {
    background: #fbf7f8;
}

.party-news-item-cover {
    width: 200px;
    flex: 0 0 200px;
    height: 112px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.party-news-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.party-news-item-body {
    flex: 1;
    min-width: 0;
    padding-top: 6px;
}

.party-news-item-title {
    color: #222;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 54px;
}

.party-news-item-date {
    margin-top: 12px;
    color: #888;
    font-size: 14px;
}

.party-news-empty {
    padding: 60px 20px;
    background: transparent;
    text-align: center;
    color: #888;
}

.party-news-pager {
    margin-top: 32px;
    text-align: center;
}

.party-news-pager .pagination a {
    display: inline-block;
    min-width: 36px;
    padding: 8px 12px;
    margin: 0 4px;
    border-radius: 4px;
    color: #BA0001;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.party-news-pager .pagination a.active {
    background: #BA0001;
    color: #fff;
}

@media (max-width: 768px) {
    .party-news-layout {
        flex-direction: column;
    }

    .party-news-sidebar {
        width: 100%;
        flex-basis: auto;
    }

    .party-news-item {
        padding: 16px;
        gap: 14px;
    }

    .party-news-item-cover {
        width: 140px;
        flex-basis: 140px;
        height: 84px;
    }

    .party-news-item-title {
        font-size: 16px;
    }
}
