
    /* 核心外层容器 */
    .hero-layout-wrapper {
        position: relative; /* 为绝对定位的标签提供参照 */
        max-width: 1200px;
        margin: 80px auto;
        padding: 60px 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        text-align: center; /* 确保中间文字默认居中 */
    }

    /* 1. 使用 position: absolute 固定在正中间的标签 */
    .hero-abs-tag {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%); /* 抵消自身宽度实现绝对居中 */
        background-color: #f0fafa;
        color: #56B8B8;
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

    /* 2. 中间文字区域 */
    .hero-main-content {
        margin-top: 40px;
    }

    .hero-main-content h1 {
        font-size: 52px;
        color: #0f172a;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    /* 标题强调色 */
    .hero-main-content h1 span {
        color: #56B8B8;
        display: block;
    }

    .hero-main-content p {
        font-size: 19px;
        color: #475569;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 50px;
    }

    /* 3. 使用 text-align: right 并通过内边距居中的按钮区域 */
    .hero-btn-align-right {
        text-align: right;
        /* 通过内边距将右对齐的按钮推到中间位置 */
        /* 计算说明：按钮宽度约为280px，右侧留出约38%的内边距可使其视觉居中 */
        padding-right: 38%; 
    }

    .btn-main-action {
        background-color: #56B8B8;
        color: #ffffff;
        padding: 18px 40px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 25px rgba(86, 184, 184, 0.3);
        transition: all 0.3s ease;
    }

    .btn-main-action:hover {
        background-color: #48a1a1;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(86, 184, 184, 0.4);
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
        .hero-btn-align-right {
            padding-right: 32%; /* 针对平板微调 */
        }
    }

    @media (max-width: 768px) {
        .hero-main-content h1 {
            font-size: 34px;
        }
        /* 移动端建议取消复杂的内边距偏移，回归标准对齐 */
        .hero-btn-align-right {
            text-align: center;
            padding-right: 0;
        }
        .btn-main-action {
            width: 90%;
            justify-content: center;
        }
    }
