
    /* 核心文章容器约束 */
    .creatrol-guide-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'AstaSans-Medium', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        color: #333;
        line-height: 1.8;
    }

    .creatrol-guide-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    /* ================= 1. 顶部全新英文大标题 ================= */
    .creatrol-main-title-box {
        text-align: center;
        margin: 20px 0 60px 0;
        padding-bottom: 40px;
        border-bottom: 1px solid #eaeaea;
    }

    .creatrol-main-title-box h1 {
        font-size: 32px;
        font-weight: 900;
        color: #1a1a1a;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .creatrol-main-title-box p {
        font-size: 16px;
        color: #5b5b5b;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* ================= 分类大标题 ================= */
    .category-title {
        font-size: 24px;
        font-weight: 900;
        color: #1a1a1a;
        margin: 60px 0 20px 0;
        padding-bottom: 10px;
        border-bottom: 2px solid #1a1a1a;
        display: flex;
        align-items: baseline;
    }
    
    .category-title span {
        font-size: 15px;
        font-weight: bold;
        color: #ba372a;
        margin-left: 15px;
        background-color: #f8cac6;
        padding: 3px 10px;
        border-radius: 4px;
        letter-spacing: 0.5px;
    }

    /* ================= 新增：系列对比图 Banner 样式 ================= */
    .comparison-banner {
        margin: 0 0 30px 0;
        width: 100%;
    }

    .comparison-banner img {
        width: 100%;
        margin: 0 auto;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        border: 1px solid #f5f5f5;
    }

    /* ================= 2. 横向大图产品卡片 ================= */
    .product-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .product-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 35px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        display: flex;
        align-items: center;
        gap: 40px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* 左侧大图容器 */
    .product-image-container {
        flex: 0 0 45%; 
        max-width: 400px;
    }

    .product-image-container img {
        width: 100%;
        margin: 0;
        object-fit: contain;
    }

    /* 右侧文字容器 */
    .product-info-container {
        flex: 1;
    }

    /* 更大的产品名称 */
    .product-name {
        font-size: 24px;
        font-weight: bold;
        color: #111;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    /* 更大的描述文字 */
    .product-desc {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    /* 更大的技术标签 */
    .tech-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tech-tags span {
        font-size: 14px;
        background-color: #f1f2f6;
        color: #333;
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: bold;
    }

    /* 手机端自动转为上下排列 */
    @media (max-width: 768px) {
        .product-card {
            flex-direction: column;
            padding: 25px;
            gap: 20px;
        }
        .product-image-container {
            flex: none;
            width: 100%;
            max-width: 100%;
        }
        .product-name {
            font-size: 20px;
        }
    }
