/* Banner样式 */
.news-detail-banner {
    background: url('../images/news-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.news-detail-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-title {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: bold;
}

/* 面包屑导航样式 */
.breadcrumb-section {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #333;
}

/* 新闻详情内容样式 */
.news-detail-content {
    padding: 40px 0;
}

.news-header {
    margin-bottom: 30px;
}

.news-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.news-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-meta span {
    margin-right: 20px;
}

.news-body {
    border-top: 1px dashed #e0e0e0;
    padding-top: 30px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #333;
}

/* 上下条导航样式 */
.news-navigation {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 30px;
}

.nav-label {
    color: #666;
    margin-right: 10px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #007bff;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-detail-banner {
        height: 200px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .news-title {
        font-size: 1.5rem;
    }

    .news-meta span {
        display: block;
        margin-bottom: 5px;
    }
} 