/* page-banner */
.page-banner .page-banner-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px;
}

.page-banner .page-banner-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-banner .page-banner-box img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner .page-banner-box .page-banner-card {
  position: absolute;
  padding: 0 20px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.page-banner .page-banner-card .page-banner-title {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize30);
  opacity: 1;
  color: #fff;
}

.page-banner .page-banner-btn a {
  position: relative;
  min-width: 160px;
  padding: 0 20px;
  height: 45px;
  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);
  margin-top: 30px;
}

.page-banner .page-banner-card .page-banner-btn a:hover {
  background: var(--color1);
  border: none;
}

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

  50% {
    transform: scale(1.1);
  }

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

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-banner .page-banner-box img {
  animation: zoomInOut 6s forwards ease-in-out;
}

.page-banner .page-banner-card .page-banner-title,
.page-banner .page-banner-card .page-banner-btn {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.5s forwards;
}

/* about*/
/* about-us-holde */
.about-us-holde {
  background: #171717;
  padding: 12px 0;
  border: 2px solid var(--color1);
}

.about-us-holde .page-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-us-holde .page-list .page-item {
  font-size: var(--fontsize18);
}

.about-us-holde .page-list ul {
  display: flex;
  align-items: center;
}

.about-us-holde .page-list ul li em {
  margin-right: 5px;
}

.about-us-holde .page-list ul li:not(:last-child) {
  margin-right: 10px;
}

/* about-section1 */
.about-section1 {
  padding: 3% 0;
  background: #fff;
}

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

.about-section1 .about-section1-list .about-section1-left {
  width: 50%;
  position: relative;
}

.about-section1 .about-section1-left .about-section1-bigimg {
  position: relative;
  display: block;
  width: 550px;
  height: 550px;
  margin: 0 100px 20px;
  z-index: 1;
}

.about-section1 .about-section1-left .about-section1-bigimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section1 .about-section1-left .about-section1-bigimg::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  bottom: -20px;
  width: 20px;
  background: var(--color1);
}

.about-section1 .about-section1-left .about-section1-bigimg::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 20px;
  left: -20px;
  height: 20px;
  background: var(--color1);
}

.about-section1 .about-section1-left .about-section1-smallimg {
  position: absolute;
  width: 240;
  height: 130px;
  z-index: 1;
  top: 80px;
  right: 25px;
}

.about-section1 .about-section1-left .about-section1-smallimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section1 .about-section1-left .about-section1-bigtext1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  position: absolute;
  bottom: 140px;
  right: 50px;
  transform: rotate(90deg);
  opacity: 0.4;
  z-index: 1;
}

.about-section1 .about-section1-left .about-section1-box {
  position: absolute;
  max-width: 350px;
  bottom: 105px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 40px 40px;
  z-index: 1;
}

.about-section1 .about-section1-left .about-section1-box .about-section1-item {
  position: relative;
  display: block;
}

.about-section1 .about-section1-left .about-section1-box .about-section1-title {
  font-size: var(--fontsize14);
  font-weight: 800;
  margin-bottom: 20px;
  color: #13223c;
  margin-bottom: 3px;
}

.about-section1 .about-section1-left .about-section1-box .about-section1-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #eff1f5;
  margin-bottom: 19px;
}

.about-section1 .about-section1-left .about-section1-box .about-section1-bar .about-section1-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 4px;
  background: var(--color1);
  transition: all 1s linear;
}

.about-section1 .about-section1-left .about-section1-box .about-section1-bar .about-section1-barcount {
  position: absolute;
  right: 0px;
  bottom: 12px;
  color: gray;
  line-height: 14px;
  font-size: var(--fontsize14);
  text-align: center;
  font-weight: var(--fontbold5);
  opacity: 0;
  transition: all 0.1s ease;
}

.about-section1 .about-section1-left .about-section1-bigtext2 {
  position: absolute;
  top: 120px;
  left: -70px;
  font-size: 50px;
  line-height: 60px;
  color: var(--color1);
  font-weight: 800;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(90deg);
}

.about-section1 .about-section1-list .about-section1-right {
  width: 46%;
}

.about-section1 .about-section1-right .about-section1-txt {
  position: relative;
  color: gray;
  padding-bottom: 7px;
  font-family: var(--fontbold6);
}

.about-section1 .about-section1-right .about-section1-txt::before {
  width: 35px;
  height: 2px;
  background: var(--color1);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
}

.about-section1 .about-section1-right .home-title {
  margin: 20px 0 10px;
  text-align: left;
  color: #13223c;
}

.about-section1 .about-section1-right .about-section1-info {
  color: var(--color1);
  font-weight: var(--fontbold8);
  font-size: var(--wmpage-font20);
  margin: 30px 0;
}

.about-section1 .about-section1-right .about-section1-desc {
  color: #888;
}

.about-section1 .about-section1-right .about-section1-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0;
}

.about-section1 .about-section1-content .about-section1-img {
  width: 30%;
}

.about-section1 .about-section1-content .about-section1-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 50%;
}

.about-section1 .about-section1-content .about-section1-letter {
  width: 66%;
  display: flex;
  flex-direction: column;
}

.about-section1 .about-section1-content .about-section1-letter li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: var(--fontbold6);
  color: #13223c;
}

.about-section1 .about-section1-content .about-section1-letter li em {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--color1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fontsize14);
  margin-right: 5px;
}

.about-section1 .about-section1-bottom {
  display: flex;
}

.about-section1 .about-section1-bottom a {
  position: relative;
  min-width: 200px;
  padding: 0 20px;
  height: 60px;
  background: var(--color1);
  text-transform: uppercase;
  color: #fff !important;
  font-weight: var(--fontbold6);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-right: 30px;
  z-index: 1;
  transition: all 0.2s linear;
}

.about-section1 .about-section1-bottom a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  left: 0;
  top: 0;
  color: #fff;
  background: #13223c;
  border-radius: 5px;
  transform-origin: center;
  transform: scaleX(0);
  transition: all 0.3s linear;
  z-index: -1;
}

.about-section1 .about-section1-bottom a:hover::after {
  transform: scaleX(1);
}

.about-section1 .about-section1-bottom .about-section1-phone {
  display: flex;
  align-items: center;
}

.about-section1 .about-section1-bottom .about-section1-phone .about-section1-icon {
  position: relative;
  display: inline-flex;
  width: 65px;
  height: 65px;
  background: var(--color1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 40px;
  animation: about-section1 1s linear infinite;
}

@keyframes about-section1 {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(0, 0, 0, 0.3), 0 0 0 20px rgba(0, 0, 0, 0.3);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.3), 0 0 0 20px rgba(0, 0, 0, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}

.about-section1 .about-section1-bottom .about-section1-phone .about-section1-icon em {
  font-size: var(--fontsize30);
  color: #ffff;
}

.about-section1 .about-section1-bottom .about-section1-phone .about-section1-phtxt p:first-child {
  color: gray;
  font-size: var(--fontsize14);
  line-height: 1.4;
}

.about-section1 .about-section1-bottom .about-section1-phone .about-section1-phtxt p:last-child {
  font-weight: var(--fontbold6);
  font-size: var(--fontsize18);
  line-height: 1.4;
}

/* about-section2 */
.about-section2 .about-section2-box {
  padding: 3% 0;
  position: relative;
  background-image: url(/images/about-us-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.about-section2 .about-section2-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.about-section2 .about-section2-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-section2 .about-section2-list .about-section2-item {
  width: 32%;
  position: relative;
  height: auto;
  margin-top: 30px;
}

.about-section2 .about-section2-list .about-section2-item::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background: #999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s linear;
}

.about-section2 .about-section2-list .about-section2-item::after {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background: #999;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s linear;
}

.about-section2 .about-section2-list .about-section2-item:hover::before,
.about-section2 .about-section2-list .about-section2-item:hover::after {
  width: 110%;
  opacity: 1;
}

.about-section2 .about-section2-item .about-section2-top {
  text-align: center;
}

.about-section2 .about-section2-item .about-section2-info {
  position: relative;
  padding: 20px 30px;
}

.about-section2 .about-section2-item .about-section2-info::before {
  position: absolute;
  content: "";
  height: 10%;
  width: 1px;
  background: #999;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s linear;
}

.about-section2 .about-section2-item .about-section2-info::after {
  position: absolute;
  content: "";
  height: 10%;
  width: 1px;
  background: #999;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s linear;
}

.about-section2 .about-section2-item:hover .about-section2-info::before,
.about-section2 .about-section2-item:hover .about-section2-info::after {
  height: 110%;
  opacity: 1;
}

.about-section2 .about-section2-item .about-section2-top .about-section2-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px dashed #fff;
}

.about-section2 .about-section2-item .about-section2-top .about-section2-icon em {
  font-size: var(--fontsize30);
  color: #fff;
}

.about-section2 .about-section2-item .about-section2-title {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize28);
  margin: 20px 0 15px;
}

.about-section2 .about-section2-item .about-section2-line {
  width: 30%;
  height: 2px;
  background: #fff;
  margin: 0 auto 10px;
}

.about-section2 .about-section2-item .about-section2-desc p {
  color: #fff;
  font-size: var(--fontsize15);
  opacity: 0.5;
}

.about-section2 .about-section2-item .about-section2-desc span {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize18);
  opacity: 1;
}

/* about-section3 */
.about-section3 {
  background: #fff;
  padding: 3% 0;
}

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

.about-section3 .about-section3-desc {
  max-width: 1000px;
  margin: 10px auto 0;
  text-align: center;
  color: var(--color1);
  opacity: 0.8;
}

.about-section3 .about-section3-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-section3 .about-section3-list .about-section3-item {
  flex: 8;
  transition: all 0.9s;
  border-radius: 5px;
  height: 500px;
  position: relative;
  border: 2px solid #E5E8E8;
  overflow: hidden;
  margin-top: 30px;
}

.about-section3 .about-section3-item:nth-child(-n+7) {
  margin-right: 10px;
}

.about-section3 .about-section3-item.active {
  flex: 50;
}

.about-section3 .about-section3-item.active .about-section3-img {
  opacity: 1;
}

.about-section3 .about-section3-item.active .about-section3-title {
  opacity: 0;
}

.about-section3 .about-section3-item.active .about-section3-inner {
  opacity: 1;
  transform: translateY(0);
}

.about-section3 .about-section3-item.active::after {
  opacity: 1;
}

.about-section3 .about-section3-title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: rotate(-90deg);
  width: 450px;
  height: auto;
  left: -166px;
  bottom: 230px;
  font-weight: var(--fontbold6);
  font-size: var(--fontsize22);
  color: var(--color1);
  transition: opacity 0.4s;
  opacity: 1;
  z-index: 2;
}

.about-section3 .about-section3-title em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34, 147, 167, 0.15);
  transform: rotate(30deg);
}

.about-section3 .about-section3-inner {
  position: absolute;
  display: flex;
  justify-content: space-between;
  bottom: 20px;
  left: 20px;
  right: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  color: #fff;
  font-weight: var(--fontbold6);
  font-size: var(--fontsize22);
  z-index: 2;
}

.about-section3 .about-section3-inner em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--color1);
  transform: rotate(-30deg);
}

.about-section3 .about-section3-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s;
}

.about-section3 .about-section3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section3 .about-section3-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

/* about-section4 */
.about-section4 {
  padding: 3% 0;
  background: #fff;
}

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

.about-section4 .about-section4-box .about-section4-left {
  width: 45%;
  position: relative;
  padding: 0 70px 100px 0;
}

.about-section4 .about-section4-left img:first-child {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 6/5;
  object-fit: cover;
}

.about-section4 .about-section4-left img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: auto;
  border-left: 10px solid var(--color1);
  border-top: 10px solid var(--color1);
  z-index: 1;
}

.about-section4 .about-section4-box .about-section4-right {
  width: 50%;
}

