.video-wrapper video {
  width: 100%;
}
.title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 3rem;
  align-items: center;
  font-family: "Adobe 宋体 Std";
}
.title-wrapper .title-up {
  font-size: 4rem;
  line-height: 95px;
  font-weight: 400;
  color: #46B5AA;
}
.title-wrapper .title-bottom {
  align-items: center;
  display: flex;
  justify-content: center;
}
.title-wrapper .title-bottom .title-info {
  font-size: 2.5rem;
  font-weight: bold;
  color: #46B5AA;
  margin: 0 1.5rem;
}
.title-wrapper .title-bottom img {
  height: 2px;
  width: 8rem;
  display: inline-block;
  position: relative;
}
.idea {
  width: 100%;
  line-height: 4rem;
  align-items: center;
  padding: 3rem 0;
  padding-bottom: 6rem;
}
.idea .content-box .text-box {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: #00635A;
}
.body-wrapper {
  width: 100%;
  padding-bottom: 2rem;
  background-image: url(../imgs/background.png);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: left bottom;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.body-wrapper .content-box {
  width: 100%;
}
.body-wrapper .content-box .title-wrapper {
  padding: 4rem 0;
}
.body-wrapper .content-box .body-content {
  width: 100%;
  margin-top: 8rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
}
.body-wrapper .content-box .body-content .left {
  width: 25%;
}
.body-wrapper .content-box .body-content .left img {
  width: 100%;
}
.body-wrapper .content-box .body-content .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 70%;
  height: 25rem;
}
.body-wrapper .content-box .body-content .right .right-up {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.body-wrapper .content-box .body-content .right .right-up div {
  height: 7rem;
  width: 7rem;
}
.body-wrapper .content-box .body-content .right .right-up .one {
  background-color: #84D8D0;
}
.body-wrapper .content-box .body-content .right .right-up .two {
  background-color: #FDDEC9;
}
.body-wrapper .content-box .body-content .right .right-up .three {
  background-color: #FAF4C2;
}
.body-wrapper .content-box .body-content .right .right-up .four {
  background-color: #00635A;
}
.body-wrapper .content-box .body-content .right .right-center {
  margin: 3.5rem 0;
  width: 18rem;
  height: 1rem;
  background-color: #84D8D0;
}
.body-wrapper .content-box .body-content .right .right-down {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  color: #00635A;
  line-height: 3rem;
}
.carousel-wrapper {
  background-color: #EEF7F6;
}
.carousel-wrapper .carousel {
  overflow: hidden;
  width: 100%;
  margin: 4rem 0;
}
.carousel-wrapper .carousel .swipe-box {
  display: flex;
  text-align: center;
  position: relative;
  animation: banner-swipe 10s ease infinite;
  animation-direction: alternate;
}
.carousel-wrapper .carousel .swipe-box .img-box img {
  box-sizing: border-box;
  border: 0.2rem solid #EEF7F6;
  padding: 0.8rem;
  width: 33.3333333vw;
  max-width: 400px;
  background-color: #84D8D0;
}
.carousel-wrapper .carousel .swipe-box .img-box .line {
  height: 0.8rem;
  width: 12rem;
  background-color: #84D8D0;
  margin: 1rem auto;
}
.carousel-wrapper .carousel .swipe-box .img-box .name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #00635A;
}
@keyframes banner-swipe {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  40% {
    left: -33.3333333%;
  }
  60% {
    left: -33.3333333%;
  }
  80% {
    left: -66.6666666%;
  }
  100% {
    left: -66.666666%;
  }
}
@media only screen and (max-width: 800px) {
  .body-wrapper {
    width: 100%;
    padding-bottom: 2rem;
    background-image: url(../imgs/background.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left bottom;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .body-wrapper .content-box {
    width: 100%;
  }
  .body-wrapper .content-box .body-content {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }
  .body-wrapper .content-box .body-content .right {
    height: 20rem;
  }
  .body-wrapper .content-box .body-content .right .right-up div {
    height: 6rem;
    width: 6rem;
  }
  .body-wrapper .content-box .body-content .right .right-center {
    margin: 3.3rem 0;
  }
  .body-wrapper .content-box .body-content .right .right-down {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
