/* 后台各功能模块 — 统一使用说明面板 */
.module-help-panel {
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 100%);
    border: 1px solid #dbeafe;
    border-left: 4px solid #1890ff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.module-help-panel.is-collapsed .module-help-body {
    display: none;
}

.module-help-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    cursor: pointer;
    user-select: none;
}

.module-help-header:hover {
    background: rgba(24, 144, 255, 0.04);
}

.module-help-icon {
    font-size: 16px;
    line-height: 1;
}

.module-help-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    flex: 1;
}

.module-help-toggle {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.module-help-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #334155;
}

.module-help-body {
    padding: 0 14px 12px 36px;
    font-size: 13px;
    line-height: 1.65;
    color: #475569;
}

.module-help-summary {
    margin: 0 0 8px;
    color: #334155;
}

.module-help-tips-title {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.module-help-tips {
    margin: 0;
    padding-left: 18px;
}

.module-help-tips li {
    margin-bottom: 4px;
}

.module-help-tips li:last-child {
    margin-bottom: 0;
}

.module-help-related {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
    font-size: 12px;
    color: #64748b;
}

.module-help-related strong {
    color: #475569;
    font-weight: 600;
}