.about-section4 .about-section4-right .about-section4-text {
  display: flex;
  align-items: center;
  padding-left: 35px;
  position: relative;
  font-weight: var(--fontbold6);
  font-size: var(--fontsize17);
  color: var(--color1);
}

.about-section4 .about-section4-right .about-section4-text em {
  display: inline-block;
  color: var(--color1);
  margin-left: 18px;
  animation: about-section4text 3s infinite linear;
}

@keyframes about-section4text {
  0% {
    transform: translateX(-15px);
  }

  50% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(-15px);
  }
}

.about-section4 .about-section4-right .about-section4-text::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  background: var(--color1);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-section4 .about-section4-right .home-title {
  color: var(--color1);
  margin: 10px 0;
  text-align: left;
}

.about-section4 .about-section4-right .about-section4-desc {
  color: #888;
}

.about-section4 .about-section4-right .about-section4-list li {
  position: relative;
  display: block;
  margin-top: 30px;
}

.about-section4 .about-section4-right .about-section4-list li .about-section4-title {
  font-weight: var(--fontbold6);
  font-size: var(--fontsize20);
  margin-bottom: 10px;
  color: var(--color1);
}

.about-section4 .about-section4-right .about-section4-list li .about-section4-bar {
  position: relative;
  width: 100%;
  height: 7px;
  background: #E9E9E9;
  border-radius: 5px;
}

.about-section4 .about-section4-right .about-section4-list li .about-section4-inner {
  position: relative;
  display: block;
  width: 0;
  height: 7px;
  transition: width 1.2s linear;
  border-radius: 5px;
  background: var(--color1);
}

.about-section4 .about-section4-right .about-section4-list li .about-section4-barcount {
  font-weight: var(--fontbold6);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 27px;
  padding: 0 20px;
  background: var(--color1);
  color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: opacity 1s linear;
  opacity: 0;
  z-index: 1;
}

.about-section4 .about-section4-right .about-section4-list li .about-section4-inner em {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 98.8%;
  transform: translateY(-50%);
  font-size: var(--fontsize32);
  color: var(--color1);
  transition: opacity 1s linear;
  opacity: 0;
}

.about-section4 .about-section4-right .about-section4-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  height: 50px;
  border-radius: 7px;
  background: var(--color1);
  padding: 0 20px;
  color: #fff;
  font-weight: var(--fontbold6);
  font-size: var(--fontsize18);
  overflow: hidden;
  margin-top: 40px;
  transition: all 0.3s linear;
  z-index: 1;
}

.about-section4 .about-section4-right .about-section4-btn em {
  margin-left: 7px;
  font-size: var(--fontsize15);
}

.about-section4 .about-section4-right .about-section4-btn span {
  background-color: #000;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.about-section4 .about-section4-right .about-section4-btn .about-section4-span1 {
  left: 0;
  transition-delay: 0.105s;
  border-radius: 7px 0px 0px 7px;
}

.about-section4 .about-section4-right .about-section4-btn .about-section4-span2 {
  left: 25%;
  transition-delay: 0.105s;
}

.about-section4 .about-section4-right .about-section4-btn .about-section4-span3 {
  left: 50%;
  transition-delay: 0.105s;
}

.about-section4 .about-section4-right .about-section4-btn .about-section4-span4 {
  left: 75%;
  transition-delay: 0s;
  border-radius: 0 7px 7px 0;
}

.about-section4 .about-section4-right .about-section4-btn a:hover span {
  opacity: 1;
  transform: scale(1);
}

/* about-page1 */
.about-page1 {
  padding: 3% 0;
  background: #fff;
}

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

.about-page1 .about-page1-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-page1 .about-page1-box .about-page1-item {
  width: 100%;
  position: relative;
  padding: 20px 25px;
  margin-top: 30px;
  border-radius: 30px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  background: #fff;
  z-index: 1;
}

.about-page1 .about-page1-item .about-page1-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 30px 30px 30px 0;
  background: linear-gradient(to right, #4e68d0 0%, var(--color2) 50%, var(--color1) 100%);
  background-size: 200% auto;
  transition: all 0.4s ease-in-out;
}

.about-page1 .about-page1-item .about-page1-icon em {
  font-size: var(--fontsize40);
  color: #fff;
}

.about-page1 .about-page1-item:hover .about-page1-icon {
  background-position: right center;
}

.about-page1 .about-page1-item .about-page1-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 94%;
  height: 94%;
  border-radius: 30px;
  border: 3px solid var(--color2);
  transition: all 0.3s linear;
  border-radius: 30px 30px 30px 0;
  z-index: -1;
}

.about-page1 .about-page1-item:hover .about-page1-icon::before {
  left: 0;
  top: 0;
}

.about-page1 .about-page1-item .about-page1-title {
  font-size: var(--fontsize22);
  font-weight: var(--fontbold6);
  color: var(--color1);
  margin: 25px 0 6px;
}

.about-page1 .about-page1-item .about-page1-desc {
  color: #888;
}

.about-page1 .about-page1-item .about-page1-desc p {
  margin-top: 10px;
}

.about-page1 .about-page1-item .about-page1-desc span {
  font-weight: var(--fontbold6);
  color: var(--color1);
  font-size: var(--fontsize17);
}

.about-page1 .about-page1-item .about-page1-mum {
  position: absolute;
  right: 30px;
  top: 0px;
  font-size: 52px;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--color2);
  -webkit-text-fill-color: transparent;
}

/* about-page2 */
.about-page2 {
  background: #fff;
  padding: 3% 0;
}

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

.about-page2 .about-page2-box {
  padding: 60px 20px;
}

.about-page2 .about-page2-slide {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-page2 .about-page2-slide .about-page2-img {
  position: relative;
  overflow: hidden;
  width: 50%;
  position: relative;
}

.about-page2 .about-page2-slide .about-page2-img::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #4e68d0 25%, #08123b 100%);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}

.about-page2 .about-page2-slide:hover .about-page2-img::before {
  opacity: 0.6;
}

.about-page2 .about-page2-slide .about-page2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page2 .about-page2-slide .about-page2-table {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-page2 .about-page2-slide ul {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.about-page2-slide ul li {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
  visibility: hidden;
}

.about-page2 .about-page2-slide:hover ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.about-page2 .about-page2-slide:hover ul li:nth-child(2) {
  transition-delay: 0.25s;
}

.about-page2 .about-page2-slide:hover ul li:nth-child(3) {
  transition-delay: 0.4s;
}

.about-page2 .about-page2-slide:hover ul li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.about-page2 .about-page2-slide ul li em {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: var(--color1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about-page2 .about-page2-slide ul li em:hover {
  transform: translateY(-5px);
  background-color: #fff;
  color: var(--color1);
}

.about-page2 .about-page2-slide .about-page2-connect {
  letter-spacing: 13px;
  color: #fff;
  font-weight: var(--fontbold7);
  position: relative;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.3s linear;
  opacity: 0;
  transform: translateY(20px);
}

.about-page2 .about-page2-slide:hover .about-page2-connect {
  opacity: 1;
  transform: translateY(0);
}

.about-page2 .about-page2-slide .about-page2-connect::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 20px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
}

.about-page2 .about-page2-slide .about-page2-connect::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 20px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  right: -21px;
}

.about-page2 .about-page2-slide .about-page2-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 0 40px;
  border-radius: 0 10px 10px 0;
  box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.07);
}

.about-page2 .about-page2-slide .about-page2-top {
  display: flex;
  align-items: center;
  color: var(--color1);
  font-weight: var(--fontbold6);
  font-size: var(--fontsize22);
}

.about-page2 .about-page2-slide .about-page2-top em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ddd;
  font-size: var(--fontsize20);
  margin-left: 10px;
}

.about-page2 .about-page2-info:hover .about-page2-top em {
  animation: page2icon 1s infinite linear;
}

@keyframes page2icon {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.about-page2 .about-page2-info .about-page2-post {
  display: flex;
  align-items: center;
  font-weight: var(--fontbold7);
  margin: 5px 0;
  color: var(--color1);
}

.about-page2 .about-page2-info .about-page2-post em {
  margin-right: 5px;
}

.about-page2 .about-page2-info .about-page2-degree {
  display: flex;
  align-items: center;
  font-weight: var(--fontbold7);
  margin-bottom: 5px;
  color: var(--color1);
}

.about-page2 .about-page2-info .about-page2-degree em {
  margin-right: 5px;
}

.about-page2 .about-page2-info .about-page2-desc {
  color: #999;
  margin-top: 10px;
}

.about-page2 .about-page2-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 50px;
  border-radius: 5px;
  padding: 0 20px;
  color: #fff;
  background: var(--color);
  font-weight: var(--fontbold6);
  font-size: var(--wmpage-font18);
  margin-top: 20px;
  overflow: hidden;
  transition: transform 0.2s;
}

.about-page2 .about-page2-btn a::before,
.about-page2 .about-page2-btn a::after,
.about-page2 .about-page2-bubble1,
.about-page2 .about-page2-bubble2,
.about-page2 .about-page2-bubble3 {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  bottom: -20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s;
}

.about-page2 .about-page2-btn a::before {
  width: 12px;
  height: 12px;
  left: 20%;
}

.about-page2 .about-page2-btn a::after {
  width: 15px;
  height: 15px;
  left: 40%;
}

.about-page2 .about-page2-btn a:hover::before {
  opacity: 1;
  animation: bubble1 1.8s ease-out infinite;
}

.about-page2 .about-page2-btn a:hover::after {
  opacity: 1;
  animation: bubble2 2s ease-out 0.3s infinite;
}

.about-page2 .about-page2-btn a .about-page2-bubble1 {
  width: 8px;
  height: 8px;
  left: 60%;
  bottom: -10px;
}

.about-page2 .about-page2-btn a .about-page2-bubble2 {
  width: 10px;
  height: 10px;
  left: 70%;
  bottom: -12px;
}

.about-page2 .about-page2-btn a .about-page2-bubble3 {
  width: 6px;
  height: 6px;
  left: 80%;
  bottom: -8px;
}

.about-page2 .about-page2-btn a:hover .about-page2-bubble1 {
  opacity: 1;
  animation: bubble3 1.5s ease-out 0.1s infinite;
}

.about-page2 .about-page2-btn a:hover .about-page2-bubble2 {
  opacity: 1;
  animation: bubble1 1.7s ease-out 0.5s infinite;
}

.about-page2 .about-page2-btn a:hover .about-page2-bubble3 {
  opacity: 1;
  animation: bubble2 2.2s ease-out 0.7s infinite;
}

.about-page2 .about-page2-pagination {
  text-align: center;
  margin-top: 40px;
}

.about-page2 .about-page2-pagination .swiper-pagination-bullet {
  background: var(--color1);
  margin: 0 8px;
  position: relative;
}

.about-page2 .about-page2-pagination .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--color1);
  border-radius: 50%;
  left: -4px;
  top: -4px;
  opacity: 0;
  transition: all 0.3s linear;
}

.about-page2 .about-page2-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
}

/* about-page3 */
.about-page3 {
  padding: 3% 0;
  background-color: #fff;
}

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

.about-page3 .about-page3-desc {
  max-width: 1000px;
  margin: 10px auto 0;
  text-align: center;
  color: var(--color1);
  opacity: 0.8;
}

.about-page3 .about-page3-box {
  position: relative;
  margin-top: 60px;
  padding: 0 60px;
}

.about-page3 .about-page3-box .swiper-container {
  overflow: hidden;
  padding: 10px;
}

.about-page3 .about-page3-box .swiper-slide .about-page3-info {
  background-color: #fff;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  position: relative;
  min-height: 250px;
}

.about-page3 .about-page3-box .swiper-slide .about-page3-num {
  font-weight: var(--fontbold6);
  color: var(--color1);
  font-size: var(--fontsize17);
}

.about-page3 .about-page3-box .swiper-slide .about-page3-title {
  color: var(--color1);
  font-weight: var(--fontbold6);
  font-size: var(--fontsize20);
  margin: 10px 0;
}

.about-page3 .about-page3-box .swiper-slide .about-page3-text {
  color: #555;
}

