@charset "utf-8";

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  box-sizing: border-box;
  z-index: 999;
  height: var(--headerHeight);
  transition: all 0.4s ease;
  will-change: transform;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.active,
header.header2 {
  background: #fff;
  box-shadow: 0 0 0.1rem 0.03rem rgba(0, 0, 0, 0.05);
}

header .nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}


header .logo {
  transition: all 0.5s ease;
  z-index: 9999;
  position: relative;
  height: 65%;
}

header .logo img {
  display: block;
  height: 100%;
  filter: invert(1) brightness(1000);
}

header.active .logo img,
header.header2 .logo img {
  filter: none;
}

header nav {
  display: flex;
  height: 100%;
}

header ul {
  display: flex;
  height: 100%;
  gap: clamp(20px, 4vw, 60px);
}

header ul li {
  height: 100%;
}

header ul li.ls .icons {
  display: none;
}

header .nav li h2 {
  height: 100%;
  font-size: clamp(15px, 1vw, 18px);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  font-weight: 400;
  color: #fff;
}

header.active .nav li h2,
header.header2 .nav li h2 {
  color: var(--color);
}

header .nav li h2::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--color2);
  opacity: 0;
  transition: all 0.5s ease;
}

header .nav li h2:hover:before {
  width: 100%;
  opacity: 1;
  right: inherit;
  left: 0;
}

header .nav li.active h2 {
  color: var(--color2);
}

header .others {
  display: flex;
  align-items: center;
  height: 100%;
}

header .ols {
  display: flex;
  align-items: center;
  cursor: pointer;
}

header .ols:nth-of-type(1) {
  margin-right: 1rem;
}

header .ols img {
  filter: invert(1) brightness(1000);
  width: clamp(16px, 1.4vw, 24px);
  margin-right: 4px;
}

header .ols span {
  color: #fff;
  font-size: clamp(14px, 0.8vw, 18px);
  display: block;
  margin-top: 2px;
}

header.active .ols span,header.header2  .ols span{
  color: var(--color);
}

header.active .ols img,header.header2  .ols img{
  filter: none;
}

.search {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  height: auto;
  z-index: 999999;
}

.headerSearchMask {
  content: "";
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  cursor: pointer;
}

.search .ser {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 6;
  padding: 5vh 0;
  display: flex;
  justify-content: center;
}

.search input {
  width: 38vw;
  border-radius: 5rem;
  background: #eee;
  box-sizing: border-box;
  height: 40px;
  line-height: 1;
  padding: 0 1.5rem;
  font-size: clamp(11px, 0.8vw, 18px);
  transition: all .4s ease;
}

.search input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.search button {
  cursor: pointer;
  transition: all .4s ease;
  width: 40px;
  margin-left: -40px;
  height: 100%;
  padding: 0.6rem;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: 9;
  background: var(--color2);
}

.search button img {
  width: 100%;
  filter: invert(1) brightness(1000);

}

.search button:hover {
  background: var(--color3);
}

.navBtn {
  z-index: 99999;
  cursor: pointer;
  display: none;
  margin-left: 1rem;
}

.navBtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 3px auto;
}

header.active .navBtn span,
.header2 .navBtn span {
  background: var(--color);
}

.nav_btn_active {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.nav_btn_active span {
  background: #333 !important;
}

.nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}

.nav_btn_active span:nth-of-type(3) {
  margin-top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.s_menu {
  width: 100%;
  background: #fafafa;
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  overflow: auto;
  z-index: 99;
}

header.active .s_menu {
  top: 100%;
}

.s_menu .ss {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.s_menu .sl {
  background: #efefef;
  width: 40%;
  box-sizing: border-box;
  padding: 3rem 5rem;
  text-align: right;
}

.s_menu .sl h6 {
  font-size: clamp(12px, 1.2vw, 20px);
  font-weight: 400;
  margin-bottom: 1rem;
  padding-right: 2rem;
  box-sizing: border-box;
  border-right: 2px solid rgba(69, 27, 160, .2);
}


.s_menu .sl h6 span {
  display: block;
  opacity: 0.15;
  text-overflow: ellipsis;
  margin-top: 1rem;
  font-size: clamp(16px, 1.9vw, 30px);
}

.s_menu .sr {
  width: 100%;
  box-sizing: border-box;
  padding: 3rem 5rem;
  flex: 1;
  flex-shrink: 1;
  background: #fcfcfc;
  position: relative;
  display: flex;
}

.s_menu .sr dl {
  padding: 0 5rem 0 0;
  box-sizing: border-box;
}

.s_menu .sr dl dd {
  font-size: clamp(12px, 1vw, 16px);
  transition: all 0.5s ease;
  margin: 0.6rem 0 1rem 0;
}

.s_menu .sr dl dd:hover {
  color: var(--color2);
}

.s_menu .sr .imgs {
  width: 42%;
  height: clamp(100px, 22vw, 165px);
}

.s_menu .sr .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.6rem;
}

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

.banner .swiper-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.banner .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.banner-img{
    width: 100%;
    height: 100%;
}
.banner .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  z-index: 1;
}

