<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">[v-cloak]{
            display: none !important;
        }
.info_list {
  display: flex;
  flex-direction: column;
}
.info_list .cate_title {
  height: 64px;
  border-radius: 6px;
  padding: 0 20px;
  box-sizing: border-box;
  border: 0.5px solid #CCCCCC;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.02), 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.info_list .cate_title .arrow {
  width: 14px;
  height: 24px;
}
.info_list .cate_title .active_arrow {
  transform: rotate(90deg);
}

.teacher_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 16px;
}
.teacher_list .teacher_item {
  margin-bottom: 20px;
  background: #FFF;
  height: 176px;
  vertical-align: center;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 35% 85%;
  border-top: 4px solid #871519;
  border-radius: 6px;
  box-shadow: 0px 2.94px 4.4px 0px rgba(0, 0, 0, 0.02), 0px 1.47px 2.94px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  box-sizing: border-box;
  border-bottom: 0.5px solid #CCCCCC;
  border-left: 0.5px solid #CCCCCC;
  border-right: 0.5px solid #CCCCCC;
  display: flex;
  justify-content: space-between;
}
.teacher_list .teacher_item .img_box {
  width: 129px;
  height: 153px;
  opacity: 1;
  object-fit: contain;
  padding: 8px 4px;
}
.teacher_list .teacher_item .info_right {
  height: 100%;
  width: calc(100% - 132px);
  flex: 1;
}
.teacher_list .teacher_item .info_right .teacher_name {
  display: flex;
  padding: 30px 20px 10px 10px;
}
.teacher_list .teacher_item .info_right .teacher_name .china_name {
  opacity: 1;
  font-size: 20px;
  font-family: "PingFang SC", PingFangSC-Regular, sans-serif;
  font-weight: 500;
  color: #040e1d;
}
.teacher_list .teacher_item .info_right .teacher_name .english_name {
  margin-left: 20px;
}
.teacher_list .teacher_item .info_right .professional {
  padding: 5px 10px 10px;
  font-size: 16px;
  color: #3D3D3D;
}
.teacher_list .teacher_item .info_right .position {
    padding: 3px 10px;
    font-size: 14px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.search_list {
  display: flex;
  margin: 20px 0;
}
.search_list .first_name, .search_list .name {
  cursor: pointer;
  height: 50px;
  padding: 0 30px;
  border-radius: 5px;
  text-align: center;
  line-height: 50px;
  border: 1px solid #871519;
  color: #871519;
}
.search_list .name {
  margin-left: 30px;
}
.search_list .active_first_name {
  background-color: #871519;
  color: #fff;
}

.initial-box {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 9px 10px;
  margin-bottom: 20px;
}
.initial-box .initial-item {
  width: 45px;
  height: 54px;
  background: white;
  box-shadow: 0px 3px 14px 0px rgba(4, 0, 0, 0.07);
  border-radius: 7px;
  display: inline-block;
  text-align: center;
  line-height: 54px;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #333333;
  margin: 8px;
  cursor: pointer;
}
.initial-box .initial-item:hover {
  background-color: #871519;
  color: #fff;
}
.initial-box .active-initial {
  background-color: #871519;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .teacher_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0 16px;
  }
}
@media screen and (max-width: 480px) {
  .teacher_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0 0;
  }
}</pre></body></html>