
    /* 基础样式重置 */
    body, h1, p {
        margin: 0;
        padding: 0;
        box-sizing: border-box; 
    }

    /* Banner 容器 */
    .banner-container {
        position: relative;
        width: 100%;
        /* 样式说明 */
        min-height: 250px; 
        /* 统一字体 */
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        color: #0f403f; 
    }

    /* 样式说明 */
    .banner-image {
        display: block;
        width: 100%; 
        height: auto; 
        /* 样式说明 */
        min-height: 250px;
        max-height: 600px; 
        object-fit: cover; 
        object-position: center;
    }
    
    /* 样式说明 */
    picture {
        display: block;
        width: 100%;
        /* 样式说明 */
        min-height: 250px;
        max-height: 600px;
        overflow: hidden;
        /* 防止图片溢出 max-height */
    }

    /* 文字内容区域 */
    .banner-text {
        /* 关键：绝对定位，实现文字覆盖在图片上 */
        position: absolute;
        top: 50%; 
        left: 0; 
        transform: translateY(-50%); 

        /* 样式说明 */
        max-width: 50%;
        padding: 2rem 4%; 
    }

    .banner-text h1 {
        /* 样式说明 */
        font-size: clamp(24px, 2.5vw, 36px);
        font-weight: 500; 
        line-height: 1.3;
        margin-bottom: 1rem; 
    }

    .banner-text p {
        /* 样式说明 */
        font-size: clamp(14px, 1.1vw, 18px);
        line-height: 1.6;
    }
    
    /* 样式说明 */
    
    /* 样式说明 */
    .banner-buttons {
        display: flex;
        gap: 15px; /* 样式说明 */
        margin-top: 25px;
        /* 按钮与文字内容的间距 */
    }

    /* 样式说明 */
    .banner-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 25px;
        
        /* 样式说明 */
        font-size: clamp(14px, 0.8vw, 16px);
        font-weight: 400;
        text-decoration: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        /* 防止按钮文字换行 */
    }

    /* 按钮 1: 纯色背景 */
    .btn-primary {
        background-color: #0f403f;
        color: #ffffff;
        border: 2px solid #0f403f; /* 样式说明 */
    }

    .btn-primary:hover {
        background-color: #0f403f;
        /* 样式说明 */
        border-color: #0f403f;
    }

    /* 按钮 2: 描边 + 半透明底色 */
    .btn-outline-trans {
        background-color: rgba(255, 255, 255, 0.3);
        /* 样式说明 */
        color: #0f403f;
        /* 文字颜色 */
        border: 2px solid #0f403f;
        /* 样式说明 */
        backdrop-filter: blur(2px);
        /* 增加背景模糊效果，提高可读性（可选） */
    }

    .btn-outline-trans:hover {
        background-color: #0f403f;
        color: #ffffff;
    }

    /* 样式说明 */

    /* 样式说明 */
    @media (max-width: 1200px) {
        .banner-text h1 {
            font-size: 3vw;
        }
        .banner-text p {
            font-size: 1.5vw;
        }
        /* 样式说明 */
        .banner-btn {
            font-size: 1.5vw;
            padding: 10px 20px;
        }
    }

    /* 样式说明 */
    @media (max-width: 768px) {
        /* 样式说明 */
        .banner-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* 样式说明 */
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 1; /* 确保遮罩在图片之上，文字之下 */
        }
        /* 确保文字内容在遮罩层之上 */
        .banner-text {
            z-index: 2; 
            /* 提高 z-index */
            max-width: 65%;
            padding: 1.5rem 5%;
        }
        /* 调整文字颜色为白色，确保在黑色遮罩上清晰可见 */
        .banner-text h1, .banner-text p, .btn-outline-trans {
            color: #ffffff;
        }
        /* 样式说明 */
        .btn-outline-trans {
             border-color: #0f403f; /* 描边改为白色 */
        }
        
        .banner-text h1 {
            /* 【手机主标题优化】：3.5vw */
            font-size: 3.5vw;
        }
        .banner-text p {
            /* 【手机正文优化】：1.8vw */
            font-size: 1.8vw;
        }
        .banner-buttons {
            flex-direction: column;
            /* 样式说明 */
            gap: 10px;
            margin-top: 20px;
        }
        .banner-btn {
            /* 【手机按钮优化】：2.5vw */
            font-size: 2.5vw;
            width: 90%; /* 样式说明 */
            padding: 12px 15px;
        }
    }

    /* 样式说明 */
    @media (max-width: 480px) {
        .banner-text {
            max-width: 90%;
        }
        .banner-text h1 {
            /* 【小手机主标题优化】：6.5vw */
            font-size: 6.5vw;
        }
        .banner-text p {
            /* 【小手机正文优化】：3.5vw */
            font-size: 3.5vw;
        }
        .banner-btn {
            /* 【小手机按钮优化】：3.5vw */
            font-size: 3.5vw;
        }
    }
