.teacher-info-main-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding-top: 65px;
}

.teacher-info-banner {
    background: linear-gradient(90deg, #b700ff 0%, #d1bfff 100%);
    color: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.teacher-info-banner-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.teacher-info-banner-desc {
    font-size: 1.08rem;
    opacity: 0.9;
}

.teacher-info-top {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.teacher-info-avatar {
    width: 340px;
    height: 240px;
    background: #ccc;
    border-radius: 12px;
}

.teacher-info-basic {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 12px;
}

.teacher-info-type {
    color: #666;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.teacher-info-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.teacher-info-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 80%;
    height: 4px;
    background: #b700ff;
    border-radius: 2px;
}

.teacher-info-exp {
    color: #666;
    font-size: 1.02rem;
    margin-top: 12px;
}

.teacher-info-section {
    margin-bottom: 32px;
}

.teacher-info-section-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #b700ff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.teacher-info-section-content {
    font-size: 1.02rem;
    color: #222;
    line-height: 1.6;
    min-height: 60px;
}

.teacher-recommend {
    margin-top: 48px;
}

.teacher-recommend-title {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.teacher-recommend-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.teacher-recommend-card {
    width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 18px;
}

.teacher-recommend-avatar {
    width: 100%;
    height: 120px;
    border-radius: 50%;
    margin: 24px 0;
}

.teacher-recommend-card:nth-child(1) .teacher-recommend-avatar {
    background: #ffeaea;
}

.teacher-recommend-card:nth-child(2) .teacher-recommend-avatar {
    background: #fff5e6;
}

.teacher-recommend-card:nth-child(3) .teacher-recommend-avatar {
    background: #f3fff0;
}

.teacher-recommend-card:nth-child(4) .teacher-recommend-avatar {
    background: #e6fff7;
}

.teacher-recommend-card:nth-child(5) .teacher-recommend-avatar {
    background: #e6f7ff;
}

.teacher-recommend-name {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.teacher-recommend-type {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 900px) {
    .teacher-info-top {
        flex-direction: column;
        gap: 24px;
    }

    .teacher-info-avatar {
        width: 100%;
        height: 200px;
    }

    .teacher-recommend-list {
        justify-content: center;
    }
}