.news-detail-container {
    background: white;
    border-radius: 12px;
    padding: 40px 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #00a2ff;
}



.news-content-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #2c3e50;
    position: relative;
    padding: 20px 40px;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #572cd4, #f9e270);
    border-radius: 2px;
}

.news-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    color: #6c757d;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    font-size: 14px;
    font-weight: 500;
}


.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    padding: 10px 40px;

}

.news-body p {
    margin-bottom: 25px;
    text-align: justify;
}

.news-body h3 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #00a2ff;
    position: relative;
    padding-left: 20px;
}

.news-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 6px;
    background: #00a2ff;
    border-radius: 3px;
}
.news-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;

    }
    .news-detail-container {
        background: white;
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    .nav-menu {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .news-title {
        font-size: 20px;
    }
    .news-body{
        padding: 2px;
    }

    .news-body img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 10px auto !important;
        border-radius: 8px;
    }
}