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

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

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

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

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

        .j990-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #667eea;
        }

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

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

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

        .j990-nav-link:hover {
            color: #667eea;
        }

        .j990-nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s ease;
        }

        .j990-nav-link:hover::after {
            width: 100%;
        }

        .j990-main {
            margin-top: 80px;
            padding: 60px 0;
        }

        .j990-hero {
            text-align: center;
            color: white;
            margin-bottom: 80px;
        }

        .j990-hero-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .j990-hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .j990-content-section {
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

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

        .j990-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

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

        .j990-platform-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .j990-platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
        }

        .j990-platform-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #667eea;
        }

        .j990-platform-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .j990-platform-desc {
            color: #666;
            line-height: 1.6;
        }

        .j990-features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .j990-feature-item {
            display: flex;
            align-items: center;
            padding: 20px;
            background: #f8f9ff;
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .j990-feature-item:hover {
            background: #e8f0ff;
        }

        .j990-feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            font-size: 18px;
        }

        .j990-feature-text {
            font-weight: 500;
            color: #333;
        }

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

        .j990-step-card {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
            border-radius: 15px;
            border: 2px solid #e8f0ff;
            transition: border-color 0.3s ease;
        }

        .j990-step-card:hover {
            border-color: #667eea;
        }

        .j990-step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .j990-step-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .j990-step-desc {
            color: #666;
            font-size: 14px;
        }

        .j990-cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            border-radius: 20px;
            padding: 60px 40px;
            margin: 40px 0;
        }

        .j990-cta-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .j990-cta-desc {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .j990-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .j990-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .j990-btn-primary {
            background: white;
            color: #667eea;
        }

        .j990-btn-primary:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .j990-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .j990-btn-secondary:hover {
            background: white;
            color: #667eea;
        }

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

        .j990-footer-content {
            margin-bottom: 20px;
        }

        .j990-footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .j990-footer-link {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .j990-footer-link:hover {
            color: white;
        }

        .j990-copyright {
            color: #95a5a6;
            font-size: 14px;
        }

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

            .j990-hero-title {
                font-size: 32px;
            }

            .j990-hero-subtitle {
                font-size: 16px;
            }

            .j990-content-section {
                padding: 40px 20px;
            }

            .j990-section-title {
                font-size: 24px;
            }

            .j990-cta-title {
                font-size: 28px;
            }

            .j990-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
    