/* 使用帮助页面样式 */
.help-content {
    min-height: calc(100vh - 60px - 200px);
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.help-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.help-section h1 {
    color: #333;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.help-text {
    margin-bottom: 3rem;
}

.help-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq {
    margin-bottom: 3rem;
}

.faq h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.faq ul {
    list-style: none;
    padding: 0;
}

.faq li {
    color: #666;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.faq h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq p {
    font-size: 1rem;
    line-height: 1.6;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .help-content {
        padding: 2rem 1rem;
    }

    .help-section {
        padding: 1rem;
    }
} 