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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

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

        .xiqi-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .xiqi-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .xiqi-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #4285f4;
        }

        .xiqi-logo img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

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

        .xiqi-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .xiqi-nav-link:hover {
            background: #4285f4;
            color: white;
            transform: translateY(-2px);
        }

        .xiqi-hero {
            background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .xiqi-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: xiqi-float 20s linear infinite;
        }

        @keyframes xiqi-float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-100px); }
        }

        .xiqi-hero-content {
            position: relative;
            z-index: 2;
        }

        .xiqi-main-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .xiqi-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .xiqi-cta-primary {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }

        .xiqi-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
        }

        .xiqi-main-content {
            background: white;
            padding: 80px 0;
        }

        .xiqi-section {
            margin-bottom: 60px;
        }

        .xiqi-section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .xiqi-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 2px;
        }

        .xiqi-platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .xiqi-platform-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .xiqi-platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: #4285f4;
        }

        .xiqi-platform-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
        }

        .xiqi-platform-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .xiqi-platform-desc {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .xiqi-download-btn {
            background: linear-gradient(45deg, #4285f4, #34a853);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .xiqi-download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
        }

        .xiqi-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .xiqi-feature-item {
            text-align: center;
            padding: 30px 20px;
        }

        .xiqi-feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .xiqi-feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .xiqi-feature-desc {
            color: #666;
            line-height: 1.6;
        }

        .xiqi-install-steps {
            background: #f8f9fa;
            padding: 60px 0;
            margin: 60px 0;
        }

        .xiqi-steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .xiqi-step-item {
            text-align: center;
            position: relative;
        }

        .xiqi-step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .xiqi-step-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .xiqi-step-desc {
            color: #666;
            font-size: 0.95rem;
        }

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

        .xiqi-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .xiqi-cta-desc {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .xiqi-footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .xiqi-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .xiqi-footer-section h4 {
            margin-bottom: 15px;
            color: #ecf0f1;
        }

        .xiqi-footer-link {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .xiqi-footer-link:hover {
            color: #4285f4;
        }

        .xiqi-copyright {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            color: #95a5a6;
        }

        @media (max-width: 768px) {
            .xiqi-nav-menu {
                display: none;
            }

            .xiqi-main-title {
                font-size: 2.5rem;
            }

            .xiqi-platform-grid {
                grid-template-columns: 1fr;
            }

            .xiqi-features-grid {
                grid-template-columns: 1fr;
            }

            .xiqi-steps-grid {
                grid-template-columns: 1fr;
            }
        }
    