.about-page3 .about-page3-box .swiper-slide:nth-child(2n) .about-page3-info {
  margin-top: 30px;
}

.about-page3 .about-page3-box .swiper-slide:nth-child(odd) .about-page3-info::before {
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

.about-page3 .about-page3-box .swiper-slide:nth-child(odd) .about-page3-info::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 4px solid var(--color2);
  border-radius: 50%;
  left: 48%;
  transform: translateY(-50%);
  top: calc(100% + 37px);
}

.about-page3 .about-page3-box .swiper-slide:nth-child(even) {
  padding-top: 30px;
  margin-top: 275px;
}

.about-page3 .about-page3-box .swiper-slide:nth-child(even) .about-page3-info::before {
  content: "";
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 16px);
}

.about-page3 .about-page3-box .swiper-slide:nth-child(even) .about-page3-info::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 4px solid var(--color2);
  border-radius: 50%;
  left: 47%;
  transform: translateY(-50%);
  bottom: calc(100% + 16px);
}

.about-page3 .about-page3-box .about-page3-next,
.about-page3 .about-page3-box .about-page3-prev {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  background-color: #fff;
  z-index: 2;
  transition: all 0.25s ease-in-out;
}

.about-page3 .about-page3-box .about-page3-next em,
.about-page3 .about-page3-box .about-page3-prev em {
  transition: all 0.25s ease-in-out;
  color: var(--color1);
  font-size: var(--fontsize18);
  font-weight: var(--fontbold6);
  width: 18px;
}

.about-page3 .about-page3-box .about-page3-next:hover,
.about-page3 .about-page3-box .about-page3-prev:hover {
  background-color: var(--color1);
}

.about-page3 .about-page3-box .about-page3-next:hover em,
.about-page3 .about-page3-box .about-page3-prev:hover em {
  color: #fff;
}

.about-page3 .about-page3-box .about-page3-next.swiper-button-disabled,
.about-page3 .about-page3-box .about-page3-prev.swiper-button-disabled {
  background-color: #fff;
  opacity: 0.9;
}

.about-page3 .about-page3-box .about-page3-next.swiper-button-disabled em,
.about-page3 .about-page3-box .about-page3-prev.swiper-button-disabled em {
  color: var(--color1);
}

.about-page3 .about-page3-box .about-page3-prev {
  left: 0;
}

.about-page3 .about-page3-box .about-page3-next {
  right: 0;
}

.about-page3 .about-page3-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background-color: #ddd;
}

/* products */
/* products-holde */
.products-holde {
  background: #171717;
  padding: 12px 0;
  border: 2px solid var(--color1);
}

.products-holde .products-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-holde .products-list .products-item {
  font-size: var(--fontsize18);
}

.products-holde .products-list ul {
  display: flex;
  align-items: center;
}

.products-holde .products-list ul li em {
  margin-right: 5px;
}

.products-holde .products-list ul li:not(:last-child) {
  margin-right: 10px;
}

/* products-section1 */
.products-section1 {
  position: relative;
  height: 900px;
  overflow: hidden;
}

.products-section1 .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.products-section1 .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.products-section1 .l-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-section1 .products-section1-list {
  text-align: center;
  z-index: 1;
}

.products-section1 .products-section1-name {
  font-size: 2em;
  margin-bottom: 20px;
  color: #fff;
  font-size: var(--fontsize46);
  font-weight: var(--fontbold7);
}

.products-section1 .products-section1-name span {
  color: #ff6700;
}

.products-section1 .products-section1-center p {
  font-size: var(--fontsize20);
  color: #fff;
  margin-bottom: 20px;
  font-weight: var(--fontbold6);
}

.products-section1 .products-section1-center a {
  color: #fff;
  font-weight: var(--fontbold5);
  cursor: pointer;
}

.products-section1 .products-section1-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 40px;
  border-radius: 5px;
  background: #ff6700;
  padding: 0 20px;
  font-weight: var(--fontbold6);
  color: var(--color1);
  margin-top: 50px;
}

/* products-section2 */
.products-section2 {
  position: relative;
}

.products-section2 .products-section2-list {
  position: relative;
  width: 100%;
}

.products-section2 .products-section2-slide {
  position: relative;
  width: 100%;
}

.products-section2 .products-section2-slide .products-section2-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.products-section2 .products-section2-slide .products-section2-info {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  top: 18%;
}

.products-section2 .products-section2-slide:first-child .products-section2-center p {
  font-size: var(--fontsize20);
  color: #fff;
  margin-bottom: 20px;
  font-weight: var(--fontbold6);
}

.products-section2 .products-section2-slide:last-child .products-section2-center p {
  font-size: var(--fontsize30);
  color: #B82366;
  margin-bottom: 20px;
  font-weight: var(--fontbold6);
}

.products-section2 .products-section2-slide:last-child .products-section2-desc {
  font-weight: var(--fontbold5);
  color: #fff;
  font-size: var(--fontsize22);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 38%;
}

.products-section2 .products-section2-slide:last-child .products-section2-desc span {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize24);
}

.products-section2 .products-section2-slide .products-section2-center a {
  color: #fff;
  font-weight: var(--fontbold5);
  cursor: pointer;
}

.products-section2 .products-section2-slide:last-child .products-section2-center a {
  color: var(--color1);
}

.products-section2 .products-section2-slide .products-section2-name {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize46);
  color: #fff;
}

.products-section2 .products-section2-slide:last-child .products-section2-name {
  color: var(--color1);
}

.products-section2 .products-section2-btn {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.products-section2 .products-section2-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 40px;
  border-radius: 5px;
  background: #ff6700;
  padding: 0 20px;
  font-weight: var(--fontbold6);
  color: var(--color1);
}

.products-section2 .products-section2-pagination {
  position: absolute;
  bottom: 11%;
  text-align: center;
  z-index: 1;
}

.products-section2 .products-section2-pagination .swiper-pagination-bullet {
  margin: 0;
  border-radius: 2px;
  width: 15%;
  height: 3px;
  background: #d2d2d2;
}

/* products-section3 */
.products-section3 {
  padding: 3% 0;
  background: #fff;
}

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

.products-section3 .products-section3-desc {
  margin: 20px auto 0;
  max-width: 900px;
  text-align: center;
  color: #888;
}

.products-section3 .products-section3-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.products-section3 .products-section3-box .products-section3-content {
  position: relative;
  width: 40%;
}

.products-section3 .products-section3-content .products-section3-btn {
  display: flex;
  align-items: center;
}

.products-section3 .products-section3-content .products-section3-lfnext {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 40px;
  border: 2px solid #E5E7E9;
  transition: all 0.2s linear;
}

.products-section3 .products-section3-content .products-section3-lfprev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 40px;
  border: 2px solid #E5E7E9;
  top: 0;
  left: 110px;
  transition: all 0.2s linear;
}

.products-section3 .products-section3-content .products-section3-lfnext em,
.products-section3 .products-section3-content .products-section3-lfprev em {
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
  color: var(--color1);
  transition: all 0.2s linear;
}

.products-section3 .products-section3-content .products-section3-lfnext:hover,
.products-section3 .products-section3-content .products-section3-lfprev:hover {
  background: var(--color1);
  border: none;
}

.products-section3 .products-section3-content .products-section3-lfnext:hover em,
.products-section3 .products-section3-content .products-section3-lfprev:hover em {
  color: #fff;
}

.products-section3 .products-section3-content .products-section3-pagination {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  color: var(--color1);
}

.products-section3 .products-section3-content .products-section3-title {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize26);
  color: #000;
  margin: 20px 0 15px;
}

.products-section3 .products-section3-content .products-section3-words {
  color: #888;
  margin-bottom: 30px;
}

.products-section3 .products-section3-content .products-section3-list {
  border: 4px solid #ccced0;
}

.products-section3 .products-section3-content li {
  position: relative;
  padding: 30px;
}

.products-section3 .products-section3-content li:first-child::after {
  position: absolute;
  content: "";
  width: 89.5%;
  height: 1px;
  background: #ccced0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.products-section3 .products-section3-content li .products-section3-letter {
  font-size: var(--fontsize18);
  font-weight: var(--fontbold7);
  color: var(--color1);
  text-transform: uppercase;
}

.products-section3 .products-section3-content li .products-section3-num {
  font-size: var(--fontsize22);
  color: var(--color1);
  font-weight: var(--fontbold6);
}

.products-section3 .products-section3-content .products-section3-pagination span {
  display: inline-block;
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
}

.products-section3 .products-section3-box .products-section3-right {
  width: 50%;
}

.products-section3 .products-section3-right .products-section3-top {
  width: 100%;
  margin-bottom: 30px;
}

.products-section3 .products-section3-right .products-section3-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.products-section3 .products-section3-right .products-section3-bottom {
  padding: 0 45px;
  position: relative;
}

