/* =============================================
  界面介绍页 - 图片样式
  ============================================= */

/* ================== 大图 ================== */
.ui-img-large {
    width: 100%;
    max-width: 750px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md, 8px);
    margin: 12px 0;
    display: block;
    box-shadow: var(--shadow-img, 0 6px 24px rgba(0, 0, 0, 0.35));
}

/* ================== 操作模式图 ================== */
.ui-img-mode {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm, 4px);
}

/* ================== 小图（表格内使用） ================== */
.ui-img-cell {
    height: 50px;
    width: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm, 4px);
    margin-top: 6px;
    display: block;
}

/* ================== 训练模式图 ================== */
.ui-img-train {
    width: 100%;
    max-width: 750px;
    margin: 12px 0;
    display: block;
    border: 1px solid var(--border);
    border-radius: var(--radius-md, 8px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.ui-img-train--sm {
    height: 80px;
    width: auto;
}

.ui-img-train--md {
    height: 200px;
    width: auto;
}

/* =============================================
  图片响应式
  ============================================= */
/* ================== 术语表 - 连段符号列表 ================== */
.notation-list {
    padding: 8px 16px;
    background: var(--bg-card, #1a1a2e);
    border: 1px solid var(--border, #333);
    border-radius: var(--radius-md, 8px);
    margin: 12px 0;
}

.notation-list .notation-row {
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 0 32px 0;
}

.notation-list .notation-sym {
    font-weight: bold;
    margin-right: 6px;
    color: #fff;
}

.notation-list .notation-desc {
    font-size: 14px;
    color: #aaa;
    margin-top: 4px;
    padding-left: 4px;
    line-height: 1.7;
}

.notation-list .notation-desc code {
    font-weight: bold;
}

@media (max-width: 768px) {
    .ui-img-large {
        max-width: 100%;
    }

    .ui-img-cell {
        height: 35px;
        width: auto;
    }

    .ui-img-train--sm {
        height: 55px;
        width: auto;
    }

    .ui-img-train--md {
        height: 140px;
        width: auto;
    }

    .ui-img-mode {
        height: 40px;
        width: auto;
    }
}