.banner .swiper-slide::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.banner video {
  width: 105%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

.banner .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  color: #fff;
}

.banner .txt h3 {
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}

.banner .txt h3 span {
  display: block;
  margin: 0.5rem 0;
}

.banner .txt h3 span:first-of-type {
  position: relative;
  padding-bottom: 4rem;
}

.banner .txt h3 span:first-of-type:after {
  content: '';
  width: 1px;
  height: 3rem;
  background: #fff;
  position: absolute;
  left: 0.3rem;
  bottom: -0rem
}

.banner .typewriter i {
  font-size: clamp(30px, 3.6vw, 60px);
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  will-change: transform, opacity;

}

.banner .start .typewriter i {
  animation: textShow .8s forwards;
  animation-delay: calc(var(--delay) * .05s);
}

@keyframes textShow {
  from {
    opacity: 0;
    transform: translateY(80px);

  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner .swiper-pagination span {
  background: #fff;
  margin: 0 7px !important;
  width: 8px;
  height: 8px;
  border-radius: 2rem;
  opacity: 1 !important;
  transition: all 0.5s ease;
}

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

.title {
  margin-bottom: 4rem;
}

.title h3 {
  font-size: clamp(20px, 2.1vw, 46px);
  line-height: 1.3;
  font-weight: 500;
}

.title h6 {
  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 1.3;
  font-weight: 400;
  margin: 1rem 0 0.4rem;
}

.title h5 {
  font-size: clamp(14px, 2.1vw, 40px);
  line-height: 1.3;
  opacity: 0.8;
}

.title p {
  margin: 1rem auto 0;
}

.titleCenter {
  text-align: center;
}

.more {
  width: max-content;
  cursor: pointer;
  margin: 3rem 0 0;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 0.8rem 2.2rem;
  color: #fff;
  border-radius: 5rem;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
}

.more span {
  transition: all 0.5s ease;
  font-size: clamp(12px, 0.9vw, 16px);
}

.more:hover {
  background: var(--color3) !important;
  border-color: transparent;
}

.more:hover span {
  color: #fff !important;
}

.more:hover img {
  filter: invert(1) brightness(1000) !important;
}

.index_bars {
  padding: clamp(50px, 9vw, 120px) 0;
  position: relative;
}

.index_about {
  overflow: hidden;

}

.index_about .contain {
  border-radius: 10px;
  overflow: hidden;
  justify-content: space-between;
}

.index_about ul li {
  width: 35%;
}

.index_about ul li:nth-of-type(even) {
  width: 65%;
}

.index_about ul li:nth-of-type(2) {
  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index_about ul li .title {
  margin: 0;
}
.index_about ul li .tt p strong{
    display: block;
    font-size: clamp(16px, 1.2vw, 24px);
    line-height: 1.4;
    font-weight: 400;
    margin: 1rem 0 2.5rem;
}
.index_about ul li:nth-of-type(3) {
  background: #f5f6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.index_about ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3vw 7vw;
}

.counters dd h5 strong {
  font-size: clamp(18px, 2.2vw, 50px);
  font-weight: 400;
}

.counters dd h5 span {
  font-size: clamp(12px, 1.2vw, 70px);
  font-weight: 400;
  margin-left: 5px;
}

.counters dd p {
  margin: 0 0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(12px, 1vw, 16px);
  position: relative;
}

.counters dd p::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #eaeaea;
}

.counters dd p::after {
  content: '';
  width: 3rem;
  height: 2px;
  background: var(--color2);
  position: absolute;
  left: 0;
  bottom: 0;
}

.index_about ul li:hover h3 {
  color: var(--color2);
}

.index_pro {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.index_pro .top {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  width: max-content;
}

.index_pro .title {
  margin-bottom: 3rem;
}

.index_pro .title h3 {
  color: #fff;
}

.index_pro .tabs {
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 0.2rem;
}

.index_pro .tabs .item {
  font-size: clamp(13px, 0.98vw, 20px);
  padding: 0.7rem 2rem;
  border-radius: 5rem;
  position: relative;
  cursor: pointer;
  transition: all .4s ease;
}

.index_pro .tabs .item.active {
  color: #fff !important;
  background: var(--color2);
}

.index_pro .tabs2 {
  position: absolute;
  left: 50%;
  bottom: 6vh;
  transform: translate(-50%, -0%);
  z-index: 6;
  overflow: hidden;
}

.index_pro .tabs2 .bbs {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  overflow: hidden;
  border-radius: 10px;
  padding: 1rem 5%;
  box-sizing: border-box;
}

.index_pro .tabs2 .swiper-container {
  display: none;
  overflow: hidden;
}

#swiperPro2 .swiper-wrapper {
  justify-content: center;
}

.index_pro .tabs2 .swiper-slide a {
  display: block;
}

.index_pro .tabs2 img {
  height: clamp(22px, 2.4vw, 40px);
  margin: auto;
  filter: invert(1) brightness(1000);
}

.index_pro .tabs2 p {
  text-align: center;
  margin: 0.7rem 0 0;
  line-height: 1.3;
  color: #fff;
  font-size: clamp(11px, 0.86vw, 16px);
}

.index_pro .tabs2 .swiper-slide.active img {
  filter: none;
}

.index_pro .tabs2 .swiper-slide.active p {
  color: var(--color2);
}

.sbtn {
  margin: 1rem;
}

.sbtn::after {
  color: #fff;
  cursor: pointer;
  transition: all 0.5s ease;
  font-size: 1.2rem !important;
}

.sbtn:hover:after {
  color: var(--color2);
}

.index_pro dl {
  height: 100%;
  position: relative;
  z-index: 0;
}

.index_pro dl dd {
  overflow: hidden;
  height: 100%;
  display: none;
  position: relative;
}

.index_pro dl dd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.index_support {
  position: relative;
}


.index_support .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  z-index: 6;
}

.index_support .title h3 {
  color: #fff;
}

.index_support .swiper-slide {
  position: relative;
}

.index_support .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  opacity: 0.2;
  z-index: 3;
}

