.arc-content {
            width: 80%;
            max-width: 1200px; /* 限制最大宽度，避免过宽 */
            margin: 50px auto;
            padding: 0 20px; /* 增加内边距，避免内容贴边 */
            box-sizing: border-box; /* 内边距计入宽度，防止溢出 */
            overflow: visible; /* 确保内容正常显示，不被截断 */
        }

        /* 新闻标题样式 */
        .news-title {
            font-size: 30px;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 500;
            color: #222;
        }

        /* 新闻内容父容器 */
        .news-main-container {
            width: 100%;
            margin: 0 auto;
            font-size: 15px;
            color: #444;
            line-height: 1.8;
			text-align: justify;
        }
		

        /* 段落首行缩进2个字符 */
        .news-main-container p {
            
            margin: 0 0 15px 0; /* 段落间距，提升可读性 */
            padding: 0;
        }

        /* 图片样式 - 最大宽度900px，永远居中 */
        .news-main-container img {
            width: auto; /* 自适应容器宽度，不超过900px */
			max-width:80%;
            height: auto; /* 保持图片比例 */
            display: block; /* 块级元素，方便居中 */
            margin: 0 auto; /* 上下间距30px，左右自动居中 */
            border: none;
        }

        /* 换行符替换为段落间距（优化<br>带来的空白） */
		br {
            display: block !important; /* 强制显示 */
        }

        /* 响应式适配 */
        @media (max-width: 1200px) {
            .arc-content {
                width: 90%;
            }
        }

        @media (max-width: 768px) {
            .news-title {
                font-size: 20px;
            }
            .news-main-container {
                font-size: 14px;
            }
            .news-main-container img {
                max-width: 100%; /* 移动端图片占满容器 */
                margin: 20px auto;
            }
        }