section.banner-container {
  position: relative;
  z-index: 1;
}
section.banner-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
  opacity: 0.3;
}
section.banner-container .text {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
section.banner-container .text .center {
  box-sizing: border-box;
  font-size: 50pt;
  font-weight: bold;
  color: #fff;
}
section.team-container {
  margin-bottom: 50px;
}
section.team-container .team-wrapper {
  padding: 50px 0;
}
section.team-container .team-wrapper .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}
section.team-container .team-wrapper .top .left-text,
section.team-container .team-wrapper .top .right-img {
  width: 50%;
}
section.team-container .team-wrapper .top .left-text {
  position: relative;
}
section.team-container .team-wrapper .top .left-text .title {
  font-size: 36pt;
  font-weight: bold;
  color: #00a573;
  margin-bottom: 20px;
}
section.team-container .team-wrapper .top .left-text .desc {
  font-size: 16pt;
  color: #797979;
  margin-bottom: 30px;
  font-family: "Poppins-Regular";
}
section.team-container .team-wrapper .top .left-text a.more {
  font-size: 14pt;
  font-weight: bold;
  color: #00c973;
}
section.team-container .team-wrapper .top .left-text a.more:hover {
  color: #00a573;
}
section.team-container .team-wrapper .top .left-text a.more i.iconfont {
  font-size: 22px;
}
section.team-container .team-wrapper .top .left-text .pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #f3f3f3;
  display: flex;
  padding: 10px;
  border-radius: 30px;
}
section.team-container .team-wrapper .top .left-text .pagination .prev,
section.team-container .team-wrapper .top .left-text .pagination .next {
  cursor: pointer;
  padding-right: 15px;
}
section.team-container .team-wrapper .top .left-text .pagination .prev:hover,
section.team-container .team-wrapper .top .left-text .pagination .next:hover {
  color: #00c973;
}
section.team-container .team-wrapper .top .left-text .pagination .next {
  transform: rotate(180deg);
}
section.team-container .team-wrapper .top .left-text .pagination i.iconfont {
  font-size: 20px;
}
section.team-container .team-wrapper .top .right-img {
  width: 578px;
  height: 578px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.team-container .team-wrapper .bottom ul.team-navlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem {
  width: calc(25% - 40px);
  padding-top: 10px;
  border-top: 2px solid #808080;
  color: #808080;
  cursor: pointer;
}
section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem .title {
  font-weight: bold;
  font-size: 13pt;
}
section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem .desc {
  font-size: 12pt;
  font-family: "Poppins-Regular";
}
section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem.active,
section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem:hover {
  color: #00a573;
  border-top: 2px solid #00a573;
}
@media screen and (max-width: 1440px) {
  section.banner-container .text .center {
    font-size: 30pt;
  }
  section.team-container .team-wrapper .top .left-text .title {
    font-size: 24pt;
  }
  section.team-container .team-wrapper .top .left-text .desc {
    font-size: 12pt;
  }
  section.team-container .team-wrapper .top .right-img {
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 1200px) {
  section.banner-container .text .center {
    font-size: 20pt;
  }
  section.team-container .team-wrapper {
    padding: 50px 0;
  }
  section.team-container .team-wrapper .top {
    flex-wrap: wrap-reverse;
  }
  section.team-container .team-wrapper .top .left-text,
  section.team-container .team-wrapper .top .right-img {
    width: 100%;
  }
  section.team-container .team-wrapper .top .left-text {
    position: relative;
    padding-bottom: 80px;
  }
  section.team-container .team-wrapper .top .left-text .title {
    font-size: 24pt;
  }
  section.team-container .team-wrapper .top .left-text .desc {
    font-size: 14pt;
  }
  section.team-container .team-wrapper .top .left-text a.more i.iconfont {
    font-size: 22px;
  }
  section.team-container .team-wrapper .top .left-text .pagination {
    padding: 10px;
    border-radius: 20px;
  }
  section.team-container .team-wrapper .top .left-text .pagination i.iconfont {
    font-size: 16px;
  }
  section.team-container .team-wrapper .top .right-img {
    width: 100%;
    height: 0;
    padding-top: 100%;
    margin-bottom:10px;
  }
  section.team-container .team-wrapper .bottom ul.team-navlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem {
    width: calc(25% - 20px);
  }
  section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem .title {
    font-size: 14pt;
  }
  section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem .desc {
    font-size: 10pt;
  }
}
@media screen and (max-width: 768px) {
  section.banner-container .text .center {
    font-size: 12pt;
  }
  section.team-container {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  section.team-container .team-wrapper {
    padding: 20px 0;
  }
  section.team-container .team-wrapper .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  section.team-container .team-wrapper .top .left-text {
    padding-bottom: 0;
    margin-bottom: 50px;
  }
  section.team-container .team-wrapper .top .left-text .title {
    font-size: 16pt;
    margin-bottom: 10px;
  }
  section.team-container .team-wrapper .top .left-text .desc {
    font-size: 12pt;
  }
  section.team-container .team-wrapper .top .left-text a.more {
    font-size: 12pt;
  }
  section.team-container .team-wrapper .top .left-text a.more i.iconfont {
    font-size: 16px;
  }
  section.team-container .team-wrapper .top .left-text .pagination {
    left: auto;
    right: 0;
    padding: 10px 15px;
  }
  section.team-container .team-wrapper .top .left-text .pagination i.iconfont {
    font-size: 15px;
  }
  section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem {
    width: calc(50% - 10px);
    margin-bottom: 30px;
    padding-top: 10px;
  }
  section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem .title {
    font-size: 12pt;
  }
  section.team-container .team-wrapper .bottom ul.team-navlist li.team-navitem .desc {
    font-size: 10pt;
  }
}
