
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        .sge7h-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .sge7h-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            height: 70px;
        }

        .sge7h-logo img {
            height: 40px;
            width: auto;
        }

        .sge7h-menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .sge7h-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .sge7h-nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .sge7h-nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .sge7h-nav-menu a:hover {
            color: #007bff;
        }

        .sge7h-nav-menu a.active {
            color: #007bff;
        }

        .sge7h-nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: #007bff;
        }

        .sge7h-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .sge7h-main {
            margin-top: 70px;
        }

        .sge7h-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .sge7h-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/features.jpg') center/cover;
            opacity: 0.2;
            z-index: 1;
        }

        .sge7h-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .sge7h-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sge7h-hero p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .sge7h-features-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .sge7h-feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .sge7h-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .sge7h-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .sge7h-feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .sge7h-feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .sge7h-feature-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        .sge7h-tech-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 100px 0;
        }

        .sge7h-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .sge7h-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .sge7h-section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .sge7h-section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .sge7h-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .sge7h-tech-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .sge7h-tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .sge7h-tech-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .sge7h-tech-card p {
            color: #666;
            line-height: 1.7;
        }

        .sge7h-scenarios-section {
            padding: 100px 0;
            background: white;
        }

        .sge7h-scenarios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .sge7h-scenario-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            transition: all 0.3s ease;
        }

        .sge7h-scenario-card:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .sge7h-scenario-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .sge7h-scenario-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .sge7h-scenario-card p {
            line-height: 1.6;
            opacity: 0.8;
        }

        .sge7h-stats-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
        }

        .sge7h-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .sge7h-stat-item h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .sge7h-stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .sge7h-cta-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .sge7h-cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .sge7h-cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .sge7h-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
        }

        .sge7h-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        }

        .sge7h-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 60px 0 30px;
        }

        .sge7h-footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .sge7h-footer-section h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .sge7h-footer-section ul {
            list-style: none;
        }

        .sge7h-footer-section ul li {
            margin-bottom: 10px;
        }

        .sge7h-footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .sge7h-footer-section ul li a:hover {
            color: #007bff;
        }

        .sge7h-footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #999;
        }

        @media (max-width: 768px) {
            .sge7h-menu-toggle {
                display: flex;
            }

            .sge7h-nav-menu {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                z-index: 1001;
            }

            .sge7h-nav-menu.active {
                display: flex;
            }

            .sge7h-nav-overlay.active {
                display: block;
            }

            .sge7h-hero h1 {
                font-size: 2.5rem;
            }

            .sge7h-hero p {
                font-size: 1.1rem;
            }

            .sge7h-features-grid {
                grid-template-columns: 1fr;
                padding: 60px 20px;
                gap: 30px;
            }

            .sge7h-feature-card {
                padding: 30px;
            }

            .sge7h-section-title h2 {
                font-size: 2rem;
            }

            .sge7h-tech-grid,
            .sge7h-scenarios-grid {
                grid-template-columns: 1fr;
            }

            .sge7h-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .sge7h-cta-content h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .sge7h-hero {
                padding: 60px 0;
            }

            .sge7h-hero h1 {
                font-size: 2rem;
            }

            .sge7h-features-grid {
                padding: 40px 15px;
            }

            .sge7h-feature-card {
                padding: 25px;
            }

            .sge7h-stats-grid {
                grid-template-columns: 1fr;
            }

            .sge7h-stat-item h3 {
                font-size: 2.5rem;
            }
        }
    