/* 未能缩小。正在返回未缩小的内容。
(52,35): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(65,17): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(76,25): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-border-radius'
 */
/* 师资列表 */

.teacher-info{
    display: flex;
    flex-direction: column;
}
.teacher-lists {
    display: flex;
    flex-direction: column;
    padding: 0 16px 16px;
    margin-top: 4px;
}

.teacher-list-item {
    column-gap: 12px;
    display: flex;
    flex-direction: row;
    padding: 16px 0;
    border-bottom: 1px solid #EEE;
}
.teacher-img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid #EEE;
}

.teacher-item-info {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    color: #666;
    font-size: 12px;
    flex: 1;
}

.teacher-greeting {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
    padding-top: 14px;
    width: 100%;
}

.teacher-name {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    margin-right: 8px;
    border-bottom: 2px solid var(--design-theme-color, #12bfaf);
    padding-bottom: 10px;
    
}

.teacher-desc{
    margin: 8px 0 15px;
    line-height: 18px;
    width: 100%;
    text-align: left;
}

.teacher-detail{
    color: var(--design-theme-color, #12bfaf);
    font-size: 14px;
    line-height: 18px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* 默认圆角 */
.teacher-img {
    border-radius: var(--design-theme-border-radius);
}
