.teacher-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.teacher-list-item {
  width: 266px;
  background: #EEEEEE;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  padding-bottom: 15px;
  margin-top: 20px;
  overflow: hidden;
  cursor: pointer;
}

.teacher-list-item img {
  display: block;
  width: 100%;
  height: 355px;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
}

.teacher-list-item img:hover {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
}

.name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

.name .left {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

.tag {
  min-height: 131px;
}

.tag-item {
  font-size: 12px;
  font-weight: 400;
  color: #666666;
  line-height: 28px;
  width: 176px;
  height: 30px;
  background: #FFFFFF;
  border: 1px solid #F19200;
  border-radius: 5px;
  text-align: center;
  margin: 5px auto 0;
}

.tag-item:first-child {
  margin-top: 0;
}

.name .small {
  font-size: 10px;
}

.img {
  width: 100%;
  height: 355px;
  overflow: hidden;
}

.tip {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 19px;
  width: 131px;
  height: 19px;
  background: #F19200;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto 15px;
  overflow: hidden;
}
