.content h1 {
  font-size: 0.38rem;
  color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.content h1 i {
  display: block;
  text-align: center;
  width: 2.6rem;
  position: relative;
  height: 0.5rem;
}
.content h1 i b {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.content h1 i::after {
  content: '';
  display: block;
  width: 2.6rem;
  height: 0.14rem;
  border-radius: 0.1rem;
  background: #d988ff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.content .about {
  width: 100%;
  height: 7.82rem;
  background: url('//img3.weilingapp.com/vhuaboss/web/image/companyBg.jpg') no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
  padding-top: 1.27rem;
}
.content .about .inner {
  width: 14.4rem;
  margin: auto;
}
.content .about .inner h1 i b {
  animation: goTops 0.7s linear;
}
.content .about .inner h1 i::after {
  animation: goTops 0.8s linear;
}
.content .about .inner p {
  font-size: 0.18rem;
  color: #808080;
  line-height: 0.36rem;
  margin-bottom: 0.3rem;
  animation: goTops 1s linear;
}
.content .record {
  padding: 1rem 0 0;
}
.content .record h1 {
  margin-bottom: 0.98rem;
}
.content .record h1 i {
  width: 1.8rem;
}
.content .record h1 i::after {
  width: 1.8rem;
}
.content .record .inner {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0 0.5rem;
  height: 15rem;
}
.content .record .inner img {
  width: 0.24rem;
  margin: 0 0.26rem;
}
.content .record .inner .item {
  width: 6.23rem;
  height: 1.68rem;
  color: #808080;
  margin-bottom: 1.65rem;
}
.content .record .inner .item:last-child {
  margin: 0;
}
.content .record .inner .item h2 {
  font-size: 0.26rem;
  margin-bottom: 0.15rem;
}
.content .record .inner .item p {
  font-size: 0.18rem;
  line-height: 0.36rem;
}
.content .record .inner .left {
  padding-top: 0.85rem;
}
.content .record .inner .left .item {
  text-align: right;
}
.content .record .inner .right {
  padding-top: 2.53rem;
}
.content .honor {
  width: 14.4rem;
  margin: auto;
  border-top: 1px solid #c9c9c9;
  padding: 1.3rem 0 1.88rem;
}
.content .honor h1 {
  margin-bottom: 1rem;
}
.content .honor h1 i {
  width: 1.8rem;
}
.content .honor h1 i::after {
  width: 1.8rem;
}
.content .honor .banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 14.4rem;
}
.content .honor .banner .swiper-container,
.content .honor .banner .swiper-wrapper {
  width: 12.3rem;
  height: 6.42rem;
}
.content .honor .banner .swiper-wrapper {
  transform-style: preserve-3d;
}
.content .honor .banner .swiper-slide {
  width: 4.88rem;
  height: 6.42rem;
  background: #f5f5f5;
  transition: 300ms;
  transform: translateX(150px) translateZ(150px) rotateY(-30deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.content .honor .banner .swiper-slide-prev,
.content .honor .banner .swiper-slide-next {
  background: #e6e6e6;
}
.content .honor .banner .swiper-slide-active {
  background: #d9d9d9;
}
.content .honor .banner .arrow {
  width: 0.45rem;
  height: 0.82rem;
  background: url('//img3.weilingapp.com/vhuaboss/web/image/arrow.png') no-repeat center center;
  background-size: 100%;
}
.content .honor .banner .rotate {
  transform: rotate(180deg);
}
.content .ani h1 i b {
  animation: goTops 0.7s linear;
}
.content .ani h1 i::after {
  animation: goTops 0.8s linear;
}
.content .ani2 h1 i b {
  animation: goTops 1s linear;
}
.content .ani2 h1 i::after {
  animation: goTops 1.1s linear;
}
.content .ani2 .inner .left .item:nth-child(1) {
  animation: goRight 1.5s linear;
}
.content .ani2 .inner .left .item:nth-child(2) {
  animation: goRight 1.9s linear;
}
.content .ani2 .inner .left .item:nth-child(3) {
  animation: goRight 2.3s linear;
}
.content .ani2 .inner .left .item:nth-child(4) {
  animation: goRight 2.7s linear;
}
.content .ani2 .inner .line {
  animation: goOpacity 1.4s linear;
}
.content .ani2 .inner .right .item:nth-child(1) {
  animation: goLeft 1.7s linear;
}
.content .ani2 .inner .right .item:nth-child(2) {
  animation: goLeft 2.1s linear;
}
.content .ani2 .inner .right .item:nth-child(3) {
  animation: goLeft 2.5s linear;
}
.content .ani2 .inner .right .item:nth-child(4) {
  animation: goLeft 2.9s linear;
}
.region {
  width: 100%;
  height: 100vh;
  visibility: hidden;
  position: absolute;
  z-index: -1;
  top: 0;
}
@keyframes goTops {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  50% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes goOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes goRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  50% {
    transform: translateX(-100px);
    opacity: 0;
  }
  90% {
    transform: translateX(-10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes goLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  60% {
    transform: translateX(100px);
    opacity: 0;
  }
  90% {
    transform: translateX(10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
