/* news-list */
.list {
  margin-top: 18px;
}
.list-item {
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 60px;
  border-bottom: 1px #e6e6e6 solid;
  display: flex;
  justify-content: space-between;
}
.list-item::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 0;
  height: 0;
  border-top: 7px transparent solid;
  border-bottom: 7px transparent solid;
  border-left: 7px #ffba00 solid;
}
.list-item a {
  display: block;
  flex: 1;
  padding: 0 20px;
  box-sizing: border-box;
  white-space:nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item span {
  flex: none;
  color: #888;
}
.list-item:hover a {
  color: #003f96;
}
@media screen and (max-width: 1200px) {
  .list-item {
    font-size: 22px;
    line-height: 72px;
  }
  .list-item a {
    font-size: 22px;
    padding: 0 22px;
  }
  .list-item::before {
    border-top: 10px transparent solid;
    border-bottom: 10px transparent solid;
    border-left: 10px #ffba00 solid;
  }
}


/* teacher-list */
.teacher-list {
  padding-top: 40px;
}
.teacher-item {
  display: block;
  margin-right: 33px;
}
.teacher-item:nth-child(4n) {
  margin-right: 0;
}
.teacher-item-avatar {
  width: 200px;
  height: 272px;
}
.teacher-item-avatar img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.teacher-item-name {
  font-size: 16px;
  color: #333;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  white-space:nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.teacher-item:hover {
  transform: scale(0.95);
  transition: all 0.5s ease-in;
  box-shadow: 1px 2px 3px #ddd;
}
@media screen and (max-width: 1200px) {
  .teacher-item {
    margin-right: 55px;
  }
  .teacher-item:nth-child(3n) {
    margin-right: 0;
  }
  .teacher-item:nth-child(4n) {
    margin-right: 55px;
  }
}


/* list-2 */
.list-2 {
  padding-top: 40px;
}
.list-2-item {
  position: relative;
  display: block;
  width: 420px;
  height: 110px;
  background-color: #f2f3f7;
  border-radius: 10px;
  padding: 27px 23px 19px 37px;
  box-sizing: border-box;
  margin-bottom: 38px;
  overflow: hidden;
}
.list-2-item_title {
  z-index: 1;
  position: relative;
  font-size: 18px;
  color: #424556;
}
.list-2-item_more {
  z-index: 1;
  position: relative;
  font-size: 35px;
  color: #bbb;
  font-weight: bold;
  text-align: right;
}
.list-2-item::after {
  z-index: 0;
  position: absolute;
  left: 0;
  top: -100%;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #003f96;
  transition: top 0.5s ease-in-out;
}
.list-2-item:hover::after {
  top: 0;
}
.list-2-item:hover .list-2-item_title {
  color: #fff;
}
.list-2-item:hover .list-2-item_more {
  color: #f2cc59;
}
@media screen and (max-width: 1200px) {
  .list-2-item {
    width: 710px;
  }
  .list-2-item:last-child {
    margin-bottom: 0;
  }
  .list-2-item_title {
    font-size: 22px;
  }
}


/* leader-list */
.leader-list {
  padding-top: 40px;
}
.leader-item {
  min-height: 234px;
  border: 1px #e5e7ef solid;
  margin-bottom: 23px;
}
.leader-item-l {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-right: 1px #e5e7ef solid;
}
.leader-item-avatar {
  flex: none;
  width: 154px;
  height: 212px;
}
.leader-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-item-r {
  flex: 1;
}
.leader-item-r-t {
  border-bottom: 1px #e5e7ef solid;
}
.leader-item-info {
  font-size: 16px;
  color: #333;
  line-height: 70px;
}
.leader-item-info_title {
  flex: none;
  font-weight: bold;
  width: 100px;
  text-align: center;
  border-left: 1px #e5e7ef solid;
  border-right: 1px #e5e7ef solid;
}
.leader-item-info:first-child .leader-item-info_title {
  border-left: none;
}
.leader-item-info_val {
  min-width: 100px;
  text-align: center;
}
.leader-item-info:last-child .leader-item-info_val {
  padding-left: 22px;
}
.leader-item-r-b .leader-item-info_title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.leader-item-r-b .leader-item-info_val {
  flex: 1;
  min-height: 162px;
  padding: 25px;
  box-sizing: border-box;
  text-align: left;
  line-height: 30px;
}

.leader-list-mobile {
  display: none;
}

@media screen and (max-width: 1200px) {
  .leader-list-pc {
    display: none;
  }
  .leader-list-mobile {
    display: block;
    padding: 20px 0;
  }
  .leader-item,
  .leader-item-l,
  .leader-item-info_title {
    border: none;
  }
  .leader-item-m,
  .leader-item-m-top,
  .leader-item-info,
  .leader-item-m-bot {
    display: flex;
  }
  .leader-item-m {
    padding: 15px 0;
    border-bottom: 1px #e5e7ef solid;
  }
  .leader-item-m:last-child {
    border-bottom: 0;
  }
  .leader-item-info-wrap {
    flex: 1;
  }
  .leader-item-info {
    font-size: 22px;
    line-height: 36px;
  }
  .leader-item-info_val {
    text-align: left;
  }
  .leader-item-info:last-child .leader-item-info_val {
    padding-left: 0;
  }
}

/* photo-list */
.photo-list {
  padding: 42px 0;
}
.photo-list-item {
  display: block;
  width: 430px;
}
.photo-list-item_cover {
  width: 430px;
  height: 280px;
}
.photo-list-item_cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-list-item_text {
  font-size: 16px;
  text-align: center;
  padding: 0 20px;
  line-height: 86px;
  white-space:nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1200px) {
  .photo-list-item {
    width: 330px;
  }
  .photo-list-item_cover {
    width: 330px;
    height: 215px;
  }
}