.school-title {
  top: 50%;
  left: 50%;
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.six-container {
  padding: 100px 0;
  background-color: #ffffff;
}

.six-title {
  font-size: 30px;
  /* line-height: 60px; */
  color: #333333;
  text-align: center;
}

.six-module .row {
  margin-top: 100px;
}

.six-module .row>div {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  align-items: center;
}

.six-module-img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.six-module-text {
  margin-top: 45px;
  font-size: 16px;
  text-align: center;
}

.experts-wrapper {
  padding-top: 50px;
  transform: translateY(50px);
}

.experts {
  margin-top: 50px;
}

.expert {
  /* width: 280px; */
  height: 340px;
  display: flex;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
  align-items: center;
  border-radius: 4px;
  flex-direction: column;
  padding: 34px 30px 0px 30px;
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.expert-detail {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
  cursor: default;
  color: #ffffff;
  line-height: 30px;
  position: absolute;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: all .3s ease;
  background-color: #80838d;
}

.expert:hover .expert-detail {
  opacity: 1;
}

.expert-head {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
}

.expert-name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  color: #333333;
}

.expert-job {
  font-size: 14px;
  margin-top: 14px;
  color: #ff6600;
}

.expert-desc {
  flex-grow: 1;
  display: flex;
  /* margin-top: 35px; */
  text-align: center;
  line-height: 24px;
  flex-direction: column;
  justify-content: center;
}

.course-wrapper {
  padding-bottom: 95px;
  background-image: url(/img/school/bg2.png);
}

.course {
  padding-top: 175px;
}

.courses {
  margin-top: 40px;
}

.courses .row>div {
  /* padding: 0 5px; */
  display: flex;
  justify-content: center;
}

.course-item {
  flex-grow: 1;
  height: 300px;
  padding: 10px;
  max-width: 280px;
  margin-top: 25px;
  overflow: hidden;
  background: rgba(31, 39, 51, 0.33);
}

.course-item-title {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #f0f4ff;
  transition: all .3s ease;
}

.course-item-desc {
  font-size: 14px;
  color: #969cac;
}

.course-item {
  text-decoration: none !important;
}

.course-item * {
  text-decoration: none !important;
}

.courses .row>div a {
  text-decoration: none;
}

.courses .row>div:hover .course-item-title {
  color: #ff6600;
}

.course-item-cover {
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
}

.course-item-cover img {
  transition: all .3s ease;
}

.course-item-cover::after {
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  content: attr(data-src);
  position: absolute;
}

.courses .row>div:hover .course-item-cover img {
  /* transform: scale(1.01); */
  transform: translateY(-100%);
}

.course-item-cover img+img {
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}