/* 多语言字体大小兼容性 - 响应式字体大小 */
/* 使用 clamp() 函数确保在不同语言和屏幕尺寸下都有良好的可读性 */

/* 中文优化 */
:lang(zh-CN) .x-banner .wz h1,
:lang(zh) .x-banner .wz h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
}

:lang(zh-CN) .card_list li h3,
:lang(zh) .card_list li h3 {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
}

:lang(zh-CN) .ab_box .tit1 h2,
:lang(zh) .ab_box .tit1 h2 {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
}

:lang(zh-CN) .news .tit1 h2,
:lang(zh) .news .tit1 h2 {
  font-size: clamp(2rem, 3vw, 3.125rem);
}

/* 英文和其他拉丁语系优化 */
:lang(en) .x-banner .wz h1,
:lang(es) .x-banner .wz h1,
:lang(fr) .x-banner .wz h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

:lang(en) .card_list li h3,
:lang(es) .card_list li h3,
:lang(fr) .card_list li h3 {
  font-size: clamp(1.25rem, 1.8vw, 2rem);
}

:lang(en) .ab_box .tit1 h2,
:lang(es) .ab_box .tit1 h2,
:lang(fr) .ab_box .tit1 h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

:lang(en) .news .tit1 h2,
:lang(es) .news .tit1 h2,
:lang(fr) .news .tit1 h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

/* 俄语优化 */
:lang(ru) .x-banner .wz h1 {
  font-size: 1rem;
}

:lang(ru) .card_list li h3 {
  font-size: clamp(1.3rem, 1.9vw, 2.1rem);
}

:lang(ru) .ab_box .tit1 h2 {
  font-size: clamp(1.5rem, 1.9vw, 2rem);
}

:lang(ru) .news .tit1 h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

/* 段落文字在不同语言下的优化 */
:lang(zh-CN) p,
:lang(zh) p {
  font-size: clamp(0.875rem, 1.1vw, 1.125rem);
}

:lang(en) p,
:lang(es) p,
:lang(ru) p,
:lang(fr) p {
  font-size: clamp(0.875rem, 1vw, 1rem);
}

/* 按钮文字优化 */
:lang(zh-CN) button,
:lang(zh) button,
:lang(zh-CN) a[class*="btn"],
:lang(zh) a[class*="btn"] {
  font-size: clamp(0.875rem, 1vw, 1rem);
}

