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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* 导航栏样式 */
        .vjh3-navbar-wrapper {
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .vjh3-logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 20px;
            color: #0084ff;
        }

        .vjh3-logo-section img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

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

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

        .vjh3-nav-link:hover {
            color: #0084ff;
        }

        .vjh3-nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0084ff;
            transition: width 0.3s ease;
        }

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

        /* 主容器 */
        .vjh3-main-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* 英雄区域 */
        .vjh3-hero-section {
            background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 12px;
            margin-bottom: 50px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 132, 255, 0.2);
        }

        .vjh3-hero-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .vjh3-hero-subtitle {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .vjh3-hero-cta {
            display: inline-block;
            background-color: white;
            color: #0084ff;
            padding: 14px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .vjh3-hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        /* 内容区域 */
        .vjh3-content-wrapper {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .vjh3-page-h1 {
            font-size: 36px;
            color: #0084ff;
            margin-bottom: 30px;
            font-weight: 700;
            padding-bottom: 20px;
            border-bottom: 3px solid #0084ff;
        }

        .vjh3-intro-text {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f0f4ff;
            border-left: 4px solid #0084ff;
            border-radius: 6px;
        }

        /* 平台选项卡 */
        .vjh3-platform-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            border-bottom: 2px solid #e0e0e0;
        }

        .vjh3-tab-button {
            padding: 12px 20px;
            border: none;
            background-color: transparent;
            color: #666;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .vjh3-tab-button.active {
            color: #0084ff;
            border-bottom-color: #0084ff;
        }

        .vjh3-tab-button:hover {
            color: #0084ff;
        }

        .vjh3-tab-content {
            display: none;
        }

        .vjh3-tab-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 步骤指南 */
        .vjh3-steps-guide {
            margin-bottom: 40px;
        }

        .vjh3-steps-title {
            font-size: 24px;
            color: #0084ff;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .vjh3-step-item {
            background-color: #f8f9fa;
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 8px;
            border-left: 5px solid #0084ff;
            transition: all 0.3s ease;
        }

        .vjh3-step-item:hover {
            box-shadow: 0 4px 12px rgba(0, 132, 255, 0.15);
            transform: translateX(5px);
        }

        .vjh3-step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #0084ff;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 12px;
            margin-right: 10px;
        }

        .vjh3-step-content h3 {
            color: #333;
            font-size: 18px;
            margin-bottom: 10px;
            display: inline-block;
        }

        .vjh3-step-description {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
            margin-top: 10px;
        }

        .vjh3-step-code {
            background-color: #2d2d2d;
            color: #f8f8f2;
            padding: 15px;
            border-radius: 6px;
            font-family: 'Courier New', monospace;
            font-size: 13px;
            overflow-x: auto;
            margin-top: 12px;
        }

        /* 特性列表 */
        .vjh3-features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .vjh3-feature-card {
            background-color: #f0f4ff;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #0084ff;
            transition: all 0.3s ease;
        }

        .vjh3-feature-card:hover {
            box-shadow: 0 6px 16px rgba(0, 132, 255, 0.2);
            transform: translateY(-3px);
        }

        .vjh3-feature-icon {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .vjh3-feature-title {
            font-size: 16px;
            font-weight: 600;
            color: #0084ff;
            margin-bottom: 8px;
        }

        .vjh3-feature-text {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* 注意事项 */
        .vjh3-notice-section {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .vjh3-notice-title {
            color: #856404;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .vjh3-notice-content {
            color: #856404;
            font-size: 15px;
            line-height: 1.7;
        }

        .vjh3-notice-list {
            list-style: none;
            padding-left: 0;
        }

        .vjh3-notice-list li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
        }

        .vjh3-notice-list li:before {
            content: '⚠️';
            position: absolute;
            left: 0;
        }

        /* CTA区域 */
        .vjh3-cta-section {
            background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 8px 24px rgba(0, 132, 255, 0.25);
        }

        .vjh3-cta-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .vjh3-cta-text {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

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

        .vjh3-btn-primary {
            background-color: white;
            color: #0084ff;
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .vjh3-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .vjh3-btn-secondary {
            background-color: transparent;
            color: white;
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .vjh3-btn-secondary:hover {
            background-color: white;
            color: #0084ff;
        }

        /* FAQ区域 */
        .vjh3-faq-section {
            margin: 40px 0;
        }

        .vjh3-faq-title {
            font-size: 24px;
            color: #0084ff;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .vjh3-faq-item {
            background-color: #f8f9fa;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }

        .vjh3-faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background-color 0.3s ease;
        }

        .vjh3-faq-question:hover {
            background-color: #e8ecff;
        }

        .vjh3-faq-toggle {
            font-size: 20px;
            color: #0084ff;
            transition: transform 0.3s ease;
        }

        .vjh3-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }

        .vjh3-faq-item.open .vjh3-faq-answer {
            max-height: 500px;
            padding: 0 20px 20px 20px;
        }

        .vjh3-faq-item.open .vjh3-faq-toggle {
            transform: rotate(180deg);
        }

        /* 页脚 */
        .vjh3-footer-wrapper {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px;
            margin-top: 60px;
        }

        .vjh3-footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .vjh3-footer-section h4 {
            color: #0084ff;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .vjh3-footer-link {
            display: block;
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .vjh3-footer-link:hover {
            color: #0084ff;
        }

        .vjh3-footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            text-align: center;
            color: #95a5a6;
            font-size: 14px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .vjh3-hero-title {
                font-size: 28px;
            }

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

            .vjh3-page-h1 {
                font-size: 28px;
            }

            .vjh3-navbar-container {
                flex-direction: column;
                height: auto;
                padding: 15px 20px;
                gap: 15px;
            }

            .vjh3-nav-menu {
                flex-direction: column;
                gap: 15px;
            }

            .vjh3-platform-tabs {
                flex-direction: column;
            }

            .vjh3-tab-button {
                width: 100%;
                text-align: left;
                border-bottom: none;
                border-left: 3px solid transparent;
                padding-left: 20px;
            }

            .vjh3-tab-button.active {
                border-left-color: #0084ff;
                border-bottom: none;
            }

            .vjh3-content-wrapper {
                padding: 25px;
            }

            .vjh3-hero-section {
                padding: 40px 25px;
            }

            .vjh3-cta-section {
                padding: 35px 25px;
            }

            .vjh3-cta-title {
                font-size: 22px;
            }

            .vjh3-cta-buttons {
                flex-direction: column;
            }

            .vjh3-btn-primary,
            .vjh3-btn-secondary {
                width: 100%;
            }

            .vjh3-main-container {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            .vjh3-hero-title {
                font-size: 22px;
            }

            .vjh3-page-h1 {
                font-size: 22px;
            }

            .vjh3-steps-title {
                font-size: 20px;
            }

            .vjh3-step-item {
                padding: 15px;
            }

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

            .vjh3-nav-menu {
                gap: 10px;
            }

            .vjh3-nav-link {
                font-size: 13px;
            }
        }
    