.page-tips-wrap,
.page-footer-wrap {
  display: none;
}

.fullpage {
  width: 100vw;
  height: 100vh;
}
.fullpage > .swiper-wrapper > .swiper-slide.footer {
  height: 460px !important;
}
.fullpage > .swiper-wrapper > .swiper-slide.footer > .page-tips-wrap,
.fullpage > .swiper-wrapper > .swiper-slide.footer > .page-footer-wrap {
  display: block;
}

.fullpage .menus {
  position: fixed;
  top: 50%;
  right: 30px;
  z-index: 1000;
  transform: translateY(-50%);
}
.fullpage .menus li {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: right;
}
.fullpage .menus li.active {
  color: var(--main-color);
}
.fullpage .menus.none {
  display: none;
}
.fullpage .menus.white li {
  color: #fff;
  cursor: pointer;
}
.fullpage .menus.white li.active {
  color: #fff;
}
.fullpage .menus li + li {
  margin-top: 20px;
}
.fullpage .menus li span {
  display: block;
  width: 100px;
  text-align: right;
  margin-right: 10px;
  cursor: pointer;
}
.fullpage .menus li.active::after {
  width: 20px;
}
.fullpage .menus.white li.active::after {
  background: #fff;
}
.fullpage .menus li::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--main-color);
  transition: width .3s ease;
}


.banner-wrap {
  overflow: hidden;
}
.banner-wrap .swiper-slide {
  position: relative;
}
.banner-wrap .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
  z-index: 1;
}
.banner-wrap .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.336), transparent);
}
.banner-wrap .swiper-slide .hover {
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
  z-index: 1;
}
.banner-wrap .swiper-slide .hover {
  border-radius: 15px;
  padding: 25px;
  background: linear-gradient(to bottom, rgba(138, 192, 39, 0.6), transparent);
}
.banner-wrap .swiper-slide .hover h2 {
  margin: unset;
  color: #fff;
  font-size: 88px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 30px;
}
.banner-wrap .swiper-slide .hover p {
  font-size: 26px;
  color: #fff;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  margin: 20px 0;
}
.banner-wrap .swiper-slide .hover a {
  display: flex;
  align-items: center;
  height: 38px;
  background: #92C426;
  color: #fff;
  border-radius: 30px;
  padding-left: 5px;
  padding-right: 15px;
  position: absolute;
  bottom: -10px;
  left: 30px;
  transition: background .3s ease;
}
.banner-wrap .swiper-slide .hover a:hover {
  background: #92c426d3;
}
.banner-wrap .swiper-slide .hover a > img {
  margin-right: 10px;
}
.banner-wrap .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.3);
  transition: transform 8s ease;
}
.banner-wrap .swiper-slide.in > img {
  transform: scale(1);
}
.banner-wrap .swiper-pagination {
  bottom: 20px;
}
.banner-wrap .swiper-pagination .swiper-pagination-bullet {
  border-radius: unset;
  width: 30px;
  height: 6px;
  opacity: 0.6;
  border-radius: 5px;
  background: #fff;
}
.banner-wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.banner-wrap .swiper-control {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 0 38px;
}
.banner-wrap .swiper-control .prev,
.banner-wrap .swiper-control .next {
  pointer-events: all;
  width: 66px;
  height: 66px;
  cursor: pointer;
  transition: transform .3s ease;
}
.banner-wrap .swiper-control .prev:hover,
.banner-wrap .swiper-control .next:hover {
  transform: scale(1.1);
}
.banner-wrap .swiper-control .prev img,
.banner-wrap .swiper-control .next img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-wrap {
  background: url(/images/home-bg-1.png) no-repeat center;
  background-size: cover;
}
.about-wrap .container {
  padding-top: 78px;
}
.about-wrap .container > small {
  font-size: 98px;
  font-weight: 700;
  opacity: 0.1;
}
.about-wrap h2 {
  font-size: 40px;
  color: var(--main-color);
  margin: unset;
  line-height: 1;
}
.about-wrap h3 {
  font-size: 35px;
  font-weight: 400;
  color: var(--main-color);
  margin: 0;
}
.about-wrap .rich-text {
  font-size: 16px;
  color: #454545;
  text-indent: 32px;
  line-height: 1.8;
  height: 300px;
  overflow: hidden;
}
.about-wrap a {
  display: inline-flex;
  align-items: center;
  padding: 3px 5px;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  padding-left: 15px;
  line-height: 1;
  color: var(--main-color);
  transition: transform .3s ease;
  margin-top: 30px;
}
.about-wrap a:hover {
  transform: scale(1.05);
}
.about-wrap a:hover .icon {
  transform: rotate(360deg);
}
.about-wrap a .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 50%;
  margin-left: 10px;
  transition: transform 1s ease;
}
.about-wrap a img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}
.about-wrap .count-wrap {
  margin-top: 70px;
}
.about-wrap .count-wrap .col {
  text-align: center;
}
.about-wrap .count-wrap .col .count {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
}
.about-wrap .count-wrap .col .count .num {
  font-size: 48px;
  font-weight: 700;
}
.about-wrap .count-wrap .col .count .symbol {
  font-size: 24px;
  font-weight: 700;
  margin-left: 5px;
}

