.article-content {
    color: black;
    font-size: clamp(15px, 1.5vw, 16px);
    line-height: 1.8;
    text-align: justify;}
/* 新增：文章图片居中 + 自适应间距 */
.article-content img {
    display: block;
    margin: 20px auto !important; /* 核心：左右自动居中，上下留间距 */
    max-width: 100%; /* 保持移动端自适应 */
    height: auto;}
img {
    display: block;
    margin: 20px auto !important; /* 核心：左右自动居中，上下留间距 */
    max-width: 100%; /* 保持移动端自适应 */
    height: auto;}
