.news-detail-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.news-detail-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.detail-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 30px;
}

.detail-header .detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.detail-header .detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    color: #999999;
}

.detail-header .detail-meta i {
    margin-right: 5px;
    color: #001488;
}

.detail-body {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.detail-body p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eeeeee;
}

.detail-nav a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    max-width: 45%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.detail-nav a:hover {
    color: #001488;
}

.detail-nav a .nav-label {
    color: #001488;
    font-weight: 600;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .news-detail-section {
        padding: 30px 15px;
    }

    .detail-header .detail-title {
        font-size: 20px;
    }

    .detail-header .detail-meta {
        gap: 15px;
        font-size: 13px;
    }

    .detail-body {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .news-detail-section {
        padding: 20px 10px;
    }

    .detail-header .detail-title {
        font-size: 18px;
    }

    .detail-header .detail-meta {
        flex-wrap: wrap;
        gap: 8px 15px;
        font-size: 12px;
    }

    .detail-body {
        font-size: 14px;
    }

    .detail-nav {
        flex-direction: column;
        gap: 10px;
    }

    .detail-nav a {
        max-width: 100%;
    }
}