/* 搜索与分类 */
.news-filter {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #333;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.filter-tab.active {
    background: linear-gradient(90deg, #572cd4, #dea7c4);
    color: white;
}

/* 公告列表 */
.announcement-list {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.announcement-list-more {
    background: rgba(255, 255, 255, 0.9);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    /*color: #333;*/
    background: linear-gradient(to bottom, #572cd4 0%, #f9e270 20%, #dea7c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}




.announcement-simple-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.announcement-simple-item:last-child {
    border-bottom: none;
}


.announcement-simple-content {
    flex-direction: column;
    gap: 10px;
}

.announcement-simple-text {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
}

.announcement-simple-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}

.announcement-simple-meta i {
    margin-right: 5px;
}

.announcement-date {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.activity-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}

.activity-content {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* 活动链接样式 */
.activity-link {
    color: #572cd4;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.activity-link:hover {
    color: #00a8dd;
    text-decoration: underline;
}

.activity-link i {
    margin-left: 5px;
    font-size: 12px;
}


/* 时间线节点样式优化 */
.el-timeline-item__timestamp {
    font-size: 14px;
    color: #999999;
}
/* 滚动时间线容器 */
.timeline-scroll-container {
    height: 550px;
    overflow: hidden;
    position: relative;
}

.timeline-scroll-container:hover .timeline-scroll-content {
    animation-play-state: paused;
}

.timeline-scroll-content {
    animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* 确保时间线项目之间有合适的间距 */
.el-timeline-item {
    margin-bottom: 20px;
}

/* 行业资讯文章样式 */
.industry-news-item {
    padding: 15px 2px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-news-item:hover {
    background-color: #f8f9fa;
}

.industry-news-item:last-child {
    border-bottom: none;
}

.news-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin-right: 15px;
    margin-bottom: 5px;
}

.news-date {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    font-weight: 500;
}

.news-excerpt {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 5px 0;
}





/* 活动进展 */
.progress-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.progress-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: calc(100% - 20px);
    width: 2px;
    background: #572cd4;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #572cd4;
}

.timeline-date {
    font-weight: 600;
    color: #572cd4;
    margin-bottom: 5px;
}

/* 媒体中心 */
.media-center {
    margin-top: 40px;
}

.media-tabs {
    margin-top: 30px;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.media-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.media-item:hover {

    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.media-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.media-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
}

.media-content {
    padding: 20px;
}

.media-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.media-date {
    font-size: 14px;
    color: #888;
}

.media-download {
    margin-top: 15px;
    width: 100%;
}

/* 合作媒体 */
.partner-section {
    margin-top: 0;
}


.partner-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.partner-grid .partner-card {
    flex: 0 0 calc(100% / 7);
}

.partner-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-10px);
    background: rgba(106, 17, 203, 0.1);
}

.partner-logo {
    border-radius: 4px;
    width: 130px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
    object-fit: contain;
}


@media (max-width: 768px) {

    .partner-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .partner-grid .partner-card {
        flex: 0 0 calc(100% / 2);
    }
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    .news-filter {
        background: none;
        border-radius: 0;
        padding: 0;
        margin-bottom: 10px;
        border: none;

    }
    .filter-row {
        display: flex;
        gap: 10px;
    }
    .filter-tabs{
        display: none;
    }
    .nav-menu {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .page-title {
        font-size: 36px;
    }
    .
    .media-gallery {
        grid-template-columns: 1fr;
    }

    .news-content-wrapper {
        flex-direction: column;
    }

    .news-main-content {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .news-date {
        align-self: flex-end;
        font-size: 12px;
    }
    .progress-section {
        display: flex;
        flex-direction: column;
    }
    .industry-news-item {
        padding: 15px 0;
    }

}