.main.pc {
  padding-top: 120px;
}
@media screen and (max-width: 640px) {
  .main.pc {
    padding-top: 60px;
  }
}

.page-header-wrap {
  background: #fff;
}

.banner-wrap {
  position: relative;
}
.banner-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.banner-wrap .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 37, 131, 0.5);
}
.banner-wrap .hover .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.banner-wrap .hover small {
  font-size: 24px;
  color: #fff;
  opacity: .6;
}
.banner-wrap .hover h2 {
  font-size: 45px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 15px 0 0;
}
.banner-wrap .hover h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: #D3AB6D;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .banner-wrap img {
    height: 200px;
    object-fit: cover;
  }
  .banner-wrap .hover h2 {
    font-size: 24px;
  }
  .banner-wrap .hover small {
    font-size: 14px;
  }
  .banner-wrap .hover h2::after {
    width: 30px;
    margin-top: 15px;
  }
}


.tabs-wrap {
  border-bottom: 1px solid #efefef;
  background: #fff;
}
.tabs-wrap ul {
  display: flex;
}
.tabs-wrap ul a {
  display: block;
  line-height: 76px;
  font-size: 18px;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}
.tabs-wrap ul li.active a,
.tabs-wrap ul li:hover a {
  color: var(--main-color);
}
.tabs-wrap ul a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--main-color);
  border-radius: 15px;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.tabs-wrap ul li.active a::after,
.tabs-wrap ul li:hover a::after {
  transform: scale(1);
  opacity: 1;
}
.tabs-wrap ul li + li {
  margin-left: 40px;
}

@media screen and (max-width: 640px) {
  .tabs-wrap ul a {
    font-size: 14px;
    line-height: 50px;
  }
  .tabs-wrap ul li + li {
    margin-left: 20px;
  }
}

.culture-wrap {
  background: url(/images/h3.png) no-repeat center;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0 80px;
}
.culture-wrap .content {
  max-width: 1100px;
  margin: 0 auto;
}
.culture-wrap .content > h2 {
  font-size: 28px;
  color: #000;
  text-align: center;
  margin: 0 auto 15px;
}
.culture-wrap .content > h2 > span {
  font-size: 18px;
  font-weight: 400;
  margin-left: 10px;
}
.culture-wrap .content > small {
  display: block;
  text-align: center;
  color: #666;
  margin-bottom: 10px;
}
.culture-wrap .rw {
  display: flex;
  justify-content: space-around;
  margin-top: 160px;
}
.culture-wrap .col:first-child {
  --distance-length: 30px;
  animation: bounce 3s ease-in-out infinite;
}
.culture-wrap .col:nth-child(2) {
  --distance-length: -50px;
  animation: bounce 5s ease-in-out infinite;
}
.culture-wrap .col:nth-child(3) {
  --distance-length: 30px;
  animation: bounce 3s ease-in-out infinite;
}
.culture-wrap .col:nth-child(4) {
  --distance-length: -50px;
  animation: bounce 4s ease-in-out infinite;
}
.culture-wrap .col:last-child {
  --distance-length: 30px;
  animation: bounce 5s ease-in-out infinite;
}
.culture-wrap .col:nth-child(even) {
  margin-top: 80px;
}
.culture-wrap .col:nth-child(3) {
  margin-top: -60px;
}
.culture-wrap .col .head span {
  display: block;
  font-size: 28px;
  transform: color .3s ease;
}
.culture-wrap .col:hover span,
.culture-wrap .col:hover p {
  color: var(--main-color);
  cursor: pointer;
}
.culture-wrap .col .head span:last-child {
  margin-left: 14px;
}
.culture-wrap .col:nth-child(even) .head span:last-child {
  margin-left: unset;
}
.culture-wrap .col .desc {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.culture-wrap .col .desc p {
  margin: unset;
  writing-mode: vertical-rl; /* 从右到左的垂直书写 */
  text-orientation: upright; /* 文本方向为直立 */
  white-space: nowrap; /* 防止文本换行 */
  font-size: 18px;
  letter-spacing: 4px;
  transform: color .3s ease;
}
.culture-wrap .desc p:first-child {
  margin-top: 34px;
}
.culture-wrap .desc p:last-child {
  margin-left: 10px;
}
.culture-wrap .col:nth-child(even) .head span:last-child::before,
.culture-wrap .col:nth-child(odd) .head span:first-child:after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/images/dot.png) no-repeat center;
  background-size: contain;
  transform: translateY(-3px);
}
.culture-wrap .col:nth-child(odd) .head span:first-child:after {
  margin-left: 5px;
}
.culture-wrap .col:nth-child(even) .head span:last-child::before {
  margin-right: 5px;
}
