﻿.news-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin: 0;
    display: inline-block;
}

.title-main {
    font-size: 30px;
    font-weight: 600;
}

.title-main span {
    color: var(--mainColor);
}

.title-sub {
    font-size: 20px;
    color: #333;
    font-weight: 400;
}

.news-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.news-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-right {
    flex: 1;
}

.news-block {
    background: #fff;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-title {
    font-size: 18px;
    color: var(--mainColor);
    margin: 0;
    font-weight: 600;
}

.more-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: var(--mainColor);
}

.news-divider {
    height: 2px;
    background: #e5e5e5;
    margin-bottom: 20px;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-link {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.news-item {
    display: block;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    background: #f8f9fa;
}

.news-item:hover .news-text {
    color: var(--mainColor);
}

.news-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.news-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.news-date {
    font-size: 12px;
    color: #999;
    margin-left: 15px;
    flex-shrink: 0;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.industry-item {
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-item:hover .industry-title {
    color: var(--mainColor);
}

.industry-image {
    flex-shrink: 0;
}

.industry-image img {
    width: 152px;
    height: 100px;
    object-fit: cover;
}

.industry-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 10px;
}

.industry-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.industry-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.party-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.party-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.party-item {
    display: flex;
    align-items: flex-start;
    background: #f5f9ff;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.party-item:hover .party-title {
    color: #ea4844;
}

.party-item:hover .date-day {
    background: #ea4844;
}

.party-item.active .party-title {
    color: #ea4844;
}

.party-item.active .date-day {
    background: #ea4844;
}

.party-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.date-day {
    background: var(--mainColor);
    color: #fff;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: background 0.3s ease;
}

.date-month {
    background: #ddd;
    color: #666;
    padding: 4px 8px;
    font-size: 12px;
}

.party-divider {
    width: 2px;
    background: #ddd;
    margin: 0 15px;
    align-self: stretch;
}

.party-content {
    flex: 1;
}

.party-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.party-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}