/**
 * 移动端 - 补充样式（替代内联样式）
 */

.hidden { display: none !important; }

/* 列表项右侧箭头图标 */
.m-list-item .fa-chevron-right,
.m-list-item .fas.fa-chevron-right {
    color: var(--app-text-tertiary, #64748b);
    font-size: 14px;
}

/* 工具类 */
.mt-1 { margin-top: 6px; }
.mt-4 { margin-top: 16px; }

/* 列表信息区：flex + 文本截断 */
.m-list-info-flex {
    flex: 1;
    min-width: 0;
}
.m-list-title-truncate,
.m-list-subtitle-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