.products-section3 .products-section3-right .products-section3-rgprev {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.products-section3 .products-section3-right .products-section3-rgprev em {
  font-size: var(--fontsize30);
  color: var(--color1);
  transition: all 0.2s linear;
}

.products-section3 .products-section3-right .products-section3-rgnext {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.products-section3 .products-section3-right .products-section3-rgnext em {
  font-size: var(--fontsize30);
  color: var(--color1);
  transition: all 0.2s linear;
}

.products-section3 .products-section3-right .products-section3-rgnext em:hover,
.products-section3 .products-section3-right .products-section3-rgprev em:hover {
  color: var(--color1);
}

.products-section3 .products-section3-bottom .swiper-slide-active {
  border: 3px solid var(--color1);
}

/* products-page1 */
.products-page1 {
  padding: 3% 0;
  background: #fff;
}

.products-page1 .products-page1-top {
  display: flex;
  align-items: center;
  z-index: 999;
}

.products-page1 .preview-container {
  width: 43%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.products-page1 .preview-container .thumbnail-show {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.products-page1 .preview-container .small-box {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  position: relative;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-page1 .preview-container .small-box:hover {
  cursor: crosshair;
}

.products-page1 .preview-container .small-box img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products-page1 .preview-container .big-box {
  display: none;
  border: 1px solid #dfdfdf;
  border-left: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  overflow: hidden;
  z-index: 999;
  background: #fff;
}

.products-page1 .preview-container .big-box img {
  display: block;
  max-width: none;
  max-height: none;
  width: 150%;
}

.products-page1 .preview-container .big-box.act {
  display: none !important;
}

.products-page1 .small-box .hover {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: rgba(204, 204, 204, 0.6);
  border: 1px solid #eee;
  display: none;
  cursor: move;
  z-index: 9;
}

.products-page1 .preview-container #media {
  background: #eee;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  z-index: 9;
}

.products-page1 .preview-container .thumbnail-box {
  position: relative;
  height: 520px;
  margin-right: 15px;
  padding: 30px 0;
}

.products-page1 .preview-container .thumbnail-box .list {
  width: 100%;
  height: 100%;
}

.products-page1 .preview-container .thumbnail-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  position: relative;
  border: 2px solid #eee;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.products-page1 .preview-container .thumbnail-box .item.item-cur {
  border-color: var(--color1);
}

.products-page1 .preview-container .thumbnail-box .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-page1 .thumbnail-box .prodetails-button-next,
.products-page1 .thumbnail-box .prodetails-button-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  z-index: 9;
}

.products-page1 .thumbnail-box .prodetails-button-next em,
.products-page1 .thumbnail-box .prodetails-button-prev em {
  font-size: var(--fontsize22);
}

.products-page1 .thumbnail-box .prodetails-button-prev em {
  transform: rotateX(180deg);
}

.products-page1 .thumbnail-box .prodetails-button-next.not,
.products-page1 .thumbnail-box .prodetails-button-prev.not {
  background: #eee;
  color: #999;
}

.products-page1 .thumbnail-box .prodetails-button-next:hover,
.products-page1 .thumbnail-box .prodetails-button-prev:hover {
  opacity: 0.9;
}

.products-page1 .thumbnail-box .prodetails-button-next {
  top: auto;
  bottom: 0;
}

.products-page1 .banner-page {
  display: none;
}

.products-page1 .prodetails-info {
  flex: 1;
  padding-left: 3%;
}

.products-page1 .prodetails-info .prodetails-name {
  font-size: var(--fontsize26);
  font-weight: var(--fontbold5);
  color: var(--color1);
}

.products-page1 .prodetails-text {
  color: #666;
}

.products-page1 .prodetails-text ol,
.products-page1 .prodetails-text ul {
  padding-left: 18px;
}

.products-page1 .prodetails-text li {
  list-style: disc;
}

.products-page1 .prodetails-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.products-page1 .prodetails-item {
  width: 48%;
}

.products-page1 .prodetails-title {
  font-size: var(--fontsize18);
  font-weight: var(--fontbold5);
  color: var(--color1);
  margin-top: 15px;
  margin-bottom: 10px;
}

.products-page1 .prodetails-info .box {
  width: 100%;
  height: 45px;
  line-height: 45px;
  background: #f3f3f3;
  border-radius: 5px;
  padding: 0 15px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.products-page1 .prodetails-info .prodetails-btnlist {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.products-page1 .prodetails-info .prodetails-btnlist>* {
  min-width: 180px;
  height: 50px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #111;
  color: #fff;
  border: 1px solid #d0d0d0;
  text-transform: capitalize;
  transition: all 0.1s linear;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  margin-right: 15px;
  margin-bottom: 10px;
}

.products-page1 .prodetails-info .prodetails-btnlist> :hover {
  background: green;
  border-color: green;
}

.products-page1 .prodetails-info .prodetails-btnlist> :last-child {
  margin-right: 0;
}

.products-page1 .prodetails-info .prodetails-btnlist>* em {
  margin-right: 5px;
}

.products-page1 .prodetails-info .prodetails-btnlist .addToCart.added {
  background: green;
  border-color: green;
}

/* products-page2 */
.products-page2 {
  padding: 3% 0;
  background: #fff;
}

.products-page2 .products-page2-top {
  display: flex;
  align-items: center;
  z-index: 999;
}

.products-page2 .preview-container {
  width: 43%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.products-page2 .preview-container .thumbnail-show {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.products-page2 .preview-container .small-box {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  position: relative;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-page2 .preview-container .small-box:hover {
  cursor: crosshair;
}

.products-page2 .preview-container .small-box img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products-page2 .preview-container .big-box {
  display: none;
  border: 1px solid #dfdfdf;
  border-left: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  overflow: hidden;
  z-index: 999;
  background: #fff;
}

.products-page2 .preview-container .big-box img {
  display: block;
  max-width: none;
  max-height: none;
  width: 150%;
}

.products-page2 .preview-container .big-box.act {
  display: none !important;
}

.products-page2 .small-box .hover {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: rgba(204, 204, 204, 0.6);
  border: 1px solid #eee;
  display: none;
  cursor: move;
  z-index: 9;
}

.products-page2 .preview-container #media {
  background: #eee;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  z-index: 9;
}

.products-page2 .preview-container .thumbnail-box {
  position: relative;
  height: 520px;
  margin-right: 15px;
  padding: 30px 0;
}

.products-page2 .preview-container .thumbnail-box .list {
  width: 100%;
  height: 100%;
}

.products-page2 .preview-container .thumbnail-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  position: relative;
  border: 2px solid #eee;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.products-page2 .preview-container .thumbnail-box .item.item-cur {
  border-color: var(--color1);
}

.products-page2 .preview-container .thumbnail-box .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-page2 .thumbnail-box .prodetails-button-next,
.products-page2 .thumbnail-box .prodetails-button-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  z-index: 9;
}

.products-page2 .thumbnail-box .prodetails-button-next em,
.products-page2 .thumbnail-box .prodetails-button-prev em {
  font-size: var(--fontsize22);
}

.products-page2 .thumbnail-box .prodetails-button-prev em {
  transform: rotateX(180deg);
}

.products-page2 .thumbnail-box .prodetails-button-next.not,
.products-page2 .thumbnail-box .prodetails-button-prev.not {
  background: #eee;
  color: #999;
}

.products-page2 .thumbnail-box .prodetails-button-next:hover,
.products-page2 .thumbnail-box .prodetails-button-prev:hover {
  opacity: 0.9;
}

.products-page2 .thumbnail-box .prodetails-button-next {
  top: auto;
  bottom: 0;
}

.products-page2 .banner-page {
  display: none;
}

.products-page2 .prodetails-info {
  flex: 1;
  padding-left: 3%;
}

.products-page2 .prodetails-info .prodetails-name {
  font-size: var(--fontsize26);
  font-weight: var(--fontbold5);
  color: var(--color1);
}

.products-page2 .prodetails-text {
  color: #666;
}

.products-page2 .prodetails-text ol,
.products-page2 .prodetails-text ul {
  padding-left: 18px;
}

.products-page2 .prodetails-text li {
  list-style: disc;
}

.products-page2 .prodetails-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.products-page2 .prodetails-item {
  width: 48%;
}

.products-page2 .prodetails-title {
  font-size: var(--fontsize18);
  font-weight: var(--fontbold5);
  color: var(--color1);
  margin-top: 15px;
  margin-bottom: 10px;
}

.products-page2 .prodetails-info .box {
  width: 100%;
  height: 45px;
  line-height: 45px;
  background: #f3f3f3;
  border-radius: 5px;
  padding: 0 15px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.products-page2 .prodetails-info .prodetails-btnlist {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.products-page2 .prodetails-info .prodetails-btnlist>* {
  min-width: 180px;
  height: 50px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #111;
  color: #fff;
  border: 1px solid #d0d0d0;
  text-transform: capitalize;
  transition: all 0.1s linear;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  margin-right: 15px;
  margin-bottom: 10px;
}

.products-page2 .prodetails-info .prodetails-btnlist> :hover {
  background: green;
  border-color: green;
}

.products-page2 .prodetails-info .prodetails-btnlist> :last-child {
  margin-right: 0;
}

.products-page2 .prodetails-info .prodetails-btnlist>* em {
  margin-right: 5px;
}

.products-page2 .prodetails-info .prodetails-btnlist .addToCart.added {
  background: green;
  border-color: green;
}

/* products-page3 */
.products-page3 {
  padding: 3% 0;
  background: #fff;
}

.products-page3 .products-page3-top {
  display: flex;
  align-items: center;
  z-index: 999;
}

.products-page3 .preview-container {
  width: 43%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.products-page3 .preview-container .thumbnail-show {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.products-page3 .preview-container .small-box {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  position: relative;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-page3 .preview-container .small-box:hover {
  cursor: crosshair;
}

.products-page3 .preview-container .small-box img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products-page3 .preview-container .big-box {
  display: none;
  border: 1px solid #dfdfdf;
  border-left: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  overflow: hidden;
  z-index: 999;
  background: #fff;
}

.products-page3 .preview-container .big-box img {
  display: block;
  max-width: none;
  max-height: none;
  width: 150%;
}

.products-page3 .preview-container .big-box.act {
  display: none !important;
}

.products-page3 .small-box .hover {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: rgba(204, 204, 204, 0.6);
  border: 1px solid #eee;
  display: none;
  cursor: move;
  z-index: 9;
}

.products-page3 .preview-container #media {
  background: #eee;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  z-index: 9;
}

.products-page3 .preview-container .thumbnail-box {
  position: relative;
  height: 520px;
  margin-right: 15px;
  padding: 30px 0;
}

.products-page3 .preview-container .thumbnail-box .list {
  width: 100%;
  height: 100%;
}

.products-page3 .preview-container .thumbnail-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  position: relative;
  border: 2px solid #eee;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.products-page3 .preview-container .thumbnail-box .item.item-cur {
  border-color: var(--color1);
}

.products-page3 .preview-container .thumbnail-box .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-page3 .thumbnail-box .prodetails-button-next,
.products-page3 .thumbnail-box .prodetails-button-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  z-index: 9;
}

.products-page3 .thumbnail-box .prodetails-button-next em,
.products-page3 .thumbnail-box .prodetails-button-prev em {
  font-size: var(--fontsize22);
}

.products-page3 .thumbnail-box .prodetails-button-prev em {
  transform: rotateX(180deg);
}

.products-page3 .thumbnail-box .prodetails-button-next.not,
.products-page3 .thumbnail-box .prodetails-button-prev.not {
  background: #eee;
  color: #999;
}

.products-page3 .thumbnail-box .prodetails-button-next:hover,
.products-page3 .thumbnail-box .prodetails-button-prev:hover {
  opacity: 0.9;
}

.products-page3 .thumbnail-box .prodetails-button-next {
  top: auto;
  bottom: 0;
}

.products-page3 .banner-page {
  display: none;
}

.products-page3 .prodetails-info {
  flex: 1;
  padding-left: 3%;
}

.products-page3 .prodetails-info .prodetails-name {
  font-size: var(--fontsize26);
  font-weight: var(--fontbold5);
  color: var(--color1);
}

.products-page3 .prodetails-text {
  color: #666;
}

.products-page3 .prodetails-text ol,
.products-page3 .prodetails-text ul {
  padding-left: 18px;
}

.products-page3 .prodetails-text li {
  list-style: disc;
}

.products-page3 .prodetails-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.products-page3 .prodetails-item {
  width: 48%;
}

.products-page3 .prodetails-title {
  font-size: var(--fontsize18);
  font-weight: var(--fontbold5);
  color: var(--color1);
  margin-top: 15px;
  margin-bottom: 10px;
}

.products-page3 .prodetails-info .box {
  width: 100%;
  height: 45px;
  line-height: 45px;
  background: #f3f3f3;
  border-radius: 5px;
  padding: 0 15px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.products-page3 .prodetails-info .prodetails-btnlist {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.products-page3 .prodetails-info .prodetails-btnlist>* {
  min-width: 180px;
  height: 50px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #111;
  color: #fff;
  border: 1px solid #d0d0d0;
  text-transform: capitalize;
  transition: all 0.1s linear;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  margin-right: 15px;
  margin-bottom: 10px;
}

.products-page3 .prodetails-info .prodetails-btnlist> :hover {
  background: green;
  border-color: green;
}

.products-page3 .prodetails-info .prodetails-btnlist> :last-child {
  margin-right: 0;
}

.products-page3 .prodetails-info .prodetails-btnlist>* em {
  margin-right: 5px;
}

.products-page3 .prodetails-info .prodetails-btnlist .addToCart.added {
  background: green;
  border-color: green;
}

/* technology*/
/* technology-holde */
.technology-holde {
  background: #171717;
  padding: 12px 0;
  border: 2px solid var(--color1);
}

.technology-holde .technology-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.technology-holde .technology-list .technology-item {
  font-size: var(--fontsize18);
}

.technology-holde .technology-list ul {
  display: flex;
  align-items: center;
}

.technology-holde .technology-list ul li em {
  margin-right: 5px;
}

.technology-holde .technology-list ul li:not(:last-child) {
  margin-right: 10px;
}

/* technology-section1 */
.technology-section1 {
  background: #fff;
  padding: 3% 0;
}

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

.technology-section1 .technology-section1-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.technology-section1 .technology-section1-text {
  text-align: center;
  font-weight: var(--fontbold6);
  color: var(--color1);
  opacity: 0.6;
  margin: 10px 0;
}

.technology-section1 .technology-section1-item {
  width: 48.8%;
  position: relative;
  margin-top: 30px;
}

.technology-section1 .technology-section1-item .technology-section1-img {
  width: 100%;
  position: relative;
}

.technology-section1 .technology-section1-item .technology-section1-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}

.technology-section1 .technology-section1-item .technology-section1-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  text-align: center;
}

.technology-section1 .technology-section1-item .technology-section1-title {
  font-size: var(--fontsize22);
  font-weight: var(--fontbold7);
}

.technology-section1 .technology-section1-item .technology-section1-btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  height: 36px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #fff;
  margin-top: 20px;
  font-size: var(--fontsize14);
  font-weight: var(--fontbold6);
  transition: all 0.3s linear;
}

.technology-section1 .technology-section1-item .technology-section1-btn a:hover {
  background: #fff;
  color: var(--color1);
}

/* technology-section2 */
.technology-section2 {
  position: relative;
  height: 1000px;
  overflow: hidden;
}

.technology-section2 .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.technology-section2 .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.technology-section2 .technology-section2-box {
  margin-top: 200px;
}

.technology-section2 .technology-section2-title {
  font-size: var(--fontsize26);
}

.technology-section2 .technology-section2-desc {
  font-size: var(--fontsize15);
  margin-top: 20px;
}

/* technology-section3 */
.technology-section3 {
  background: #fff;
  padding: 3% 0;
}

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

.technology-section3 .technology-section3-desc {
  font-weight: var(--fontbold6);
  color: var(--color1);
  opacity: 0.6;
  margin: 10px 0;
}

.technology-section3 .technology-section3-row {
  display: flex;
  position: relative;
  overflow: hidden;
  background: #000;
}

.technology-section3 .technology-section3-row::before {
  display: table;
  content: " ";
}

.technology-section3 .technology-section3-row::after {
  display: block;
  clear: both;
  height: 0;
  content: " ";
}

.technology-section3 .technology-section3-col {
  position: relative;
  display: inline-block;
  height: 670px;
  flex: 1;
  transition: all 0.36s;
}

.technology-section3 .technology-section3-bgbox {
  position: relative;
  z-index: 1;
  height: 100%;
}

.technology-section3 .technology-section3-bgbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
}

.technology-section3 .technology-section3-bgbox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(8, 18, 59, 0.5);
  opacity: 0;
  transition: all 0.36s;
}

.technology-section3 .technology-section3-txtbox {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 5;
  width: 100%;
  color: #fff;
  transition: all 0.36s;
  white-space: normal;
}

.technology-section3 .technology-section3-bg {
  width: 100%;
  height: 100%;
}

.technology-section3 .technology-section3-title {
  width: 100%;
  top: 40%;
  font-size: var(--fontsize30);
  line-height: 1.5;
  font-variation-settings: "wght" 750;
  text-align: center;
  transition: all 0.36s;
}

.technology-section3 .technology-section3-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.technology-section3 .technology-section3-titwrap {
  display: inline-block;
  text-align: left;
  vertical-align: top;
}

.technology-section3 .technology-section3-titwrap em {
  font-size: var(--fontsize46);
  width: 46px;
  display: block;
}

.technology-section3 .technology-section3-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 100px 60px;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.technology-section3 .technology-section3-Box {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: 0;
  direction: ltr;
}

.technology-section3 .technology-section3-titles {
  font-size: var(--fontsize28);
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
  opacity: 1;
}

.technology-section3 .technology-section3-titles p {
  line-height: 30px;
  color: #b2c8fa;
}

.technology-section3 .technology-section3-container p {
  line-height: 30px;
  color: #b2c8fa;
}

.technology-section3 .technology-section3-container p span {
  font-weight: var(--fontbold6);
  font-size: var(--fontsize18);
}

.technology-section3 .technology-section3-titles p {
  font-size: var(--fontsize28);
  line-height: 1.52;
  color: #fff;
}

.technology-section3 .technology-section3-titwrap p {
  font-size: var(--fontsize26);
  line-height: 1.25;
  margin-top: 20px;
}

.technology-section3 .technology-section3-titles em {
  font-size: var(--fontsize42);
  line-height: 1;
  width: 42px;
  display: block;
  margin-bottom: 15px;
}

.technology-section3 .technology-section3-col:hover {
  flex: 1.5;
}

.technology-section3 .technology-section3-col:hover .technology-section3-bgbox::after {
  opacity: 1;
}

.technology-section3 .technology-section3-col:hover .technology-section3-title {
  opacity: 0;
}

.technology-section3 .technology-section3-col:hover .technology-section3-txt {
  opacity: 1;
}

.technology-section3 .technology-section3-col:hover .technology-section3-bgbox {
  width: 100%;
}

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

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

.technology-section4 .technology-section4-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
}

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

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

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

.technology-section4 .technology-section4-list .technology-section4-bottom a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  height: 45px;
  padding: 0 20px;
  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;
}

.technology-section4 .technology-section4-list .technology-section4-bottom a:hover {
  background: #fff;
  color: #222;
}

/* technology-section5 */
.technology-section5 {
  padding: 3% 0;
  background: #fff;
}

.technology-section5 .home-title {
  color: var(--color1);
  text-align: left;
  margin-bottom: 15px;
}

.technology-section5 .technology-section5-desc {
  color: var(--color1);
  opacity: 0.8;
}

.technology-section5 .video-background {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 35px;
}

.technology-section5 .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* technology-page1 */
.technology-page1 .technology-page1-box1 {
  position: relative;
  width: 100%;
  padding: 3% 0;
}

.technology-page1 .technology-page1-box1 img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page1 .technology-page1-box2 {
  position: relative;
}

.technology-page1 .technology-page1-box2 .home-title {
  text-align: left;
}

.technology-page1 .technology-page1-box2 .technology-page1-desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.technology-page1 .technology-page1-box2 p {
  width: 45%;
}

.technology-page1 .technology-page1-box2 ul {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.technology-page1 .technology-page1-box2 .technology-page1-num {
  font-size: var(--fontsize32);
  color: #CB9D7C;
}

.technology-page1 .technology-page1-box2 .technology-page1-title {
  font-weight: var(--fontbold6);
}

.technology-page1 .technology-page1-box2 .technology-page1-bottom img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page1 .technology-page1-box3 {
  position: relative;
  padding: 3% 0;
}

.technology-page1 .technology-page1-box3 .technology-page1-img {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.technology-page1 .technology-page1-box3 .technology-page1-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page1 .technology-page1-box3 .technology-page1-info {
  text-align: center;
  margin-bottom: 30px;
}

.technology-page1 .technology-page1-box3 table {
  border-collapse: collapse;
  width: 100%;
}

.technology-page1 .technology-page1-box3 th,
.technology-page1 .technology-page1-box3 td {
  border-bottom: 1px solid rgba(221, 221, 221, 0.2);
  padding: 15px;
  text-align: left;
}

.technology-page1 .technology-page1-box3 tbody tr:first-child {
  color: #CB9D7C;
  font-size: var(--fontsize20);
}

.technology-page1 .technology-page1-box4 {
  position: relative;
}

.technology-page1 .technology-page1-box4 .technology-page1-img {
  width: 100%;
  position: relative;
}

.technology-page1 .technology-page1-box4 .technology-page1-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}

.technology-page1 .technology-page1-box4 .technology-page1-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  text-align: center;
}

.technology-page1 .technology-page1-box4 .technology-page1-desc {
  max-width: 700px;
  margin-top: 30px;
}

/* technology-page2 */
.technology-page2 .technology-page2-box1 {
  position: relative;
}

.technology-page2 .technology-page2-box1 .technology-page2-img {
  position: relative;
  width: 100%;
}

.technology-page2 .technology-page2-box1 .technology-page2-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page2 .technology-page2-box1 .technology-page2-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8%;
  text-align: center;
}

