/*自定义样式*/
.overseas-bg-top {
    width: 100%;
    height: auto;
    max-height: 320px;
    background-image: url('https://snail-factory.oss-cn-beijing.aliyuncs.com/ouye/img/overseas_teachers.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 400;
    color: #FFFFFF;
}

@media screen and (min-width: 1200px) {
    .overseas-bg-top {
        height: 320px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .overseas-bg-top {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .overseas-bg-top {
        max-height: 240px;
    }
}

.card {
    background-color: #F6F7FA; /* 卡片背景色 */
    color: #3A3A3A; /* 标题颜色 */
    padding: 32px; /* 内边距为40px */
    border: none; /* 没有边框 */
    margin-bottom: 32px;
}
.card-title {
    font-size: 20px; /* 标题字号大小为20 */
    text-align: center; /* 标题居中 */
    font-weight: bold;
}
.teacher-info {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
}

.teacher-name {
    padding-right: 24px;
    color: #888888;
}

.teacher-intro {
    color: #3A3A3A;
}
