/* 新闻详情页样式 */
.news-detail-container {
    background: var(--pale-tiffany, #E0F2F1);
    border-radius: 6px;
    box-shadow: 4px 4px 12px rgba(94,191,183,0.15);
    padding: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.news-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.news-detail-date {
    color: var(--light-tiffany, #A6E3DD);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.news-detail-image-container {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.news-detail-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.news-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-actions {
    margin-top: 40px;
}

.news-back-btn,
.news-nav-btn {
    background: var(--soft-gold, #FFB800);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.news-back-btn:hover,
.news-nav-btn:hover {
    background: #e6a700;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.news-prev-btn {
    width: 100%;
}

.news-next-btn {
    width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-detail-container {
        padding: 20px;
    }
    
    .news-detail-title {
        font-size: 1.8rem;
    }
    
    .news-detail-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .news-detail-actions .row > div {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .news-prev-btn,
    .news-next-btn,
    .news-back-btn {
        width: 100%;
        display: block;
    }
} 