
/* study999-exam-scores-grouped-v1 */

/* 每一课只显示一个标题 */
#app .study999-score-group {
    padding: 10px 0 16px;
    margin: 0 0 12px;
    border-bottom: 1px solid #e2e8f0;
}

#app .study999-score-group h3 {
    margin: 0 0 10px;
    color: #1e293b;
}

/* 每次成绩排在一行；手机屏幕不够宽时自动换行 */
#app .study999-score-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 7px;
    row-gap: 0;

    margin: 7px 0;
    padding: 5px 8px;

    border-radius: 7px;
    background: #f8fafc;

    color: #334155;
    font-size: 14px;
    line-height: 1.7;
}

#app .study999-score-line span {
    white-space: nowrap;
}

#app .study999-score-passed {
    color: #15803d;
    font-weight: 700;
}

#app .study999-score-failed {
    color: #dc2626;
    font-weight: 700;
}
