﻿/* 1. 精准定位正文区域的 p 和 span 标签，先重置所有自带样式 */
.info p,
.info span {
    /* 清除浏览器默认样式（内外边距、字体、行高、颜色等） */
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-family: inherit; /* 继承父容器字体，也可直接指定如 "Microsoft Yahei" */
    font-size: inherit; /* 继承父容器字体大小，也可直接指定如 16px */
    font-weight: normal; /* 清除默认加粗 */
    font-style: normal; /* 清除默认斜体 */
    color: inherit; /* 继承父容器颜色，也可直接指定如 #333 */
    line-height: inherit; /* 继承父容器行高，也可直接指定如 1.8 */
    text-decoration: none; /* 清除下划线等 */
    text-indent: 0; /* 清除默认首行缩进 */
    /* 清除可能的布局样式 */
    display: inline; /* span 默认是 inline，p 默认是 block，可按需统一 */
    float: none;
    clear: none;
    background: none; /* 清除默认背景 */
}

/* 2. 强制设置自定义样式（按需修改，!important 确保优先级最高，覆盖其他样式） */
.info p {
    display: block; /* 保持 p 标签块级特性 */
    font-size: 18px !important;
    color: #3F3F3F !important;
    line-height: 2.2 !important;
    margin-bottom: 16px !important; /* 段落之间间距 */
    /*text-align: justify !important;*/ /* 两端对齐 */
}

.info span {
    font-size: 18px !important;
    color: #3F3F3F !important;
    /* 若需要统一 span 样式，可添加额外属性 */
    letter-spacing: 0.5px !important;
}
.info img {
    display: block !important;
    max-width: 98% !important;
    height: auto !important;
}
.info table {
    max-width: 98% !important;
}
.info p img {
    display:unset !important;
    max-width: 98% !important;
    height: auto !important;
}
/*.info table {
    margin: 0 auto;
    border:none;
}
    .info table td {
        border: none !important;
    }*/
    .info h3 {
        padding-bottom: 16px;
    }