{% extends "base.html" %} {% block extra_styles %} /* 帮助卡片内联样式,优化长说明展示 */ body { padding: 8px; } .card { max-width: none; width: 100%; } .help-section-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; color: #333; } .help-row { display: grid; grid-template-columns: 220px 1fr; /* 固定左列宽度,右列自适应,确保第二列统一对齐 */ align-items: start; column-gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; } .help-row:last-child { border-bottom: none; } .help-label { font-weight: 600; color: #1f2937; text-align: left; white-space: nowrap; /* 命令不换行 */ overflow: hidden; /* 防止溢出挤占第二列 */ text-overflow: ellipsis; /* 过长时省略号 */ } .help-desc { flex: 1 1 auto; font-size: 14px; color: #6b7280; line-height: 1.6; word-break: break-word; overflow-wrap: anywhere; } {% endblock %} {% block content %}
使用帮助