
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }

    html, body {
        width: 100%;
        height: 100%;
    }

    /* 视频容器 */
    .video-container {
        position: relative;
        width: 100%;
        height: 100vh; /* 全屏高度 */
        overflow: hidden;
    }

    /* 视频样式 - 无黑边适配 */
    .background-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* 保持比例填充容器 */
        object-position: center;
        z-index: 1; /* 视频在最底层 */
    }

    /* 新增遮罩层：在视频和文字中间 */
    .video-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2); /* 半透明黑色遮罩，可调整透明度 */
        z-index: 2; /* 遮罩在视频之上，文字之下 */
    }

    /* 叠加内容容器 */
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 5%; /* 左右内边距，响应式调整 */
        z-index: 3; /* 文字在遮罩上方 */
    }

    /* 文字内容样式 */
    .overlay-content {
        max-width: 800px; /* 限制最大宽度 */
    }

    .overlay h1 {
        color: white;
        font-size: clamp(2rem, 5vw, 3.5rem); /* 响应式字体 */
        line-height: 1.4
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
       font-family: 'Dutch801-XBd-BT';
    }

    .overlay p {
        color: white;
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        margin-bottom: 2rem;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    /* 按钮容器 */
    .button-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap; /* 小屏幕自动换行 */
margin-top:50px;
    }

    /* 按钮样式 */
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .btn-outline {
        background: transparent;
        color: white;
        border: 2px solid white;
margin-right:20px;
    }

    .btn-solid {
        background:#1E90FF;
        color: white;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /* 下方内容区域 */
    .below-video {
        padding: 4rem 5%;
        background: white;
    }

    .below-video h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #333;
    }

.solution {
background:#ff8200
}

