/* 列表 */
.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);
}


.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: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.announcement-simple-item:last-child {
    border-bottom: none;
}

.announcement-simple-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}



.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: 5px;
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}

.announcement-simple-meta i {
    margin-right: 5px;
}

.announcement-date{
    display: flex;
    align-items: center;
}

/* 行业资讯文章样式 */
.industry-news-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: none;
}

.industry-news-item:hover {
    background-color: #f8f9fa;
}

.industry-news-item:last-child {
    border-bottom: none;
}

.news-text-content {
    flex: 1;
    margin: 0;
    padding: 0;
}
.news-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin: 15px 0;
}

.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;
}


.news-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.news-content-wrapper.has-thumbnail {
    gap: 20px;
}



.news-thumbnail {
    margin-top: 10px;
    margin-right: 10px;
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-excerpt {
    color: #666;
    flex: 1;
    margin-right: 20px;
}

.news-date {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
}


@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }


    .news-content-wrapper {
        flex-direction: column;
    }

    .news-content-wrapper.has-thumbnail {
        gap: 0;
    }

    .news-thumbnail {
        width: 100%;
        height: 150px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-excerpt {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .announcement-list {
        padding: 10px 20px;
    }


}