/*
 *	Created by Edward on 26/01/06
*/
html {
  font-size: 16px;
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
@font-face {
  font-family: 'iconfont';
  src:
    url('iconfont.woff2?t=1663740079843') format('woff2'),
    url('iconfont.woff?t=1663740079843') format('woff'),
    url('iconfont.ttf?t=1663740079843') format('truetype');
}

.iconfont {
  font-family: 'iconfont' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0px;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  src:
    url('../fonts/Montserrat-Regular.eot') format('eot'),
    url('../fonts/Montserrat-Regular.svg') format('svg'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype'),
    url('../fonts/Montserrat-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url(../fonts/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
  font-family: 'Montserrat-Medium';
  src: url(../fonts/Montserrat-Medium.ttf);
}

body,
html {
  color: #000;
  font-family: 'Montserrat', '微软雅黑', sans-serif;
  font-weight: 300;
  /* cubic-bezier(.4,0,.2,1) */
  /* transition: cubic-bezier(0.47, 0, 0.745, 0.715); */
}

body.cn {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  font-weight: normal;
}

b,
strong {
  font-weight: 400;
}

textarea,
input,
select {
  font-family: 'Montserrat', '微软雅黑', 'Arial';
  font-size: 0.875rem;
  outline: none;
  border: none;
}

button {
  border: none;
}

header {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  top: 0;
  padding: 15px 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

header::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: #fff;
  transition: all 0.4s;
  transform: scaleY(0);
  pointer-events: none;
  transform-origin: left top;
}

header.active::before {
  transform: scaleY(1);
}

header.active .logo img:nth-child(2),
header.show .logo img:nth-child(2),
header.active .langue .icon img:nth-child(2),
header.show .langue .icon img:nth-child(2) {
  opacity: 1;
}

header.active .logo img:nth-child(1),
header.show .logo img:nth-child(1),
header.active .langue .icon img:nth-child(1),
header.show .langue .icon img:nth-child(1) {
  opacity: 0;
}

header.active nav a,
header.show nav a,
header.active .langue,
header.show .langue {
  color: #000;
}

header.active .download,
header.show .download {
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.download:hover,
header.active .download:hover,
header.show .download:hover {
  border-color: transparent;
}

.logo {
  width: 145px;
  position: relative;
}

.logo img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

nav {
  display: flex;
  gap: 2vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav a {
  color: #fff;
  padding: 7px 25px;
  position: relative;
}

nav a p {
  position: relative;
}

nav a::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.5);
  opacity: 0;
}

.singePage {
  word-break: break-word;
}

nav a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.banner {
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  will-change: width, height;
}

.banner .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.banner .img::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: rgba(0, 0, 0, 0.2);
}

.banner .img video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-conf {
  width: auto;
  display: flex;
  gap: 2vw;
  align-items: center;
  position: relative;
}

.langue .icon {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}

.langue .icon img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.langue {
  width: auto;
  height: auto;
  position: relative;
  color: #fff;
  line-height: 40px;
}

.langue .lan-top {
  width: auto;
  display: flex;
  align-items: center;
  gap: 0.25vw;
}

.langue .list {
  width: 140px;
  height: auto;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -70px;
  border-radius: 16px;
  overflow: hidden;
  top: 50px;
  opacity: 0;
  padding: 0px 0px;
  pointer-events: none;
  transition: all 0.35s;
  box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.1);
}

.langue .list a:first-child {
  padding-top: 10px;
}

.langue .list a:last-child {
  padding-bottom: 10px;
}

.langue .list a:hover {
  background: #f7f7f7;
}

.langue:hover .list {
  opacity: 1;
  pointer-events: auto;
  top: 40px;
}
.langue .list a {
  display: block;
  text-align: center;
  line-height: 46px;
  font-size: 15px;
}
.langue .list a:hover,
.langue .list a.active {
  color: #098b47;
}
.langue .list a.active {
  font-family: 'Montserrat-SemiBold';
}

.download {
  line-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: auto;
  height: 36px;
  text-align: center;
  transition: all 0.4s;
  padding: 0px 1.25vw;
}

.download p {
  position: relative;
}

.download::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(108deg, #4cf389 0%, #42ff6f 17%, #94f695 78%, #98fe6b 103%);
  content: '';
  border-radius: 50px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download:hover::before {
  transform: scale(1);
  opacity: 1;
}

.service-warp {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

.common-name {
  text-align: center;
  width: 100%;
  margin-bottom: 4vw;
  position: relative;
}

.common-name.mb2 {
  margin-bottom: 30px;
}

.common-name .name {
  font-size: 2.5rem;
  overflow: hidden;
  font-family: 'Montserrat-Medium';
  display: flex;
  justify-content: center;
  width: 100%;
}

.common-name .name p {
  transform: translateY(100%);
}

.common-name .name:nth-child(2) {
  font-family: 'Montserrat-SemiBold';
}

.common-name1 p {
  transform: translateY(100%);
}

.common-name1 .desc p {
  background:
    linear-gradient(113deg, #048a74 21%, rgba(4, 138, 116, 0) 51%),
    linear-gradient(175deg, #127d49 58%, #36b55c 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.common-name .name:nth-child(2) p {
  background:
    linear-gradient(113deg, #048a74 21%, rgba(4, 138, 116, 0) 51%),
    linear-gradient(175deg, #127d49 58%, #36b55c 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.common-name .info {
  padding: 0px 25%;
  line-height: 1.4;
  color: #999;
  overflow: hidden;
  font-weight: 100;
}

.common-name .info span {
  display: block;
  transform: translateY(100%);
}

.common-name.common-name1 .desc {
  margin-bottom: 0.5vw;
}

.connect-list {
  width: 100%;
}

.common-name.common-name1 {
  margin-bottom: 0vw;
  position: absolute;
  width: 100%;
  line-height: 1.1;
  top: 35%;
  transform: translateY(-50%);
}

.connect-list .item {
  width: 100%;
  height: auto;
  margin-bottom: 10vw;
}

.connect-list .item:nth-child(even) .box {
  direction: rtl;
}

.connect-list .item:nth-child(even) .box .info {
  direction: initial;
}

.connect-list .item .box {
  width: 100%;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: space-between;
}

.connect-list .item .box .thum {
  width: 53%;
  border-radius: 2vw;
  overflow: hidden;
  max-width: 700px;
}

.connect-list .item .box .thum .img {
  position: relative;
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  will-change: transform;
  overflow: hidden;
  aspect-ratio: 1;
}

.yPercent100 {
  transform: translateY(100%);
}
.connect-list .item.is-inview .box .thum .img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.connect-list .item.is-inview .box .thum .img img {
  transform: scale(1);
}
.connect-list .item.is-inview .box .thum .img::after {
  transform: scaleY(0);
}
.connect-list .item .box .thum .img img {
  transform: scale(1.1);
  transition: all 4s ease 0.5s;
  will-change: transform;
}

.connect-list.home .item .box .thum .img img {
  aspect-ratio: 1;
}

.connect-list .item.is-inview .tips .line {
  transform: translateY(0%);
}

.connect-list .item .box .thum .img::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: linear-gradient(108deg, #4cf389 0%, #42ff6f 17%, #94f695 78%, #98fe6b 103%);
  transform-origin: center bottom;
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1) 0.5s;
  will-change: transform;
}

.connect-list .item .box .info {
  width: 40%;
}

.connect-list .item .tips {
  margin-bottom: 2vw;
}

.connect-list .item .title {
  width: 100%;
  margin-bottom: 2vw;
  font-size: 1.8rem;
  font-family: 'Montserrat-Medium';
}

.cn .connect-list .item .title {
  font-weight: bold;
}

.connect-list .item .title .tips {
  font-size: 1rem;
  margin-top: 0.5vw;
  color: #666666;
  font-family: 'Montserrat';
}
.app-swiper .swiper-slide .info .top .title p {
  display: flex;
  align-items: flex-start;
}
.connect-list .item .title .name {
  overflow: hidden;
}

.en .connect-list .item .title .name {
  /* white-space: nowrap; */
}

.connect-list .item .title .name p {
  transform: translateY(100%);
}

.connect-list.ip .item .title .name p {
  transform: translateY(0%);
  opacity: 1;
}

.connect-list .item .title .name.green span {
  background:
    linear-gradient(113deg, #048a74 21%, rgba(4, 138, 116, 0) 51%),
    linear-gradient(175deg, #127d49 58%, #36b55c 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.connect-list .item .ms {
  font-size: 0.875rem;
  font-weight: 100;
  margin-top: 0.5vw;
}

.connect-list .item .title span,
.common-name .name span {
  background:
    linear-gradient(113deg, #048a74 21%, rgba(4, 138, 116, 0) 51%),
    linear-gradient(175deg, #127d49 58%, #36b55c 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat-SemiBold';
  display: inline-flex;
  align-items: flex-start;
}

.model-box .singePage p a {
  text-decoration: underline;
}

.connect-list .list {
  width: 100%;
  height: auto;
  position: relative;
  max-width: 500px;
}

.connect-list .list .row {
  width: 100%;
  height: auto;
  display: flex;
  padding: 1.5vw 0px;
  align-items: center;
  position: relative;
  border-bottom: 1px dashed rgba(111, 144, 123, 0.2);
  justify-content: space-between;
}

.connect-list .list .row:last-child {
  border-bottom: none;
}

.connect-list .list .row .icon {
  width: 40px;
  transform: scale(0);
}

.connect-list .list .row .txt {
  width: calc(100% - 50px);
  color: #333333;
  line-height: 1.4;
}

.connect-warp {
  padding-bottom: 0;
}

.banner .info {
  width: 90%;
  height: auto;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
  color: #fff;
}

.banner .info .name {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  overflow: hidden;
  margin-bottom: 1vw;
  font-family: 'Montserrat-SemiBold';
}

.p {
  overflow: hidden;
  position: relative;
}

.banner .info .desc {
  width: 100%;
  height: auto;
  position: relative;
  line-height: 1.7;
  padding: 0px 5%;
  margin-bottom: 2vw;
  color: rgba(255, 255, 255, 0.7);
}

.more-btn {
  width: auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.more-btn .box {
  width: auto;
  display: flex;
  gap: 1vw;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  align-items: center;
  padding: 0.75vw 1.25vw;
}

.more-btn .box::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: #fff;
}

.more-btn .box::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0;
  content: '';
  background: linear-gradient(109deg, #4cf389 0%, #42ff6f 17%, #94f695 78%, #98fe6b 103%);
  transition: all 0.4s;
  border-radius: 50px;
  opacity: 0;
}

.more-btn .box:hover::after {
  opacity: 1;
}

.more-btn .box .icon {
  width: 25px;
  height: 25px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  z-index: 2;
  overflow: hidden;
}

.more-btn .box .txt {
  position: relative;
  color: #000;
  height: 20px;
  overflow: hidden;
  z-index: 2;
  line-height: 20px;
}

.more-btn .box .txt p:first-child {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-top: 0;
}

.more-btn .box:hover .txt p:first-child {
  margin-top: -20px;
}

.more-btn .box .icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s;
  will-change: left, top;
}

.more-btn .box .icon img:nth-child(2) {
  left: -25px;
  top: 25px;
  opacity: 0;
}

.more-btn .box:hover .icon img:nth-child(1) {
  left: 25px;
  top: -25px;
  opacity: 0;
}

.more-btn .box:hover .icon img:nth-child(2) {
  left: 0px;
  top: 0px;
  opacity: 1;
}

.product-swiper {
  width: 84%;
  opacity: 0;
  position: absolute;
  left: 8%;
  top: 75%;
  transform: translateY(-50%);
}

.product-swiper .swiper-slide {
  aspect-ratio: 1 / 1.78;
  border-radius: 1vw;
  overflow: hidden;
  opacity: 0.1;
  transition: all 0.35s;
  transform: scale(0.85);
}

.product-swiper .swiper-slide.swiper-slide-next,
.product-swiper .swiper-slide.swiper-slide-prev {
  opacity: 0.35;
}

.product-swiper .swiper-slide.swiper-slide-prev {
  transform: translateX(-0.75vw) scale(0.85);
}

.product-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.product-swiper .swiper-slide .img,
.product-swiper .swiper-slide .img video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.home-warp {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
  background: #fff;
}

.menu-wrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.menu-wrap.stick {
  position: sticky;
  top: 80px;
}

.zymix-menu {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  position: relative;
  background: #f4f5f7;
  padding: 3px;
  border-radius: 100px;
}

.zymix-menu .item {
  width: auto;
  display: flex;
  position: relative;
  opacity: 0.6;
  cursor: pointer;
}

.bimg {
  width: 30%;
  height: auto;
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translateY(-50%);
}

.zymix-menu .item:hover {
  opacity: 1;
}

.zymix-menu .item.active {
  opacity: 1;
}

.zymix-menu .item .box {
  width: auto;
  display: flex;
  position: relative;
  align-items: center;
  gap: 0.3vw;
  line-height: max(2.5vw, 48px);
  padding: 0px 1.5vw;
  font-size: 15px;
}

.zymix-menu .item .box::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: linear-gradient(109deg, #4cf389 0%, #42ff6f 17%, #94f695 78%, #98fe6b 103%);
  border-radius: 50px;
  transition: all 0.3s;
  transform: scale(0);
  opacity: 0.5;
}

.zymix-menu .item.active .box::before {
  transform: scale(1);
  opacity: 1;
}

.zymix-menu .item .box .icon {
  width: 20px;
  height: auto;
  position: relative;
}

.zymix-menu .item .box .txt {
  width: auto;
  position: relative;
}

.app-swiper {
  width: 100%;
  margin-top: 3vw;
  border-radius: 24px;
  overflow: hidden;
}

.app-swiper .swiper-slide {
  width: 100%;
  aspect-ratio: 100 / 61;
  overflow: hidden;
}

.app-swiper .swiper-slide .pro,
.app-swiper .swiper-slide .pro img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.app-swiper .swiper-slide .info {
  width: 40%;
  height: auto;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.app-swiper .swiper-slide .info .more {
  width: 135px;
  height: auto;
  color: #08663b;
  display: inline-block;
}

.app-swiper .swiper-slide .info .more .box {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 50px;
  border: 1px solid #08663b;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 40px;
}

.app-swiper .swiper-slide .info .more .box .icon {
  width: 20px;
}

.app-swiper .swiper-slide .info .top {
  width: 100%;
  height: auto;
  margin-bottom: 2vw;
  font-size: 2.215rem;
  font-family: 'Montserrat-Medium';
}

.app-swiper .swiper-slide .info .top .infos {
  font-family: 'Montserrat';
  opacity: 0.7;
}

.app-swiper .swiper-slide .info .top .title {
  overflow: hidden;
  position: relative;
}

.app-swiper .swiper-slide .info .top .title:nth-child(2) {
  font-weight: 600;
  font-family: 'Montserrat-SemiBold';
}

.app-swiper .swiper-slide .info .top .title:nth-child(2) sup {
  color: #127d49;
}

.app-swiper .swiper-slide .info .top .infos {
  font-size: 1rem;
  opacity: 0.6;
  margin-top: 1vw;
}

.app-swiper .swiper-slide .info .desc {
  width: 100%;
  height: auto;
  position: relative;
  line-height: 2;
  color: #333333;
  margin-bottom: 2vw;
  font-size: 0.875rem;
}

.app-paga {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 2vw;
}

.app-paga .swiper-pagination {
  bottom: 0%;
  top: 0;
  width: auto;
  background: #ebebf0;
  padding: 1vw;
  border-radius: 50px;
  position: relative;
}

.app-paga .swiper-pagination-bullet {
  margin: 0px;
  background: #6f6f73;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s;
}

.app-paga .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 36px;
}

.app-paga .swiper-pagination-bullet::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: #29292a;
  transform: scaleX(0);
  transform-origin: top left;
}

.app-paga .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  transform: scaleX(1);
  transition: all 4s linear;
}

.container {
  z-index: 2;
}

.container::before {
  width: 100%;
  height: 25vw;
  content: '';
  position: absolute;
  left: 0;
  bottom: -20vw;
  pointer-events: none;
}

.container::after {
  width: 100%;
  height: 100%;
  content: '';
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 0 0 5vw 5vw;
  box-shadow: 0px 1.5rem 10rem 0px rgba(0, 170, 133, 0.6);
}

footer {
  height: auto;
  padding-top: 10vw;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  will-change: transform;
}

footer::before {
  width: 100%;
  height: calc(100% + 5vw);
  position: absolute;
  left: 0;
  top: -5vw;
  content: '';
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 3rem,
      rgba(255, 255, 255, 0.5152) 12rem,
      rgba(255, 255, 255, 0.7609) 16rem,
      rgba(255, 255, 255, 0.9524) 30rem,
      #ffffff 40rem
    ),
    linear-gradient(150deg, #41f4b0 3rem, #52ed7b 18rem, #b0f694 40rem, #dcf1a7 50rem);
}

footer.ip::before {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 16%,
      rgba(255, 255, 255, 0.5199) 26%,
      rgba(255, 255, 255, 0.7609) 33%,
      rgba(255, 255, 255, 0.9524) 46%,
      #ffffff 61%
    ),
    linear-gradient(129deg, #41f4b0 28%, #52ed7b 43%, #b0f694 64%, #dcf1a7 75%);
}

.footer-top {
  width: 100%;
}

.footer-top .w1400 {
  width: 80%;
}

.footer-info {
  width: 100%;
  text-align: center;
  position: relative;
}

.footer-info .img {
  width: 100%;
  margin-top: 2vw;
  margin-bottom: 1vw;
}

.footer-info .tips {
  margin-bottom: 0.5vw;
}

.footer-info .name {
  width: 100%;
  font-size: 2.2rem;
  position: relative;
}

.es .footer-info .name {
  font-size: 1.6rem;
}

.footer-info .name .mask-txt {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #0b8d32;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-info .name .lab {
  width: 100%;
}

.footer-info .name .defaut-txt {
  opacity: 0.3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cn .footer-info .name .mask-txt {
  display: grid;
}

.cn .footer-info .name .defaut-txt {
  display: grid;
  font-weight: 600;
}

.homepage,
.product-menu,
.connect-list.ip {
  display: none;
}

.connect-list.ip.feature {
  display: block;
}
.footer-info .name .mask-txt .txt {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.footer-info.active .name .mask-txt .txt {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.footer-info.active .name .mask-txt .txt:nth-child(2) {
  transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s;
}

.footer-con {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2vw 0px;
  border-bottom: 0.5px solid rgba(153, 153, 153, 0.5);
  font-size: 0.9375rem;
}

.mini-tips {
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 3vw;
  color: #666;
}

.linklist,
.listbox {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.linklist {
  gap: 1vw;
}

.linklist .icon {
  width: 40px;
}

.listbox .li {
}

.listbox .li .label {
  color: #999999;
}

.listbox .li .txt {
  margin-top: 0.25vw;
  font-family: 'Montserrat';
}

.f-logo {
  width: 200px;
}

.listbox {
  gap: 3vw;
}

.copyright {
  padding: 2vw 0;
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  color: #666666;
  direction: rtl;
  padding-bottom: 4vw;
}

.copyright .cp {
  direction: initial;
  font-family: 'Montserrat';
}

.other-link {
  width: auto;
  display: flex;
  gap: 2vw;
  direction: ltr;
}

.other-link a {
  color: #666666;
  position: relative;
}

.other-link a::after {
  width: 1px;
  height: 60%;
  position: absolute;
  right: -1vw;
  top: 20%;
  content: '';
  background: rgba(87, 87, 87, 0.3);
}

.other-link a:last-child::after {
  display: none;
}

.footer-line {
  height: 10px;
  width: 100%;
  position: absolute;
}

.other-link a:hover {
  color: #000;
}

.sub-banner {
  z-index: 1;
  aspect-ratio: 100 / 42;
  display: flex;
  align-items: center;
}

.sub-banner.dd {
  aspect-ratio: 2 / 1;
}

.sub-banner::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background:
    radial-gradient(75% 74% at 0% 91%, rgba(255, 255, 255, 0.3) 14%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(196deg, #c9fed3 30%, #eaffe5 61%, #ffffff 112%);
  opacity: 0.6;
}

.sub-banner.dd::before {
  background:
    radial-gradient(31% 31% at 100% 4%, #23ee85 0%, rgba(35, 238, 133, 0) 100%),
    radial-gradient(55% 55% at 0% 76%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(186deg, rgba(255, 255, 255, 0) 5%, #ffffff 63%),
    linear-gradient(156deg, #5eeda1 -2%, #4cff77 11%, #94f695 47%, #bef1a7 77%);
  opacity: 0.2;
  border-radius: 0px 0px 5vw 5vw;
}

.site-img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 1920px;
}

.sub-banner.sm .txtbox .txt {
  font-size: 2rem;
}

.sub-banner .imgs {
  position: absolute;
  right: 0;
  width: 45%;
  top: 50%;
  transform: translateY(-50%);
}

.sub-banner.dd .imgs {
  width: 55%;
  right: -2.5%;
}

.sub-banner .ab-img {
  width: 116%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  max-width: 2254px;
}

.sub-banner .txtbox {
  width: 65%;
  height: auto;
  position: relative;
  z-index: 2;
}
.sub-banner .txtbox .tit {
  font-size: 3.5rem;
  font-family: 'Montserrat-Bold';
  margin-bottom: 2vw;
}

.sub-banner .txtbox .tit span {
  background:
    linear-gradient(113deg, #048a74 21%, rgba(4, 138, 116, 0) 51%),
    linear-gradient(175deg, #127d49 58%, #36b55c 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-banner .txtbox .tip {
  font-weight: 500;
  font-size: 0.875rem;
  color: #014224;
  line-height: 2;
  border-radius: 0.2vw;
  padding: 0 0.5rem;
  background: linear-gradient(119deg, #38fb66 0%, rgba(134, 252, 128, 0.73) 240%);
  text-transform: uppercase;
  display: inline-block;
}

.sub-banner .txtbox .txt {
  width: 80%;
  line-height: 1.5;
  opacity: 0.7;
  font-size: 1.375rem;
  margin-bottom: 0.5vw;
}

.sub-banner .txtbox .zymix {
  width: 17rem;
  margin: 1.2rem 0;
  display: block;
}

.sub-banner .txtbox .msg {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.6;
  color: #333333;
  max-width: 788px;
}

.connect-list.ip {
  margin-top: 3vw;
  padding-bottom: 5vw;
}

.connect-list.ip .list .row .icon {
  transform: scale(1);
}

.connect-list.ip .item .box .thum {
  width: 48%;
  overflow: initial;
  direction: initial;
}

.connect-list.ip .item:nth-child(2) .box .thum,
.connect-list.ip .item:nth-child(4) .box .thum {
  left: 5%;
}

.connect-list.ip .item .box .thum .img {
  width: 100%;
  height: auto;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: none;
  overflow: initial;
}

.connect-list.ip .item .box .thum .img::after {
  display: none;
}
.connect-list.ip .item .box .thum .img img {
  transform: scale(1);
}
.connect-list.ip .item:nth-child(odd) .box {
  direction: rtl;
}

.connect-list.ip .item:nth-child(even) .box {
  direction: initial;
}

.connect-list.ip .item:nth-child(odd) .box .info {
  direction: initial;
}

.connect-list.ip .item .box .thum .img .small {
  width: 43%;
  height: auto;
  position: absolute;
  left: 11%;
  top: 50%;
  box-shadow: 0px 3.4px 47.6px 0px rgba(0, 0, 0, 0.2);
  border-radius: 17px;
  overflow: hidden;
  transform-origin: right bottom;
}

.connect-list.ip .item .box .thum .img > img:nth-child(1) {
  width: 80%;
  margin-left: 10%;
}

.connect-list.ip .item:nth-child(2) .box .thum .img > img:nth-child(1) {
  margin-left: 0%;
}

.connect-list.ip .item:nth-child(2) .box .thum .img:nth-child(1) {
  width: 100%;
  margin-left: 0%;
}

.connect-list.ip .item:nth-child(2) .box .thum .img .small {
  width: 30%;
  height: auto;
  position: absolute;
  left: 25%;
  top: auto;
  bottom: 5%;
  transform-origin: left bottom;
}

.connect-list.ip .item:nth-child(3) .box .thum .img .small {
  width: 37%;
  top: 50%;
  left: 27%;
  transform-origin: center bottom;
}

.connect-list.ip .item:nth-child(4) .box .thum .img .small {
  width: 19%;
  left: 35%;
  top: 63%;
  transform-origin: left bottom;
}

.connect-list.ip .item:nth-child(5) .box .thum .img .small {
  width: 38%;
  height: auto;
  position: absolute;
  left: 31%;
  top: 29%;
  border-radius: 20px;
}

.connect-list.ip .item:nth-child(6) .box .thum .img img:nth-child(1) {
  width: 60%;
  margin-left: 20%;
}

.connect-list.ip .item:nth-child(3) .box .thum .img > img:nth-child(1) {
  width: 90%;
  margin-left: 0;
}

.connect-list.ip .item:nth-child(6) .box .thum .img .small {
  width: 70%;
  height: auto;
  position: absolute;
  left: -15%;
  top: 15%;
}

.connect-list.ip .item:nth-child(4) .box .thum .img > img:nth-child(1) {
  margin-left: 0;
  width: 78%;
}
.connect-list.ip .item:nth-child(5) .box .thum .img {
  direction: initial;
}
.connect-list.ip .item:nth-child(5) .box .thum .img > img:nth-child(1) {
  width: 46%;
  margin-left: 27%;
}

.codebox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.codebox .box {
  margin-right: 0.7rem;
  width: 11rem;
}

.codebox .box .label {
  background: #000000;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
  padding: 0.35rem 1rem;
}

.codebox .box .label .icon {
  width: 2rem;
  margin-right: 0.3rem;
  display: block;
}

.codebox .box .label span {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.codebox .box .code {
  width: 8rem;
  margin: 0.65rem auto;
  display: block;
  border-radius: 0.7rem;
}

.temp-ele {
  width: 100%;
  height: 6vw;
  position: relative;
}

footer.ip {
  margin-top: 0;
  padding-top: 10vw;
  transform: translateY(0%);
  position: relative;
}

.about-box {
  width: 100%;
  padding: 0px 1%;
  height: 150vh;
}
.about-center {
  width: 100%;
  height: 35vw;
  position: absolute;
  top: 47%;
  left: 0%;
  transform: translateY(-50%);
}
.about-swiper {
  overflow: hidden;
}

.sticky-section {
  width: 100%;
  height: auto;
  position: sticky;
  left: 0;
  top: 5vw;
}

.sticky-section .common-name {
  margin-bottom: 42px;
}

.model-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 12vw 0px 6vw;
  color: #090723;
}

.model-box .w1400 {
  width: 1200px;
}

.model-box::before {
  width: 100%;
  height: 40vh;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background:
    radial-gradient(55% 55% at 0% 76%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 200px),
    linear-gradient(
        141deg,
        rgba(94, 237, 161, 0.35) 3px,
        rgba(76, 255, 118, 0.35) 5px,
        rgba(148, 246, 150, 0.35) 7px,
        rgba(190, 241, 167, 0.35) 10px
      )
      #fff;
}

.model-box .singePage h2 {
  font-size: 3rem;
  font-family: 'Montserrat-Bold';
}

.model-box .singePage h3 {
  font-size: 1.45rem;
  margin-top: 2.5vw;
  margin-bottom: 0.5vw;
  font-family: 'Montserrat-SemiBold';
}

.model-box .singePage h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.singePage p.time {
  font-size: 0.875rem;
}

.locationmodel {
  width: 100%;
  height: auto;
  position: relative;
  padding: 5vw 0%;
  z-index: 1;
}

.locationmodel .list {
  width: 100%;
}

.locationmodel .list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.locationmodel .list .item {
  width: 30%;
  height: auto;
  position: relative;
}

.locationmodel .list .item .tit {
  width: 100%;
  height: auto;
  font-family: 'Montserrat-SemiBold';
  padding-bottom: 1vw;
  margin-bottom: 1vw;
  border-bottom: 0.5px solid #999999;
}

.locationmodel .list .item .link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(111, 144, 123, 0.2);
  color: #333333;
  padding: 1vw 0px;
}
.locationmodel .list .item .link .icon {
  width: 25px;
  height: 25px;
  background: url(../images/icon_link.png) center / cover no-repeat;
}

.locationmodel .list .item .link:last-child {
  border-bottom: none;
}

.locationmodel .list .link:hover {
  color: #098b47;
}

.locationmodel .list .link:hover .icon {
  background: url(../images/icon_link1.png) center / cover no-repeat;
}

.singePage p {
}

.common-name .name.about {
  font-size: 1.75rem;
  margin-bottom: 0.5vw;
}

.fr .common-name .name.about {
  padding: 0 25%;
  font-size: 1.5rem;
}

.about-swiper::after,
.about-swiper::before {
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  content: '';
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 3;
  pointer-events: none;
}

.about-swiper::after {
  left: 0px;
}

.about-swiper::before {
  right: 0px;
  transform: rotate(180deg);
}

.about-swiper .swiper-slide {
  width: auto;
  display: flex;
  filter: blur(5px);
  opacity: 0.2;
}

.about-swiper .swiper-slide.swiper-slide-prev,
.about-swiper .swiper-slide.swiper-slide-next {
  filter: blur(2px);
  opacity: 0.5;
}

.about-swiper .swiper-slide::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border-radius: 50px;
  background: linear-gradient(109deg, #4cf389 0%, #42ff6f 17%, #94f695 78%, #98fe6b 103%);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.5);
  opacity: 0;
}

.about-swiper .swiper-slide.swiper-slide-active {
  filter: blur(0px);
  opacity: 1;
}

.about-swiper .swiper-slide.swiper-slide-active::before {
  transform: scale(1);
  opacity: 1;
}
.about-swiper .box {
  width: 100%;
  display: flex;
  gap: 0.25vw;
  align-items: center;
  justify-content: space-between;
  padding: 14px 1.5vw;
  position: relative;
}

.about-swiper .box .txt {
  font-size: 1rem;
}

.about-swiper .box .icon {
  width: 20px;
}

.about-list {
  width: 98%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  z-index: 2;
}

.about-list .item {
  width: 8.5%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  left: 0%;
}

.about-list .item .img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-list .item:nth-child(1) {
  gap: 20vw;
  height: 70%;
  top: 30%;
}
.about-list .item:nth-child(2) {
  left: 12%;
  gap: 20vw;
}

.about-list .item:nth-child(4) {
  left: auto;
  right: 12%;
  gap: 20vw;
}

.about-list .item:nth-child(5) {
  left: auto;
  right: 1%;
  gap: 20vw;
  height: 70%;
  top: 30%;
}

.about-list .item:nth-child(3) {
  height: 80%;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  align-content: space-between;
}

/* 中文版 */

.cn .sub-banner .txtbox .txt {
  margin-bottom: 0.5vw;
  line-height: 1.7;
}

.cn .common-name .name:nth-child(2),
.cn .banner .info .name {
  font-family: auto;
}

.cn .common-name .info {
  font-weight: normal;
}

.cn .common-name .name:nth-child(1) {
  margin-bottom: 0.5vw;
}

.cn .common-name .name {
  font-family: auto;
  font-weight: bold;
}

.cn .common-name .name.about {
  font-size: 20px;
  font-weight: normal;
}

.cn .download {
  padding: 0px 2vw;
}

.cn .connect-list .item .title .tips {
  font-weight: normal;
}

.es .footer-info .name {
  font-size: 1.8rem;
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 14px;
  }
  .common-name .name {
    font-size: 2.2rem;
  }
  .common-name .name.about {
    font-size: 1.5rem;
  }
  .footer-info .name {
    font-size: 2rem;
  }
  .model-box .singePage h2 {
    font-size: 2.5rem;
  }
  .sub-banner.sm .txtbox .txt {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1400px) {
  .product-swiper {
    width: 90%;
    left: 5%;
  }
}

@media screen and (max-width: 1366px) {
  .linklist .icon {
    width: 35px;
  }
  .w1400 {
    width: 80%;
  }
  .f-logo {
    width: 150px;
  }
  .app-paga .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
  }
  .app-swiper .swiper-slide .info .top {
    font-size: 1.8rem;
  }
  .common-name .name {
    font-size: 2.2rem;
  }
  .connect-list .item .title {
    font-size: 1.8rem;
  }
  .sub-banner {
    aspect-ratio: 2 / 1;
  }
  .sub-banner .txtbox .txt {
    font-size: 1.125rem;
  }
  .common-name .name.about {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1200px) {
  .sub-banner .txtbox .tit {
    font-size: 2.6rem;
  }
  .codebox .box {
    width: 8rem;
  }
  .common-name .name.about {
    font-size: 1rem;
  }
  .model-box .w1400 {
    width: 90%;
  }
  .footer-info .name {
    font-size: 1.8rem;
  }
  .common-name.common-name1 {
    transform: translateY(0%);
  }
  .zymix-menu .item .box {
    font-size: 0.875rem;
  }

  .connect-list .item .title {
    font-size: 1.5rem;
  }
  .common-name .name {
    font-size: 1.8rem;
  }
  .listbox {
    gap: 1vw;
  }
  .listbox .li {
    font-size: 0.875rem;
  }

  .banner .info {
    width: 80%;
    left: 10%;
  }
  .connect-list .item .box .thum {
    width: 50%;
  }
  .connect-list .item .box .info {
    width: 45%;
  }
}
@media screen and (max-width: 1024px) {
  .product-swiper {
    width: 100%;
    left: 0%;
  }
  .more-btn .box {
    padding: 1vw 1.5vw;
  }
  .banner .info .desc {
    padding: 0;
  }
  .sub-banner .txtbox .tit {
    font-size: 2.5rem;
  }
  .codebox .box {
    width: 8rem;
  }
  .connect-list.ip.feature {
    margin-top: 5vw;
  }
  .connect-list.ip .item .box .thum .img .small {
    border-radius: 8px;
  }
  .listbox .li {
    max-width: 21vw;
  }
  .listbox {
    gap: 2vw;
  }
  .footer-info .name {
    font-size: 2.5vw;
  }
  .footer-top .w1400 {
    width: 86%;
  }
  .app-swiper .swiper-slide .info {
    width: 38%;
  }
  .app-swiper .swiper-slide .info .top {
    font-size: 2vw;
  }
  .app-swiper .swiper-slide .info .desc {
    font-size: 1.3vw;
  }
  .app-swiper .swiper-slide .info .more {
    width: 10vw;
  }
  .app-swiper .swiper-slide .info .more .box {
    line-height: 3.3vw;
    gap: 0.5vw;
  }
  .app-swiper .swiper-slide .info .more .box .txt {
    font-size: 1.1vw;
  }
  .app-swiper .swiper-slide .info .more .box .icon {
    width: 2vw;
  }
  .app-swiper .swiper-slide .info .top .infos {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 800px) {
  .app-swiper .swiper-slide .info .desc {
    font-size: 1.5vw;
  }
  .download {
    line-height: 30px;
    height: auto;
  }
  .sub-banner .txtbox .txt {
    font-size: 1rem;
    width: 100%;
  }
  .sub-banner .imgs {
    width: 35%;
  }
  .sub-banner .txtbox .msg {
    font-size: 0.875rem;
  }
  .sub-banner {
    aspect-ratio: 5 / 3;
  }
  .sub-banner .txtbox .zymix {
    width: 10rem;
    margin: 0.5rem 0;
  }
  .about-box {
    height: 100vh;
  }
  .about-center {
    top: 50%;
  }
  .common-name .name.about {
    padding: 0 25%;
  }
  .more-btn .box {
    padding: 1vw 1.5vw;
  }
  .banner .info {
    width: 90%;
    left: 5%;
  }
  .common-name .info {
    padding: 0px 10%;
  }
  .footer-info .name {
    font-size: 1.5rem;
  }
  .app-swiper .swiper-slide .info {
    width: 40%;
    left: 3%;
  }
  .app-swiper .swiper-slide .info .top {
    font-size: 2.5vw;
  }
  .app-swiper .swiper-slide .info .more {
    width: 105px;
  }
  .app-swiper .swiper-slide .info .more .box {
    line-height: 35px;
  }
  .app-swiper .swiper-slide .info .more .box .txt {
    font-size: 0.875rem;
  }
  .app-swiper .swiper-slide .info .desc {
    line-height: 1.7;
  }
  .app-paga .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
  }
  .app-paga .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0px 2px !important;
  }
  .listbox {
    gap: 2vw;
  }
  .listbox .li {
    max-width: 20vw;
  }
  nav a {
    padding: 7px 10px;
  }
  .app-paga .swiper-pagination {
    padding: 0.25vw 1vw;
  }
  .w1400 {
    width: 90%;
  }
  .footer-top .w1400 {
    width: 90%;
  }
  .linklist .icon {
    width: 30px;
  }
  .connect-list .item .box .thum {
    width: 45%;
  }
  .connect-list .item .box .info {
    width: 50%;
  }
  .connect-list .item .title .name {
    white-space: normal;
  }
  .connect-list .item .title {
    font-size: 1.35rem;
  }
  .connect-list .item {
    margin-bottom: 7vw;
  }
  .connect-list.ip .item {
    margin-bottom: 10vw;
  }
  .connect-list.ip .item .box .thum {
    width: 45%;
  }
  footer::before {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .connect-list.ip .item {
    margin-bottom: 15vw;
  }
  footer {
    position: relative;
    transform: translateY(0%);
    margin-top: -10vw;
    padding-top: 35vw;
  }
  footer.ip {
    padding-top: 130px;
  }
  footer::before {
    top: 0;
    height: 100%;
    opacity: 1;
  }
  footer.ip::before {
    top: -10vw;
  }
  .homepage {
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .listbox .li .txt {
    margin-top: 1vw;
  }
  .homepage::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    /* background: radial-gradient(55% 55% at 0% 76%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(213deg, rgba(255, 255, 255, 0) 31%, #FFFFFF 81%), linear-gradient(163deg, #5EEDA1 5%, #4CFF77 22%, #94F695 65%, #BEF1A7 99%);
		opacity: 0.35; */
    background: url(../images/bg@2x.jpg) center center no-repeat;
    background-size: cover;
  }

  .m-slog {
    width: 90%;
    height: auto;
    position: absolute;
    left: 5%;
    top: 20vw;
    text-align: center;
    font-size: 6vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Montserrat-SemiBold';
  }
  .w {
    width: 100%;
    height: 1px;
  }
  .m-slog p.p1 {
    background: linear-gradient(113deg, #5ca22d, #57c701);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    width: auto;
  }
  .m-slog.zw {
    font-size: 7.5vw;
    line-height: 1.2;
  }
  .m-slog.zw p.p1 {
    font-family: 'Montserrat-SemiBold';
    font-weight: bold;
  }
  .m-slog p:nth-child(2) {
  }

  .imgs-new {
    width: 70%;
    left: 15%;
    top: 55vw;
    position: absolute;
  }

  .imgs-new img {
    width: 100%;
    height: auto;
    aspect-ratio: 100 / 132;
    object-fit: contain;
  }

  .n-download-box {
    width: 86%;
    height: auto;
    margin-left: 7%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 4vw;
    padding: 3vw 5vw;
    display: flex;
    justify-content: space-between;
    margin-top: 110vw;
    margin-bottom: 8.5vw;
  }

  .n-download-box .box {
    width: 46.5%;
  }

  .homepage .imgs {
    position: relative;
    margin-top: 35vw;
    aspect-ratio: 1 / 0.93;
    max-width: 375px;
    margin: 30vw auto 10vw;
  }
  nav {
    opacity: 0;
    display: none;
  }
  .menu-bar {
    display: flex;
  }
  header {
    position: absolute;
    padding: 4vw 5vw;
  }

  .homepage .txtbox {
    width: 100%;
    height: auto;
    padding: 0px 5%;
    position: relative;
    margin-bottom: 10vw;
  }
  .homepage .txtbox .tit {
    font-size: 2.5rem;
    font-family: 'Montserrat-Bold';
    display: block;
    margin-bottom: 5vw;
  }
  .es .homepage .txtbox .tit {
    font-size: 2rem;
  }
  .homepage .txtbox .tit span {
    color: #00701a;
  }

  .download-btns {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .download-btns a {
    width: 49%;
    height: auto;
    position: relative;
    background: #000;
    display: flex;
    justify-content: center;
    gap: 1vw;
    border-radius: 7px;
    color: #fff;
    align-items: center;
    padding: 10px 0px;
  }

  .download-btns a img {
    width: 28px;
  }
  .download-btns a p {
    font-size: 12px;
  }
  .cn .download-btns a p {
    font-size: 14px;
  }
  .down-icon {
    width: 22px;
    height: auto;
    position: relative;
    margin: 0px auto;
    margin-bottom: 10vw;
  }
  .footer-con {
    flex-wrap: wrap;
    padding-top: 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  }
  .linklist {
    gap: 10px;
  }
  .m-space {
    height: 10vw;
    width: 100%;
  }
  .product-menu {
    width: 100%;
    padding: 2vw 5%;
    position: sticky;
    top: 0px;
    background: #fff;
    z-index: 10;
    height: auto;
  }
  .product-menu .swiper-slide {
    position: relative;
    width: 88px;
    position: relative;
    z-index: 2;
    margin-right: 5px;
  }

  .product-menu .swiper-slide .box {
    height: 50px;
    padding: 0vw 10px;
    background: #f2f2f2;
    border-radius: 7px;
    text-align: center;
    display: flex;
    align-items: center;
    line-height: 1.2;
    font-size: 12px;
  }
  .product-menu .swiper-slide.active .box {
    background: linear-gradient(121deg, #4cf389 0%, #42ff6f 17%, #94f695 78%, #98fe6b 103%);
  }
  .connect-list {
    z-index: 2;
    position: relative;
    padding: 0% 5%;
    margin-top: 10vw;
  }
  .connect-list.ip {
    margin-top: 5vw;
  }
  .connect-list .item .box {
    display: block;
    direction: initial !important;
  }

  .connect-list.ip .item .box .thum {
    width: 100%;
    margin-bottom: 5vw;
  }
  .connect-list.ip .item .box .thum .img {
    max-width: 290px;
    margin: 0px auto;
    aspect-ratio: auto;
  }
  .connect-list .item .box .info {
    width: 100%;
  }
  .connect-list.ip .item .box .thum .img .small {
    box-shadow: 0px 2.41px 33.67px 0px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
  }
  .connect-list.ip .item:nth-child(2) .box .thum .img:nth-child(1) {
    margin-left: auto;
  }
  .connect-list .item .title {
    font-size: 30px;
  }
  .connect-list.ip .item:nth-child(2) .box .thum,
  .connect-list.ip .item:nth-child(4) .box .thum {
    left: auto;
  }
  .connect-list .item .title .name,
  .en .connect-list .item .title .name {
    white-space: normal;
  }
  .connect-list .item .tips {
    color: #333;
    margin-bottom: 5vw;
  }
  .connect-list .list .row .icon {
    width: 30px;
  }
  .connect-list .list .row .txt {
    width: calc(100% - 40px);
  }
  .connect-list .list .row {
    padding: 2vw 0px;
  }
  .connect-list .item {
    margin-bottom: 20vw;
  }
  .connect-list .item .title .name sup {
    line-height: 0.5;
  }
  footer::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 6%,
        rgba(255, 255, 255, 0.5199) 14%,
        rgba(255, 255, 255, 0.7609) 18%,
        rgba(255, 255, 255, 0.9524) 23%,
        #ffffff 57%
      ),
      linear-gradient(113deg, #41f4b0 0%, #52ed7b 22%, #b0f694 53%, #dcf1a7 70%);
  }
  .container {
    background: #fff;
    border-radius: 0px 0px 10vw 10vw;
    box-shadow: 0px 27px 70px 0px rgba(0, 170, 133, 0.38);
  }
  .container::before,
  .container::after {
    display: none;
  }
  .f-logo {
    margin-bottom: 2vw;
  }
  .listbox {
    margin-top: 5vw;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .listbox .li {
    width: 100%;
    margin-bottom: 2vw;
    max-width: none;
    font-size: 13px;
  }
  .copyright {
    flex-wrap: wrap;
    padding: 3vw 0px;
    direction: initial;
    padding-bottom: 6vw;
    margin-top: 2px;
    border-top: 1px solid rgba(153, 153, 153, 0.08);
  }
  .other-link {
    width: 100%;
    margin-bottom: 1vw;
    gap: 8vw;
    direction: initial;
  }
  .other-link a::after {
    right: -4vw;
  }
  .other-link a {
    color: #333;
  }
  .copyright .cp {
    font-size: 11px;
    color: #666;
  }

  .connect-list.ip .item:nth-child(2) .box .thum .img .small {
    width: 50%;
    left: 15%;
    aspect-ratio: 1 / 0.83;
    bottom: auto;
    top: 55%;
  }
  .connect-list.ip .item:nth-child(3) .box .thum .img .small {
    width: 40%;
    left: 40%;
    top: 50%;
    transform-origin: left bottom;
  }
  .connect-list.ip .item:nth-child(4) .box .thum .img > img:nth-child(1) {
    margin-left: 10%;
  }
  .connect-list.ip .item:nth-child(4) .box .thum .img .small {
    left: 13%;
    top: 65%;
  }
  .connect-list.ip .item:nth-child(5) .box .thum .img .small {
    border-radius: 15px;
  }
  .model-box {
    padding: 25vw 5vw 6vw;
  }
  .model-box::before {
    background:
      radial-gradient(55% 55% at 0% 76%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 57%),
      linear-gradient(171deg, #5eeda1 -21%, #4cff77 -16%, #94f695 52%, #bef1a7 94%);
    opacity: 0.35;
  }
  .model-box .w1400 {
    width: 100%;
  }
  .model-box .singePage h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .singePage p.time {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
  }
  .singePage p {
    margin-bottom: 20px;
  }
  .model-box .singePage h3,
  .model-box .singePage h4 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
    padding-top: 20px;
  }
  .logo {
    width: 105px;
  }
  .connect-list.ip .item .box .thum .img > img:nth-child(1) {
    aspect-ratio: 100 / 130;
  }
  .connect-list.ip .item:nth-child(2) .box .thum .img > img:nth-child(1) {
    margin-left: 10%;
  }
  .connect-list.ip .item:nth-child(3) .box .thum .img > img:nth-child(1) {
  }
  .connect-list.ip .item:nth-child(5) .box .thum .img > img:nth-child(1) {
    aspect-ratio: 100 / 206;
  }
  .download {
    display: none;
  }
  .langue .txt {
    display: none;
  }
  .langue .list {
    left: auto;
    margin-left: auto;
    right: 0;
  }
  .langue:hover .list {
    top: 35px;
  }
  .zymix-warp,
  .footer-info,
  .home-warp,
  .connect-warp {
    display: none;
  }
  .homepage,
  .product-menu,
  .connect-list.ip {
    display: block;
  }
  .logo img:nth-child(2) {
    opacity: 1;
  }
  .logo img:nth-child(1) {
    opacity: 0;
  }
  .other-link a:last-child {
    display: none;
  }
  .other-link a:nth-child(2)::after {
    display: none;
  }
  .langue .icon img:nth-child(2) {
    opacity: 1;
  }
  .langue .icon img:nth-child(1) {
    opacity: 0;
  }
  .linklist .icon {
    width: 36px;
  }
  .langue .icon {
    width: 24px;
    height: 24px;
  }
  .langue .list {
    border-radius: 10px;
  }
  .connect-list .list {
    max-width: none;
  }
}

@media screen and (max-width: 500px) {
  .product-menu .swiper-slide .box {
    font-size: 3vw;
    height: 11vw;
    justify-content: center;
  }
  .product-menu .swiper-slide {
    width: 24vw;
  }

  .cn .product-menu .swiper-slide {
    width: 28vw;
  }

  .model-box .singePage h2 {
    font-size: 24px;
  }
  .model-box .singePage h3,
  .model-box .singePage h4 {
    font-size: 20px;
  }
  .connect-list.ip .item {
    margin-bottom: 100px;
  }
  .listbox .li .txt {
    margin-top: 2vw;
  }
  .listbox .li {
    margin-bottom: 8vw;
  }
  .f-logo {
    margin-bottom: 5vw;
  }
  .listbox {
    margin-top: 10vw;
  }
  .copyright {
    padding: 5vw 0px;
    direction: initial;
    padding-bottom: 10vw;
  }
  .other-link {
    margin-bottom: 2.5vw;
  }
  .linklist {
    gap: 4vw;
  }
}

@media screen and (max-width: 350px) {
  html {
    font-size: 12px;
  }
  .homepage .txtbox .tit {
    font-size: 9.5vw;
  }
  .download-btns a {
    padding: 3vw 0px;
  }
  .download-btns a img {
    width: 7vw;
  }
  .download-btns a p {
    font-size: 3.75vw;
  }
  .connect-list .item .tips {
    font-size: 3.5vw;
  }
  .listbox .li {
    font-size: 3.5vw;
    margin-bottom: 5vw;
  }
  .model-box .singePage h2 {
    font-size: 6vw;
  }
  footer.ip {
    margin-top: -10vw;
    padding-top: 35vw;
  }
  .model-box .singePage h3,
  .model-box .singePage h4 {
    font-size: 5vw;
  }

  .connect-list.ip .item .box .thum .img {
    max-width: 100%;
  }
  .connect-list.ip .item:nth-child(2) .box .thum .img > img:nth-child(1) {
    margin-left: 10%;
  }
  .connect-list.ip .item:nth-child(3) .box .thum .img > img:nth-child(1) {
    margin-left: 5%;
  }
  .connect-list .list .row .txt {
    font-size: 3.5vw;
    width: calc(100% - 9vw);
  }
  .connect-list .list .row .icon {
    width: 8vw;
  }
  .f-logo {
    width: 35vw;
  }
  .linklist .icon {
    width: 10vw;
  }
  .linklist {
    gap: 2vw;
  }
  .singePage,
  .singePage p.time {
    font-size: 3.5vw;
  }
  .singePage p {
    margin-bottom: 3vw;
  }
  .product-menu {
    width: 100%;
    padding: 2vw 5%;
  }
  .product-menu .swiper-slide {
    width: 20vw;
    margin-right: 1.5vw;
  }

  .product-menu .swiper-slide .box {
    height: 10vw;
    padding: 2vw;
    font-size: 2.85vw;
  }
  .connect-list .item .title {
    font-size: 6.5vw;
  }
  .model-box .singePage h2 {
    font-size: 6vw;
  }
  .model-box .singePage h3,
  .model-box .singePage h4 {
    font-size: 5vw;
  }
  .logo {
    width: 31vw;
  }
  .langue .list {
    width: 35vw;
  }
  .langue .icon {
    width: 6vw;
    height: 6vw;
  }
  .langue .list a {
    font-size: 3.5vw;
    line-height: 2.5;
  }
  .listbox .li {
    margin-bottom: 7.5vw;
  }
  .other-link {
    margin-bottom: 3vw;
    font-size: 3.5vw;
  }
  .copyright .cp {
    font-size: 3.5vw;
  }
  .copyright {
    padding: 5vw 0px;
    padding-bottom: 15vw;
  }
}

/* 新增 */
.event-page .event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2vw;
}
.event-page .event-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
}
.event-page .card-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
}
.event-page .card-inner.reverse {
  flex-direction: column;
}
.event-page .card-info,
.event-page .card-preview {
  width: 100%;
}
.event-page .card-info {
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.event-page .card-info .location {
  display: inline-block;
  width: fit-content;
  font-size: 0.9rem;
  color: #098b47;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  background-color: #ebffe5;
}

.event-page .common-name .name:first-child span {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  color: #000 !important;
}

.event-page .card-info .title {
  font-size: 2rem;
  line-height: 1.1;
  color: #131313;
  font-family: 'Montserrat-Medium';
}
.event-page .card-info .date {
  color: #666;
  font-size: 0.95rem;
}
.event-page .card-info .desc {
  color: #6c6c6c;
  line-height: 1.8;
  font-size: 1rem;
}
.event-page .card-info .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 32px;
  padding: 0;
  white-space: nowrap;
  border-radius: 50px;
  border: 1px solid #08663b;
  background: transparent;
  color: #08663b;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.event-page .card-info .btn .box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 100%;
  padding: 0 0.8rem;
}
.event-page .card-info .btn .txt {
  line-height: 32px;
}
.event-page .card-info .btn .icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.event-page .card-info .btn .icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.event-page .card-info .btn:hover {
  border-color: transparent;
  background: linear-gradient(109deg, #4cf389 0%, #42ff6f 17%, #94f695 78%, #98fe6b 103%);
  color: #111;
  transform: translateY(-2px);
}
.event-page .card-preview {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.event-page .card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1200px) {
  .event-page .event-list {
    grid-template-columns: 1fr;
  }
  .event-page .card-inner {
    min-height: auto;
    flex-direction: column;
  }
  .event-page .card-inner.reverse {
    flex-direction: column;
  }
  .event-page .card-info,
  .event-page .card-preview {
    width: 100%;
  }
  .event-page .card-preview {
    order: -1;
  }
  .event-page .card-info {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .event-page .common-name .name {
    font-size: 2rem;
  }
  .event-page .common-name .desc span {
    font-size: 1.6rem;
  }
  .event-page .event-list {
    gap: 1.2rem;
  }
  .event-page .card-info {
    padding: 1.5rem;
  }
  .event-page .card-info .title {
    font-size: 1.6rem;
  }
  .event-page .card-info .desc {
    font-size: 0.95rem;
  }
  .sub-banner .site-img {
    display: none;
  }
}
