.banner {
  position: relative;
  width: 100%;
}

.banner img {
  width: 100%;
  height: 692px;
  object-fit: cover;
}

.banner .in {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
}

.banner .in h2 {
  font-size: 46px;
  color: #FFFFFF;
  text-align: center;
}

.banner .in .line {
  width: 80px;
  height: 4px;
  margin: 32px auto 50px;
  background: #FFFFFF;
}

.banner .in p {
  font-size: 24px;
  color: #FFFFFF;
  text-indent: 2em;
}

.banner .list {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.1);
}

.banner .list .item {
  position: relative;
  width: 343px;
  text-align: center;
}

.banner .list .item::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: '';
  width: 2px;
  height: 34px;
  background-color: rgba(255, 255, 255, .1);
}

.banner .list .item:last-child::after {
  content: unset;
}

.banner .list .item span {
  color: #fff;
  font-size: 36px;
}

.banner .list .item p {
  color: #fff;
  font-size: 20px;
}

/* 企业文化 */
.culture {
  width: 100%;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.culture .title h3 {
  color: rgba(0, 0, 0, 0.86);
  font-size: 40px;
  text-align: center;
}

.culture .title .line {
  width: 80px;
  height: 4px;
  margin: 30px auto 60px;
  background: #1763FF;
}

.culture .list {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}

.culture .list .item {
  width: 48%;
  padding: 45px 0;
  text-align: center;
  background-color: #fff;
}

.culture .list .item span {
  color: #1C1B1B;
  font-size: 30px;
  font-weight: bold;
}

.culture .list .item .line {
  width: 48px;
  height: 2px;
  margin: 6px auto 30px;
  background: #1763FF;
}

.culture .list .item p {
  color: #1C1B1B;
  font-size: 20px;
  text-align: center;
}

.culture .list .item:last-child {
  background-color: #1154ED;
}

.culture .list .item:last-child span {
  color: #fff;
}

.culture .list .item:last-child .line {
  background-color: #fff;
}

.culture .list .item:last-child p {
  color: #fff;
}

/* 核心团队 */
.team {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}

.team .title h3 {
  color: rgba(0, 0, 0, 0.86);
  font-size: 40px;
  text-align: center;
}

.team .title .line {
  width: 80px;
  height: 4px;
  margin: 30px auto 60px;
  background: #1763FF;
}

.team .list {
  position: relative;
  width: 100%;
}

.team .list .swiper {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}

.team .list .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team .list .item .name {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 30px;
  box-sizing: border-box;
  background: linear-gradient(270deg, rgba(30, 64, 190, 0.69) 0%, #064CED 100%);
}

.team .list .item .name span {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-right: 5px;
}

.team .list .item .name i {
  color: #fff;
  font-size: 16px;
}

.team .list .item .info {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  color: #fff;
  font-size: 16px;
  padding: 20px 30px;
  box-sizing: border-box;
  background: linear-gradient(270deg, rgba(30, 64, 190, 0.69) 0%, #064CED 100%);
}

.team .list .item:hover .info {
  display: block;
}

.team .list .next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.team .list .next img {
  width: 50px;
  height: 50px;
}

.team .list .prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.team .list .prev img {
  width: 50px;
  height: 50px;
}

.team .list .img2 {
  display: none;
}

.team .list .next:hover .img1 {
  display: none;
}

.team .list .next:hover .img2 {
  display: block;
}

.team .list .prev:hover .img1 {
  display: none;
}

.team .list .prev:hover .img2 {
  display: block;
}

.team .more {
  display: block;
  width: 200px;
  height: 48px;
  line-height: 48px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 80px auto 0;
  background: #1763FF;
  border-radius: 2px;
  transition: all .3s;
}

.team .more:hover {
  background-color: #0545d9;
}