.header .top {
  display: none;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .img {
  width: 100%;
  height: 100%;
}
.banner .img img {
  display: block;
  width: 100%;
  height: 100%;
}
.banner .text {
  position: absolute;
  width: 1200px;
  z-index: 3;
}
.banner .text .title {
  color: #FFF;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 29px;
}
.banner .text .des {
  width: 600px;
  color: #FFF;
  text-align: justify;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.sec1 {
  padding: 100px 0 146px;
  background: #FFFFFF;
}
.sec1 .wrap .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 102px;
}
.sec1 .wrap .flex .title {
  color: #333;
  font-size: 40px;
  font-weight: 600;
}
.sec1 .wrap .flex .des {
  width: 700px;
  color: #5D6970;
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  padding: 10px 0 0;
}
.sec1 .wrap .numList {
  display: flex;
  justify-content: space-between;
}
.sec1 .wrap .numList .flex1 {
  display: flex;
  justify-content: space-between;
}
.sec1 .wrap .numList .flex1 .num_item {
  width: 266px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sec1 .wrap .numList .flex1 .num_item:after {
  content: "";
  width: 1px;
  height: 54px;
  background: #D7DBDB;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec1 .wrap .numList .num_item label {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}
.sec1 .wrap .numList .num_item .num {
  display: flex;
  align-items: flex-end;
  margin-bottom: 5px;
}
.sec1 .wrap .numList .num_item .num p {
  color: #333;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}
.sec1 .wrap .numList .num_item .num span {
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.sec2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec2 .wrap {
  position: absolute;
  z-index: 3;
}
.sec2 .wrap .title {
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 37px;
}
.sec2 .wrap .list .item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sec2 .wrap .list .item:not(:last-child) {
  margin-bottom: 32px;
}
.sec2 .wrap .list .item img {
  display: block;
  width: 25px;
}
.sec2 .wrap .list .item img:nth-last-child(1) {
  transform: rotateY(180deg);
}
.sec2 .wrap .list .item h3 {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
}
.sec2 .bg {
  display: block;
  width: 100%;
}

.sec3 {
  padding: 100px 0 120px;
}
.sec3 .wrap .title {
  color: #333;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}
.sec3 .wrap .list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.sec3 .wrap .list .logo {
  aspect-ratio: 9/8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #FFF;
  cursor: pointer;
}
.sec3 .wrap .list .logo:hover img {
  transform: scale(1.05);
}
.sec3 .wrap .list .logo img {
  display: block;
  max-height: 70%;
  max-width: 70%;
  object-fit: contain;
  transition: .6s ease;
}