:lang(en) button,
:lang(es) button,
:lang(ru) button,
:lang(fr) button,
:lang(en) a[class*="btn"],
:lang(es) a[class*="btn"],
:lang(ru) a[class*="btn"],
:lang(fr) a[class*="btn"] {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.flex {
  display: flex;
}

.of {
  /* overflow: hidden; */
}

.fen img {
  width: 100%;
  transition: all .3s ease-out;
}

.fen:hover img {
  transform: scale(1.1);
}

.w1400 {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}

.search {
  position: relative;
  /* height: 96px; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  flex-shrink: 0;
  margin-left: 2.6rem;
}

.tit1 {
  text-align: center;
}

.tit1 h2 {
  font-size: 36px;
  font-weight: 500;
  color: #000000;
}

.zh {
  position: relative;
}

.zh:hover .x-sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.search a img {
  width: 25px;
  filter: invert(1);
}

.search_btn {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/sou.png");
  background-size: 75% auto;
  cursor: pointer;
}

.search_form {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 111;
  width: 100%;
  border-radius: 4px;
  background: #000000;
  padding: 1.5rem 0;
  overflow: hidden;
}

.search_form #formsearch {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  width: 50%;
  border-radius: 8px;
  margin: 0 auto;
}

.search_form #formsearch input {
  outline: none;
  background: none;
  border: none;
  height: 2rem;
}

.search_form #formsearch input#keyword {
  font-size: 14px;
  font-weight: normal;
  padding: 0 0.5em;
  width: calc(100% - 30px);
}

.search_form #formsearch input#keyword::placeholder {
  color: #666666;
}

.search_form #formsearch input#s_btn {
  width: 24px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
  background-image: url("../images/sou.png");
  margin-left: .2rem;
}

.bt .en {
  width: 100%;
  font-size: 2.3rem;
  font-weight: 600;
  color: #A19E9E;
  opacity: 0.2;
  position: absolute;
  line-height: 1;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  text-align: center;
  z-index: -1;
}

.bt a {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #333333;
  background: #ffffff;
  border-radius: 21px;
  font-size: .65rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0px 0px 15px 9px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.bt a span {
  margin-left: 0.75rem;
}

@media (max-width: 992px) {
  .w1400 {
    max-width: 100%;
    padding: 0 15px;
    overflow: hidden;
  }
}

.flexs {
  display: flex;
}

.tou {
  position: relative;
  background: #ffffff;
  transition: all 0.5s ease-in-out;
  z-index: 999;
  width: 100%;
}

.tou .w1400 {
  max-width: 80rem;
}

.is_sticky {
  /* position: sticky; */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tou .con {
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.tou .con .logo {
  /* max-width: 10rem; */
  line-height: 4.8rem;
  max-width: 240px;
}

.tou .con .logo img {
  width: 100%;
}

.tou .con .dh .dh_right img {
  max-width: 1.25rem;
  vertical-align: text-top;
}

.dh_right {
  position: relative;
}

.dh_right .menu {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 14px;
}

.dh_right .menu:hover {
  color: var(--primary-color);
}

.dh_right:hover .x-sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.x-banner {
  width: 100%;
  position: relative;
}



.x-banner .swiper-slide {
  position: relative;
  overflow: hidden;
}

.x-banner .swiper-slide a {
  display: block;
  position: relative;
}

.x-banner .wz {
  position: absolute;
  right: 4%;
  bottom: 10%;
  /* transform: translate(-50%, 40px); */
  width: 50%;
  color: #fff;
  opacity: 0;
  /* transform: translateY(40px); */
  transition: all 0.7s cubic-bezier(.77, 0, .18, 1);
  text-align: center;
}

.x-banner .wz_2 {
    right: auto;
    left: 14%;
    bottom: 36%;
    text-align: left;
}

.x-banner .wz.wz-animate {
  opacity: 1;
  /* transform: translate(-50%, -50%); */
  transition-delay: 0.3s;
}

.x-banner .wz h1 {
  font-weight: bold;
  font-size: 1.8rem;
  color: #000000;
}

.x-banner .wz p {
  font-weight: 400;
  font-size: 1rem;
  color: #000000;
  margin: 1vw 0;
}

.x-banner .wz_2 h1, .x-banner .wz_2 p {
    color: #ffffff;
}

.x-banner .wz .LearnMore {
  width: 13rem;
  height: 2.5rem;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
  background: #000000;
  margin: 0 auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-banner .wz_2 .LearnMore {
    margin: 0;
}

.x-banner .wz button {
  width: 214px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #168E3A;
  border-radius: 10px 10px 10px 10px;
  color: #FFFFFF;
  font-size: 20px;
  border: 1px solid transparent;
}

.x-banner .wz button:hover {
  background: #FFFFFF;
  color: #168E3A;
  border: 1px solid #168E3A;
}

.x-banner .swiper-slide a>img {
  display: block;
  width: 100%;
}

.x-banner .swiper-pagination1 {
  bottom: 30px;
}

.x-banner .swiper-pagination1 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin: 0 10px !important;
  transition: width .3s ease;
  opacity: 1;
}

.x-banner .swiper-pagination1 .swiper-pagination-bullet-active {
  background-color: var(--main-theme-color);
}


/* 头部介绍 */
.top_box {
  background: #ffffff;
  /* background-size: contain; */
  /* padding: 47px 0 5.45rem; */
}


.card_list ul {
  grid-column-gap: 0;
}

.card_list li {
  background: #ffffff;
  color: #FFFFFF;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}

.card_list li:hover {
  /* transform: translateY(-10px); */

}

.card_list li .wz {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  background: rgba(225, 225, 225, 0.6);
  justify-content: space-evenly;
  text-align: left;
  padding: 0 1.8rem;
}

.card_list li h3 {
  font-weight: normal;
  font-size: 36px;
  text-transform: uppercase;
  color: #000000;
}

.card_list li .wz a {
  width: 200px;
  height: 40px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 1);
  font-size: 18px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: #000000;
    color: #ffffff;
}

.card_list li .wz:hover a{
  background: var(--primary-color);
  color: #ffffff;
}
.card_list li .wz:hover h3{
    color:var(--primary-color);
}
.card_list li .wz:hover p{
    color:var(--primary-color);
}
.card_list li .img {
  /* width: 6.3rem; */
  width: 100%;
}

.card_list li p {
  font-weight: 400;
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.8;
}

.card_list li .wz:hover {
  background: transparent;
}

@media (max-width: 992px) {
  .card_list ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}


/* 关于我们 */
.ab_box {
  /* padding: 3.75rem 0; */
  background: rgba(255, 255, 255, 1);
  padding: 3.6rem 0 2.2rem;
}

.ab_box .w1400 {
  gap: 8.5rem;
  flex-wrap: nowrap;
}

.ab_box .tit1 {
  /* text-align: center; */
  margin: 0 auto;
  width: 48%;
  height: max-content;
  word-break: break-all;
}

.ab_right {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.ab_right img {
  width: 100%;
  max-height: 20rem;
  object-fit: cover;
}

.ab_box .tit1 h2 {
  font-weight: 600;
  font-size: 34px;
  color: rgba(0, 0, 0, 1);
  /*text-transform: uppercase;*/
  text-align: left;
}

.ab_box .tit1 h2 span {
  color: #393C3D;
  position: relative;
}

.ab_box .tit1 h2 span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #F0B10E;
}

.ab_box .tit1 a {
  width: 200px;
  height: 40px;
  background: rgba(0, 0, 0, 1);
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid transparent;
}

.ab_box .tit1 a:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}


.ab_box .tit1 p {
  font-weight: normal;
  font-size: 18px;
  color: rgba(0, 0, 0, 1);
  margin: 2.15rem 0 3.25rem;
  text-align: left;
  line-height: 2;
}

.tit_p_r img:nth-child(1) {
  margin-right: 2.5rem;
}

/* our */
.OurProduct {
  background: rgba(242, 249, 253, 1);
  padding: 52px 0;
}

.OurProduct .tit1 {
  text-align: center;
}

.OurProduct .tit1 h2 {
  color: rgba(0, 0, 0, 1);
  font-size: 36px;
}

.OurProduct .tit1 p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 904px;
  margin: 1.65rem auto 4rem;
}

.our_list {
  grid-column-gap: 3.35rem !important;
}

.our_list a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our_list .our_item {
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 4px rgba(85, 85, 85, 0.25);
}

.our_list .our_item p {
  font-size: .9rem;
  color: rgba(0, 0, 0, 1);
  line-height: 1;
  margin-top: 1.6rem;
}

.our_list .our_item:hover p {
  color: var(--primary-color);
}

.our_list .mdy_com-img {
  /* width: 290px; */
}

.our_list .mdy_com-img img {
  width: 100%;
}

@media (max-width: 992px) {
  .our_list {
    grid-column-gap: 20px !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 公司文化 */
.lvse {
  padding: 30px 0 49px;
  background: #ffffff;
}

.lvse .tit1 {
  margin-top: 38px;
}

.lvse .tit1 h2 {
    margin-bottom: 24px;
}

.lvse .tit1 p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 904px;
  margin: 0 auto;
}

.lvse_l {
  width: 64%;
  background: url(../images/icon-lvse.webp) no-repeat center;
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
  
}

.lvse_l .wz {
  color: #ffffff;
  padding: 4.75rem 1.6rem 2.35rem;
  background: rgba(0,0,0, .3);
}

.lvse_l .wz h3 {
  font-size: 36px;
  font-weight: normal;
}

.lvse_l .wz p {
  line-height: 1.8;
  font-size: .9rem;
  max-width: 26rem;
  margin: 1.9rem 0 3rem;
}

.lvse_l .wz a {
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 25px;
  font-size: 18px;
  background: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
}

.lvse_l .wz a:hover {
  background: #000000;
  color: #ffffff;
}

.lvse_r {
  width: 35%;
  border-radius: 8px;
  background: var(--primary-color);
  padding: 2.75rem 4.15rem 2.85rem 4.9rem;
}

.lvse_r .wz {
  height: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lvse_r .wz h3 {
  font-size: 36px;
  font-weight: normal;
}

.lvse_r .wz p {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 1.9rem;
}

.lvse_r .wz a {
  display: block;
  width: 186px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 2px;
  font-size: 18px;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 1);
  margin: 0 auto;
}

.you_list {
    margin-top: 32px;
}

.you_list .icon_img {
  width: 7.5rem;
  height: 7.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.you_list .icon_img img {
  width: 100%;
  object-fit: none;
}

.you_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.you_list .wz {
  text-align: center;
}

.you_list .wz h3 {
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
  font-size: 18px;
  margin: 29px 0 14px;
}

.you_list .wz p {
  color: rgba(132, 132, 132, 1);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
/* .you_list li:hover .icon_img {
  background: var(--primary-color);
} */
.you_list li:hover h3,
.you_list li:hover p {
  color: var(--primary-color);
}

@media (max-width: 992px) {

  .lvse_l,
  .lvse_r {
    width: 100%;
  }
  .lvse_l {
    margin-bottom: 20px;
  }
  .lvse_r .wz p {
      margin-bottom: 1.9rem;
  }
  .lvse_r {
      padding: 4.75rem 1.6rem 2.35rem;
  }
}

/* 荣誉资质 */
.Cert {
  background: #ffffff url(../images/baiwenli.png) no-repeat center;
  background-size: cover;
  padding: 2.7rem 0 4.65rem;
  position: relative;
}
.Cert .tit1 {
  margin-bottom: 2.5rem;
}
.Cert_swiper_pagination {
  bottom: 2rem !important;
}
.Cert_swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.Cert_swiper .swiper-slide img {
    width: 100%;
}
.Cert_swiper_pagination .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}

/* 新闻轮播分页器：横线进度条样式 */
.new_list_pagination.swiper-pagination-progressbar {
  width: 60%;
  height: 2px;
  background: rgba(227, 228, 229, 1);
  border-radius: 999px;
  overflow: hidden;
  top: auto;
  left: auto;
  right: 0;
}
.new_list_pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--primary-color);
  border-radius: 999px;
}
/* 新闻 */

.news {
  padding: 2.5rem 0 7.85rem;
}

.news .tit1 h2 {
  font-size: 36px !important;
}

.tit_news {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.new_list {
  position: relative;
}

.new_list ul {

}

.new_list li {
  border-radius: 4px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 7px 2px rgba(103, 103, 103, 0.15);
  margin: 20px 11.3px !important;
  padding: 1.6rem 10px;
}
.new_con {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.new_con li a {
  position: relative;
}

.new_con li .wz {
  color: #000000;
  width: 100%;
}
.new_con li .wz span {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.new_con li img {
  width: 100%;
}

.new_con li .wz h3 {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 18px 0;
}

.new_con li .wz p {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  /* margin-top: 28px; */
  margin-bottom: 1.6rem;
}

.new_more {
  width: 150px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 13px;
  font-size: 16px;
  color: #ffffff;
  background: var(--primary-color);
}
.swiper-button-next, .swiper-button-prev {
  width: 3.5rem;
  height: 3.5rem;
  right: -4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 7px 1px rgba(103, 103, 103, 0.15);
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
  color: #000000;
}
.new_list_pagination {
  bottom: -15px !important;
}
@media (max-width: 992px) {

  .ab_box .w1400 {
    flex-wrap: wrap;
  }

  .ab_box .tit1 {
    width: 100%;
  }

  .ab_right {
    flex: auto;
  }

  .news .tit1 {
    flex-wrap: wrap;
  }

  .top_box_con .wz {
    padding-bottom: 20px;
  }

  .new_con .mdy_grid_3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .new_list {
    margin-right: 40px;
  }
  .new_list_pagination {
    bottom: 0 !important;
  }
}


.foot {
  background: rgba(49, 49, 49, 1);
}

.foot_top {
  border-top: 2px solid #555555;
  border-bottom: 2px solid #555555;
  padding-top: 3.35rem;
  padding-bottom: 20px;
}

.foot_logo {
  /* border-bottom: 2px solid #555555; */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.foot_logo .w1400 {
  /* max-width: 57.5rem; */
}

.w1150 {
  max-width: 57.5rem;
}

.foot_logo {
  margin-right: 8.7rem;
}

.flogo {
  max-width: 10rem;
}

@media (max-width: 780px) {
  .foot {
    padding-top: 40px;
  }
  .foot_logo {
 width: 100%;
}
}

.foot .con .mdy_grid_3 {
  align-items: center;
  grid-column-gap: 0;
}

@media (max-width: 992px) {
  .foot .con {
    padding-bottom: 20px;
  }

  .foot .con .mdy_grid_3 {
    grid-template-columns: repeat(1, 1fr);
  }


}

@media (max-width: 480px) {
  .foot .con {
    flex-wrap: wrap;
  }
    .foot_logo {
 width: 100%;
}
}


.foot .con .foot1 p {
  padding-left: 3.85rem;
  font-size: 16px;
}

.foot .con .foot2 {
  color: #ffffff;
  flex: 1;
}

.foot .con .foot2 dt {
  font-size: 18px;
}
.foot .con .foot2 dd {
  margin-top: 1.35rem;
}
.foot .con .foot2 a {
  font-size: 16px;
  color: #ffffff;
}

.foot .con .foot2 a:hover {
  color: var(--primary-color);
}
.foot .con .foot2 .wz2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 2.5rem 0 0;
}
.wz2_t {
  gap: 2.5rem;
}
.foot .con .foot2 p {
  font-size: 16px;
  color: #ffffff;
}

.foot .con .foot2 p:first-child {
  margin: 1.5rem 0;
}

.foot .con .foot3 {
  display: flex;
  gap: .8rem;
  margin-left: 2.25rem;
}

.foot .con .foot3 p {
  font-size: 14px;
  text-align: center;
  color: #A3A3A3;
  margin-top: 10px;
}

.qc_code {
  text-align: center;
}

.qc_code p {
  font-size: 14px;
  color: #fff;
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .foot .con .foot2 {
    width: 100%;
    margin-top: 30px;
  }
}

.foot .con .foot2 .xcon {
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 780px) {
  .foot .con .foot2 .xcon {
    justify-content: center;
  }

  .foot .con .foot2 {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 480px) {
  .foot .con .foot1 {
    width: 100%;
    border: 0;
  }
}

.foot .con .foot2 .list2 {
  position: relative;
}

.foot .con .foot2 .list2 li:not(:last-child) {
  margin-right: 5.2rem;
}

/* @media (max-width: 480px) {
  .foot .con .foot2 .list2:before {
    top: calc(15px + 18px);
  }
} */

.foot .con .foot2 .list2 li h2 {
  font-weight: normal;
  position: relative;
  padding-bottom: .9rem;
}

.foot .con .foot2 .list2 li h2 ::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
}

.foot .con .foot2 .list2 li h2 a {
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  white-space: nowrap;
}

.foot .con .foot2 .list2 li h2 a:hover {
  color: #fff;
}

.foot .con .foot2 .list2 li .sec {
  margin-top: 1.3rem;
}

@media (max-width: 480px) {
  .foot .con .foot2 .list2 li .sec {
    margin-top: 30px;
  }
}

.foot .con .foot2 .list2 li .sec a {
  display: block;
  font-size: 0.7rem;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.4);
  transition: all .3s ease-out;
}

@media (max-width: 480px) {
  .foot .con .foot2 .list2 li .sec a {
    line-height: 24px;
  }
}

.foot .con .foot2 .list2 li .sec a:hover {
  color: #fff;
}

.foot .con .xcon {
  display: flex;
  justify-content: flex-start;
}

.foot .con .xcon .link {
  position: relative;
  margin-top: 2.4rem;
}

.foot .con .xcon .link span {
  width: 235px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  display: block;
  background: url("../images/footer_jiantou.png") no-repeat 96% 50% #0e0e0e;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-indent: 17px;
  line-height: 55px;
}

.foot .con .xcon .link dd {
  position: absolute;
  bottom: 57px;
  left: 0;
  z-index: 1;
  padding: 0 17px;
  background: #fff;
  display: none;
  width: 100%;
}

.foot .con .xcon .link dd a {
  display: block;
  font-size: 14px;
  color: #333;
  line-height: 42px;
}

.erweima img {
    width: 125px;
}

.foot .con .xcon .link:hover dd {
  display: block;
}

.foot .con1 {
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  line-height: 28px;
  padding-top: 15px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .foot .con1 {
    line-height: 24px;
  }
}

.foot .con1 a {
  color: rgba(255, 255, 255, 0.4);
  transition: all .3s ease-out;
}

.foot .con1 a:hover {
  color: #fff;
}

/* ============================================
   多语言字体大小兼容性工具类
   ============================================ */

/* 响应式字体大小类 - 自动适配不同语言 */
.text-responsive-xs {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
}

.text-responsive-sm {
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.text-responsive-base {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.text-responsive-lg {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
}

.text-responsive-xl {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
}

.text-responsive-2xl {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.text-responsive-3xl {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.text-responsive-4xl {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

/* 语言特定的字体大小调整 */
[lang="zh-CN"] .text-lang-optimized,
[lang="zh"] .text-lang-optimized {
  font-size: clamp(0.875rem, 1.1vw, 1.125rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

[lang="en"] .text-lang-optimized,
[lang="es"] .text-lang-optimized,
[lang="fr"] .text-lang-optimized {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  word-spacing: 0.05em;
}

[lang="ru"] .text-lang-optimized {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* 容器宽度自适应 - 防止不同语言文字溢出 */
.text-container {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 中文文字换行优化 */
[lang="zh-CN"] .text-container,
[lang="zh"] .text-container {
  word-break: keep-all;
  white-space: normal;
}

/* 英文和其他语言换行优化 */
[lang="en"] .text-container,
[lang="es"] .text-container,
[lang="ru"] .text-container,
[lang="fr"] .text-container {
  word-break: break-word;
  hyphens: auto;
}

/* 移动端字体大小优化 */
@media (max-width: 768px) {

  :lang(zh-CN) .x-banner .wz h1,
  :lang(zh) .x-banner .wz h1 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  :lang(en) .x-banner .wz h1,
  :lang(es) .x-banner .wz h1,
  :lang(fr) .x-banner .wz h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  :lang(ru) .x-banner .wz h1 {
    font-size: clamp(1.3rem, 4.5vw, 1.9rem);
  }

  :lang(zh-CN) p,
  :lang(zh) p {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
  }

  :lang(en) p,
  :lang(es) p,
  :lang(ru) p,
  :lang(fr) p {
    font-size: clamp(0.875rem, 3vw, 0.9375rem);
  }
}

/*# sourceMappingURL=index.css.map */