#content img {
    max-width: 850px;
}

.news-detail-container {
    max-width: 1000px; /* 增加最大宽度 */
    margin: 60px auto 20px; /* 居中 */
    padding: 20px; /* 内边距 */
    background-color: #fff; /* 背景颜色 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.news-header {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中对齐 */
    justify-content: center; /* 水平居中 */
}

.return-icon {
    font-size: 24px; /* 图标大小 */
    color: #007bff; /* 图标颜色 */
    margin-right: 10px; /* 图标与标题之间的间距 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
    transition: color 0.3s; /* 添加颜色变化效果 */
}

.return-icon:hover {
    color: #0056b3; /* 悬停时的颜色 */
}

.news-title {
    font-size: 32px; /* 增加标题字体大小 */
    font-weight: bold; /* 加粗 */
    color: #333; /* 标题颜色 */
    text-align: center; /* 标题居中对齐 */
    flex: 1; /* 使标题占据剩余空间 */
}

.news-meta {
    font-size: 16px; /* 增加元数据字体大小 */
    color: #6c757d; /* 使用更柔和的颜色 */
    text-align: center; /* 居中对齐 */
}

.news-date {
    font-style: italic; /* 斜体 */
    margin-top: 5px; /* 上边距 */
}

.news-content {
    font-size: 16px; /* 内容字体大小 */
    color: #555; /* 内容颜色 */
    line-height: 1.6; /* 行高 */
    margin-bottom: 20px; /* 下边距 */
    max-width: 100%; /* 最大宽度为100% */
    overflow-wrap: break-word; /* 处理长单词的换行 */
    word-wrap: break-word; /* 处理长单词的换行 */
    word-break: break-all; /* 强制换行 */
}

@media (max-width: 768px) {
    .news-detail-container {
        margin: 0 auto !important;
    }
}