.index_support .swiper-slide .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding-right: 48%;
  box-sizing: border-box;
  z-index: 9;
}

.index_support .swiper-slide .text h6 {
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  color: #fff;
}

.index_support .swiper-slide .text p {
  color: #fff;
}

.index_support .more {
  background: #fff;
  border: none;
}

.index_support .more span {
  color: var(--color);
}

.index_support .swiper-slide .text h6,
.index_support .swiper-slide .text .tt,
.index_support .swiper-slide .text .bottom {
  opacity: 0;
  transform: translateY(40px);
}

.index_support .swiper-slide .text h6 {
  transition: all .8s ease .5s;
}

.index_support .swiper-slide .text .tt {
  transition: all .8s ease .7s;
}

.index_support .swiper-slide .text .bottom {
  transition: all .8s ease .9s;
}

.index_support .swiper-slide.swiper-slide-active .text h6,
.index_support .swiper-slide.swiper-slide-active .text .tt,
.index_support .swiper-slide.swiper-slide-active .text .bottom {
  opacity: 1;
  transform: translateY(0);
}

.index_support .bg img {
  width: 100%;
}

.index_support .content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.5rem;
  z-index: 6;
}


.index_support ul {
  background: #fff;
  box-shadow: rgba(154, 154, 154, 0.15) 0px 2px 10px 0px;
  border-radius: 10px;
  padding: 1.8rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.index_support ul li {
  width: 33.3%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.index_support ul li img {
  width: clamp(18px, 1.5vw, 30px);
  margin-right: 1rem;
  filter: grayscale(1) brightness(0.6);
}

.index_support ul li.active img {
  filter: none;
}

.index_support ul li.active {
  color: var(--color2);
}

.index_news {
  overflow: hidden;
}

.index_news .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.index_news .top .title,
.index_news .more {
  margin: 0;
}

.index_news .top .title h5 {
  margin: 1rem 0 0;
}

.index_news .top .title h6 {
  margin: 0.3rem 0 0;
}

.index_news ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.index_news ul li {
  background: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.index_news .aa {
    max-width: 100%;
  overflow: hidden;
  height: clamp(250px, 16vw, 300px);
}

.index_news .aa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.index_news ul li:hover .aa img {
  transform: scale(1.08);
}

.index_news .bb {
  width: 100%;
  box-sizing: border-box;
  z-index: 9;
  padding: 0.6rem 1.8rem;
}

.index_news h2 {
  font-size: clamp(13px, 1.1vw, 24px);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  transition: all 0.5s ease;
}

.index_news .data {
  display: flex;
  align-self: center;
  font-size: clamp(12px, 0.8vw, 16px);
  margin: 1rem 0;
}

.index_news .data img {
  width: clamp(12px, 1.1vw, 16px);
  height: clamp(12px, 1.1vw, 16px);
  margin: -3px 0.3rem 0 0;
}

.index_news ul a:hover h2 {
  color: var(--color2);
}

.more2 {
  margin: 1.5rem 0;
}

.more2 img {
  filter: grayscale(1) brightness();
  width: clamp(14px, 2vw, 24px);
}

.index_news ul li:hover .more2 img {
  filter: none;
}

.index_news>a {
  display: block;
  width: max-content;
  margin: 4rem auto 0;
}

.footer {
  background: #f9f9f9;
  overflow: hidden;
}

.footer .bar1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 0 3rem;
}

.footer .bar1 .logo2 {
  height: 3.5rem;
}

.footer .bar1 .logo2 img {
  height: 100%;
}

.search2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eee;
  border-radius: 5rem;
  width: 18vw;
  padding: 0 0 0 1.2rem;
  height: 2.4rem;
}

.search2 input {
  height: 100%;
  background: none;
  flex: 1;
  font-size: clamp(12px, 0.8vw, 16px);
}

.search2 button {
  border: 1px solid var(--color2);
  border-radius: 50%;
  width: 2.4rem;
  height: 100%;
  transition: all 0.5s ease;
  cursor: pointer;
}

.search2 button i {
  color: var(--color2);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

.search2 button:hover {
  background: var(--color3);
  border-color: transparent;
}

.search2 button:hover i {
  color: #fff;
}

.footer .bar2 {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem 0;
}

.footer .bar2 dl {
  display: flex;
  justify-content: space-between;
}

.footer dl h2 {
  font-size: clamp(14px, 1vw, 18px);
  position: relative;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.footer dl h2::after {
  content: '';
  width: 1rem;
  height: 2px;
  margin: 0.8rem 0 1.5rem;
  background: var(--color2);
}

.footer dl dd p {
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 0.6rem 0;
  line-height: 1.5;
  font-size: clamp(12px, 0.8vw, 16px);
  transition: all 0.5s ease;
}

.footer dl dd p:hover {
  color: var(--color2);
}

.footer dl dd a {
  color: #666;
  font-size: clamp(12px, 0.8vw, 16px);
  transition: all 0.5s ease;
}

.footer dl dd a:hover {
  color: var(--color2);
}

.follow {
  display: flex;
  align-items: center;
}

.follow p {
  padding: 0.5rem;
  background: #eee;
  box-sizing: border-box;
  border-radius: 50%;
  margin-right: 0.6rem !important;
  width: 2rem;
  transition: all 0.5s ease;
}

.follow p img {
  width: 100%;
  filter: grayscale(1) brightness(0.6);
}

.follow p:hover img {
  filter: none;
}

.footer .copy {
  position: relative;
  padding: 1.5rem 0;
}

.footer .copy .ll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.5s ease;
}

.footer .copy p {
  font-size: clamp(12px, 0.8vw, 16px);
  margin: 0;
  position: relative;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.4;
  transition: all 0.5s ease;
}

.footer .copy p a {
  color: rgba(0, 0, 0, 0.4);
  margin-left: 1rem;
  font-size: clamp(12px, 0.8vw, 16px);
  transition: all 0.5s ease;
}

.footer .copy .ll a:hover {
  color: var(--color2);
  text-decoration: underline;
}

.fixedgt {
  position: fixed;
  bottom: 5%;
  right: 1%;
  z-index: 666;
  display: none;
}

.all_back {
  width: clamp(30px, 2.5vw, 50px);
  height: clamp(30px, 2.5vw, 50px);
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -1px 3px 16px 0px rgba(148, 180, 255, 0.16);
  cursor: pointer;
  transition: all 0.5s ease;
}

.all_back img {
  width: 40%;
}

.all_back:hover {
  background: var(--color2);
}

.all_back:hover img {
  filter: invert(1) brightness(1000);
}

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

.bans:before {
  content: "";
  width: 100%;
  height: 10rem;
  background: linear-gradient(180deg, #000 0%, transparent 100%);
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.bans .bg {
  width: 100%;
  max-height: 66vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bans .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.bans:hover .bg img {
  transform: scale(1.08);
}

.bans .txt {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.bans h2 {
  text-align: center;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 50px);
  font-weight: 500;
}

.sNav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sNav ul {
  position: relative;
  display: flex;
  gap: 0 3vw;
}

.sNav ul li {
  font-size: clamp(11px, 0.9vw, 18px);

  padding: 1.1rem 0;
  transition: 0.4s;
}

.sNav ul li.active {
  color: var(--color2);
  font-weight: 400;
  border-bottom: 1px solid var(--color2);
}

.sNav ul li:hover {
  color: var(--color2);
}

.title2 {
  margin-bottom: 4rem;
}

.title2 h3 {
  font-size: clamp(16px, 1.6vw, 30px);
  font-weight: 500;
  line-height: 1.2;
}

.about1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about1 .bg video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.3;
}

.about1 .contain {
  position: relative;
  z-index: 3;
}

.about1 .title h3 div {
  opacity: 0.3;
  font-size: clamp(20px, 2.1vw, 46px);
  line-height: 1.6;
  font-weight: 500;
}

.about1 .top {
  justify-content: space-between;
}
.about1 .title{
    width: 40%;
}
.about1 .text {
  width: 50%;
}

.about1 .text p {
  margin: 0 0 0.5rem;
}

.about1 .content {
  display: flex;
  justify-content: space-between;
  margin: 6rem 0 0 0
}

.about1 .content .img {
  width: 30%;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
}

.about1 .content .img b {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about1 .content .img b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s
}

.about1 .content .btn img {
  width: 3rem;
  margin: 0 auto 0.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  filter: invert(1) brightness(1000);
}

.about1 .content .img video {
  display: none;
}

.about1 .content dl {
  margin-top: 15vh;
  width: 68%;
  display: flex;
  justify-content: space-between;
}

.about1 .content dl dd {
  width: 30%;
  height: 11rem;
  background: var(--color2);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.about1 .content dl dd:nth-last-child(-n+2) {
  width: 20%;
}

.about1 .content dl dd:nth-child(2n) {
  margin: 11rem 0 0 0;
  background: #fff;
}

.about1 .content dl dd h5 strong {
  font-size: clamp(20px, 2.2vw, 50px);
  font-weight: 400;
}

.about1 .content dl dd h5 span {
  font-size: clamp(12px, 1.2vw, 70px);
  font-weight: 400;
  margin-left: 5px;
}

.about1 .content dl dd p {
  margin: 1rem 0 0;
  font-size: clamp(12px, 1vw, 16px);
  text-align: center;
}

.about1 .content dl dd:nth-child(2n+1) p,
.about1 .content dl dd:nth-child(2n+1) h5 strong,
.about1 .content dl dd:nth-child(2n+1) h5 span {
  color: #fff;
}

.about2 {
  position: relative;
}

.about2 .title {
  position: relative;
  z-index: 6;
}

.about2:before {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
  z-index: 6;
  pointer-events: none;
}

.about2::after {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(-90deg, #fff, rgba(255, 255, 255, 0));
  z-index: 6;
  pointer-events: none;
}

.about2 .bg {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about2 .bg img {
  height: 100%;
  object-fit: cover;
  margin: auto;
}

.about2 .swiper-container {
  overflow: hidden;
  padding: 12vh 0 20vh;
  cursor: grab;
}

.about2 .swiper-slide {
  position: relative;
}

.about2 .swiper-slide .bb {
  position: relative;
  transform: scale(0.3);
  transition: all 0.8s ease;
}

.about2 h6 {
  color: var(--color2);
  font-family: "DIN";
  font-weight: 400;
  font-size: clamp(16px, 5vw, 60vw);
}

.about2 .tt {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  z-index: 3;
  opacity: 0;
  width: 30vw;
}

.about2 .swiper-slide-active .bb {
  transform: scale(1);

}

.about2 .swiper-slide-active .tt {
  opacity: 1;
}

.about2 p {
  margin: 0;
  position: relative;
  padding-left: 0.8rem;
  font-size: clamp(11px, 0.9vw, 14vw);
}

.about2 p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--color2);
  border-radius: 50%;
}

.btnss {
  position: relative;
  display: flex;
  justify-content: center;
}

.btnss .sbtn2 {
  position: static;
  margin: 0 0.5rem;
}

.sbtn2 {
  background: var(--color2);
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.sbtn2::after {
  transform: scale(0.3);
  color: #fff !important;
}

.sbtn2:hover {
  background: var(--color3);
}

.honor {
  overflow: hidden;
  background: #f8f8f8;
}

.honor .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 8vh;
}

.honor .txt .title {
  margin: 0;
}

.honor .txt .tl {
  display: flex;
  align-items: center;
}

.honor .txt .tl h6 {
  margin-left: 3rem;
  cursor: pointer;
  padding: 2.4rem 0;
  font-weight: 400;
  position: relative;
  transition: all 0.5s ease;
}

.honor .txt .tl h6.active {
  color: var(--color2);
}

.honor .txt .tl h6:hover {
  color: var(--color2);
}

.honor .txt .tl h6.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--color2);
}

.honor .contain {
  overflow: hidden;
  display: none;
  position: relative;
}

.honor .swiper {
  width: 90%;
  margin: auto;
  overflow: hidden;

}

.honor .swiper-slide b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38vh;
  background: #e7e7e7;
  padding: 6%;
  box-sizing: border-box;
  border-radius: 10px;
}

.honor .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: cover;
}

.honor .sbtn2 {
  margin: -5vh 0.5vw;
}

.honor .swiper-slide p {
  transition: all 0.5s ease;
}

.honor .swiper-slide:hover p {
  color: var(--color2);
}

.about4 {
  overflow: hidden;
}

.about4 .swiper-box:first-of-type {
  margin: 8rem auto;
}

.about4 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.about4 .swiper-slide {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about4 .swiper-slide img {
  max-width: 75%;
  max-height: 75%;
  object-fit: cover;
}

.news {
  background: linear-gradient(to bottom, rgb(250, 250, 250, 1), rgb(250, 250, 250, 0));
}

.news .bar1 {
  padding-bottom: 0 !important;
}

.news .bar1 .swiper-container {
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.news .bar1 .swiper-slide a {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.news .bar1 .ll {
  width: 55%;
  overflow: hidden;
  max-height: 70vh;
}

.news .bar1 .rr {
  width: 45%;
  padding: 5%;
  box-sizing: border-box;
  background: linear-gradient(148.49deg, #fafafc 0%, #fdfaff 100%);
}

.news .bar1 h6 {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.9vw, 14px);
  color: #666;
}

.news .bar1 h6 img {
  width: 1rem;
  margin: -2px 0.5rem 0 0;
}

.news .bar1 h3 {
  margin: 1.5rem 0 0;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 36px);
  line-height: 1.4;
  transition: all 0.5s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .bar1 .swiper-slide:hover h3 {
  color: var(--color2);
}

.news .index_news {
  overflow: initial;
}

.news .bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 2rem 4.5%;
  box-sizing: border-box;
  width: 45%;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news .bottom .swiper-pagination {
  position: static;
  width: max-content !important;
  display: flex;
  align-items: center;
}

.news .bottom .swiper-pagination .pagination {
  display: flex;
  align-items: center;
}

.news .bottom .swiper-pagination span {
  width: auto;
  height: auto;
  background: none;
  font-family: "DIN";
  margin-right: 4.5rem;
  position: relative;
  opacity: 1;
  color: #ccc;
  margin: 0;
}

.news .bottom .swiper-pagination span:nth-child(1) {
  opacity: 1;
  color: var(--color2);
}

.news .bottom .swiper-pagination i {
  width: 4vw;
  height: 0.1vw;
  background: rgba(242, 242, 242, 1);
  margin: 0.5vw;
  display: block;
  position: relative;
}

.news .bottom .swiper-pagination i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 0.1vw;
  width: 0;
  animation: width 5s;
  -webkit-animation: width 5s;
  animation-timing-function: linear;
  background: var(--color2);
}

@-webkit-keyframes width {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes width {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.news .bottom .btns {
  display: flex;
  align-items: center;
}

.news .bottom .sbtn {
  position: static;
  width: 1.4rem;
  margin: 0 0.5rem !important;

}

.news .bottom .sbtn::after {
  display: none !important;
}

.news .bottom .sbtn img {
  width: 100%;
  filter: grayscale(1) brightness(0.6);
}

.news .bottom .sbtn.swiper-button-prev img {
  transform: rotate(180deg);
}

.newsd {
  background: #f5f6fa;
}

.newsd .top h6 {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.8vw, 14px);
  color: #666;
  justify-content: center;
  margin-bottom: 1rem;
}

.newsd .top h6 span {
  font-size: clamp(10px, 0.6vw, 14px);
  background: var(--color2);
  color: #fff;
  line-height: 1;
  padding: 0.3rem 0.5rem 0.3rem;
  border-radius: 3px;
  margin-right: 0.4rem;
}

.newsd .bar2 {
  background: #fff;
  border-radius: 10px;
  padding: 3rem 10%;
  box-sizing: border-box;
}

.newsd .txt p img {
  max-width: 100%;
}

.newsd .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.newsd .bottom a {
  width: 42%;
  display: block;
  background: #f5f6fa;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.newsd .bottom a:last-of-type {
  width: 13%;
  padding: 0;
}

.newsd .bottom .bbs h6 {
  width: max-content;
  font-size: clamp(10px, 0.5vw, 14px);
  background: var(--color3);
  color: #fff;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  margin-right: 0.4rem;
}

.newsd .bottom p {
  margin: 1rem 0 0;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
}

.newsd .bottom a:last-of-type p {
  display: flex;
  align-items: center;
  margin: 0;
}

.newsd .bottom p img {
  width: 1rem;
  height: 1rem;
  margin: -2px 0.5rem 0 0;
}

.newsd .bottom a:hover p {
  color: var(--color2);
}

.pro .bar2 dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 1.5rem;
}

.pro .bar2 dl a {
  display: block;
}

.pro .bar2 dl dd {
  position: relative;
  cursor: pointer;
}

.pro .bar2 dl dd::after {
  content: '';
  position: absolute;
  left: 0;
  top: -0;
  width: 100%;
  height: 2px;
  transition: all 1s ease;
  background: #ebebed;
}

.pro .bar2 dl dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: -0;
  width: 0;
  height: 2px;
  transition: all 1s ease;
  background: var(--color2);
  z-index: 2;
}

.pro .bar2 dl dd:hover::before {
  width: 100%;
}

.pro .bar2 dl dd b {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.pro .bar2 dl dd h6 {
  display: flex;
  margin: 1.2rem 0;
  position: relative;
  transition: all 0.6s ease;
  font-weight: 400;
}

.pro .bar2 dl dd h6::before {
  content: '';
  width: 0;
  height: 90%;
  background: var(--color2);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.6s ease;
}

.pro .bar2 dl dd:hover h6 {
  color: var(--color2);
  padding-left: 0.6rem;
}

.pro .bar2 dl dd:hover h6::before {
  width: 3px;
}

.prod .pbar1 {
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 10px;
  height: 70vh;
  background: linear-gradient(148.49deg, #fafafc 0%, #fdfaff 100%);
  position: relative;
  align-items: center;
}

.prod .pbar1 .ll {
  width: 50%;
  overflow: hidden;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod .pbar1 .rr {
  width: 50%;
  padding: 0 6%;
  box-sizing: border-box;
}

.prod .pbar1 .title2 {
  margin-bottom: 1rem;
}

.prod .pbar1 .title2 h3 {
  display: flex;
  align-items: center;
}

.prod .pbar1 .title2 h3 img {
  margin: -2px 0.6rem 0 0;
  width: clamp(14px, 1.5vw, 30px);
}

.prod .pbar1.scalImg:hover .title2 h3 img {
  transform: none;
}

.prod .pbar1 .tt {
  margin-bottom: 4rem;
}

.prod .pbar1 p {
  margin: 0;
  font-size: clamp(12px, 0.9vw, 16px);
}

.prod .pbar1 .bottom {
  margin-top: 2.5rem;
}

.prod .pbar1 .more {
  margin: 0 1rem 0 0;
  color: var(--color);
  border-color: var(--color);
  padding: clamp(10px, 0.9vw, 20px) clamp(14px, 1.6vw, 30px);
  font-size: clamp(12px, 1vw, 16px);
}

.prod .pbar1 .more img {
  width: clamp(14px, 1.1vw, 20px);
  margin: 0 0.5rem 0 0;
}

.prod .pbar1 .morea {
  background: var(--color2);
  border-color: transparent;
  color: #fff;
}

.prod .pbar1 .morea img {
  filter: invert(1) brightness(1000);
}

.prod .pbar1 .more:hover {
  color: #fff;
}

.prod2 {
  padding-top: 0 !important;
}

.prod2 .top {
  position: relative;
}

.prod2 .top .title {
  position: absolute;
  top: 30%;
  left: 0%;
  width: 100%;
}

.prod2 .top .title h3 {
  color: #fff;
}

.prod2 .contain {
  position: relative;
  margin-top: -20vh;
  background: #fff;
  border-radius: 10px;
  padding: 4% 4% 0;
  box-sizing: border-box;
}

.prod2 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  background: rgba(0, 0, 0, .1);

}

.prod2 table td {
  font-size: clamp(11px, 1.1vw, 16px);
  line-height: 1.5;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  color: #666; 
  background: #fff; 
  text-align: center;
}
.prod2 table td p{
  font-size: clamp(11px, 1.1vw, 16px);
  line-height: 1.5;
  color: #666; 
  margin: 0;
  text-align: center;
}
.prod2 table tr:nth-of-type(1) td {
  font-weight: 400;
  color: #fff;
  background: var(--color2);
}
.prod2 table tr:nth-of-type(1) td p {
  font-weight: 400;
  color: #fff;
} 
.prod2 table tr td img{
    margin: auto;
    width: 6vw;
} 
.support {
  padding: 5rem 0;
}

.support ul li {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
}

.support ul li:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.support ul li .ll {
  width: 44%;
  padding: 10vh 0;
}

.support ul li .title {
  margin-bottom: 2rem;
}

.support ul li h3 {
  display: flex;
  align-items: center;
}

.support ul li h3 img {
  margin: -2px 0.6rem 0 0;
  width: clamp(22px, 2.2vw, 30px);
}

.support ul li .rr {
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}

.contact ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 3rem;
}

.contact ul li {
  border-top: 1px solid var(--color3);
  padding: 1.2rem 0;
  box-sizing: border-box;
  cursor: default;
}

.contact ul li h6 {
  color: #999;
  margin-bottom: 0.8rem;
  font-size: clamp(14px, 1vw, 20px);
}

.contact ul li p {
  line-height: 1.6;
  font-weight: 400;
  color: var(--color);
  margin: 0;
}

.contact ul li p a {
  line-height: 1.6;
  font-weight: 400;
  transition: all 0.5s ease;
  margin-right: 1rem;
}

.contact ul li p a:hover {
  color: var(--color2);
}

.maps {
  border-radius: 10px;
  overflow: hidden;
}

.contact2 .contain {
  display: flex;
  justify-content: space-between;
}

.contact2 .title {
  position: sticky;
  top: 8rem;
  width: 40%;
}

.message {
  width: 44%;
}

.message .online p {
  margin: 0 0 clamp(12px, 1.2vw, 20px);
}


.message .online .inputs {
  font-size: clamp(12px, 0.9vw, 16px);
  background: none;
  width: 100%;
  display: block;
  line-height: 1.4;
  border-bottom: 1px solid var(--color3);
  padding: clamp(15px, 0.3vw, 20px) 0;
  box-sizing: border-box;
  box-shadow: none;
}

.message .online p:first-of-type .inputs {
  padding-top: 0;
}

.message ::placeholder {
  color: #999;
}

.message .online textarea {
  height: clamp(50px, 8vw, 110px);
}

.submit {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.submit .more {
  margin: 1rem 0 0;
  position: relative;
  border-color: var(--color3);
}

.submit .more span {
  color: var(--color3);
}

.submit button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.submit:hover {
  opacity: 0.9;
}

.policy .bar0 .tt p {
  margin: 1.5rem 0;
  line-height: 2;
}

.policy .bar0 .tt p strong {
  display: block;
  font-weight: 500;
  margin-bottom: -1rem;
}

.tk {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, .8);
  max-height: 100vh;
  overflow: hidden;
  display: none;
}

.tk .title2 h3 {
  text-align: center;
}

.tk .title2::after {
  display: none;
}


.tk .online form {
  width: 100%;
}

.tk .message {
  width: 60%;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 5%;
  box-sizing: border-box;
  border-radius: 2rem;
}

.tk .close {
  position: absolute;
  right: 2.5rem;
  top: 2rem;
  width: 3.2rem;
  cursor: pointer;
}

.tk .close img {
  width: 100%;
  filter: grayscale(1) brightness(0.5);
  transition: all 0.3s linear;
}

.tk .close img:hover {
  transform: rotate(90deg);
}

.tk .pps {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
}

.tk .online p {
  margin: 0;
}

.tk .online p .inputs {
  border-radius: 0;
  width: 100%;
  font-size: 1.4rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tk .online .more {
  opacity: 1;
  margin: 4rem auto 0;
  pointer-events: auto;
}

.pages ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.pages ul li {
  margin: 0 0.4rem;
  transition: all 0.5s ease;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.pages ul li.active,
.pages ul li:hover {
  background: var(--color2);
  color: #fff;
  border-color: transparent;
}

.pages ul li a,
.pages ul li span {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(11px, 0.9vw, 14px);
}

.pages ul li.active span,
.pages ul li:hover span,
.pages ul li.active a,
.pages ul li:hover a {
  color: #fff;
}

.big_box {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.80);
  z-index: 9999999999;
  display: none;
}

.big_imgss {
  position: absolute;
  width: 90%;
  height: 90vh;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.big_imgss.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.big_box .big_imgss video {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
}

.big_box .righttop {
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 9;
  padding: 10px;
  background: var(--color);
}

.big_box .righttop div {
  float: right;
}

.big_box .righttop img {
  margin: 0;
  height: 1.6rem;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  filter: invert(1) brightness(10000);
}

.big_box .righttop img:hover {
  opacity: 0.6 !important;
}
html[lang='en'] *{
    letter-spacing: 0 !important;
}
html[lang='en'] p{
    text-align: left;
    line-height: 1.5;
}
html[lang='en'] .banner .typewriter i{
    font-size: clamp(20px, 2.6vw, 46px);
}
html[lang='en'] .counters{
    width: 80%;
    gap: 2rem 0;
    justify-content: space-between; 
}
html[lang='en'] .counters dd{
    width: 45%;
}
html[lang='en'] .counters dd p{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
html[lang='en'] .counters dd h5 strong {
    font-size: clamp(18px, 2vw, 40px);
}
html[lang='en'] .prod2 table td{
    word-break: inherit !important;
}