
    * {
        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-color: #f8f9fa;
    }

    .jav6db-header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

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

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

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

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

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

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

    .jav6db-nav-menu a:hover,
    .jav6db-nav-menu a.active {
        color: #007bff;
    }

    .jav6db-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .jav6db-help-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
    }

    .jav6db-help-header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .jav6db-help-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .jav6db-help-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 40px;
    }

    .jav6db-search-container {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }

    .jav6db-search-box {
        width: 100%;
        padding: 15px 50px 15px 20px;
        font-size: 16px;
        border: none;
        border-radius: 50px;
        outline: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .jav6db-search-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: #007bff;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 25px;
        cursor: pointer;
        font-size: 14px;
    }

    .jav6db-main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .jav6db-sidebar {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        height: fit-content;
        position: sticky;
        top: 100px;
    }

    .jav6db-sidebar-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
    }

    .jav6db-category-list {
        list-style: none;
    }

    .jav6db-category-item {
        margin-bottom: 10px;
    }

    .jav6db-category-link {
        display: block;
        padding: 12px 15px;
        text-decoration: none;
        color: #666;
        border-radius: 8px;
        transition: all 0.3s;
        font-weight: 500;
    }

    .jav6db-category-link:hover,
    .jav6db-category-link.active {
        background: #f0f7ff;
        color: #007bff;
    }

    .jav6db-content-area {
        background: white;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .jav6db-section {
        margin-bottom: 50px;
    }

    .jav6db-section-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 30px;
        color: #333;
        border-bottom: 3px solid #007bff;
        padding-bottom: 10px;
    }

    .jav6db-faq-grid {
        display: grid;
        gap: 20px;
    }

    .jav6db-faq-item {
        border: 1px solid #e9ecef;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .jav6db-faq-item:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

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

    .jav6db-faq-question:hover {
        background: #e9ecef;
    }

    .jav6db-faq-toggle {
        font-size: 1.2rem;
        color: #007bff;
        transition: transform 0.3s;
    }

    .jav6db-faq-answer {
        padding: 20px;
        color: #666;
        line-height: 1.8;
        display: none;
    }

    .jav6db-faq-answer.active {
        display: block;
    }

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

    .jav6db-step-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        position: relative;
        border: 2px solid transparent;
        transition: all 0.3s;
    }

    .jav6db-step-card:hover {
        border-color: #007bff;
        transform: translateY(-5px);
    }

    .jav6db-step-number {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #007bff;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .jav6db-step-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 20px 0 15px;
        color: #333;
    }

    .jav6db-step-desc {
        color: #666;
        line-height: 1.6;
    }

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

    .jav6db-contact-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
    }

    .jav6db-contact-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .jav6db-contact-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .jav6db-contact-info {
        opacity: 0.9;
        line-height: 1.6;
    }

    .jav6db-footer {
        background: #2c3e50;
        color: white;
        padding: 50px 0 30px;
        margin-top: 80px;
    }

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

    .jav6db-footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #ecf0f1;
    }

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

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

    .jav6db-footer-section ul li a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }

    .jav6db-footer-section ul li a:hover {
        color: #3498db;
    }

    .jav6db-footer-bottom {
        border-top: 1px solid #34495e;
        margin-top: 40px;
        padding-top: 20px;
        text-align: center;
        color: #95a5a6;
    }

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

        .jav6db-nav-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }

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

        .jav6db-help-title {
            font-size: 2rem;
        }

        .jav6db-main-content {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 30px 20px;
        }

        .jav6db-sidebar {
            position: static;
        }

        .jav6db-content-area {
            padding: 30px 20px;
        }

        .jav6db-section-title {
            font-size: 1.5rem;
        }

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

        .jav6db-contact-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .jav6db-help-header {
            padding: 40px 0;
        }

        .jav6db-help-title {
            font-size: 1.8rem;
        }

        .jav6db-help-subtitle {
            font-size: 1rem;
        }

        .jav6db-search-box {
            padding: 12px 45px 12px 15px;
            font-size: 14px;
        }
    }
    