/* 新闻容器 */
.news-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}

#wrap {
    background: #000;
}

/* 新闻标题区域 */
.news-header {
    margin-bottom: 40px;
    text-align: center;
}

.news-header h1 {
    font-size: 32px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-meta {
    color: #999;
    font-size: 14px;
}

.news-date {
    position: relative;
    padding-left: 20px;
}

.news-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url('../image/time-icon.png') no-repeat center;
    background-size: contain;
}

/* 新闻内容区域 */
.news-content {
    margin-bottom: 60px;
}

.news-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
    text-indent: 30px;
}

.news-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-text p:last-child {
    margin-bottom: 0;
}

/* 新闻图片 */
.news-image {
    margin: 30px 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0;
    transform: scale(1.1);
}

.image-wrapper img.loaded {
    opacity: 1;
    transform: scale(1);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* 图片说明 */
.image-caption {
    margin-top: 15px;
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.caption-item {
    margin-bottom: 8px;
}

.caption-item:last-child {
    margin-bottom: 0;
}

/* 相关新闻 */
.related-news {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.related-news h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.related-list {
    display: flex;
    /* flex-direction: column; */
    gap: 15px;
}

.related-item {
    display: flex;
    text-align: right;
    align-items: center;
    font-size: 16px;
    flex: 1;
}
.next {
    text-align: right;
    display: inline-block;
}

.related-item .label {
    color: #666;
    margin-right: 10px;
    flex-shrink: 0;
}

.related-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-item a:hover {
    color: #FE8B00;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
    .news-container {
        padding: 30px 15px;
    }

    .news-header h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .news-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .news-image {
        margin: 20px 0;
    }

    .related-news h2 {
        font-size: 20px;
    }

    .related-item {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .news-container {
        padding: 20px 12px;
    }

    .news-header h1 {
        font-size: 20px;
    }

    .news-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .image-caption {
        font-size: 12px;
    }

    .related-news h2 {
        font-size: 18px;
    }

    .related-item {
        font-size: 13px;
    }

    .related-item .label {
        width: 60px;
    }
} 