/* 文章总容器 */
.article-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 10px 0;
    line-height: 1.8;
    color: #222222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 一级标题 (文章主标题) */
.article-content h1 {
    font-size: 22px;
    font-weight: bold;
    color: #111111;
    line-height: 1.4;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

/* 二级标题 (大模块标题 - 官网经典深蓝左侧竖条) */
.article-content h2 {
    font-size: 18px;
    font-weight: bold;
    color: #0f2540;
    margin: 36px 0 18px 0;
    padding-left: 10px;
    border-left: 4px solid #1a56a6;
    line-height: 1.3;
}

/* 三级标题 (子模块标题 - 品牌蓝) */
.article-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #1a56a6;
    margin: 24px 0 10px 0;
    line-height: 1.4;
}

/* 正文段落 */
.article-content p {
    font-size: 15px;
    color: #333333;
    margin: 0 0 16px 0;
    text-align: justify;
    word-break: break-word;
}

/* 加粗强调文本 */
.article-content strong {
    color: #111111;
}

/* 列表样式 */
.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin: 16px 0;
}

.article-content li {
    font-size: 15px;
    color: #333333;
    margin-bottom: 10px;
}

/* 虚线分割线 (用于板块划分) */
.article-content hr {
    border: none;
    border-top: 1px dashed #e0e0e0;
    margin: 24px 0;
}

/* 组件 1：核心提示/引用框 */
.article-content .quote-box {
    margin: 20px 0;
    padding: 14px 16px;
    background-color: #f7f8fa;
    border: 1px solid #e8ebd3;
    border-left: 4px solid #1a56a6;
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

/* 组件 2：自适应图片容器 */
.article-content .img-wrapper {
    text-align: center;
    margin: 24px 0;
}

.article-content .img-wrapper img {
    max-width: 100%;
    height: auto;
    border: 1px solid #eeeeee;
    display: block;
    margin: 0 auto;
}

/* 组件 3：移动端自适应表格容器 */
.custom-tables {
  width: 100%;
  border-collapse: collapse;
  color: #000000; /* 普通文字为黑色 */
  font-size: 14px; /* PC端字体大小 */
  /* 自动换行 */
  word-break: break-all;
  word-wrap: break-word;
}
.custom-tables th,
.custom-tables td {
    border: 1px solid #cccccc;
    /* 灰色边框 */
    padding: 8px;
    text-align: center;
}

/* 表头背景（可选，增强可读性） */
.custom-tables th {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* 超链接字体颜色为红色 */
.custom-tables a {
    color: #d93025;
    /* 红色字体 */
    text-decoration: underline;
    /* 保持下划线（若不需要下划线可改为 none） */
}

/* 鼠标悬停在链接上的效果（可选） */
.custom-tables a:hover {   
    color: #b31412;
    /* 悬停时稍微加深红色 */
}

.article-content tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* 移动端 (Pad & Phone) 响应式字体与间距适配 */
@media (max-width: 768px) {
    .article-content h1 {
        font-size: 26px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 17px;
    }

    .article-content p,
    .article-content li {
        font-size: 16px;
    }

    .custom-tables {
        font-size: 12px !important;
        /* 移动端字体大小 */
    }

    .custom-tables th,
    .custom-tables td {
       
        padding: 6px 4px;
        /* 适当缩小移动端边距 */
    }
}