/* 新闻详情页样式 */
.news-container {
            display: flex;
            gap: 30px;
}
.news-detail-container {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
}

.news-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: #222;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 450px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.news-content h2 {
    font-size: 1.8rem;
    margin: 35px 0 20px;
    color: #222;
    font-weight: 700;
}

.news-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #333;
}

.news-content p {
    margin-bottom: 20px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #cc0000;
    margin: 30px 0;
}

.news-content ul, .news-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.news-content li {
    margin-bottom: 12px;
}

.content-highlight {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.highlight-text {
    flex: 1;
    padding: 30px;
}

.highlight-image {
    flex: 0 0 40%;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.news-tags span {
    font-weight: 600;
    color: #333;
}

.tag {
    padding: 8px 18px;
    background: #f0f0f0;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #cc0000;
    color: #fff;
    transform: translateY(-2px);
}

.news-share {
    margin: 50px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

.news-share h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

.share-button span {
    font-size: 1rem;
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.wechat { background: #09b83e; }
.link { background: #666; }

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-news {
    margin-top: 50px;
}

.related-news h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #222;
    position: relative;
    padding-bottom: 15px;
}

.related-news h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #cc0000;
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.related-content {
    padding: 20px;
}

.related-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.4;
}

.related-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cc0000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #a30000;
    gap: 12px;
}

/* 响应式设计 */
@media (max-width: 1100px) {
    .news-detail-container {
        padding: 30px;
    }
    
    .news-title {
        font-size: 2.2rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .news-container {
        flex-direction: column;
    }
    
    .news-sidebar {
        width: 100%;
        margin-top: 30px;
    }
    
    .content-highlight {
        flex-direction: column;
    }
    
    .highlight-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .news-detail-container {
        padding: 25px 20px;
    }
    
    .news-title {
        font-size: 1.8rem;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-title {
        font-size: 1.6rem;
    }
    
    .featured-image {
        height: 220px;
    }
    
    .news-content {
        font-size: 1rem;
    }
    
    .news-content h2 {
        font-size: 1.5rem;
    }
}