/* 汉堡菜单 */
.animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon span {
  background: #e3f2fd;
}

.animated-icon span:nth-child(1) {
  top: 0px;
}

.animated-icon span:nth-child(2),
.animated-icon span:nth-child(3) {
  top: 10px;
}

.animated-icon span:nth-child(4) {
  top: 20px;
}

.animated-icon.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

/* 汉堡菜单 */

/* 返回顶部按钮 */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}


/* 导航栏语言 */
header nav .collapse .language .nav-link {
  display: inline-block;
  padding: 0;
}

/* 鼠标手形样式 */
.pointer {
  cursor: pointer;
}

/* 文本两端对齐 */
.text-justify {
  text-align: justify !important;
}

/* 一行 */
.one-row {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* 二行 */
.two-row {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 三行 */
.three-row {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


/* 大标题样式 */
.notes {
  padding-left: 10px;
  border-left: 6px solid #2a3f54;
}

/* 文本阴影 */
.text-shadow {
  text-shadow: 0px 2px 4px rgb(0 0 0 / 50%);
}

/* 相对定位 */
.relative {
  position: relative;
}

/* 文本不换行 */
.space-nowrap {
  white-space: nowrap;
}

/* 首字母大写 */
.capitalize {
  text-transform: capitalize !important;
}

/* 学校团队 */
.team-img {
  position: relative;
}

.team-img img {
  width: 100%;
}

.team-content {
  position: absolute;
  background-color: #2a3f54;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 100%;
  color: #fff;
}

.overlays {
  border-radius: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  /* background-color: #ddcab0;  颜色各自定义 */
}

.team-img:hover .overlays {
  opacity: 0.8;
}

.team-img:hover .team-content {
  opacity: 0;
}

.text {
  color: #fff;
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-26%, -26%);
  -ms-transform: translate(-26%, -26%);
  right: 0;
  font-weight: 400;
  font-size: 0.9rem;
  text-shadow: 0px 2px 4px rgb(0 0 0 / 50%);
}

/* 学校团队 */


/* 首页最后一屏固定在底部 */
.home-footer-school {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  z-index: 1 !important;
}



.myContent {
  height: auto;
}