body {
  background-color: #000;
  z-index: -1;
}

body.hidden {
  overflow: hidden;
  height: 100vh;
}

/* home */
/* header */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 99;
  transition: all 0.1s linear;
}

.head-top {
  height: 40px;
  transition: all 0.1s linear;
  position: relative;
}

header.active .head-top {
  height: 0;
  opacity: 0;
}

.head-top .l-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head-top .head-left {
  display: flex;
  align-items: center;
  color: var(--headercolor);
}

.head-top .head-left .item {
  display: inline-flex;
  align-items: center;
}

.head-top .head-left .item em {
  margin-right: 5px;
}

.head-top .head-left .item:last-child {
  margin-left: 20px;
}

.head-top .head-left .item a:hover {
  text-decoration: underline;
}

.head-top .head-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.head-top .head-right .head-fonts {
  margin-right: 10px;
}

.head-top .head-right .head-fonts ul {
  list-style: none;
  display: flex;
  align-items: center;
  transition: all 0.1s linear;
}

.head-top .head-right .head-fonts ul a {
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.1s linear;
}

.head-top .head-right .head-fonts ul a:hover {
  transform: translateY(-2px);
  color: var(--color1);
}

.head-top .head-right .head-lang .lang-icon em {
  color: #fff;
}

header.active .head-info {
  height: 75px;
  background: #111;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
}

header.active .head-info .head-nav .nav-ul>li>a:hover {
  color: rgba(0, 146, 255, 0.8);
}

.head-info {
  height: 90px;
  transition: all 0.1s linear;
}

.head-info .l-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head-info .head-logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.head-info .head-logo a img {
  height: 40px;
  width: auto;
  object-fit: cover;
}

.head-info .head-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.head-nav .nav-ul {
  height: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}

.head-info .head-nav .nav-ul>li {
  height: 100%;
  position: relative;
}

.head-info .head-nav .nav-ul>li>a {
  font-size: var(--fontsize18);
  color: var(--headercolor);
  text-transform: capitalize;
  margin: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
}

.head-info .head-nav .nav-ul>li>a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color1);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s linear;
}

.head-info .head-nav .nav-ul>li:hover>a {
  color: rgba(0, 146, 255, 0.8);
}

.head-info .head-nav .nav-ul>li:hover>a::before {
  width: 100%;
}

.head-info .head-nav .nav-ul>li>a em {
  margin-left: 5px;
  font-size: var(--fontsize14);
  font-weight: var(--fontbold5);
}

.head-info .head-nav .nav-ul>li>ul {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 160px;
  margin: 0;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: none;
}

.head-info .head-nav .nav-ul>li:hover>ul {
  display: block;
}

.head-nav .nav-ul>li>ul li:hover>a,
.head-nav .nav-ul>li>ul li:hover>em {
  color: var(--color1);
}

.head-info .head-nav .nav-ul>li>ul a {
  padding: 0 10px;
  height: 45px;
  line-height: 45px;
  color: var(--fontcolor);
  text-align: left;
  transition: all 0.1s linear;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fontsize16);
}

.head-info .head-nav .nav-ul>li>ul li:hover>a {
  color: #3a93e8;
}

.head-info .head-nav .nav-ul>li>ul li {
  position: relative;
}