.technology-page2 .technology-page2-box1 .technology-page2-title {
  font-size: 60px;
  font-weight: var(--fontbold6);
}

.technology-page2 .technology-page2-box1 .technology-page2-text {
  color: #CB9D7C;
  font-size: var(--fontsize26);
}

.technology-page2 .technology-page2-box2 {
  position: relative;
}

.technology-page2 .technology-page2-box2 .technology-page2-img {
  width: 100%;
  height: 800px;
  position: relative;
}

.technology-page2 .technology-page2-box2 .technology-page2-img img {
  width: 100%;
  position: relative;
  height: 100%;
  object-fit: cover;
}

.technology-page2 .technology-page2-box2 .technology-page2-info {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.technology-page2 .technology-page2-box2 .technology-page2-info p {
  margin-bottom: 10px;
  font-size: var(--fontsize22);
}

.technology-page2 .technology-page2-box2 .technology-page2-info span {
  color: #CB9D7C;
}

.technology-page2 .technology-page2-box3 {
  position: relative;
  height: 1000px;
  overflow: hidden;
}

.technology-page2 .technology-page2-box3 .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.technology-page2 .technology-page2-box3 .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.technology-page2 .technology-page2-box3 .technology-page2-box {
  margin-top: 150px;
}

.technology-page2 .technology-page2-box3 .technology-page2-title {
  font-size: 50px;
}

.technology-page2 .technology-page2-box3 .technology-page2-desc {
  font-size: var(--fontsize15);
  margin-top: 20px;
}

.technology-page2 .technology-page2-box4 {
  position: relative;
}

.technology-page2 .technology-page2-box4 .technology-page2-img {
  position: relative;
  width: 100%;
}

.technology-page2 .technology-page2-box4 .technology-page2-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page2 .technology-page2-box4 .technology-page2-info {
  position: absolute;
  width: 100%;
  top: 8%;
  left: 0;
  z-index: 2;
}

.technology-page2 .technology-page2-box4 .technology-page2-title {
  font-size: 50px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.technology-page2 .technology-page2-box4 .technology-page2-desc {
  opacity: 0.8;
}

.technology-page2 .technology-page2-box4 .technology-page2-desc p {
  margin-top: 10px;
}

.technology-page2 .technology-page2-box4 .technology-page2-desc p:last-child {
  margin-top: 30px;
  opacity: 0.5;
}

/* technology-page3 */
.technology-page3 .technology-page3-box1 {
  position: relative;
}

.technology-page3 .technology-page3-box1 .technology-page3-img {
  position: relative;
  width: 100%;
}

.technology-page3 .technology-page3-box1 .technology-page3-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page3 .technology-page3-box1 .technology-page3-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 2%;
  text-align: center;
}

.technology-page3 .technology-page3-box1 .technology-page3-title {
  font-size: 60px;
  font-weight: var(--fontbold6);
}

.technology-page3 .technology-page3-box1 .technology-page3-text {
  color: #CB9D7C;
  font-size: var(--fontsize26);
}

.technology-page3 .technology-page3-box2 {
  position: relative;
}

.technology-page3 .technology-page3-box2 .technology-page3-img {
  width: 100%;
  height: 800px;
  position: relative;
}

.technology-page3 .technology-page3-box2 .technology-page3-img img {
  width: 100%;
  position: relative;
  height: 100%;
  object-fit: cover;
}

.technology-page3 .technology-page3-box2 .technology-page3-info {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.technology-page3 .technology-page3-box2 .technology-page3-info p {
  margin-bottom: 10px;
  font-size: var(--fontsize22);
}

.technology-page3 .technology-page3-box2 .technology-page3-info p:first-child {
  color: #CB9D7C;
}

.technology-page3 .technology-page3-box2 .technology-page3-info a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.technology-page3 .technology-page3-box2 .technology-page3-info a:hover {
  background: #fff;
}

.technology-page3 .technology-page3-box2 .technology-page3-info a:hover em {
  color: #000;
}

.technology-page3 .technology-page3-box3 {
  position: relative;
  height: 1000px;
  overflow: hidden;
}

.technology-page3 .technology-page3-box3 .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.technology-page3 .technology-page3-box3 .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.technology-page3 .technology-page3-box3 .home-title {
  text-align: left;
}

.technology-page3 .technology-page3-box3 .technology-page3-desc {
  margin-top: 20px;
}

.technology-page3 .technology-page3-box3 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.technology-page3 .technology-page3-box3 .technology-page3-num {
  font-size: var(--fontsize32);
  color: #CB9D7C;
}

.technology-page3 .technology-page3-box3 .technology-page3-title {
  font-weight: var(--fontbold6);
}

.technology-page3 .technology-page3-box4 {
  position: relative;
  padding: 3% 0;
}

.technology-page3 .technology-page3-box4 .home-title span {
  color: #CB9D7C;
  line-height: 1.8;
}

.technology-page3 .technology-page3-box4 .technology-page3-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}

.technology-page3 .technology-page3-box4 .technology-page3-left {
  width: 50%;
  height: auto;
  background: #212328;
  padding: 80px 20px;
}

.technology-page3 .technology-page3-box4 .technology-page3-info {
  width: 50%;
  height: 70%;
  margin: 0 auto;
  font-weight: var(--fontbold6);
  font-size: var(--fontsize22);
  color: #fff;
  opacity: 0.8;
  letter-spacing: 3px;
}

.technology-page3 .technology-page3-box4 .technology-page3-info span {
  color: #CB9D7C;
  margin: 0 5px;
  opacity: 1;
}

.technology-page3 .technology-page3-box4 .technology-page3-data {
  text-align: right;
  width: 50%;
  margin: 0 auto;
  color: #fff;
  opacity: 0.6;
  font-size: var(--fontsize18);
}

.technology-page3 .technology-page3-box4 .technology-page3-right {
  width: 50%;
  background: #161719;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* technology-page4 */
.technology-page4 .technology-page4-box1 {
  position: relative;
}

.technology-page4 .technology-page4-box1 .technology-page4-img {
  position: relative;
  width: 100%;
}

.technology-page4 .technology-page4-box1 .technology-page4-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page4 .technology-page4-box1 .technology-page4-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8%;
  text-align: center;
}

.technology-page4 .technology-page4-box1 .technology-page4-title {
  font-size: 60px;
  font-weight: var(--fontbold6);
}

.technology-page4 .technology-page4-box1 .technology-page4-text {
  color: #CB9D7C;
  font-size: var(--fontsize26);
}

.technology-page4 .technology-page4-box1 .technology-page4-letter {
  letter-spacing: 8px;
  font-size: var(--fontsize18);
}

.technology-page4 .technology-page4-box2 {
  padding: 3% 0;
}

.technology-page4 .technology-page4-box2 .technology-page4-top {
  text-align: center;
}

.technology-page4 .technology-page4-box2 .home-title span {
  color: #CB9D7C;
  line-height: 1.9;
}

.technology-page4 .technology-page4-box2 .technology-page4-desc {
  margin-top: 10px;
}

.technology-page4 .technology-page4-box2 .technology-page4-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.technology-page4 .technology-page4-box2 .technology-page4-item {
  width: 49%;
  margin-top: 40px;
}

.technology-page4 .technology-page4-box2 .technology-page4-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page4 .technology-page4-box2 .technology-page4-info {
  padding: 40px 20px;
  text-align: center;
  background: #0D1015;
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
}

.technology-page4 .technology-page4-box3 {
  padding: 3% 0;
}

.technology-page4 .technology-page4-box3 .technology-page4-top {
  text-align: center;
}

.technology-page4 .technology-page4-box3 .home-title span {
  color: #CB9D7C;
  line-height: 1.9;
}

.technology-page4 .technology-page4-box3 .technology-page4-desc {
  margin-top: 10px;
}

.technology-page4 .technology-page4-box3 .technology-page4-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.technology-page4 .technology-page4-box3 .technology-page4-item {
  width: 24%;
  margin-top: 40px;
}

.technology-page4 .technology-page4-box3 .technology-page4-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.technology-page4 .technology-page4-box3 .technology-page4-info {
  padding: 40px 20px;
  text-align: center;
  background: #0D1015;
}

.technology-page4 .technology-page4-box3 .technology-page4-info p:first-child {
  font-size: var(--fontsize22);
  font-weight: var(--fontbold6);
}

.technology-page4 .technology-page4-box3 .technology-page4-info p:last-child {
  color: #fff;
  opacity: 0.6;
  font-size: var(--fontsize14);
}

.technology-page4 .technology-page4-box4 {
  position: relative;
  padding: 3% 0;
}

.technology-page4 .technology-page4-box4 .technology-page4-top {
  text-align: center;
}

.technology-page4 .technology-page4-box4 .technology-page4-desc {
  margin-top: 20px;
  opacity: 0.8;
}

.technology-page4 .technology-page4-box4 .technology-page4-bottom {
  position: relative;
  margin-top: 35px;
}

.technology-page4 .technology-page4-box4 .technology-page4-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}