.biz-wrap {
  background: url(/images/home-bg-2.png) no-repeat center;
  background-size: cover;
  position: relative;
}
.biz-wrap .header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  text-align: center;
  z-index: 1;
}
.biz-wrap .header small {
  font-size: 30px;
  color: #fff;
  opacity: 0.9;
}
.biz-wrap .header h2 {
  font-size: 40px;
  color: #FFFFFF;
  margin: unset;
}
.biz-wrap .rw {
  display: flex;
  height: 100%;
}
.biz-wrap .rw .col {
  flex: 1;
  padding: 0 2% 40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  cursor: pointer;
}
.biz-wrap .rw .col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(56, 150, 78, 0.8) 0%, rgba(71,160,92,0.21) 50%, rgba(56, 150, 78, 0.8));
  transition: opacity 0.3s ease;
}
.biz-wrap .rw .col:hover::after {
  opacity: 0;
}
.biz-wrap .rw .col + .col {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}
.biz-wrap .rw .col .bottom {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.biz-wrap .rw .col:hover .bottom {
  transform: translateY(-100px);
}
.biz-wrap .rw .col .icon {
  width: 50px;
  height: 50px;
}
.biz-wrap .rw .col .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.biz-wrap .rw .col h3 {
  font-weight: bold;
  font-size: 30px;
  color: #FFFFFF;
  margin: 10px 0 15px;
}
.biz-wrap .rw .col p {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.5;
  height: 82px;
  margin: unset;
}
.biz-wrap .rw .col .icon.b {
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.biz-wrap .rw .col:hover .icon.b {
  background: var(--main-color);
  border-color: var(--main-color);
}

.performance-wrap {
  background: url(/images/home-bg-3.png) no-repeat center;
  background-size: cover;
}
.performance-wrap .container {
  padding-top: 160px;
}
.performance-wrap .container .header small {
  font-size: 30px;
  color: #333333;
  margin: unset;
}
.performance-wrap .container .header h2 {
  font-weight: bold;
  font-size: 40px;
  color: #333333;
  margin: 5px 0 50px;
}
.performance-wrap .container .rich-text {
  font-size: 16px;
  color: #454545;
  line-height: 1.8;
}
.performance-wrap .more {
  display: inline-flex;
  align-items: center;
  padding: 3px 5px;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  padding-left: 15px;
  line-height: 1;
  color: var(--main-color);
  transition: transform .3s ease;
}
.performance-wrap .more:hover {
  transform: scale(1.05);
}
.performance-wrap .more:hover .icon {
  transform: rotate(360deg);
}
.performance-wrap .more .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 50%;
  margin-left: 10px;
  transition: transform 1s ease;
}
.performance-wrap .more img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}
.performance-wrap .links .col:nth-child(2) {
  margin-top: 60px;
}
.performance-wrap .links .col:nth-child(3) {
  margin-top: -60px;
}
.performance-wrap .links .wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
.performance-wrap .links .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent, transparent);
  transition: opacity 0.3s ease;
}
.performance-wrap .links .wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(56, 150, 78, 0.9),  transparent);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}
.performance-wrap .links .wrap:hover::after {
  opacity: 0;
}
.performance-wrap .links .wrap:hover::before {
  opacity: 1;
}
.performance-wrap .links .wrap:hover > img {
  transform: scale(1.1);
}
.performance-wrap .links .wrap > img {
  display: block;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.performance-wrap .links .wrap .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 23px 29px;
  z-index: 1;
}
.performance-wrap .links .wrap .hover p {
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  margin: 15px 0 0;
}
.performance-wrap .col {
  display: block;
}