.head-info .head-nav .nav-ul>li>ul ul {
  position: absolute;
  left: 100%;
  top: 0px;
  background: #FFFFFF;
  min-width: 160px;
  margin: 0px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.head-info .head-nav .nav-ul>li>ul ul li a {
  display: flex;
  justify-content: center;
}

@media (min-width: 1025px) {
  .head-info .head-nav .nav-ul>li .submenu {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .head-info .head-nav .nav-ul>li:hover .submenu {
    transform: scaleY(1);
    opacity: 1;
  }

  .head-info .head-nav .nav-ul>li .submenu li ul {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .head-info .head-nav .nav-ul>li .submenu li:hover ul {
    transform: scaleY(1);
    opacity: 1;
  }
}

.head-info .search-box .head-search {
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.head-info .search-box .head-search em {
  font-size: var(--fontsize22);
  color: #fff;
}

.head-lang .lang-drop {
  position: absolute;
  top: 100%;
  right: 8%;
  background: #fff;
  min-width: 160px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.head-lang .lang-drop.active {
  transform: scaleY(1);
  opacity: 1;
}

.head-lang .lang-drop li {
  padding: 10px;
  display: flex;
  align-items: center;
  color: var(--fontcolor);
  transition: all 0.1s linear;
}

.head-lang .lang-drop li:hover {
  color: var(--color1);
}

.head-lang .lang-drop li em {
  margin-right: 5px;
}

/* banner */
.home-banner .swiper-slide>a {
  position: relative;
  display: flex;
}

.home-banner .swiper-slide img {
  width: 100%;
  min-height: 800px;
  object-fit: cover;
}

.home-banner .swiper-slide-active img {
  animation: bannerimg 5s forwards;
}

@keyframes bannerimg {
  0% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.047);
  }
}

.home-banner .swiper-slide>a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.home-banner .banner-animote {
  max-width: 1000px;
  padding: 0 10px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  text-align: center;
  z-index: 99;
}

.home-banner .swiper-slide-active .banner-animote {
  animation: bannerani 0.5s forwards;
  animation-delay: 0.7s;
}

@keyframes bannerani {
  0% {
    margin-top: 20px;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.home-banner .banner-animote .p1 {
  font-size: var(--fontsize44);
  font-weight: var(--fontbold5);
  line-height: 1.4;
  margin: 10px 0 20px;
}

.home-banner .banner-animote .p2 {
  font-size: var(--fontsize20);
  margin-bottom: 30px;
}

.home-banner .banner-animote .p3 a {
  position: relative;
  min-width: 200px;
  padding: 0 20px;
  height: 50px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fontsize18);
}

.home-banner .banner-animote .p3 a:hover {
  background: var(--color1);
  border: 0;
}

.home-banner .banner-mySwiper .banner-button-next,
.home-banner .banner-mySwiper .banner-button-prev {
  position: absolute;
  top: 45%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  z-index: 1;
  cursor: pointer;
  transition: all 0.15s linear;
  border-radius: 50%;
  --swiper-navigation-size: 22px;
}

.home-banner .banner-mySwiper .banner-button-next:hover,
.home-banner .banner-mySwiper .banner-button-prev:hover {
  background: var(--color1);
}

.home-banner .banner-mySwiper .banner-pagination {
  top: 80%;
}

.home-banner .banner-mySwiper .swiper-pagination-bullet {
  border-radius: 0;
  position: relative;
  width: 45px;
  height: 5px;
  background: #eeee;
  opacity: 1;
  border-radius: 4px;
}

.home-banner .banner-mySwiper .swiper-pagination-bullet::before {
  content: "";
  border-radius: 0;
  position: absolute;
  width: 0;
  height: 100%;
  left: 0px;
  top: 0px;
  background: var(--color1);
  z-index: 2;
}

.home-banner .banner-mySwiper .swiper-pagination-bullet.cur::before {
  transition: width 5s linear;
  width: 100%;
}

/* home-num */
.home-num {
  margin-top: -130px;
  z-index: 1;
  position: relative;
}

.home-num .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 130px;
  background: rgba(0, 0, 0, 0.2);
  justify-content: space-between;
}

.home-num .list li {
  width: 20%;
  height: 100%;
  line-height: 1;
  color: #fff;
  padding: 20px 10px;
  opacity: 0.8;
  transition: all 0.2s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-num .list li em {
  font-size: var(--fontsize40);
  display: inline-block;
  transition: transform 0.2s linear;
}

.home-num .list li p {
  margin-top: 1.5em;
}

.home-num .list li span {
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
  margin-right: 4px;
}

.home-num .list li:hover em {
  transform: translateY(-5px);
}

/* home-about */
.home-about {
  padding: 60px 0;
  background: url(/images/home-about-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-about .l-wrap {
  position: relative;
}

.home-about .about-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.home-about .about-list .about-left {
  width: 52%;
}

.home-about .about-list .about-left .img {
  width: 100%;
  height: 100%;
}

.home-about .about-list .about-left .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.2s linear;
}

.home-about .about-list .about-left .img img:hover {
  transform: translate(-5px, 5px);
  transform-origin: bottom left;
}

.home-about .about-list .about-left .img-info {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 190px;
  height: 190px;
  border-radius: 6px;
  padding: 20px;
  background: var(--backgroundcolor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
  overflow: hidden;
  color: #fff;
  transition: all 0.2s ease;
}

.home-about .about-list .about-left .img-info::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  background-color: #FFFFFF;
  opacity: 0.1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 1;
  animation: aboutposition1 2s linear infinite;
}

.home-about .about-list .about-left .img-info::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -32px;
  background-color: #ffffff;
  opacity: 0.1;
  width: 120px;
  height: 140px;
  border-radius: 50%;
  z-index: 10;
  animation: aboutposition2 2s linear infinite;
}

@keyframes aboutposition1 {
  0% {
    right: -70px;
    top: -70px;
    opacity: 0.1;
  }

  50% {
    right: -55px;
    top: -55px;
    opacity: 0.2;
  }

  100% {
    right: -70px;
    top: -70px;
    opacity: 0.1;
  }
}

@keyframes aboutposition2 {
  0% {
    right: -30px;
    top: -32px;
    opacity: 0.1;
  }

  50% {
    right: -20px;
    top: -22px;
    opacity: 0.2;
  }

  100% {
    right: -30px;
    top: -32px;
    opacity: 0.1;
  }
}

.home-about .about-list .about-left .img-info .p1 {
  font-size: var(--fontsize46);
  font-weight: var(--fontbold5);
}

.home-about .about-list .about-left .img-info p:nth-child(n+2) {
  font-size: var(--fontsize17);
}

.home-about .about-list .about-right {
  width: 45%;
}

.home-about .about-list .about-right .home-title {
  text-align: left;
  color: var(--titlecolor);
  margin: 20px 0;
}

.home-about .about-list .about-right .about-nav {
  margin: 25px 0 20px;
  color: #000;
  font-size: var(--fontsize18);
  font-weight: var(--fontbold5);
}

.home-about .about-list .about-right .about-nav li {
  color: #d2d2d2;
  display: flex;
  align-items: center;
}

.home-about .about-list .about-right .about-nav li em {
  color: #d2d2d2;
  margin-right: 10px;
  font-size: var(--fontsize18);
}

/* home-solution */
.home-solution {
  padding: 3% 0 10%;
  background: #171717;
  z-index: 1;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.home-solution .solution-bg {
  border-radius: 50%;
  position: absolute;
  right: 5%;
  top: 0;
  z-index: -1;
  animation: solutionimg 10s linear infinite;
}

@keyframes solutionimg {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(180deg);
  }
}

.home-solution .home-title {
  color: #fff;
}

.home-solution .solution-box {
  position: relative;
  margin-top: 3%;
}

.home-solution .solution-box .solution-big-mySwiper .solution-big-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-solution .solution-big-mySwiper .solution-big-item .solution-big-img {
  width: 45%;
}

.home-solution .solution-big-mySwiper .solution-big-item .solution-big-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  border-radius: 10px;
}

.home-solution .solution-big-mySwiper .solution-big-item .solution-big-info {
  width: 53%;
}

.home-solution .solution-big-mySwiper .solution-big-item .solution-big-info .solution-big-title {
  color: #fff;
  font-size: var(--fontsize22);
  font-weight: var(--fontbold5);
  padding-top: 20px;
}

.home-solution .solution-big-mySwiper .solution-big-item .solution-big-info .solution-big-desc {
  color: #fff;
  opacity: 0.7;
  margin: 20px 0;
}

.home-solution .solution-small-mySwiper {
  position: absolute;
  left: 48%;
  bottom: 20px;
  padding: 0px 30px;
  width: 51%;
}

.home-solution .solution-small-mySwiper .solution-small-item {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.home-solution .solution-small-mySwiper .solution-small-item .solution-small-content {
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  padding: 4px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.home-solution .solution-small-mySwiper .solution-small-item .solution-small-content::after {
  content: "";
  width: 95%;
  height: 95%;
  background: #000000;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home-solution .solution-small-mySwiper .solution-small-item .solution-small-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.1s linear;
}

.home-solution .solution-small-mySwiper .solution-small-item.swiper-slide-thumb-active .solution-small-content {
  box-sizing: border-box;
  padding: 6px;
  border-radius: 50%;
  background-image: var(--backgroundcolor);
}

/* home-connection */
.home-connection .connection-box {
  display: inline-flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 160px;
  background: #fff;
  border-radius: var(--borderradius);
  box-shadow: 0px 3px 20px 0 rgba(233, 233, 233, 0.6);
  margin-top: -90px;
  overflow: hidden;
  z-index: 1;
}

.home-connection .connection-box .connection-img {
  width: 30%;
  height: 100%;
}

.home-connection .connection-box .connection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-connection .connection-box .connection-info {
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-connection .connection-info .connection-top {
  display: flex;
  margin-bottom: 15px;
}

.home-connection .connection-info .connection-top p {
  font-size: var(--fontsize32);
  font-weight: var(--fontbold6);
  line-height: 1.2;
  color: var(--color1);
}

.home-connection .connection-info .connection-top p:last-child {
  color: var(--color2);
  margin-left: 20px;
}

/* home-product */
.home-product {
  padding: 5% 0 0;
  position: relative;
}

.home-product .home-desc-box {
  text-align: center;
}

.home-product .product-box {
  width: 100%;
  height: 100%;
  margin-top: 30px;
  position: relative;
}

.home-product .product-box .product-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-product .product-box .product-slide .product-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.home-product .product-box .product-slide .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2/1;
  transition: all 0.2s linear;
}

.home-product .product-box .product-slide.swiper-slide-active .product-img img {
  animation: bannerimg 5s forwards;
}

@keyframes bannerimg {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.home-product .product-box .product-slide .product-info {
  position: absolute;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  top: 15%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.1s linear;
  text-align: center;
}

.home-product .product-slide .product-info .product-info-left {
  width: 50%;
}

.home-product .product-slide .product-info .product-info-left p {
  font-size: var(--fontsize38);
  color: #fff;
}

.home-product .product-slide .product-info .product-info-right {
  width: 50%;
}

.home-product .product-slide .product-info .product-info-right p:first-child {
  margin-bottom: 20px;
}

.home-product .product-slide .product-info .product-info-right p:first-child span:first-child {
  font-weight: var(--fontbold5);
  color: #fff;
  opacity: 0.8;
  margin-right: 30px;
  font-size: var(--fontsize20);
}

.home-product .product-slide:nth-child(3) .product-info-right p:first-child span:last-child {
  background: #BDBDBD;
  color: #77797B;
  padding: 0 10px;
  border-radius: var(--borderradius);
}

.home-product .product-slide .product-info .product-info-right p {
  color: #fff;
}

.home-product .product-box .swiper-slide-active .product-info {
  animation: productani 0.5s forwards;
  animation-delay: 0.6s;
}

@keyframes productani {
  0% {
    margin-top: 20px;
  }

  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.home-product .product-pagination {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: 30px;
  z-index: 1;
}

.home-product .product-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0 8px;
  width: 17px;
  height: 17px;
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(1) {
  background: radial-gradient(circle, #4F5E73, #101B2D);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(1)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #4F5E73;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(1).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(2) {
  background: radial-gradient(circle, #6C7D5E, #282D26);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(2)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #6C7D5E;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(2).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(3) {
  background: radial-gradient(circle, #f06fad, #5a273a);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(3)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #f06fad;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(3).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(4) {
  background: radial-gradient(circle, #3a93e8, #022d56);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(4)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #3a93e8;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(4).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(5) {
  background: radial-gradient(circle, #C6C4C3, #565658);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(5)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #69696b;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(5).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(6) {
  background: radial-gradient(circle, #e1c2eb, #433743);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(6)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #8d6a8d;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(6).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(7) {
  background: radial-gradient(circle, #f5a97d, #B42610);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(7)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #d58253;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(7).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(8) {
  background: radial-gradient(circle, #f3f5f6, #a5a2a2);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(8)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #f3f5f6;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(8).swiper-pagination-bullet-active::after {
  opacity: 1;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(9) {
  background: radial-gradient(circle, #4D515D, #000);
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(9)::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  opacity: 0;
  border: 2px solid #000;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.home-product .product-pagination .swiper-pagination-bullet:nth-child(9).swiper-pagination-bullet-active::after {
  opacity: 1;
}

/*  home-design */
.home-design {
  padding: 3% 0;
  position: relative;
  background: #E6E6E6;
  overflow: hidden;
}

.home-design .home-des-into {
  border-top: 2px solid var(--color1);
  border-bottom: 2px solid var(--color1);
}

.home-design .home-des {
  color: var(--color1);
}

.home-design .home-title {
  color: var(--color1);
}

.home-design .home-design-desc {
  color: var(--color1);
}

.home-design .home-design-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-design .home-design-top .home-title {
  width: 30%;
  text-align: left;
}

.home-design .home-design-top .home-design-desc {
  width: 65%;
}

.home-design .home-design-content {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.home-design .design-big-mySwiper {
  overflow: visible;
}

.home-design .design-big-mySwiper .design-big-slide {
  position: relative;
}

.home-design .design-big-mySwiper .design-big-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2/1;
}

.home-design .design-big-mySwiper .design-big-slide img {
  opacity: 0.3;
  transition: all 0.2s linear;
}

.home-design .design-big-mySwiper .design-big-slide.swiper-slide-active img {
  opacity: 1;
}

.home-design .design-big-mySwiper .design-big-slide .design-big-txt {
  position: absolute;
  color: #fff;
  left: 0;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  opacity: 0;
}

@keyframes textopacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.home-design .design-big-mySwiper .design-big-slide.swiper-slide-active .design-big-txt {
  animation: textopacity 1s forwards;
  animation-delay: 1s;
}

.home-design .home-design-small {
  display: flex;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 70px;
  z-index: 1;
}

.home-design .home-design-small .home-design-list {
  display: flex;
}

.home-design .home-design-small .home-design-list li {
  cursor: pointer;
}

.home-design .home-design-small .home-design-list li .design-small-title {
  color: #fff;
  opacity: 0.6;
  margin: 0px 55px 15px;
  font-size: var(--fontsize18);
}

.home-design .home-design-small .home-design-list li .design-small-line {
  width: 100%;
  height: 2px;
  background: #B5B9C2;
}

.home-design .home-design-small .home-design-list li.active .design-small-title {
  opacity: 1;
  /* font-weight: var(--fontbold6); */
  transition: all 0.2s linear;
}

.home-design .home-design-small .home-design-list li.active .design-small-line {
  background: var(--color1);
  transition: all 0.2s linear;
}

/* home-video  */
.home-video {
  position: relative;
  background: url("/images/home-video.png") no-repeat center;
  background-size: cover;
  padding: 200px 0;
}

.home-video.active::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}

.home-video .home-video-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.home-video .home-video-list .home-video-top .home-video-txt {
  color: #fff;
  opacity: 0.8;
  font-size: var(--fontsize22);
}

.home-video .home-video-list .home-video-top .home-video-name {
  color: #fff;
  font-weight: var(--fontbold6);
  font-size: var(--fontsize40);
  text-align: center;
}

.home-video .home-video-list .home-video-center {
  color: #fff;
  opacity: 0.8;
  text-align: center;
  margin: 50px 0 80px;
}

.home-video .home-video-list .home-video-bottom .home-video-btn {
  min-width: 220px;
  height: 45px;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s linear;
  font-weight: var(--fontbold6);
  cursor: pointer;
}

.home-video .home-video-list .home-video-bottom .home-video-btn:hover {
  background: #fff;
  color: #222;
}

#videoContainer {
  display: none;
  position: fixed;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999999;
}

#videoContainer .myVideo-wrap {
  position: relative;
  width: 90%;
  height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
}

#videoContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

#videoContainer .myVideo-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 20px;
  z-index: 99;
}

#videoContainer .myVideo-wrap::after {
  border-color: #fff;
  animation: homevideoani 3s linear infinite;
}

@keyframes homevideoani {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  25% {
    clip-path: inset(0 100% 0 0);
  }

  50% {
    clip-path: inset(0 0 100% 0);
  }

  75% {
    clip-path: inset(0 0 0 100%);
  }

  100% {
    clip-path: inset(100% 0 0 0);
  }
}

#closeVideoButton {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 2;
  font-size: 50px;
  right: 1%;
  top: 1%;
  border-radius: 10px;
  transition: all 0.2s linear;
  cursor: pointer;
}

#closeVideoButton:hover {
  background: #fff;
  color: #222;
}

/* home-experience */
.home-experience {
  position: relative;
  width: 100%;
  height: 800px;
}

.home-experience #home-experience-background {
  position: relative;
  width: 100%;
  height: 800px;
  object-fit: cover;
  z-index: -1;
}

#home-experience-background {
  transition: opacity 0.2s linear;
  opacity: 1;
}

#home-experience-background.active {
  opacity: 0;
}

.home-experience .home-experience-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 800px;
  z-index: 99;
}

.home-experience .home-experience-box .home-experience-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-experience .home-experience-box .home-experience-list .home-experience-item {
  width: 25%;
  position: relative;
  z-index: 2;
  border-right: 1px solid #707070;
  transition: all 0.4s;
}

.home-experience .home-experience-box .home-experience-list .home-experience-item:nth-child(1) {
  border-left: 1px solid #707070;
}

.home-experience .home-experience-box .home-experience-list .home-experience-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}

.home-experience .home-experience-box .home-experience-list .home-experience-item.active::before,
.home-experience .home-experience-box .home-experience-list .home-experience-item.active:hover::before {
  opacity: 1;
}

.home-experience .home-experience-list .home-experience-item .home-experience-info {
  padding: 40px 10px 40px 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s linear;
  overflow: hidden;
  color: #fff;
  opacity: 0;
}

.home-experience .home-experience-list .home-experience-item .home-experience-info::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #fff;
  z-index: -1;
  transition: all 0.4s;
}

.home-experience .home-experience-list .home-experience-item.active .home-experience-info::before {
  height: 100%;
}

.home-experience .home-experience-list .home-experience-item.active .home-experience-info {
  opacity: 1;
}

.home-experience .home-experience-list .home-experience-item.active .home-experience-info .home-experience-txt,
.home-experience .home-experience-list .home-experience-item.active .home-experience-info .home-experience-title {
  color: #000;
}

.home-experience .home-experience-list .home-experience-item .home-experience-info .home-experience-txt {
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
  margin-bottom: 10px;
}

.home-experience .home-experience-list .home-experience-item .home-experience-info .home-experience-title {
  font-weight: var(--fontbold5);
}

.home-experience .home-experience-list .home-experience-item .home-experience-btn a {
  position: absolute;
  bottom: 10px;
  right: 30px;
  color: #fff;
  font-size: var(--fontsize14);
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s;
  color: #fff;
}

.home-experience .home-experience-list .home-experience-item .home-experience-btn a:hover {
  color: var(--color2);
}

.home-experience .home-experience-list .home-experience-item.active .home-experience-btn a {
  opacity: 1;
  bottom: 50px;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  background-color: #000;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #ccc;
}

#modalVideo {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* home-detail */
.home-detail {
  background: #E6E6E6;
  padding: 3% 0;
}

.home-detail .home-detail-top {
  display: flex;
  flex-wrap: wrap;
  align-items: self-end;
  justify-content: space-between;
}

.home-detail .home-detail-top .home-detail-info {
  width: 65%;
}

.home-detail .home-detail-top .home-title {
  color: var(--color1);
  text-align: left;
}

.home-detail .home-detail-top .home-detail-desc {
  color: var(--color1);
  margin-top: 20px;
}

.home-detail .home-detail-top .home-detail-btn {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: right;
}

.home-detail .home-detail-top .home-detail-btn .home-detail-next,
.home-detail .home-detail-top .home-detail-btn .home-detail-prev {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color1);
  transition: all 0.3s linear;
}

.home-detail .home-detail-top .home-detail-btn .home-detail-next.swiper-button-disabled,
.home-detail .home-detail-top .home-detail-btn .home-detail-prev.swiper-button-disabled {
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.home-detail .home-detail-top .home-detail-btn .home-detail-next {
  margin-right: 20px;
}

.home-detail .home-detail-bottom {
  margin-top: 30px;
}

.home-detail .home-detail-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-detail .home-detail-slide .home-detail-left {
  width: 48%;
}

.home-detail .home-detail-slide .home-detail-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.home-detail .home-detail-slide .home-detail-left video {
  width: 100%;
  height: auto;
  aspect-ratio: 6/7;
  object-fit: cover;
}

.home-detail .home-detail-slide .home-detail-right video {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.home-detail .home-detail-slide .home-detail-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-detail .home-detail-slide .home-detail-right img {
  height: 60%;
}

.home-detail .home-detail-slide .home-detail-right .home-detail-content {
  padding: 0 30px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-detail .home-detail-slide .home-detail-title {
  font-weight: var(--fontbold6);
  font-size: var(--fontsize24);
  color: var(--color1);
}

.home-detail .home-detail-slide .home-detail-letter {
  color: var(--color1);
  margin-top: 20px;
  height: 40%;
}

/*  home-advantage */
.home-advantage {
  padding: 3% 0;
  position: relative;
  overflow: hidden;
}

.home-advantage .home-des-into {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.home-advantage .home-des {
  color: #fff;
}

.home-advantage .home-title {
  color: #fff;
}

.home-advantage .home-advantage-desc {
  color: #fff;
}

.home-advantage .home-advantage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-advantage .home-advantage-top .home-title {
  width: 30%;
  text-align: left;
}

.home-advantage .home-advantage-top .home-advantage-desc {
  width: 65%;
}

.home-advantage .home-advantage-content {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.home-advantage .advantage-big-mySwiper {
  overflow: visible;
}

.home-advantage .advantage-big-mySwiper .advantage-big-slide {
  position: relative;
}

.home-advantage .advantage-big-mySwiper .advantage-big-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2/1;
}

.home-advantage .advantage-big-mySwiper .advantage-big-slide video {
  opacity: 0.3;
  transition: all 0.2s linear;
}

.home-advantage .advantage-big-mySwiper .advantage-big-slide.swiper-slide-active video {
  opacity: 1;
}

.home-advantage .advantage-big-mySwiper .advantage-big-slide .advantage-big-txt {
  position: absolute;
  color: #fff;
  left: 0;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  opacity: 0;
}

@keyframes textopacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.home-advantage .advantage-big-mySwiper .advantage-big-slide.swiper-slide-active .advantage-big-txt {
  animation: textopacity 1s forwards;
  animation-delay: 1s;
}

.home-advantage .home-advantage-small {
  display: flex;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120px;
  z-index: 1;
}

.home-advantage .home-advantage-small .home-advantage-list {
  display: flex;
}

.home-advantage .home-advantage-small .home-advantage-list li {
  cursor: pointer;
}

.home-advantage .home-advantage-small .home-advantage-list li .advantage-small-title {
  color: #fff;
  opacity: 0.6;
  margin: 0px 55px 15px;
  font-size: var(--fontsize18);
}

.home-advantage .home-advantage-small .home-advantage-list li .advantage-small-line {
  width: 100%;
  height: 2px;
  background: #B5B9C2;
}

.home-advantage .home-advantage-small .home-advantage-list li.active .advantage-small-title {
  opacity: 1;
  transition: all 0.2s linear;
}

.home-advantage .home-advantage-small .home-advantage-list li.active .advantage-small-line {
  background: var(--color1);
  transition: all 0.2s linear;
}

/* home-news */
.home-news {
  background: #fff;
  padding: 3% 0;
}

.home-news .home-news-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-news .home-news-box .home-news-left {
  width: 48%;
  height: 450px;
}

.home-news .home-news-box .home-news-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news .home-news-box .home-news-right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.home-news .home-news-right li {
  display: inline-block;
  cursor: pointer;
}

.home-news .home-news-right li:nth-child(-n+4) {
  margin-bottom: 20px;
}

.home-news .home-news-right li .home-news-open {
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.home-news .home-news-right li .home-news-open em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #6a6969;
  border-radius: 50%;
  color: #fff;
  font-size: var(--fontsize12);
  color: #6a6969;
}

.home-news .home-news-right li.active .home-news-open {
  opacity: 1;
}

.home-news .home-news-right li.active .home-news-open em {
  background: var(--color1);
  color: #fff;
}

.home-news .home-news-right li .home-news-open .home-news-title {
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
  color: #222;
  flex: 1;
  margin-left: 10px;
}

.home-news .home-news-right li .home-news-close {
  margin-left: 31px;
  color: #4D515D;
  display: none;
}

.home-news .home-news-right li .home-news-close.home-news-data {
  display: flex;
  align-items: center;
}

.home-news .home-news-right li .home-news-close .home-news-data em {
  margin-right: 8px;
  display: inline-block;
}

.home-news .home-news-right li .home-news-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 50px;
  border-radius: 5px;
  color: #fff;
  font-weight: var(--fontbold6);
  background: var(--color1);
  margin-top: 20px;
  z-index: 1;
  overflow: hidden;
}

.home-news .home-news-right li .home-news-btn a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #022d56;
  transform: scale(0);
  transform-origin: center;
  transition: all 0.3s linear;
  z-index: -1;
}

.home-news .home-news-right li .home-news-btn a:hover::before {
  transform: scale(1);
}

/* home-footer */
.home-footer {
  background: #F4F4F4;
}

.home-footer .home-footer-top {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.home-footer .home-footer-top .home-footer-item {
  width: 32%;
}

.home-footer .home-footer-item .home-footer-title {
  color: var(--color1);
  font-weight: var(--fontbold6);
  font-size: var(--fontsize22);
}

.home-footer .home-footer-item:first-child ul li {
  width: 100%;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}

.home-footer .home-footer-item:first-child ul em {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  color: var(--color1);
  font-weight: var(--fontbold6);
  margin-right: 10px;
}

.home-footer .home-footer-item:first-child ul a {
  flex: 1;
  color: #555;
  transition: all 0.2s linear;
}

.home-footer .home-footer-item:first-child ul a:hover {
  color: var(--color1);
  text-decoration: underline;
}

.home-footer .home-footer-item:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

.home-footer .home-footer-item:nth-child(2) ul li {
  display: flex;
  align-items: center;
  width: 50%;
  margin-top: 5px;
}

.home-footer .home-footer-item:nth-child(2) ul em {
  color: #4D515D;
  margin-right: 5px;
}

.home-footer .home-footer-item:nth-child(2) ul a {
  color: #555;
  transition: all 0.2s linear;
}

.home-footer .home-footer-item:nth-child(2) ul a:hover {
  color: var(--color1);
  text-decoration: underline;
}

.home-footer .home-footer-item:last-child ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.home-footer .home-footer-item:last-child ul li {
  width: 45%;
  text-align: center;
}

.home-footer .home-footer-item:last-child .home-footer-img {
  padding: 15px;
  background: #fff;
  border-radius: 5px;
}

.home-footer .home-footer-item:last-child .home-footer-desc {
  color: #555;
}

.home-footer .home-footer-item:last-child .home-footer-text {
  width: 80%;
  text-align: center;
  margin: 10px auto 0;
  color: #555;
}

.home-btfooter {
  background: var(--color1);
  padding: 10px 0;
}

.home-btfooter .home-btfooter-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-btfooter .home-footer-left {
  display: flex;
  align-items: center;
}

.home-btfooter .home-footer-left .home-footer-words {
  font-weight: var(--fontbold6);
  font-size: var(--fontsize20);
  position: relative;
  padding-right: 25px;
  margin-right: 15px;
}

.home-btfooter .home-footer-left .home-footer-words::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background: #777;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home-btfooter .home-footer-left ul {
  display: flex;
  align-items: center;
}

.home-btfooter .home-footer-left ul li:nth-child(-n+4) {
  margin-right: 15px;
}

.home-btfooter .home-footer-left ul li em {
  font-size: var(--fontsize18);
}

.head-info .m-menu {
  display: none;
}

@media (max-width: 1500px) {
  .home-solution .solution-small-mySwiper {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 1024px) {
  .l-wrap {
    padding: 0 15px;
  }

  .head-info .m-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 40px;
    cursor: pointer;
  }

  .m-menu span {
    position: absolute;
    background: #ccc;
    height: 2px;
    border-radius: 4px;
    left: 0px;
    transition: all 0.2s linear;
  }

  .m-menu span:nth-child(1) {
    width: 28px;
    top: 25%;
  }

  .m-menu span:nth-child(2) {
    width: 24px;
    top: 48%;
  }

  .m-menu span:nth-child(3) {
    width: 26px;
    top: 73%;
  }

  .m-menu.act span {
    top: 48%;
    width: 32px;
  }

  .m-menu.act span:nth-child(1) {
    transform: rotate(45deg);
  }

  .m-menu.act span:nth-child(2) {
    width: 0px;
  }

  .m-menu.act span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .opacity {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    z-index: -1;
    display: none;
  }

  .head-info .head-nav {
    position: fixed;
    top: 70px;
    right: 0px;
    width: 80%;
    height: calc(100vh - 70px);
    background: #FFFFFF;
    flex-direction: column-reverse;
    transition: all 0.2s linear;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateX(80%);
  }

  .head-nav.head-nav-act {
    opacity: 1;
    overflow: inherit;
    visibility: inherit;
    transform: translateX(0);
  }

  .head-nav .nav-ul {
    width: 100%;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
    padding-bottom: 100px;
  }

  .head-nav .nav-ul>li {
    height: auto;
    width: 100%;
  }

  .head-top {
    display: none;
  }

  .head-info {
    height: 70px !important;
    background: #111;
  }

  .head-info .head-logo a img {
    height: 25px;
  }

  .head-info .head-nav .nav-ul>li>a {
    color: #333 !important;
    height: auto;
    justify-content: space-between;
  }

  .head-info .head-nav .nav-ul>li {
    height: auto;
    margin-bottom: 6px;
  }

  .head-info .head-nav .nav-ul>li>a em {
    display: none;
  }

  .head-info .head-nav .nav-ul>li>ul {
    display: block;
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    box-shadow: none;
    padding-left: 50px;
  }

  .head-info .head-nav .nav-ul>li>ul em {
    display: none;
  }

  .head-info .head-nav .nav-ul>li>ul a {
    font-size: 16px;
    height: auto;
    line-height: inherit;
    padding: 5px 0;
  }

  .head-info .head-nav .nav-ul>li>ul ul li a {
    justify-content: space-between;
  }

  .head-info .head-nav .nav-ul>li>ul ul {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    padding-left: 30px;
    box-shadow: none;
  }

  .home-banner .banner-animote .p1 {
    font-size: var(--fontsize24);
  }

  .home-banner .banner-animote .p2 {
    font-size: var(--fontsize16);
  }

  .home-banner .banner-mySwiper .banner-button-next,
  .home-banner .banner-mySwiper .banner-button-prev {
    display: none;
  }

  .home-num .list {
    height: auto;
  }

  .home-num .list li {
    width: 50%;
  }

  .home-about .about-list {
    flex-direction: column;
  }

  .home-about .about-list .about-left,
  .home-about .about-list .about-right {
    width: 100%;
  }

  .home-about .about-list .about-right {
    margin-top: 20px;
  }

  .home-about .about-list .about-left .img-info {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
    height: auto;
    padding: 15px;
  }

  .home-about .about-list .about-left .img-info .p1 {
    font-size: var(--fontsize32);
  }

  .home-solution .solution-box .solution-big-mySwiper .solution-big-item {
    flex-direction: column;
  }

  .home-solution .solution-box .solution-big-mySwiper .solution-big-item .solution-big-img,
  .home-solution .solution-box .solution-big-mySwiper .solution-big-item .solution-big-info {
    width: 100%;
  }

  .home-solution .solution-box .solution-big-mySwiper .solution-big-item .solution-big-title {
    font-size: var(--fontsize18);
  }

  .home-connection .connection-box {
    margin: 0;
  }

  .home-connection .connection-info .connection-top {
    flex-direction: column;
  }

  .home-connection .connection-info .connection-top p {
    font-size: var(--fontsize24);
  }

  .home-connection .connection-info .connection-top p:last-child {
    margin-left: 0;
  }

  .home-experience .home-experience-box .home-experience-list .home-experience-item {
    width: 100%;
    height: 250px;
  }

  .home-experience .home-experience-list .home-experience-item .home-experience-info {
    height: 100%;
  }

  .home-experience,
  .home-experience #home-experience-background,
  .home-experience .home-experience-box {
    height: 1000px;
  }

  .home-news .home-news-box {
    flex-direction: column;
  }

  .home-news .home-news-box .home-news-left {
    width: 100%;
    height: auto;
  }

  .home-news .home-news-box .home-news-right {
    width: 100%;
    margin-top: 10px;
  }

  .home-news .home-news-right li .home-news-open .home-news-title {
    font-size: 18px;
  }

  .home-footer .home-footer-top {
    flex-direction: column;
  }

  .home-footer .home-footer-top .home-footer-item {
    width: 100%;
    margin-bottom: 2em;
  }

  .home-footer .home-footer-top .home-footer-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .home-connection .connection-box {
    flex-direction: column;
    height: auto;
  }

  .home-connection .connection-box .connection-img {
    width: 100%;
  }

  .home-connection .connection-box .connection-info {
    width: 100%;
    padding: 20px;
  }

  .home-connection .connection-info .connection-top p {
    font-size: var(--fontsize18);
  }

  .home-product .product-box .product-slide .product-info {
    display: none;
  }

  .home-product .product-pagination {
    bottom: 0;
  }

  .home-design .home-design-top {
    flex-direction: column;
  }

  .home-design .home-desc-box {
    text-align: center;
  }

  .home-design .home-design-top .home-title {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .home-design .home-design-top .home-design-desc {
    width: 100%;
  }

  .home-design .home-design-small .home-design-list li .design-small-title {
    margin: 10px;
    color: #333;
  }

  .home-design .home-design-small {
    position: static;
    transform: none;
  }

  .home-detail .home-detail-top {
    flex-direction: column;
  }

  .home-detail .home-detail-top .home-detail-info {
    width: 100%;
  }

  .home-detail .home-detail-top .home-detail-btn {
    width: 100%;
  }

  .home-detail .home-detail-slide {
    flex-direction: column;
  }

  .home-detail .home-detail-slide .home-detail-left,
  .home-detail .home-detail-slide .home-detail-right {
    width: 100%;
  }

  .home-detail .home-detail-slide .home-detail-right .home-detail-content {
    padding: 20px 0;
  }

  .home-detail .home-detail-slide .home-detail-title {
    font-size: var(--fontsize20);
  }

  .home-advantage .home-advantage-top {
    flex-direction: column;
  }

  .home-advantage .home-advantage-top .home-title {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }

  .home-advantage .home-advantage-top .home-advantage-desc {
    width: 100%;
  }

  .home-advantage .home-advantage-small {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .home-advantage .advantage-big-mySwiper .advantage-big-slide .advantage-big-txt {
    position: static;
    transform: none;
  }

  .home-advantage .home-advantage-small .swiper {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .home-advantage .home-advantage-small .home-advantage-list {
    flex-direction: column;
  }

  .home-advantage .home-advantage-small .home-advantage-list li .advantage-small-title {
    margin: 10px;
  }

  .home-btfooter {
    text-align: center;
  }
}