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

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

        /* 导航栏样式 */
        .uvq6jx-navbar {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

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

        .uvq6jx-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .uvq6jx-logo img {
            height: 45px;
            width: auto;
        }

        .uvq6jx-nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .uvq6jx-nav-link {
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }

        .uvq6jx-nav-link:hover {
            border-bottom-color: #fff;
            opacity: 0.8;
        }

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

        /* 页头区域 */
        .uvq6jx-header {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 40px;
        }

        .uvq6jx-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .uvq6jx-header-desc {
            font-size: 18px;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* 面包屑导航 */
        .uvq6jx-breadcrumb {
            background-color: white;
            padding: 15px 20px;
            margin-bottom: 30px;
            border-radius: 6px;
            font-size: 14px;
        }

        .uvq6jx-breadcrumb a {
            color: #0088cc;
            text-decoration: none;
            margin: 0 5px;
        }

        .uvq6jx-breadcrumb a:hover {
            text-decoration: underline;
        }

        /* 内容区域 */
        .uvq6jx-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-bottom: 40px;
        }

        .uvq6jx-article {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        /* 侧边栏 */
        .uvq6jx-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .uvq6jx-toc-box {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 90px;
        }

        .uvq6jx-toc-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #0088cc;
            border-left: 3px solid #0088cc;
            padding-left: 10px;
        }

        .uvq6jx-toc-list {
            list-style: none;
        }

        .uvq6jx-toc-item {
            margin-bottom: 10px;
        }

        .uvq6jx-toc-link {
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            padding-left: 10px;
        }

        .uvq6jx-toc-link:hover {
            color: #0088cc;
            padding-left: 15px;
        }

        /* 文章标题样式 */
        .uvq6jx-article h2 {
            font-size: 28px;
            margin-top: 35px;
            margin-bottom: 20px;
            color: #0088cc;
            border-left: 4px solid #0088cc;
            padding-left: 15px;
            font-weight: 700;
        }

        .uvq6jx-article h2:first-child {
            margin-top: 0;
        }

        .uvq6jx-article h3 {
            font-size: 20px;
            margin-top: 25px;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }

        /* 段落样式 */
        .uvq6jx-article p {
            margin-bottom: 15px;
            text-align: justify;
            line-height: 1.8;
            font-size: 15px;
        }

        /* 步骤容器 */
        .uvq6jx-step {
            background: #f0f7ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 6px;
            border-left: 4px solid #0088cc;
        }

        .uvq6jx-step-title {
            font-weight: 600;
            color: #0088cc;
            font-size: 16px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .uvq6jx-step-number {
            background: #0088cc;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
            font-size: 14px;
        }

        .uvq6jx-step-content {
            color: #555;
            font-size: 14px;
            line-height: 1.7;
        }

        /* 列表样式 */
        .uvq6jx-article ul,
        .uvq6jx-article ol {
            margin: 15px 0 15px 30px;
            line-height: 1.8;
        }

        .uvq6jx-article li {
            margin-bottom: 10px;
            color: #555;
            font-size: 15px;
        }

        /* 提示框 */
        .uvq6jx-tip {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }

        .uvq6jx-tip-title {
            font-weight: 600;
            color: #856404;
            margin-bottom: 8px;
        }

        .uvq6jx-tip-content {
            color: #856404;
            font-size: 14px;
            line-height: 1.6;
        }

        /* 注意框 */
        .uvq6jx-warning {
            background: #f8d7da;
            border-left: 4px solid #dc3545;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }

        .uvq6jx-warning-title {
            font-weight: 600;
            color: #721c24;
            margin-bottom: 8px;
        }

        .uvq6jx-warning-content {
            color: #721c24;
            font-size: 14px;
            line-height: 1.6;
        }

        /* 表格样式 */
        .uvq6jx-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 6px;
            overflow: hidden;
        }

        .uvq6jx-table thead {
            background: #0088cc;
            color: white;
        }

        .uvq6jx-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
        }

        .uvq6jx-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }

        .uvq6jx-table tbody tr:hover {
            background: #f0f7ff;
        }

        /* CTA区域 */
        .uvq6jx-cta-section {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 8px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
        }

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

        .uvq6jx-cta-desc {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.95;
        }

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

        .uvq6jx-btn-primary {
            background: white;
            color: #0088cc;
            padding: 14px 35px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .uvq6jx-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

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

        .uvq6jx-btn-secondary:hover {
            background: white;
            color: #0088cc;
        }

        /* FAQ区域 */
        .uvq6jx-faq-section {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .uvq6jx-faq-title {
            font-size: 26px;
            margin-bottom: 30px;
            color: #0088cc;
            border-left: 4px solid #0088cc;
            padding-left: 15px;
            font-weight: 700;
        }

        .uvq6jx-faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 6px;
            overflow: hidden;
        }

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

        .uvq6jx-faq-question:hover {
            background: #f0f7ff;
            color: #0088cc;
        }

        .uvq6jx-faq-icon {
            width: 20px;
            height: 20px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(-45deg);
            transition: transform 0.3s ease;
        }

        .uvq6jx-faq-item.active .uvq6jx-faq-icon {
            transform: rotate(135deg);
        }

        .uvq6jx-faq-answer {
            padding: 20px 16px;
            color: #555;
            line-height: 1.8;
            display: none;
            border-top: 1px solid #eee;
            font-size: 14px;
        }

        .uvq6jx-faq-item.active .uvq6jx-faq-answer {
            display: block;
        }

        /* 功能特性卡片 */
        .uvq6jx-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .uvq6jx-feature-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            border-top: 3px solid #0088cc;
        }

        .uvq6jx-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
        }

        .uvq6jx-feature-icon {
            width: 50px;
            height: 50px;
            background: #f0f7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
        }

        .uvq6jx-feature-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

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

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

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

        .uvq6jx-footer-section h3 {
            color: white;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }

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

        .uvq6jx-footer-link:hover {
            color: #0088cc;
            padding-left: 5px;
        }

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

        .uvq6jx-footer-bottom p {
            margin: 5px 0;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .uvq6jx-navbar-container {
                height: auto;
                flex-direction: column;
                padding: 15px 20px;
            }

            .uvq6jx-nav-menu {
                flex-direction: column;
                gap: 15px;
                width: 100%;
                margin-top: 15px;
            }

            .uvq6jx-header h1 {
                font-size: 28px;
            }

            .uvq6jx-header-desc {
                font-size: 16px;
            }

            .uvq6jx-content-wrapper {
                grid-template-columns: 1fr;
            }

            .uvq6jx-toc-box {
                position: static;
            }

            .uvq6jx-article {
                padding: 25px;
            }

            .uvq6jx-article h2 {
                font-size: 22px;
            }

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

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

            .uvq6jx-footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .uvq6jx-header {
                padding: 40px 15px;
            }

            .uvq6jx-header h1 {
                font-size: 22px;
            }

            .uvq6jx-article {
                padding: 15px;
            }

            .uvq6jx-cta-section {
                padding: 30px 20px;
            }

            .uvq6jx-cta-title {
                font-size: 20px;
            }
        }
    