/* ===== 帮助中心样式 ===== */

/* 帮助中心布局：强制固定宽度，用 !important 覆盖 Tailwind CDN 动态样式 */
#help-main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    padding: 3rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: stretch !important;
    width: 100% !important;
}
#help-sidebar {
    width: 100% !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
}
#help-content-section {
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}
#help-content-section > .help-card {
    width: 100% !important;
    box-sizing: border-box !important;
}
@media (min-width: 768px) {
    #help-main {
        flex-direction: row !important;
        align-items: flex-start !important;
    }
    #help-sidebar {
        width: 280px !important;
        flex: 0 0 280px !important;
    }
    #help-content-section {
        flex: 1 1 0% !important;
        width: auto !important;
    }
}
