/* 新闻详情内容 */
.news-detail {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.news-detail h1 {
    font-size: 2rem;
    color: #00649a;
    margin-top: 0;
    text-align: center;
}

.news-detail .meta {
    text-align: center;
    color: #777;
    margin-bottom: 1.5rem;
}

.news-detail .content {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.news-detail .content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
}

.news-detail .content p {
    text-indent: 2em;
}

.news-detail .content .sp1 {
    display: block;
    color: #bc2931;
    font-weight: bold;
    text-align: center;
}
.news-detail .content .sp2 {
    display: block;
    font-size: larger;
    font-weight: bold;
    text-align: center;
    color: #00649a;

}
.news-detail .content .sp3 {
    display: block;    
    font-weight: bold;
    text-align: center;
}

.news-detail .back-link {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: #00649a;
    text-decoration: none;
    font-weight: bold;
}

.news-detail .back-link:hover {
    color: #3498db;
}