
    /* 1. 基础容器 */
    .automation-hero-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 60px auto;
        padding: 40px 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color: #ffffff;
        gap: 60px;
    }

    /* 2. 左侧文字内容 */
    .automation-content {
        flex: 1;
        text-align: left;
    }

    .automation-content h1 {
        font-size: 52px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.1;
        margin: 0 0 30px 0;
        letter-spacing: -0.02em;
    }

    /* 关键词高亮 - 使用您的主色调 #56B8B8 */
    .automation-content h1 span {
        color: #56B8B8;
        display: block; /* 强制换行以匹配图出版式 */
    }

    .automation-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #475569;
        margin-bottom: 40px;
        max-width: 540px;
    }

    /* 3. 橙色按钮样式 */
    .btn-explore-ai {
        background-color: #ff7b1a; /* 橙色 */
        color: #ffffff;
        padding: 16px 35px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(255, 123, 26, 0.2);
        transition: all 0.3s ease;
    }

    .btn-explore-ai:hover {
        transform: translateY(-2px);
        background-color: #f06a00;
        box-shadow: 0 15px 30px rgba(255, 123, 26, 0.3);
    }

    /* 4. 右侧图片卡片效果 */
    .automation-visual {
        flex: 1.1;
        position: relative;
    }

    /* 核心：白色厚边框 + 大圆角 + 深阴影 */
    .img-frame-card {
        background: #ffffff;
        padding: 12px; /* 图片周围的白边 */
        border-radius: 30px; /* 大圆角 */
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12); /* 柔和深阴影 */
        overflow: hidden;
        display: block;
    }

    .img-frame-card img {
        width: 100%;
        height: auto;
        border-radius: 20px; /* 内部图片也带圆角 */
        display: block;
    }

    /* 5. 移动端适配 */
    @media (max-width: 992px) {
        .automation-hero-section {
            flex-direction: column;
            text-align: center;
            padding: 40px 20px;
            gap: 40px;
        }
        .automation-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .automation-content h1 {
            font-size: 36px;
        }
        .automation-content p {
            font-size: 16px;
        }
        .btn-explore-ai {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        .automation-visual {
            width: 100%;
        }
    }
