/* ==================== 【关于我们内页 · 终极修复】 ==================== */
/* 外层背景 */
.layout.bg-gray {
    background: #f8f9fa !important;
    padding: 40px 0 !important;
    overflow: hidden !important;
}

/* 容器强制居中、宽度固定 */
.layout .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* 栅格强制不浮动、全宽 */
.layout .line {
    margin: 0 !important;
    display: block !important;
    clear: both !important;
}
.layout .x12 {
    width: 100% !important;
    float: none !important;
    display: block !important;
}

/* 白色卡片盒子 */
.article {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,90,156,0.08) !important;
    border: 1px solid #f0f5ff !important;
    overflow: hidden !important;
}
.article .padding-large {
    padding: 50px !important;
}

/* 标题（公司名称）强制居中样式 */
.post h1:first-child,
.post h2:first-child,
.article-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #333 !important;
    text-align: center !important;
    margin: 0 auto 40px auto !important;
    padding-bottom: 15px !important;
    position: relative !important;
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
}
.post h1::after,
.post h2::after {
    content: "" !important;
    width: 80px !important;
    height: 4px !important;
    background: #005A9C !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 0 !important;
    border-radius: 2px !important;
}

/* 内容段落强制正常排版 */
.post p {
    font-size: 16px !important;
    line-height: 2.2 !important;
    color: #444 !important;
    margin-bottom: 20px !important;
    text-align: justify !important;
}

/* 内容图片自适应 */
.post img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto !important;
    border-radius: 8px !important;
}

/* 列表样式 */
.post ul,
.post ol {
    padding-left: 20px !important;
    margin-bottom: 25px !important;
}
.post li {
    font-size: 16px !important;
    line-height: 2 !important;
    margin-bottom: 8px !important;
}

/* 小标题 */
.post h3 {
    font-size: 22px !important;
    color: #005A9C !important;
    font-weight: 600 !important;
    margin: 40px 0 20px 0 !important;
}

/* ==================== 移动端适配 ==================== */
@media (max-width: 768px) {
    .layout.bg-gray {
        padding: 20px 0 !important;
    }
    .article .padding-large {
        padding: 25px !important;
    }
    .post h1:first-child,
    .post h2:first-child {
        font-size: 24px !important;
    }
    .post p {
        font-size: 15px !important;
        line-height: 1.9 !important;
    }
}

/* 图片列表布局三列栅格 */
.x4 {
    width: 33.3333%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* 图片列表布局底部外边距 */
.margin-large-bottom {margin-bottom: 30px;}

/* 图片列表布局图片自适应 */
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 图片列表布局白色背景 + 垂直居中 */
.bg-white {background-color: #fff;}
.height-middle {display: table; width: 100%;}

/* 图片列表布局内边距 */
.padding {padding: 15px;}

/* 图片列表布局标题样式 */
.text-default {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    color: #333;
}


