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

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

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

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

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

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

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

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

    .yzde-nav-menu a:hover,
    .yzde-nav-menu a.active {
        color: #4285f4;
    }

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

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

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

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

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

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

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

    .yzde-search-btn {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: #4285f4;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 500;
        transition: background 0.3s;
    }

    .yzde-search-btn:hover {
        background: #3367d6;
    }

    .yzde-help-categories {
        padding: 80px 0;
        background: #f8f9fa;
    }

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

    .yzde-section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }

    .yzde-section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 60px;
    }

    .yzde-categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }

    .yzde-category-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .yzde-category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .yzde-category-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

    .yzde-category-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

    .yzde-category-desc {
        color: #666;
        line-height: 1.6;
    }

    .yzde-faq-section {
        padding: 80px 0;
        background: white;
    }

    .yzde-faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .yzde-faq-item {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        margin-bottom: 20px;
        overflow: hidden;
        transition: box-shadow 0.3s;
    }

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

    .yzde-faq-question {
        padding: 25px 30px;
        background: #f8f9fa;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 1.1rem;
        transition: background 0.3s;
    }

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

    .yzde-faq-toggle {
        font-size: 1.5rem;
        color: #4285f4;
        transition: transform 0.3s;
    }

    .yzde-faq-item.active .yzde-faq-toggle {
        transform: rotate(45deg);
    }

    .yzde-faq-answer {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s, padding 0.3s;
        background: white;
    }

    .yzde-faq-item.active .yzde-faq-answer {
        padding: 25px 30px;
        max-height: 500px;
    }

    .yzde-install-guide {
        padding: 80px 0;
        background: #f8f9fa;
    }

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

    .yzde-step-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        position: relative;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .yzde-step-number {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: #4285f4;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
    }

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

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

    .yzde-contact-section {
        padding: 80px 0;
        background: white;
    }

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

    .yzde-contact-card {
        background: #f8f9fa;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s;
    }

    .yzde-contact-card:hover {
        transform: translateY(-5px);
    }

    .yzde-contact-icon {
        font-size: 3rem;
        color: #4285f4;
        margin-bottom: 20px;
        display: block;
    }

    .yzde-contact-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

    .yzde-contact-desc {
        color: #666;
        margin-bottom: 20px;
    }

    .yzde-contact-link {
        display: inline-block;
        background: #4285f4;
        color: white;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s;
    }

    .yzde-contact-link:hover {
        background: #3367d6;
    }

    .yzde-footer {
        background: #2c3e50;
        color: white;
        padding: 60px 0 30px;
    }

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

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

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

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

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

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

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

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

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

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

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

        .yzde-section-title {
            font-size: 2rem;
        }

        .yzde-categories-grid {
            grid-template-columns: 1fr;
        }

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

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

        .yzde-faq-question {
            padding: 20px;
            font-size: 1rem;
        }

        .yzde-faq-answer {
            padding: 0 20px;
        }

        .yzde-faq-item.active .yzde-faq-answer {
            padding: 20px;
        }
    }
    