<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>企业业绩增长科技Banner</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 主容器：1:1 还原原图尺寸与效果 */
        .hero-banner {
            /* 直接使用原图作为背景 */
            background: url('https://p3-flow-image-sign.byteimg.com/tos-cn-i-a9rns3fr3d/31e11000031e40089900190110090000~tplv-a9rns3fr3d-image.image') no-repeat center center;
            background-size: cover;
            width: 100%;
            height: 960px; /* 原图高度 */
            display: flex;
            align-items: center;
            padding-left: 8%; /* 文字与左侧的间距 */
            color: #ffffff;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* 文字内容容器 */
        .banner-content {
            max-width: 500px;
        }

        /* 主标题 */
        .main-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 24px;
            /* 模拟原图轻微的白色发光效果 */
            text-shadow: 0 0 15px rgba(0, 150, 255, 0.3);
        }

        /* 分割线：完全还原原图的蓝色渐变+光点 */
        .divider-line {
            width: 160px;
            height: 4px;
            background: linear-gradient(90deg, #0099ff, rgba(0, 153, 255, 0.2));
            border-radius: 2px;
            margin-bottom: 24px;
            position: relative;
        }

        /* 分割线上的光点 */
        .divider-line::after {
            content: '';
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 10px #0099ff;
        }

        /* 副标题 */
        .sub-title {
            font-size: 28px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        /* 高亮文字（和原图的蓝色一致） */
        .highlight-text {
            color: #40b8ff;
            font-weight: 600;
        }

        /* 响应式适配：保持比例 */
        @media (max-width: 1440px) {
            .hero-banner {
                height: auto;
                aspect-ratio: 1440 / 960;
            }
            .main-title {
                font-size: 4.4vw;
            }
            .sub-title {
                font-size: 1.9vw;
            }
        }

        @media (max-width: 768px) {
            .hero-banner {
                padding-left: 5%;
            }
            .main-title {
                font-size: 6vw;
            }
            .sub-title {
                font-size: 3.5vw;
            }
            .divider-line {
                width: 120px;
            }
        }
    </style>
</head>
<body>
    <div class="hero-banner">
        <div class="banner-content">
            <h1 class="main-title">
                助力企业实现<br>业绩增长
            </h1>
            <div class="divider-line"></div>
            <p class="sub-title">
                获客 + 引流 + 转化<span class="highlight-text">全程自动化</span>
            </p>
        </div>
    </div>
</body>
</html>