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

        /* 页面主体样式 */
        body {
            color: #fff;
            overflow-x: hidden;
            background-color: #fff; /* 全局背景设为白色，适配新增区块 */
            scroll-behavior: smooth; /* 全局平滑滚动（增强体验） */
        }

        /* 顶部导航栏 */
        header {
            position: fixed; /* 固定在顶部 */
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100; /* 保证导航栏在最上层 */
            background-color: rgba(0, 0, 0, 0.2); /* 半透明背景 */
            backdrop-filter: blur(8px); /* 毛玻璃效果，提升视觉体验 */
        }

        /* 品牌Logo */
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

        /* 导航链接 */
        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ccc;
        }

        /* 右侧按钮 */
        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-actions .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }

        .nav-actions .btn-primary {
            background-color: #0071e3;
            color: #fff;
        }

        .nav-actions .btn-primary:hover {
            background-color: #0077ed;
        }

        /* 视频背景容器 */
        .hero-section {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background-color: #000; /* 视频区域背景设为黑色，避免加载空白 */
        }

        /* 背景视频样式 */
        .bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            z-index: 1; /* 视频层级低于内容 */
            object-fit: cover; /* 保证视频覆盖整个容器 */
            opacity: 0.85; /* 降低视频透明度，提升文字可读性 */
        }

        /* 核心内容容器 */
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2; /* 内容层级高于视频 */
            text-align: center;
        }

        /* 产品标题 */
        .hero-title {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* 副标题 */
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        /* 按钮样式 */
        .hero-btn {
            padding: 0.8rem 1.5rem;
            background-color: rgba(255, 255, 255, 0.2);
            color: #fff;
            border: 1px solid #fff;
            border-radius: 20px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .hero-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* 底部小字 */
        .hero-note {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* 三个功能区块的总容器 */
        .feature-container {
            width: 100%;
            background-color: #fff;
            color: #333; /* 文字设为深色，适配白色背景 */
            padding: 5rem 0;
            scroll-margin-top: 80px; /* 滚动偏移，避免被顶部导航遮挡 */
        }

        /* 单个功能区块样式（左文右视频） */
        .feature-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto 8rem; /* 区块之间留间距 */
            padding: 0 5%;
            gap: 4rem; /* 文字和视频之间的间距 */
        }

        /* 最后一个区块取消底部间距 */
        .feature-section:last-child {
            margin-bottom: 0;
        }

        /* 左侧文字内容区 */
        .feature-content {
            flex: 1; /* 占比1，和视频区平分宽度 */
        }

        .feature-title {
            font-size: 2rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 1.5rem;
        }

        .feature-desc {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 2rem;
        }

        .feature-btn {
            padding: 0.8rem 2rem;
            border: 1px solid #0071e3;
            border-radius: 4px;
            background-color: #fff;
            color: #0071e3;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .feature-btn:hover {
            background-color: #0071e3;
            color: #fff;
        }

        /* 右侧视频区 - 修复后动画（由上往下摊开） */
        .feature-video-wrapper {
            flex: 1; /* 占比1，和视频区平分宽度 */
            border-radius: 8px; /* 圆角，提升美观度 */
            overflow: hidden; /* 裁剪圆角外的内容 */
            box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 阴影，增强层次感 */
            cursor: pointer; /* 鼠标悬浮显示手型，提示可点击 */
            transition: transform 0.3s; /* 悬浮缩放动画 */
            
            /* 核心：动画初始状态 - 垂直缩放为0，原点在顶部 */
            opacity: 0;
            transform: scaleY(0); /* 垂直方向缩放到0（只显示顶部一条线） */
            transform-origin: top center; /* 缩放原点：顶部居中（关键！保证由上往下摊开） */
            transition: 
                opacity 0.5s ease, 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* 分开过渡更自然 */
        }

        /* 激活动画：还原缩放和透明度 */
        .feature-video-wrapper.animate-video {
            opacity: 1;
            transform: scaleY(1); /* 垂直缩放到100%，实现由上往下摊开 */
        }

        .feature-video-wrapper:hover {
            transform: scale(1.02); /* 悬浮轻微放大，提升交互感 */
        }

        .feature-video {
            width: 100%;
            height: auto;
            display: block; /* 消除视频底部空白 */
        }

        /* 视频放大弹窗样式 */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.9); /* 半透明黑色遮罩 */
            z-index: 999; /* 弹窗层级最高 */
            display: none; /* 默认隐藏 */
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        /* 弹窗显示状态 */
        .video-modal.active {
            display: flex;
        }

        /* 弹窗关闭按钮 */
        .modal-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 1000;
        }

        .modal-close:hover {
            color: #ccc;
        }

        /* 弹窗内视频容器 */
        .modal-video-wrapper {
            max-width: 90%;
            max-height: 90%;
        }

        .modal-video {
            width: 100%;
            height: 100%;
            object-fit: contain; /* 保证视频完整显示，不拉伸 */
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .nav-links {
                display: none; /* 移动端隐藏导航链接 */
            }
            /* 移动端区块改为上下布局 */
            .feature-section {
                flex-direction: column;
                gap: 2rem;
                margin-bottom: 5rem;
            }
            .feature-content {
                width: 100%;
                text-align: center;
            }
            .feature-video-wrapper {
                width: 100%;
            }
            /* 移动端弹窗关闭按钮调整大小 */
            .modal-close {
                font-size: 1.5rem;
                top: 1rem;
                right: 1rem;
            }
        }