.technology-page4 .technology-page4-box4 a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  height: 45px;
  padding: 0 20px;
  background: none;
  background: #fff;
  color: #000;
  border-radius: 10px;
  transition: all 0.2s linear;
  font-weight: var(--fontbold6);
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.technology-page4 .technology-page4-box4 a:hover {
  background: #fff;
  color: #222;
}

/* technology-page5 */
.technology-page5 .technology-page5-box1 {
  position: relative;
}

.technology-page5 .technology-page5-box1 .technology-page5-img {
  position: relative;
  width: 100%;
}

.technology-page5 .technology-page5-box1 .technology-page5-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.technology-page5 .technology-page5-box1 .technology-page5-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8%;
  text-align: center;
}

.technology-page5 .technology-page5-box1 .technology-page5-title {
  font-size: 60px;
  font-weight: var(--fontbold6);
}

.technology-page5 .technology-page5-box1 .technology-page5-logo img {
  width: 330px;
  height: auto;
  object-fit: cover;
}

.technology-page5 .technology-page5-box2 {
  position: relative;
  height: 900px;
  overflow: hidden;
}

.technology-page5 .technology-page5-box2 .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.technology-page5 .technology-page5-box2 .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.technology-page5 .technology-page5-box2 .l-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technology-page5 .technology-page5-box2 .technology-page5-list {
  text-align: center;
  z-index: 1;
}

.technology-page5 .technology-page5-box2 .technology-page5-desc p {
  font-size: var(--fontsize18);
  color: #fff;
  margin-bottom: 5px;
}

.technology-page5 .technology-page5-box2 a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  height: 45px;
  padding: 0 20px;
  border: 2px solid #ddd;
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s linear;
  font-weight: var(--fontbold6);
  cursor: pointer;
  margin-top: 30px;
}

.technology-page5 .technology-page5-box2 a:hover {
  background: #fff;
  color: #000;
}

.technology-page5 .technology-page5-box3 {
  padding: 3% 0 11%;
  position: relative;
  overflow: hidden;
  background: #F9F9F9;
}

.technology-page5 .technology-page5-box3 .home-title {
  text-align: left;
  color: var(--color1);
}

.technology-page5 .technology-page5-box3 .technology-page5-content {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.technology-page5 .technology-page5-box3 .technology-big-mySwiper {
  overflow: visible;
}

.technology-page5 .technology-page5-box3 .technology-big-mySwiper .technology-big-slide {
  position: relative;
}

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

.technology-page5 .technology-page5-box3 .technology-big-mySwiper .technology-big-slide video {
  opacity: 0.3;
  transition: all 0.2s linear;
}

.technology-page5 .technology-page5-box3 .technology-big-slide.swiper-slide-active video {
  opacity: 1;
}

.technology-page5 .technology-page5-box3 .technology-page5-small {
  display: flex;
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  z-index: 1;
}

.technology-page5 .technology-page5-box3 .technology-page5-small .technology-page5-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.technology-page5 .technology-page5-box3 .technology-page5-small .technology-page5-list li {
  cursor: pointer;
  width: 32%;
  text-align: center;
  padding: 60px 35px;
  background: #fff;
}

.technology-page5 .technology-page5-box3 .technology-page5-small .technology-page5-list li.active {
  background: #E6E6E6;
}

.technology-page5 .technology-page5-box3 .technology-page5-small .technology-page5-list li .technology-small-title {
  color: #000;
  opacity: 0.4;
  margin: 0px 0 15px;
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
  transition: all 0.2s linear;
}

.technology-page5 .technology-page5-box3 .technology-page5-small .technology-page5-list li.active .technology-small-title {
  opacity: 1;
}

.technology-page5 .technology-page5-box3 .technology-page5-small .technology-page5-list li .technology-small-desc {
  color: #000;
  opacity: 0.2;
  transition: all 0.2s linear;
}

.technology-page5 .technology-page5-box3 .technology-page5-small .technology-page5-list li.active .technology-small-desc {
  opacity: 0.7;
}

.technology-page5 .technology-page5-box4 {
  position: relative;
  padding: 3% 0;
  background: #F9F9F9;
}

.technology-page5 .technology-page5-box4 .home-title {
  text-align: left;
  color: var(--color1);
}

.technology-page5 .technology-page5-box4 .technology-page5-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.technology-page5 .technology-page5-box4 .technology-page5-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.technology-page5 .technology-page5-box4 .technology-page5-item .technology-page5-video {
  width: 70%;
}

.technology-page5 .technology-page5-box4 .technology-page5-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.technology-page5 .technology-page5-box4 .technology-page5-item .technology-page5-text {
  position: relative;
  width: 28%;
  height: auto;
  background: #737980;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
}

.technology-page5 .technology-page5-box4 .technology-page5-locald {
  font-size: var(--fontsize18);
  color: #fff;
  opacity: 0.8;
}

.technology-page5 .technology-page5-box4 .technology-page5-title {
  color: #fff;
  font-size: var(--fontsize22);
  font-weight: var(--fontbold6);
  margin: 20px 0;
}

.technology-page5 .technology-page5-box4 .technology-page5-desc {
  color: #fff;
  font-size: var(--fontsize15);
  opacity: 0.5;
}

.technology-page5 .technology-page5-box4 .technology-page5-attention {
  color: #fff;
  opacity: 0.3;
  position: absolute;
  bottom: 20px;
}

/* factory */
/* factory-holde */
.factory-holde {
  background: #171717;
  padding: 12px 0;
  border: 2px solid var(--color1);
}

.factory-holde .factory-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.factory-holde .factory-list .factory-item {
  font-size: var(--fontsize18);
}

.factory-holde .factory-list ul {
  display: flex;
  align-items: center;
}

.factory-holde .factory-list ul li em {
  margin-right: 5px;
}

.factory-holde .factory-list ul li:not(:last-child) {
  margin-right: 10px;
}

/* factory-section1 */
.factory-section1 {
  position: relative;
}

.factory-section1 .factory-section1-box {
  position: relative;
  width: 100%;
}

.factory-section1 .factory-section1-img {
  position: relative;
  width: 100%;
  height: 900px;
}

.factory-section1 .factory-section1-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-section1 .factory-section1-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.factory-section1 .factory-section1-title {
  font-size: 60px;
  color: #fff;
  font-weight: var(--fontbold6);
}

.factory-section1 .factory-section1-btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 380px;
  height: 65px;
  padding: 0 20px;
  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;
}

.factory-section1 .factory-section1-btn a:hover {
  background: #fff;
  color: #222;
}

/* factory-section2 */
.factory-section2 {
  background: #F9F9F9;
  padding: 3% 0;
}

.factory-section2 .factory-section2-top {
  text-align: center;
}

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

.factory-section2 .factory-section2-desc {
  max-width: 900px;
  color: #000;
  opacity: 0.7;
  margin: 5px auto 15px;
}

.factory-section2 .factory-section2-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.factory-section2 .factory-section2-box .factory-section2-item {
  width: 49.3%;
  position: relative;
  margin-top: 19px;
}

.factory-section2 .factory-section2-item .factory-section2-img {
  position: relative;
  width: 100%;
}

.factory-section2 .factory-section2-item .factory-section2-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.factory-section2 .factory-section2-item .factory-section2-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  font-weight: var(--fontbold7);
  font-size: var(--fontsize28);
  color: #fff;
}

/* factory-section3 */
.factory-section3 {
  background: #F9F9F9;
  padding: 3% 0;
}

.factory-section3 .factory-section3-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.factory-section3 .home-title {
  width: 40%;
  color: var(--color1);
  text-align: left;
}

.factory-section3 .factory-section3-text {
  width: 50%;
  color: #000;
  opacity: 0.7;
}

