/* 未能缩小。正在返回未缩小的内容。
(48,35): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(54,17): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(72,18): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(81,13): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(87,25): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-border-radius'
 */
/* 师资列表 */
.teacher-lists {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 20px;
}

.teacher-list-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 24px;
    background: #FFF;
}
.teacher-img {
    min-width: 200px;
    width: 200px;
    aspect-ratio: 1;
    object-fit: cover;
}

.teacher-item-info {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    color: #666;
    font-size: 16px;
    flex: 1;
    padding-top: 16px;
}

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

.teacher-name {
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    padding-right: 5px;
    margin-right: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--design-theme-color, #12bfaf);
}
.teacher-list-item:hover {
    filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
}
.teacher-list-item:hover .teacher-name{
    color: var(--design-theme-color, #12bfaf);    
}

.teacher-desc{
    margin: 16px 0 56px;
    line-height: 24px;
    width: 100%;
    text-align: left;
}

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

.teacher-list-item:hover .teacher-detail .iconfont{
color: var(--design-theme-color, #12bfaf);
}

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