@charset "UTF-8";
/*
师资首页列表
*/
.teachet_list li{
  display: inline-block;
  width: 12.5%; /* 每行8个，所以宽度为100%/8=12.5% */
  text-align: center;
  padding: 10px;
  margin: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  font-size: 1.6rem;
  color: #111;
}

.teachet_list li:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 10px rgba(160, 91, 82, 0.2);
}

.teachet_index h3 {
  height: 5rem;
  line-height: 4.6rem;
  font-size: 2rem;
  /* padding-left: 30px; */
  font-weight: bold;
  color: #A95C4D;
  position: relative;
}

@media (max-width: 768px) {
.teachet_list  li {
    width: 25%; /* 在移动端上，每行只能放4个，所以宽度为100%/4=25% */
  }
}