.news-wrap {
  background: url(/images/home-bg-4.png) no-repeat center;
  background-size: cover;
}
.news-wrap .container {
  padding-top: 144px;
}
.news-wrap .header {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.news-wrap .header small {
  font-size: 30px;
  color: #333333;
}
.news-wrap .header h2 {
  font-size: 40px;
  color: #333333;
  margin: 5px 0 0;
}
.news-wrap .more {
  display: inline-flex;
  align-items: center;
  padding: 3px 5px;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  padding-left: 15px;
  line-height: 1;
  color: var(--main-color);
  transition: transform .3s ease;
}
.news-wrap .more:hover {
  transform: scale(1.05);
}
.news-wrap .more:hover .icon {
  transform: rotate(360deg);
}
.news-wrap .more .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 50%;
  margin-left: 10px;
  transition: transform 1s ease;
}
.news-wrap .more img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}
.news-wrap .list .col {
  display: block;
  margin-top: 30px;
}
.news-wrap .list .col .wrap {
  background: #fff;
  border: 1px solid #B8EDB5;
  border-radius: 15px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}
.news-wrap .list .col .wrap:hover {
  box-shadow: 0 0 20px rgba(184, 237, 181, 0.8);
}
.news-wrap .list .col .wrap small {
  color: var(--main-color);
  font-size: 18px;
}
.news-wrap .list .col .wrap  h3 {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 12px 0 9px;
  height: 52px;
}
.news-wrap .list .col .wrap p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  height: 64px;
  margin: 0;
}
.news-wrap .list .col .wrap .icon {
  width: 28px;
  height: 28px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 20px;
  float: right;
}

.customer-wrap {
  background: url(/images/home-bg-5.png) no-repeat center;
  background-size: cover;
}
.customer-wrap .container {
  padding-top: 128px;
  text-align: center;
}
.customer-wrap .container header {
  text-align: center;
  margin-bottom: 80px;
}
.customer-wrap .container header small {
  font-size: 30px;
  color: #333333;
}
.customer-wrap .container header h2 {
  font-weight: bold;
  font-size: 40px;
  color: #333333;
  margin: 5px 0 30px;
}
.customer-wrap .container header p {
  max-width: 1055px;
  margin: 0 auto;
  font-size: 16px;
  color: #454545;
  line-height: 1.8;
}
.customer-wrap .container .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.customer-wrap .container .list .col {
  width: 25%;
  margin-bottom: 52px;
}
.customer-wrap .container .list .col:hover img {
  transform: scale(1.05);
}
.customer-wrap .container .list .col img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.customer-wrap .container .more {
  display: inline-flex;
  align-items: center;
  padding: 3px 5px;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  padding-left: 15px;
  line-height: 1;
  color: var(--main-color);
  transition: transform .3s ease;
}
.customer-wrap .container .more:hover {
  transform: scale(1.05);
}
.customer-wrap .container .more:hover .icon {
  transform: rotate(360deg);
}
.customer-wrap .container .more .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 50%;
  margin-left: 10px;
  transition: transform 1s ease;
}
.customer-wrap .container .more img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}

