.main.pc {
  padding-top: 110px;
}

.banner-wrap {
  position: relative;
}
.banner-wrap img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.banner-wrap .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 11, 35, 0.5);
  flex-direction: column;
}
.banner-wrap .mask h2 {
  font-size: 60px;
  font-family: "AlimamaShuHeiTi";
  color: #FFFFFF;
  margin: 0 0 38px;
}
.banner-wrap .mask small {
  font-size: 30px;
  color: #FFFFFF;
}

.tabs-page-wrap {
  border-bottom: 1px solid #cecece;
  position: relative;
  z-index: 1;
}
.tabs-page-wrap ul {
  display: flex;
}
.tabs-page-wrap ul li {
  position: relative;
}
.tabs-page-wrap ul li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--main-color);

  opacity: 0;
  transform: scale(0);

  transition: opacity .3s ease, transform .3s ease;
}
.tabs-page-wrap ul li:hover::after,
.tabs-page-wrap ul li.active::after {
  opacity: 1;
  transform: scale(1);
}
.tabs-page-wrap ul li:hover a,
.tabs-page-wrap ul li.active a {
  font-weight: bold;
  color: var(--main-color);
}
.tabs-page-wrap ul li + li {
  margin-left: 150px;
}
.tabs-page-wrap ul a {
  display: block;
  padding: 40px 0 20px;
  font-size: 20px;
  color: #666;
  transition: color .3s ease;
}

.brand-page-wrap {
  padding: 60px 0;
}
.brand-page-wrap ul {
  display: flex;
  align-items: center;
}
.brand-page-wrap ul li {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 14px;
  color: #999999;
}
.brand-page-wrap ul li::after {
  content: ">";
  font-size: 14px;
  color: #999999;
  margin: 0 17px;
}
.brand-page-wrap ul li:last-child {
  color: #333;
}
.brand-page-wrap ul li:last-child:after {
  content: "";
}
.brand-page-wrap ul li img {
  display: block;
}
.brand-page-wrap ul li a {
  transition: color .3s ease;
}
.brand-page-wrap ul li a:hover {
  color: var(--main-color);
}




.video-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background .3s ease;
}
.video-popup-wrap.active {
  background: rgba(0, 0, 0, .3);
  pointer-events: all;
}
.video-popup-wrap .container {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: unset;
  position: relative;
  top: 50%;
  transform: scale(0) translateY(-50%);
  transition: transform .3s ease;
}
.video-popup-wrap.active .container {
  transform: scale(.9) translateY(-55%);
}
.video-popup-wrap .container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #333;
  display: block;
}
.video-popup-wrap .container .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s ease;
}
.video-popup-wrap .container .close i {
  font-size: 32px;
  font-weight: 700;
  color: var(--main-color);
}
.video-popup-wrap .container .close:hover {
  background: #efefef;
}


.module > .container > h2 {
  margin: unset;
  font-size: 30px;
  color: #133686;
  line-height: 1;
  text-align: center;
  padding-top: 88px;
  padding-bottom: 22px;
  position: relative;
}
.module > .container > h2::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #133686;
  transform: translateX(-50%);
}
.module > .container > small {
  display: none;
  font-size: 16px;
  color: #999999;
  text-align: center;
}

@media screen and (max-width: 640px)  {
  .main.pc {
    padding-top: 50px;
  }
  .banner-wrap img {
    height: 180px;
    object-fit: cover;
  }
  .banner-wrap .mask h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .banner-wrap .mask small {
    font-size: 14px;
  }

  .tabs-page-wrap ul {
    display: block;
    white-space: nowrap;
    overflow-y: auto;
  }
  .tabs-page-wrap ul li {
    display: inline-block;
  }
  .tabs-page-wrap ul li + li {
    margin-left: 20px;
  }
  .tabs-page-wrap ul a {
    font-size: 14px;
    padding: 20px 0;
  }
  .tabs-page-wrap ul li:hover a {
    color: #666;
  }
  .tabs-page-wrap ul li:hover::after {
    transform: scale(0);
    opacity: 0;
  }


  .module > .container > h2 {
    padding: 50px 0 20px;
    font-size: 24px;
  }
  .module > .container > small {
    font-size: 14px;
  }

  .video-popup-wrap .container .close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .video-popup-wrap .container .close i {
    font-size: 12px;
  }

  .brand-page-wrap {
    padding: 20px 0;
    border-bottom: 1px solid #efefef;
  }
}
