
    /* 核心文章容器约束 */
    .creatrol-article-wrapper {
        max-width: 850px;
        margin: 0 auto;
        font-family: 'AstaSans-Medium', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        color: #333333;
        line-height: 1.8;
        font-size: 16px;
    }

    .creatrol-article-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 8px;
    }

    /* 引言主标题样式 */
    .creatrol-hero-title {
        font-size: 28px;
        font-weight: 900;
        text-align: center;
        color: #1a1a1a;
        margin: 50px 0 30px;
        line-height: 1.4;
        letter-spacing: -0.5px;
    }

    .creatrol-hero-title span {
        color: #ba372a;
    }

    /* 标题样式统一规范 */
    .creatrol-article-wrapper h2 {
        font-size: 22px;
        color: #000;
        margin-top: 50px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        font-weight: bold;
    }

    .creatrol-article-wrapper h2::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 22px;
        background-color: #ba372a;
        margin-right: 10px;
    }

    .creatrol-article-wrapper h3 {
        font-size: 18px;
        color: #ba372a;
        margin-top: 30px;
        margin-bottom: 10px;
        background-color: #f8cac6;
        display: inline-block;
        padding: 4px 10px;
        border-radius: 4px;
    }

    /* 重点文本高亮 */
    .creatrol-highlight {
        background-color: #fbeeb8;
        padding: 2px 6px;
        border-radius: 3px;
        font-weight: bold;
    }

    .creatrol-text-muted {
        color: #95a5a6;
        font-size: 15px;
        text-align: center;
        display: block;
        margin-top: -15px;
        margin-bottom: 30px;
    }

    /* 表格统一样式 */
    .creatrol-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        background-color: #fcfcfc;
        font-size: 15px;
    }

    .creatrol-table th, .creatrol-table td {
        border: 1px solid #e0e0e0;
        padding: 15px;
        vertical-align: middle;
    }

    .creatrol-table th {
        background-color: #ecf0f1;
        font-weight: bold;
        text-align: left;
        font-size: 16px;
    }

    .creatrol-table td img {
        margin: 0 auto;
        max-height: 120px;
        width: auto;
    }
    
    .creatrol-table td a img {
        max-height: 40px;
    }

    /* 应用场景图片网格排版 */
    .creatrol-grid-4 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }
    
    .creatrol-grid-4 img {
        margin: 0;
        width: 100%;
    }

    /* 针对不同版本介绍的区块 */
    .version-block {
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }
    
    .version-block:last-child {
        border-bottom: none;
    }