@media screen and (max-width: 640px) {
  .fullpage {
    height: auto;
  }
  .fullpage .menus {
    display: none;
  }
  .fullpage > .swiper-wrapper {
    display: block;
  }
  .banner-wrap .swiper-slide > img {
    height: 300px;
  }

  .banner-wrap .swiper-slide::before {
    height: 60px;
  }
  .banner-wrap .swiper-slide .hover h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .banner-wrap .swiper-slide .hover p {
    font-size: 12px;
    margin: 10px 0 15px;
  }
  .banner-wrap .swiper-slide .hover {
    width: 90%;
    left: 5%;
    padding: 15px;
    border-radius: 8px;
  }
  .banner-wrap .swiper-control {
    display: none;
    pointer-events: none;
  }
  .banner-wrap .swiper-slide .hover a img {

  }
  .banner-wrap .swiper-slide .hover a {
    font-size: 14px;
    left: 5%;
    bottom: -20px;
    line-height: 35px;
  }

  .about-wrap .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about-wrap .container > small {
    font-size: 28px;
  }
  .about-wrap h2 {
    font-size: 32px;
  }
  .about-wrap h3 {
    font-size: 24px;
    margin-top: 30px;
    line-height: 1.6;
  }
  .about-wrap .rich-text {
    font-size: 16px;
  }
  .about-wrap .count-wrap {
    margin-top: 30px;
  }
  .about-wrap .count-wrap .col {
    padding: 0 5px;
  }
  .about-wrap .count-wrap .col .count .num {
    font-size: 30px;
  }
  .about-wrap .count-wrap .col > p {
    font-size: 13px;
    line-height: 1.6;
    margin: 6px 0;
  }
  .biz-wrap {
    padding: 40px 15px;
  }
  .biz-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  .biz-wrap .header {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
  .biz-wrap .rw {
    display: block;
    position: relative;
    z-index: 1;
  }
  .biz-wrap .rw .col {
    width: 100%;
    padding: 30px 0;
  }
  .biz-wrap .header {
    margin-bottom: 20px;
  }
  .biz-wrap .header small {
    font-size: 28px;
  }
  .biz-wrap .header h2 {
    font-size: 32px;
  }
  .biz-wrap .rw .col {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px 20px;
  }
  .biz-wrap .rw .col + .col {
    border: unset;
  }
  .biz-wrap .rw .col h3 {
    font-size: 20px;
  }
  .biz-wrap .rw .col:hover .bottom {
    transform: unset;
  }
  .biz-wrap .rw .col:hover::after {
    opacity: 1;
  }
  .biz-wrap .rw .col p {
    font-size: 14px;
    height: unset;
  }

  .biz-wrap .rw .col .icon {
    width: 30px;
    height: 30px;
  }

  .performance-wrap {
    padding: 40px 0;
  }
  .performance-wrap .container {
    padding-top: unset;
  }
  .performance-wrap .container .header small {
    font-size: 28px;
  }
  .performance-wrap .container .header h2 {
    font-size: 32px;
    margin: 5px 0 20px;
  }
  .performance-wrap .links {
    margin-top: 30px;
  }
  .performance-wrap .links .wrap {
    margin-bottom: 15px;
  }
  .performance-wrap .links .col:nth-child(2) {
    margin-top: unset;
  }
  .performance-wrap .links .col:nth-child(3) {
    margin-top: unset;
  }

  .news-wrap {
    padding: 40px 0;
  }
  .news-wrap .container {
    padding-top: unset;
  }
  .news-wrap .header small {
    font-size: 28px;
  }
  .news-wrap .header h2 {
    font-size: 32px;
  }

  .customer-wrap {
    padding: 40px 0;
  }
  .customer-wrap .container header {
    margin-bottom: 30px;
  }
  .customer-wrap .container header small {
    font-size: 28px;
  }
  .customer-wrap .container header h2 {
    font-size: 32px;
  }
  .customer-wrap .container {
    padding-top: unset;
  }
  .customer-wrap .container .list .col {
    width: 33%;
    margin-bottom: 30px;
  }
  .customer-wrap .container .list .col img {
    max-width: 70%;
  }
  .fullpage > .swiper-wrapper > .swiper-slide.footer {
    height: unset !important;
  }
}