.factory-section3 .factory-section3-list {
  display: flex;
  justify-content: space-between;
  margin: 35px 0 60px;
}

.factory-section3 .factory-section3-list li {
  position: relative;
  flex: 1;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s linear;
}

.factory-section3 .factory-section3-list li.active {
  border-bottom: 4px solid #000;
}

.factory-section3 .factory-section3-list .factory-section3-words {
  text-align: center;
  color: var(--color1);
  font-size: var(--fontsize20);
  font-weight: var(--fontbold6);
}

.factory-section3 .factory-section3-bottom {
  overflow: visible;
}

.factory-section3 .factory-section3-slide {
  position: relative;
  width: 100%;
  opacity: 0.3;
  transition: all 0.2s linear;
}

.factory-section3 .factory-section3-slide.swiper-slide-active {
  opacity: 1;
}

.factory-section3 .factory-section3-slide .factory-section3-img {
  position: relative;
  width: 100%;
}

.factory-section3 .factory-section3-slide .factory-section3-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.factory-section3 .factory-section3-slide .factory-section3-info {
  position: absolute;
  left: 50px;
  bottom: 50px;
}

.factory-section3 .factory-section3-slide .factory-section3-title {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize24);
  color: #fff;
}

.factory-section3 .factory-section3-slide .factory-section3-desc {
  max-width: 40%;
  color: #fff;
  opacity: 0.8;
}

.factory-section3 .factory-section3-slide .factory-section3-btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  height: 55px;
  padding: 0 30px;
  border-radius: 10px;
  border: 1px solid #fff;
  font-size: var(--fontsize20);
  color: #fff;
  margin-top: 30px;
  transition: all 0.3s linear;
}

.factory-section3 .factory-section3-slide .factory-section3-btn a:hover {
  background: var(--color1);
  border: 1px solid transparent;
}

.factory-section3 .factory-section3-allbtn {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 30px;
}

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

.factory-section3 .factory-section3-allbtn .factory-section3-next:hover,
.factory-section3 .factory-section3-allbtn .factory-section3-prev:hover {
  background: #414448;
}

.factory-section3 .factory-section3-allbtn .factory-section3-next {
  margin-left: 10px;
}

.factory-section3 .factory-section3-allbtn .factory-section3-next em,
.factory-section3 .factory-section3-allbtn .factory-section3-prev em {
  color: #fff;
  font-size: var(--fontsize20);
}

/* factory-section4 */
.factory-section4 {
  padding: 3% 0;
}

.factory-section4 .home-title {
  text-align: left;
}

.factory-section4 .factory-section4-text {
  margin: 20px 0 55px;
}

.factory-section4 .factory-section4-bottom {
  position: relative;
  width: 100%;
}

.factory-section4 .factory-section4-bottom .factory-section4-img {
  position: relative;
  width: 100%;
}

.factory-section4 .factory-section4-bottom .factory-section4-img img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2/1;
}

.factory-section4 .factory-section4-bottom .factory-section4-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.factory-section4 .factory-section4-bottom .factory-section4-play a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  background: #000;
  animation: about-section1 1s linear infinite;
}

/* factory-section5 */
.factory-section5 {
  background: #F9F9F9;
  padding: 3% 0;
}

.factory-section5 .factory-section5-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.factory-section5 .home-title {
  width: 40%;
  color: var(--color1);
  text-align: left;
}

.factory-section5 .factory-section5-text {
  width: 50%;
  color: #000;
  opacity: 0.7;
}

.factory-section5 .factory-section5-bottom {
  overflow: visible;
  margin-top: 35px;
}

.factory-section5 .factory-section5-slide {
  position: relative;
  width: 100%;
  opacity: 0.3;
  transition: all 0.2s linear;
}

.factory-section5 .factory-section5-slide.swiper-slide-active {
  opacity: 1;
}

.factory-section5 .factory-section5-slide .factory-section5-img {
  position: relative;
  width: 100%;
}

.factory-section5 .factory-section5-slide .factory-section5-img img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.factory-section5 .factory-section5-allbtn {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 30px;
}

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

.factory-section5 .factory-section5-allbtn .factory-section5-next:hover,
.factory-section5 .factory-section5-allbtn .factory-section5-prev:hover {
  background: #414448;
}

.factory-section5 .factory-section5-allbtn .factory-section5-next {
  margin-left: 10px;
}

.factory-section5 .factory-section5-allbtn .factory-section5-next em,
.factory-section5 .factory-section5-allbtn .factory-section5-prev em {
  color: #fff;
  font-size: var(--fontsize20);
}

/* problem */
/* problem-holde */
.problem-holde {
  background: #171717;
  padding: 12px 0;
  border: 2px solid var(--color1);
}

.problem-holde .problem-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.problem-holde .problem-list .problem-item {
  font-size: var(--fontsize18);
}

.problem-holde .problem-list ul {
  display: flex;
  align-items: center;
}

.problem-holde .problem-list ul li em {
  margin-right: 5px;
}

.problem-holde .problem-list ul li:not(:last-child) {
  margin-right: 10px;
}

/* problem-section1 */
.problem-section1 {
  background: #fff;
  padding: 3% 0;
}

.problem-section1 .problem-section1-top {
  text-align: center;
}

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

.problem-section1 .problem-section1-desc {
  color: #888;
  max-width: 800px;
  margin: 15px auto 0;
}

.problem-section1 .problem-section1-bottom {
  margin-top: 30px;
}

.problem-section1 .problem-section1-bottom .problem-section1-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.problem-section1 .problem-section1-bottom .problem-section1-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.problem-section1 .problem-section1-item .problem-section1-img {
  width: 50%;
  position: relative;
  height: auto;
  overflow: hidden;
}

.problem-section1 .problem-section1-item .problem-section1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: all 0.4s linear;
  transform: scale(1.05);
}

.problem-section1 .problem-section1-item:hover .problem-section1-img img {
  transform: scale(1);
}

.problem-section1 .problem-section1-item .problem-section1-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 20px 50px;
  height: auto;
  background: #F3F8F1;
  z-index: 1;
}

.problem-section1 .problem-section1-item .problem-section1-info::before {
  position: absolute;
  content: "";
  left: 50%;
  height: 100%;
  width: 0;
  background: var(--color1);
  top: 0;
  transition: 0.5s;
  z-index: -1;
}

.problem-section1 .problem-section1-item:hover .problem-section1-info::before {
  left: 0;
  width: 100%;
}

.problem-section1 .problem-section1-item .problem-section1-icon em {
  color: var(--color1);
  font-size: var(--fontsize46);
  transition: all 0.2s linear;
}

.problem-section1 .problem-section1-item .problem-section1-words {
  text-transform: uppercase;
  font-size: var(--fontsize18);
  font-weight: var(--fontbold6);
  color: var(--color1);
  margin-bottom: 10px;
  transition: all 0.2s linear;
}

.problem-section1 .problem-section1-item .problem-section1-title {
  font-weight: var(--fontbold7);
  font-size: var(--fontsize26);
  color: #000;
  transition: all 0.2s linear;
}

.problem-section1 .problem-section1-item .problem-section1-letter {
  color: var(--color1);
  margin: 10px 0 8px;
  transition: all 0.2s linear;
}

.problem-section1 .problem-section1-item ul li {
  display: flex;
  align-items: center;
  color: #888;
  font-weight: var(--fontbold6);
  margin-top: 8px;
  transition: all 0.2s linear;
}

.problem-section1 .problem-section1-item ul li em {
  font-weight: var(--fontbold5);
  margin-right: 8px;
  transition: all 0.2s linear;
}

.problem-section1 .problem-section1-item .problem-section1-num {
  font-size: 250px;
  line-height: 1;
  color: #fff;
  position: absolute;
  bottom: 0;
  font-weight: var(--fontbold6);
  right: 0;
  transition: 0.8s;
  z-index: -1;
}

.problem-section1 .problem-section1-item:hover .problem-section1-num {
  color: #ffffff0a;
}

.problem-section1 .problem-section1-item:hover .problem-section1-icon em,
.problem-section1 .problem-section1-item:hover .problem-section1-words,
.problem-section1 .problem-section1-item:hover .problem-section1-title,
.problem-section1 .problem-section1-item:hover .problem-section1-letter,
.problem-section1 .problem-section1-item:hover ul li,
.problem-section1 .problem-section1-item:hover ul li em {
  color: #fff;
}

/* event */
/* event-holde */
.event-holde {
  background: #171717;
  padding: 12px 0;
  border: 2px solid var(--color1);
}

.event-holde .event-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-holde .event-list .event-item {
  font-size: var(--fontsize18);
}

.event-holde .event-list ul {
  display: flex;
  align-items: center;
}

.event-holde .event-list ul li em {
  margin-right: 5px;
}

.event-holde .event-list ul li:not(:last-child) {
  margin-right: 10px;
}

/* event-section1 */
.event-section1 {
  background: #fff;
  padding: 3% 0 0;
}

.event-section1 .event-section1-slide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.event-section1 .event-section1-slide .event-section1-item {
  width: 49%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
  background: #F7F7F7;
}

.event-section1 .event-section1-slide .event-section1-img {
  width: 45%;
}

.event-section1 .event-section1-slide .event-section1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-section1 .event-section1-slide .event-section1-info {
  flex: 1;
  padding: 25px;
}

.event-section1 .event-section1-slide .event-section1-info .event-section1-tiem {
  color: #999;
}

.event-section1 .event-section1-slide .event-section1-info .event-section1-title {
  color: var(--fontcolor);
  font-size: var(--fontsize22);
  font-weight: var(--fontbold6);
  line-height: 1.4;
  margin-bottom: 10px;
}

.event-section1 .event-section1-slide .event-section1-info .event-section1-desc {
  color: #666;
}

.event-section1-allbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  margin-bottom: 20px;
}

.event-section1-allbtn .event-section1-next,
.event-section1-allbtn .event-section1-prev {
  background: #333;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
}

.event-section1-allbtn .event-section1-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-section1-allbtn .event-section1-pagination .swiper-pagination-bullet-active {
  background: #333;
}

.contact-box {
  background: #fff;
  padding: 3% 0;
  color: #333;
}

.contact-box .l-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.contact-box .contact-info {
  width: 30%;
  background: #333;
  color: #fff;
  padding: 20px;
}

.contact-box .contact-info .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-box .contact-info ul li {
  margin-bottom: 1rem;
}

.contact-box .contact-info ul li span {
  font-size: 18px;
}

.contact-box .contact-info ul li p {
  font-size: 15px;
}

.contact-box .contact-feedback {
  flex: 1;
  margin-left: 3%;
  background: #eee;
  padding: 20px;
}

.products-feedback {
  margin-top: 100px;
}

#consultation .item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

#consultation .item label {
  width: 60px;
  text-align: right;
  margin-right: 10px;
  line-height: 40px;
}

#consultation .item input {
  border: none;
  outline: none;
  resize: none;
  flex: 1;
  height: 40px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid #ccc;
  transition: all 0.1s linear;
}

#consultation .item input:focus {
  border-color: #4e68d0;
}

#consultation .item textarea {
  font-family: var(--fontfamily);
  border: none;
  outline: none;
  resize: none;
  flex: 1;
  height: 80px;
  padding: 10px 10px;
  border-radius: 3px;
  border: 1px solid #ccc;
  transition: all 0.1s linear;
}

#consultation .item textarea:focus {
  border-color: #4e68d0;
}

#consultation .item button {
  min-width: 120px;
  height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #333;
  border: 1px solid #333;
  outline: none;
  transition: all 0.2s linear;
  cursor: pointer;
  margin-left: 70px;
  font-size: 16px;
}

#consultation .item button:hover {
  background: #fff;
  color: #333;
}

