/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 新闻标题 */
.news-title {
    font-size: 60px;
    font-weight: 700;
    color: #27406a;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.t2{
    font-size: 24px;
    color: #27406a;
    margin-bottom: 50px;
    text-align: center;
}
/* 发布时间 */
.news-meta {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* 新闻内容 */
.news-body {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #333333;
}
.news-body img{
max-width: 1200px;
}

.news-body p {
    margin-bottom: 20px;
}

/* 导航链接 */
.news-navigation {
     font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.nav-links {
    flex: 1;
    display: flex;
    gap: 60px;
}

.prev-link,
.next-link,
.return-link {
    color: #808080;
    text-decoration: none;
    font-size: 16px;
}

.prev-link:hover,
.next-link:hover,
.return-link:hover {
    color: #052355;
}

.return-link {
    margin-left: 40px;
}