@media (max-width: 1024px) {
  .about-us-holde .page-list .page-item {
    font-size: 14px;
  }

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

  .about-section1 .about-section1-list .about-section1-left {
    width: 100%;
  }

  .about-section1 .about-section1-left .about-section1-bigimg {
    width: 100%;
    margin: 0;
  }

  .about-section1 .about-section1-left .about-section1-bigtext2 {
    color: #fff;
  }

  .about-section1 .about-section1-list .about-section1-right {
    width: 100%;
    margin-top: 30px;
  }

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

  .about-section3 .about-section3-item {
    flex: none !important;
    height: 300px !important;
    margin-right: 0 !important;
  }

  .about-section3 .about-section3-item .about-section3-img {
    opacity: 1;
  }

  .about-section1 .about-section1-left .about-section1-box {
    padding: 20px;
  }

  .about-section3 .about-section3-item .about-section3-title {
    opacity: 0;
  }

  .about-section3 .about-section3-item .about-section3-inner {
    opacity: 1;
    transform: translateY(0);
  }

  .about-section3 .about-section3-item.aive::after {
    opacity: 1;
  }

  .about-section4 .about-section4-box {
    flex-direction: column;
  }

  .about-section4 .about-section4-box .about-section4-left {
    width: 100%;
    padding: 0;
  }

  .about-section4 .about-section4-box .about-section4-right {
    width: 100%;
    margin-top: 20px;
  }

  .about-section4 .about-section4-left img {
    position: static !important;
    width: 100% !important;
    aspect-ratio: inherit !important;
    margin-top: 20px;
  }

  .about-section3 .about-section3-inner {
    font-size: 18px;
  }

  .products-page1 .products-page1-top {
    flex-direction: column;
  }

  .technology-section2 {
    height: auto;
  }

  .technology-section2 .technology-section2-box {
    margin: 150px 0;
  }

  .technology-section3 .technology-section3-row {
    flex-direction: column;
  }

  .technology-section3 .technology-section3-col {
    width: 100%;
    height: 300px;
    flex: none !important;
  }

  .technology-page2 .technology-page2-box3 {
    height: 600px;
  }

  .technology-page2 .technology-page2-box4 .technology-page2-title,
  .technology-page2 .technology-page2-box3 .technology-page2-title {
    font-size: 34px;
  }

  .technology-page2 .technology-page2-box4 .technology-page2-info {
    position: static;
  }

  .technology-holde .technology-list .technology-item {
    font-size: 14px;
  }

  .technology-page3 .technology-page3-box1 .technology-page3-info {
    width: 100%;
    top: 60%;
  }

  .technology-page3 .technology-page3-box1 .technology-page3-title {
    font-size: 34px;
    width: 100%;
  }

  .technology-page3 .technology-page3-box4 .technology-page3-content {
    flex-direction: column;
  }

  .technology-page3 .technology-page3-box4 .technology-page3-content .technology-page3-left {
    width: 100%;
    padding: 50px 20px;
  }

  .technology-page3 .technology-page3-box4 .technology-page3-content .technology-page3-left .technology-page3-info {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .technology-page3 .technology-page3-box4 .technology-page3-content .technology-page3-right {
    width: 100%;
  }

  .technology-page3 .technology-page3-box4 .technology-page3-data {
    width: 100%;
    margin-top: 20px;
  }

  .technology-page3 .technology-page3-box4 .technology-page3-info {
    font-size: 20px;
  }

  .technology-page4 .technology-page4-box1 .technology-page4-info {
    width: 100%;
    padding: 0 20px;
  }

  .technology-page4 .technology-page4-box1 .technology-page4-title {
    font-size: 34px;
  }

  .factory-section1 .factory-section1-title {
    font-size: 34px;
  }

  .factory-section1 .factory-section1-img {
    height: 500px;
  }

  .factory-section1 .factory-section1-info {
    height: auto;
    width: 100%;
  }

  .factory-section1 .factory-section1-btn a {
    min-width: 200px;
    height: 50px;
    margin-top: 20px;
  }

  .contact-box .l-wrap {
    flex-direction: column;
  }

  .contact-box .contact-info {
    width: 100%;
  }

  .contact-box .contact-feedback {
    width: 100%;
    margin: 0;
  }

  #consultation {
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }

  #consultation .item label {
    width: auto;
  }

  #consultation .item button {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section1 .about-section1-right .about-section1-content {
    flex-direction: column;
  }

  .about-section1 .about-section1-content .about-section1-letter {
    width: 100%;
    margin-top: 20px;
  }

  .about-section1 .about-section1-bottom {
    flex-direction: column;
  }

  .about-section1 .about-section1-bottom .about-section1-phone {
    margin: 40px 0;
  }

  .about-section2 .about-section2-list .about-section2-item {
    width: 100%;
  }

  .about-section2 .about-section2-item .about-section2-info {
    padding: 20px 0;
  }

  .about-section1 .about-section1-bottom a {
    margin: 0;
    height: 50px;
  }

  .about-page2 .about-page2-slide {
    flex-direction: column;
    justify-content: flex-start;
  }

  .about-page2 .about-page2-slide .about-page2-img,
  .about-page2 .about-page2-slide .about-page2-info {
    width: 100%;
  }

  .about-page2 .about-page2-slide .about-page2-info {
    padding: 20px;
  }

  .about-page3 .swiper-wrapper {
    flex-direction: column;
  }

  .about-page3 .about-page3-box {
    padding: 30px 0;
    margin: 0;
  }

  .about-page3 .about-page3-box .about-page3-next,
  .about-page3 .about-page3-box .about-page3-prev,
  .about-page3 .about-page3-box::after,
  .about-page3 .about-page3-box .swiper-slide .about-page3-info::after,
  .about-page3 .about-page3-box .swiper-slide .about-page3-info::before {
    display: none;
  }

  .about-page3 .about-page3-box .swiper-slide:nth-child(2n) .about-page3-info {
    margin: 0;
  }

  .about-page3 {
    padding-top: 40px;
  }

  .about-page3 .about-page3-box .swiper-slide {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 2em !important;
  }

  .products-section2 .products-section2-slide .products-section2-info {
    position: static;
    transform: none;
  }

  .products-holde a {
    font-size: 14px;
  }

  .products-holde .products-list .products-item {
    font-size: 14px;
  }

  .products-section2 .products-section2-btn {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }

  .products-section2 .products-section2-slide .products-section2-name {
    font-size: 32px;
  }

  .products-section2 .products-section2-slide:first-child .products-section2-center p {
    font-size: 16px;
  }

  .products-section2 .products-section2-pagination {
    padding-bottom: 15%;
  }

  .products-section3 .products-section3-box {
    flex-direction: column;
  }

  .products-section3 .products-section3-box .products-section3-content {
    width: 100%;
  }

  .products-section3 .products-section3-box .products-section3-right {
    width: 100%;
    margin-top: 20px;
  }

  .products-page1 .thumbnail-box .prodetails-button-next,
  .products-page1 .thumbnail-box .prodetails-button-prev {
    display: none;
  }

  .products-page1 .preview-container {
    width: 100%;
  }

  .products-page1 .preview-container .thumbnail-box {
    width: 100%;
    height: auto;
  }

  .products-page1 .preview-container .thumbnail-show {
    display: none;
  }

  .products-page1 .preview-container .thumbnail-box .item {
    border-color: var(--color1);
  }

  .products-page1 .prodetails-info {
    padding: 0;
  }

  .products-page1 .prodetails-item {
    width: 100%;
  }

  .products-page1 .prodetails-info .prodetails-btnlist {
    justify-content: space-between;
  }

  .products-page1 .prodetails-info .prodetails-btnlist>* {
    margin-right: 0;
    width: 49%;
    min-width: inherit;
  }

  .technology-section1 .technology-section1-item {
    width: 100%;
  }

  .technology-section3 .technology-section3-titles em,
  .technology-section3 .technology-section3-titwrap em {
    font-size: 30px;
  }

  .technology-section3 .technology-section3-titles p,
  .technology-section3 .technology-section3-titwrap p {
    font-size: 18px;
  }

  .technology-section4 .technology-section4-list .technology-section4-top .technology-section4-name {
    font-size: 30px;
  }

  .technology-section4 {
    padding: 150px 0;
  }

  .technology-page2 .technology-page2-box1 .technology-page2-title {
    font-size: 24px;
  }

  .technology-page2 .technology-page2-box2 .technology-page2-img {
    height: auto;
  }

  .technology-page2 .technology-page2-box2 .technology-page2-info {
    width: 100%;
  }

  .technology-page2 .technology-page2-box2 .technology-page2-info p {
    font-size: 18px;
  }

  .technology-page2 .technology-page2-box4 .technology-page2-title,
  .technology-page2 .technology-page2-box3 .technology-page2-title {
    font-size: 26px;
  }

  .technology-page2 .technology-page2-box4 {
    padding-top: 40px;
  }

  .technology-page3 .technology-page3-box2 .technology-page3-info p {
    font-size: 18px;
  }

  .technology-page3 .technology-page3-box3 ul {
    flex-direction: column;
    text-align: center;
  }

  .technology-page4 .technology-page4-box2 .technology-page4-item {
    width: 100%;
    margin-top: 20px;
  }

  .technology-page4 .technology-page4-box3 .technology-page4-item {
    width: 100%;
    margin-top: 20px;
  }

  .technology-page1 .technology-page1-box2 .technology-page1-desc {
    flex-direction: column;
  }

  .technology-page1 .technology-page1-box2 p {
    width: 100%;
  }

  .technology-page1 .technology-page1-box2 ul {
    width: 100%;
  }

  .technology-page1 .technology-page1-box4 .technology-page1-info {
    width: 100%;
    padding: 0 10px;
  }

  .factory-section1 .factory-section1-title {
    font-size: 26px;
  }

  .factory-section2 .factory-section2-box .factory-section2-item {
    width: 100%;
  }

  .factory-section2 .factory-section2-item .factory-section2-title {
    width: 100%;
    font-size: 18px;
    padding: 15px;
  }

  .factory-section3 .factory-section3-title {
    flex-direction: column;
  }

  .factory-section3 .home-title {
    width: 100%;
    text-align: center;
  }

  .factory-section3 .factory-section3-text {
    width: 100%;
    margin-top: 20px;
  }

  .factory-section3 .factory-section3-slide .factory-section3-info {
    position: static;
    transform: none;
  }

  .factory-section3 .factory-section3-slide .factory-section3-desc,
  .factory-section3 .factory-section3-slide .factory-section3-title {
    opacity: 1;
    width: 100%;
    color: #333;
    margin-top: 15px;
    max-width: 100%;
  }

  .factory-section3 .factory-section3-list .factory-section3-words {
    font-weight: 500;
    font-size: 16px;
  }

  .factory-section3 .factory-section3-bottom {
    overflow: hidden;
  }

  .factory-section5 .factory-section5-title {
    flex-direction: column;
  }

  .factory-section5 .home-title {
    width: 100%;
    text-align: center;
  }

  .factory-section5 .factory-section5-text {
    width: 100%;
    margin-top: 15px;
  }

  .factory-section5 .factory-section5-bottom {
    overflow: hidden;
  }

  .problem-section1 {
    padding-top: 40px;
  }

  .problem-section1 .problem-section1-bottom .problem-section1-item {
    flex-direction: column !important;
  }

  .problem-section1 .problem-section1-bottom .problem-section1-item .problem-section1-img {
    width: 100%;
  }

  .problem-section1 .problem-section1-bottom .problem-section1-item .problem-section1-info {
    width: 100%;
    padding: 20px 10px;
  }

  .problem-section1 .problem-section1-item .problem-section1-icon em {
    font-size: 30px;
  }

  .problem-section1 .problem-section1-item .problem-section1-title {
    font-size: 18px;
  }

  .event-section1 .event-section1-slide .event-section1-item {
    width: 100%;
    flex-direction: column;
  }

  .event-section1 .event-section1-slide .event-section1-item .event-section1-img {
    width: 100%;
  }

  .event-section1 .event-section1-slide .event-section1-item .event-section1-info {
    padding: 20px 15px;
  }

  .event-section1 .event-section1-slide .event-section1-info .event-section1-title {
    font-size: 18px;
  }
}