@charset "utf-8";
:root {
  --color: #127f3b;
  --dominant-color: #127f3b;
}
/*头部样式*/
header {
  width: 100%;
  z-index: 10;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  height: clamp(60px, 0.9rem, 90px);
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
header.z-active {
  z-index: 99;
}
header.active,
header.hover-active {
  background: #ffffff;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
header.active .header-box .header-menu nav .first-item .first-item-title,
header.hover-active .header-box .header-menu nav .first-item .first-item-title,
header.active .language span,
header.hover-active .language span {
  color: #000;
}
header.active .language img,
header.hover-active .language img,
header.active .search img,
header.hover-active .search img {
  filter: brightness(0);
}
header.active .search,
header.hover-active .search {
  border-color: rgba(0, 0, 0, 0.2);
}
header.active .logo,
header.hover-active .logo {
  filter: none !Important;
}
header.active .header-box .header-menu nav .first-item .first-item-title::after,
header.hover-active .header-box .header-menu nav .first-item .first-item-title::after {
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  header {
    position: sticky;
    background: #fff;
  }
}
header .header-phone-click {
  cursor: pointer;
  width: 22px;
  height: 16px;
  align-items: center;
  position: relative;
  right: 0;
  margin-right: 0;
  margin-left: auto;
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-phone-click {
    display: flex;
    order: 3;
    margin-left: 0;
  }
}
header .header-phone-click .phone-click-line {
  height: 2px;
  background: #000;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
header .header-phone-click .phone-click-line::before,
header .header-phone-click .phone-click-line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::before {
  top: 0;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::after {
  bottom: 0;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line {
  background: transparent;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line::before {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(7px) rotate(45deg);
}
header .header-phone-click.active .phone-click-line::after {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(-7px) rotate(-45deg);
}
header .header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 60px;
  /*logo*/
  /*logo*/
}
@media screen and (max-width: 768px) {
  header .header-box {
    padding-left: 0;
    padding-right: 0;
    width: 90%;
    margin: auto;
  }
}
header .header-box .logo {
  width: clamp(100px, 2.06rem, 206px);
  filter: brightness(100);
}
@media screen and (max-width: 768px) {
  header .header-box .logo {
    width: 100%;
    justify-content: flex-start;
    max-width: 100px;
    display: block;
    filter: none;
  }
  header .header-box .logo.pc {
    display: none;
  }
}
header .header-box .logo img {
  max-width: inherit;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
header .header-box .header-menu {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex: 1;
  margin-left: clamp(100px, 2rem, 200px);
  /*导航*/
  /*导航*/
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu {
    width: 100%;
    position: absolute;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    padding: 30px 5% 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
    overflow: auto;
  }
}
header .header-box .header-menu nav {
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    gap: 0;
  }
}
header .header-box .header-menu nav .first-item {
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item {
    height: auto;
    width: 100%;
    margin-right: 0;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
}
header .header-box .header-menu nav .first-item .first-box {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .first-box {
    border-bottom: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item.active .first-box::after,
header .header-box .header-menu nav .first-item:hover .first-box::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item.active .first-item-title,
header .header-box .header-menu nav .first-item:hover .first-item-title {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item.active .first-item-title::after,
header .header-box .header-menu nav .first-item:hover .first-item-title::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .first-item-title {
  font-size: clamp(14px, 0.18rem, 18px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  transition: all 0.5s;
  width: 100%;
  font-family: 'SYH-L';
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .first-item-title {
    height: 50px;
    width: 100%;
    justify-content: flex-start;
    color: #333;
  }
}
header .header-box .header-menu nav .first-item .first-item-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  opacity: 0;
  transition: all 0.5s;
  background: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .first-item-title::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item i {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item i {
    display: block;
  }
}
header .header-box .header-menu nav .first-item i::before,
header .header-box .header-menu nav .first-item i::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #000;
}
header .header-box .header-menu nav .first-item i::before {
  width: 14px;
  height: 2px;
}
header .header-box .header-menu nav .first-item i::after {
  height: 14px;
  width: 2px;
}
header .header-box .header-menu nav .first-item i.active {
  transform: rotate(45deg);
}
header .header-box .header-menu nav .first-item:first-child i {
  display: none !important;
}
header .header-box .header-menu nav .first-item .second-box {
  position: absolute;
  top: clamp(60px, 0.9rem, 90px);
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  max-height: 480px;
  overflow: auto;
  /*特殊*/
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box {
    width: 100%;
    position: relative;
    top: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    padding: 0;
    box-shadow: none;
    border: none;
    display: none;
    transition: all 0s;
    pointer-events: auto;
    left: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box::before {
  position: absolute;
  height: 10px;
  left: 0;
  top: -10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box::before {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #eee transparent transparent;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .section {
  display: grid;
  gap: clamp(20px, 0.4rem, 40px) clamp(20px, 0.7rem, 70px);
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .section {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item {
  height: fit-content;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item i {
  bottom: auto;
  height: 40px;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
  color: #000;
  font-size: clamp(12px, 0.18rem, 18px);
  transition: all 0.2s;
  padding: 10px 0;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title .title {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #000;
  text-align: center;
  display: block;
  padding: 0 10px;
  font-family: 'SYH-L';
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title .title:hover {
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title .title {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    color: #000;
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title span {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title span {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
    color: var(--dominant-color);
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
  color: var(--dominant-color);
  border-color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover span {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .three-box {
  margin-top: clamp(10px, 0.5rem, 50px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 0.5rem, 50px);
  padding-left: 20px;
}
header .header-box .header-menu nav .first-item .second-box .three-box .title {
  font-size: clamp(14px, 0.2rem, 20px);
  color: #000;
}
header .header-box .header-menu nav .first-item .second-box .three-box .list {
  font-size: clamp(12px, 0.18rem, 18px);
  color: #666;
  display: block;
  margin-top: clamp(6px, 0.1rem, 10px);
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .second-box .three-box .list:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .three-box2 {
  opacity: 0;
  width: clamp(4.7rem, 4.7rem, 470px);
  padding-left: clamp(1.2rem, 1.2rem, 120px);
  position: absolute;
  left: clamp(3.5rem, 3.5rem, 350px);
  top: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 {
    position: relative;
    width: 100%;
    padding-left: 20px;
    left: 0;
    opacity: 1;
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2::after {
  content: '';
  top: 0;
  left: clamp(0.6rem, 0.6rem, 60px);
  background: #d1d1d1;
  width: 1px;
  height: 100%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 0.24rem, 24px);
  transition: all 0.2s;
  line-height: 1.4;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
    display: block;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a {
    color: #000;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a:hover {
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a span {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item:hover .four-item {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .four-item {
  opacity: 0;
  position: absolute;
  left: 100%;
  top: 0;
  width: clamp(4.7rem, 4.7rem, 470px);
  padding-left: clamp(1.2rem, 1.2rem, 120px);
  height: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .four-item {
    position: relative;
    left: 10px;
    width: 100%;
    padding-left: 0;
    opacity: 1;
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .four-item::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: clamp(0.6rem, 0.6rem, 60px);
  background: #d1d1d1;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .four-item::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .four-item a {
  padding: 12px 0;
  display: block;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .four-item a {
    padding: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box {
  width: 100vw;
  min-height: 338px;
  padding: 0;
  position: fixed;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
  align-items: flex-start;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
  flex-basis: 300px;
  background: #fff;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
    flex-basis: 100px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-title {
  margin-bottom: 20px;
  color: #888;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
  color: #333;
  margin-bottom: 10px;
  width: 100%;
  background: #f8f8f8;
  padding: 15px;
  font-size: 14px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
    font-size: 12px;
    padding: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item:hover,
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item.active {
  background: #e7e7e7;
  color: #2f2f2f;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
  margin-left: 60px;
  flex: 1;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
    margin-left: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items {
  display: none;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-title {
  color: #333;
  margin-bottom: 20px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
    display: flex;
    overflow: auto;
    grid-gap: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
  background: #f1f2f4;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
    flex-shrink: 0;
    width: 130px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item .imgBox {
  padding-bottom: 75%;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .title {
  color: #333;
  text-align: center;
  margin-top: 10px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
  flex-basis: 20%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
    flex-basis: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
    margin-top: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
  height: 40px;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img img {
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
  color: #222;
  text-align: left;
  padding: 0;
  transition: all 0.5s;
  margin-top: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
    margin-top: 10px;
    padding: 0 10px;
    position: relative;
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
  margin-top: 10px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
    margin-top: 0;
    display: none;
    padding-left: 30px;
    margin-bottom: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title {
  display: block;
  transition: all 0.5s;
  font-size: 12px;
  color: #999;
  width: fit-content;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title.news {
  color: var(--dominant-color);
  font-size: 12px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:hover .three-box {
  opacity: 1;
  visibility: visible;
}
header .header-box .header-menu nav .first-item .product-section {
  background: #f7f7f7;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .product-section {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .product-section .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .product-section .phone {
    display: block;
  }
}
header .header-box .header-menu nav .first-item .product-section .product-first {
  background: #fff;
  display: flex;
  justify-content: flex-start;
  height: clamp(50px, 0.7rem, 70px);
  border-bottom: 1px solid #eee;
  color: #000;
  gap: clamp(30px, 0.9rem, 90px);
  padding-left: 60px;
  padding-right: 60px;
}
header .header-box .header-menu nav .first-item .product-section .product-first .product-first-item {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: clamp(12px, 0.18rem, 18px);
  cursor: pointer;
}
header .header-box .header-menu nav .first-item .product-section .product-first .product-first-item.active {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .product-section .section {
  display: block;
  max-width: 100%;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .product-section .section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box {
  display: none;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box.active {
  display: flex;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left {
  padding-top: clamp(30px, 0.5rem, 50px);
  padding-bottom: clamp(30px, 0.5rem, 50px);
  flex-basis: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left {
    flex-basis: 50%;
  }
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left .item {
  font-size: clamp(12px, 0.18rem, 18px);
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(40px, 0.5rem, 50px);
  padding: 0 clamp(10px, 0.3rem, 30px);
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left .item::after {
  content: '';
  background: url('../images/img75.png') no-repeat top left / contain;
  width: 100%;
  height: 20%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left .item .fa {
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left .item.active {
  background: #fff;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left .item.active::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .left .item.active .fa {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right {
  padding-top: clamp(30px, 0.5rem, 50px);
  padding-bottom: clamp(30px, 0.5rem, 50px);
  padding-left: clamp(20px, 0.8rem, 80px);
  margin-left: clamp(20px, 0.8rem, 80px);
  flex: 1;
  background: #fff;
  position: relative;
  border-left: 1px solid #eee;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  right: -100%;
  top: 0;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .r-box {
  width: 100%;
  display: none;
  justify-content: space-between;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .r-box.active {
  display: flex;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .l-item {
  flex-basis: 3rem;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .l-item {
    flex-basis: 100%;
  }
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .l-item .item {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(40px, 0.5rem, 50px);
  background: #f7f7f7;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 clamp(10px, 0.2rem, 20px);
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .l-item .item:hover {
  background: var(--dominant-color);
  color: #fff;
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .r-item {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .r-item {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .product-section .section .product-first-item-box .right .r-item img {
  flex-basis: 4.3rem;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item:hover .second-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
header .header-box .header-menu nav .first-item:hover a {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .logo {
  margin-left: auto;
  margin-right: auto;
}
header .header-box .header-menu nav .logo ~ .first-item {
  margin-left: 60px;
  margin-right: 0;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 0;
  }
}
header .header-box .header-menu nav .shop {
  margin-left: 60px;
  background: #1e1e1e;
  border-radius: 25px;
  width: 120px;
  height: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .shop {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .shop {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .shop {
    margin-left: 0;
    margin-top: 30px;
    height: 40px;
    font-size: 14px;
    width: 100%;
  }
}
header .header-box .header-menu nav .shop img {
  width: 19px;
  height: 19px;
  margin-right: 10px;
}
header .header-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .header-right {
    margin-top: 40px;
  }
}
header .header-right .tel {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  background: var(--color);
  height: 100%;
  flex-basis: clamp(150px, 3rem, 300px);
  flex-direction: column;
  padding-left: 10%;
}
@media screen and (max-width: 768px) {
  header .header-right .tel {
    display: none;
  }
}
header .header-right .tel .tel-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .header-right .tel img {
  width: clamp(16px, 0.2rem, 20px);
}
header .header-right .tel a {
  font-size: clamp(12px, 0.22rem, 22px);
  color: #fff;
  font-weight: 600;
}
header .search {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  margin-right: clamp(16px, 0.22rem, 22px);
  padding-right: clamp(16px, 0.22rem, 22px);
}
@media screen and (max-width: 768px) {
  header .search {
    margin-left: auto;
    display: none;
    margin-right: 16px;
  }
}
header .search.phone-search {
  display: none !important;
}
@media screen and (max-width: 768px) {
  header .search.phone-search {
    display: block !important;
  }
}
header .search .search-click {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
header .search img {
  width: clamp(16px, 0.19rem, 19px);
  transform: translateY(-2px);
}
header .language {
  color: #fff;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: clamp(20px, 0.5rem, 50px);
}
header .language .button {
  color: #fff;
  gap: clamp(6px, 0.1rem, 10px);
  font-size: clamp(12px, 0.16rem, 16px);
  display: flex;
  align-items: center;
}
header .language .button img {
  width: clamp(16px, 0.2rem, 20px);
}
header .language .button span {
  display: block;
}
header .language .language-show {
  overflow: hidden;
  border-radius: 5px;
  position: absolute;
  top: 100%;
  padding-top: 10px;
  color: #333;
  left: 50%;
  margin: auto;
  width: 120px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) translateX(-50%);
  pointer-events: none;
}
header .language .language-show .language-show-box {
  background: var(--dominant-color);
}
header .language .language-show .language-show-item {
  padding: 10px 0;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  display: block;
  text-align: center;
  transition: all 0.5s;
}
header .language .language-show .language-show-item:hover {
  background: var(--dominant-color);
  color: #fff;
}
header .language:hover .language-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
  pointer-events: auto;
}
header .header-contact {
  margin-left: 50px;
  font-size: 14px;
  font-weight: 600;
  width: 133px;
  height: 42px;
  background: var(--dominant-color);
  color: #fff;
  border-radius: 21px;
}
@media screen and (max-width: 768px) {
  header .header-contact {
    display: none;
  }
}
header .header-contact img {
  margin-right: 20px;
  width: 20px;
}
header .header-search-box {
  display: none;
  height: 100px;
  position: fixed;
  z-index: 99;
  width: 100%;
}
header .header-search {
  position: fixed;
  top: clamp(60px, 0.9rem, 90px);
  left: 0;
  width: 100%;
  background: var(--dominant-color);
  height: 100px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header .header-search {
    top: 60px;
  }
}
header .header-search label {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 100%;
  position: relative;
}
header .header-search label input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #eee;
  background: none;
  color: #fff;
  font-family: Montserrat-Regular;
}
header .header-search label input::placeholder {
  color: #fff;
  font-family: Montserrat-Regular;
}
header .header-search label button {
  width: 50px;
  height: 50px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
header .header-search label button img {
  width: 18px;
  filter: contrast(0) brightness(100);
}
header .header-search label i {
  position: absolute;
  font-size: 20px;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
header .header-search form {
  width: 100%;
  max-width: 600px;
}
/*底部样式*/
.footer {
  z-index: 4;
  position: relative;
  background: url('../images/footer_bg.jpg') no-repeat center / cover;
}
.footer .footer-box {
  padding-top: clamp(40px, 1.1rem, 110px);
  padding-bottom: clamp(40px, 1rem, 100px);
  display: flex;
  gap: clamp(40px, 1.5rem, 150px);
}
@media screen and (max-width: 767px) {
  .footer .footer-box {
    flex-direction: column;
  }
}
.footer .footer-box .footer-right {
  flex-basis: clamp(200px, 4rem, 400px);
}
.footer .footer-box .footer-right .text {
  font-size: clamp(12px, 0.16rem, 16px);
  line-height: 2;
}
.footer .footer-box .footer-right .text .t {
  color: #fff;
  display: block;
}
.footer .footer-box .footer-right .text .tel {
  color: var(--dominant-color);
  font-size: clamp(12px, 0.24rem, 24px);
}
.footer .footer-box .footer-right .text .add {
  margin-top: clamp(6px, 0.1rem, 10px);
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-box .footer-right .text .add a {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-box .footer-menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
  grid-gap: clamp(10px, 0.4rem, 40px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer .footer-box .footer-menu {
    flex-direction: column;
    grid-gap: 0;
  }
}
.footer .footer-box .footer-menu .item {
  position: relative;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .footer .footer-box .footer-menu .item {
    padding-bottom: 0;
    max-width: 100%;
  }
}
.footer .footer-box .footer-menu .item:first-child {
  display: none;
}
.footer .footer-box .footer-menu .line {
  background: var(--dominant-color);
  width: 14px;
  height: 3px;
  margin-top: clamp(6px, 0.1rem, 10px);
  margin-bottom: clamp(10px, 0.16rem, 16px);
}
@media screen and (max-width: 767px) {
  .footer .footer-box .footer-menu .line {
    display: none;
  }
}
.footer .footer-box .footer-menu .first-item {
  display: block;
  font-size: clamp(14px, 0.16rem, 16px);
  position: relative;
  pointer-events: none;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .footer-box .footer-menu .first-item {
    pointer-events: auto;
    height: 64px;
    line-height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .footer-box .footer-menu .first-item i {
    width: 26px;
    height: 64px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    display: block;
  }
  .footer .footer-box .footer-menu .first-item i::before,
  .footer .footer-box .footer-menu .first-item i::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #fff;
    transition: all 0.5s;
  }
  .footer .footer-box .footer-menu .first-item i::before {
    width: 12px;
    height: 2px;
  }
  .footer .footer-box .footer-menu .first-item i::after {
    height: 12px;
    width: 2px;
  }
  .footer .footer-box .footer-menu .first-item i.active::after {
    transform: rotate(90deg);
  }
}
.footer .footer-box .footer-menu .first-summary {
  border-bottom: 1px solid #eee;
  font-size: clamp(12px, 0.16rem, 16px);
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
}
.footer .footer-box .footer-menu .bottom .b-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .footer-box .footer-menu .bottom .b-item .icon {
  margin-right: 20px;
}
.footer .footer-box .footer-menu .second-box {
  max-height: 250px;
  overflow: auto;
  padding-right: clamp(10px, 0.24rem, 24px);
}
.footer .footer-box .footer-menu .second-box::-webkit-scrollbar {
  width: 4px;
  background-color: #27322b;
}
.footer .footer-box .footer-menu .second-box::-webkit-scrollbar-thumb {
  width: 4px;
  border-radius: 10px;
  background-color: #949694;
}
@media screen and (max-width: 1600px) {
  .footer .footer-box .footer-menu .second-box {
    min-width: auto;
  }
}
.footer .footer-box .footer-menu .second-box img {
  max-width: 120px;
}
@media screen and (max-width: 767px) {
  .footer .footer-box .footer-menu .second-box {
    margin-top: 20px;
    line-height: 1.6;
    border-top: none;
    padding-top: 0;
    display: none;
  }
}
.footer .footer-box .footer-menu .second-box a,
.footer .footer-box .footer-menu .second-box span {
  opacity: 0.5;
  display: block;
  font-size: clamp(12px, 0.16rem, 16px);
  transition: all 0.5s;
  position: relative;
  width: fit-content;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .footer-box .footer-menu .second-box a,
  .footer .footer-box .footer-menu .second-box span {
    width: 100%;
  }
}
.footer .footer-box .footer-menu .second-box a::after {
  width: 0;
  background: var(--dominant-color);
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: all 0.5s;
}
.footer .footer-box .footer-menu .second-box a:hover {
  opacity: 1;
}
.footer .footer-box .footer-menu .second-box a:hover::after {
  width: 100%;
}
.footer .footer-logo {
  width: clamp(100px, 1.52rem, 152px);
  margin-left: auto;
}
.footer .footer-link {
  margin-top: clamp(30px, 0.5rem, 50px);
}
.footer .footer-link .items {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  flex-basis: 50%;
  margin-top: clamp(6px, 0.1rem, 10px);
}
@media screen and (max-width: 767px) {
  .footer .footer-link .items {
    margin-bottom: 20px;
  }
}
.footer .footer-link .item {
  border-radius: 50%;
  width: clamp(40px, 0.5rem, 50px);
  height: clamp(40px, 0.5rem, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.11);
}
.footer .footer-link .item .show {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: none;
}
.footer .footer-link .item img {
  transition: all 0.5s;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer .footer-link .item img {
    width: 50%;
  }
}
.footer .footer-link .item:hover {
  background: var(--dominant-color);
}
.footer .footer-link .item:hover .show {
  display: block;
}
.footer .footer-link .item:hover img {
  filter: none;
}
.footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  padding: 30px 0 clamp(30px, 0.6rem, 60px);
  font-size: clamp(12px, 0.16rem, 16px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .footer-copyright {
    padding: 20px 0;
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .footer-copyright .left {
  width: clamp(100px, 1.52rem, 152px);
}
@media screen and (max-width: 767px) {
  .footer .footer-copyright .left {
    margin-bottom: 20px;
  }
}
.footer .footer-copyright a {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-copyright a:hover {
  color: #ffffff;
}
.footer .footer-copyright .right {
  line-height: 2;
}
.go-top {
  width: 140px;
  height: 50px;
  z-index: 1;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.5s;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.go-top img {
  width: 16px;
  margin-left: 20px;
}
.go-top i {
  transition: all 0.5s;
}
.go-top:hover {
  background: var(--dominant-color) !important;
}
.go-top:hover i {
  color: #fff;
}
.pageBanner {
  transition: all 0.5s;
  position: relative;
  color: #fff;
  overflow: hidden;
  width: 100%;
}
.pageBanner .img {
  height: 100%;
  width: 100%;
}
.pageBanner .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.pageBanner .banner-box {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  height: fit-content;
  text-align: center;
}
.pageBanner .banner-box .banner-title {
  color: #fff;
  font-size: clamp(18px, 0.52rem, 52px);
  line-height: 1;
}
.pageBanner .banner-box .banner-summary {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.6;
  margin-top: clamp(10px, 0.1rem, 10px);
  font-weight: 100;
}
.banner {
  overflow: hidden;
}
.banner img {
  width: 100%;
}
.banner .swiper-pagination {
  bottom: clamp(20px, 0.6rem, 60px) !important;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  width: clamp(30px, 0.6rem, 60px);
  height: 2px;
  background: #fff;
  opacity: 0.8;
  border-radius: 0;
  margin-left: clamp(5px, 0.1rem, 10px) !important;
  margin-right: clamp(5px, 0.1rem, 10px) !important;
  position: relative;
}
.banner .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  background: var(--dominant-color);
  top: 0;
  left: 0;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  animation: run 5s linear forwards;
}
@keyframes run {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.page-title .title {
  font-size: clamp(18px, 0.48rem, 48px);
  color: #222222;
  margin: 0;
  font-family: 'SYH-M';
}
.page-title .en {
  font-size: clamp(12px, 0.24rem, 24px);
  text-transform: uppercase;
  opacity: 0.2;
  font-family: 'Barlow';
  font-weight: 600;
}
.page-title .summary {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #666666;
  margin-top: clamp(6px, 0.16rem, 16px);
  line-height: 2;
}
.page-title.center {
  text-align: center;
}
.f-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dominant-color);
  color: #fff;
  font-size: clamp(12px, 0.16rem, 16px);
  gap: clamp(10px, 0.16rem, 16px);
  border-radius: 99px;
  min-width: clamp(120px, 1.6rem, 160px);
  height: clamp(40px, 0.54rem, 54px);
  padding: 0 20px;
  width: fit-content;
  transition: all 0.5s;
}
.f-more img {
  width: clamp(8px, 0.12rem, 12px);
  transform: rotate(-45deg);
}
.f-more:hover {
  opacity: 0.8;
  color: #fff;
}
.about {
  overflow: hidden;
}
.about .about01 {
  background: url('../images/about22.jpg') no-repeat center bottom / cover;
  padding-bottom: clamp(50px, 1.2rem, 120px);
}
.about .about01 .top {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about .about01 .top {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}
.about .about01 .top .left {
  flex-basis: 50%;
  flex-shrink: 0;
  padding-right: clamp(20px, 1rem, 100px);
}
@media screen and (max-width: 767px) {
  .about .about01 .top .left {
    padding: 0;
  }
}
.about .about01 .top .left .summary {
  line-height: 2;
}
.about .about01 .top .right {
  flex-basis: 50vw;
  flex-shrink: 0;
}
.about .about01 .bottom {
  display: flex;
  gap: clamp(20px, 0.8rem, 80px);
  margin-top: clamp(30px, 0.8rem, 80px);
}
@media screen and (max-width: 767px) {
  .about .about01 .bottom {
    flex-direction: column;
  }
}
.about .about01 .bottom .item {
  border-bottom: 1px solid #ededed;
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding-bottom: clamp(20px, 0.6rem, 60px);
}
.about .about01 .bottom .item .text {
  flex: 1;
}
.about .about01 .bottom .item .text .title {
  font-size: clamp(12px, 0.24rem, 24px);
  color: var(--color);
  font-family: 'Barlow';
  font-weight: 600;
}
.about .about01 .bottom .item .text .title span {
  font-size: clamp(18px, 0.66rem, 66px);
}
.about .about01 .bottom .item .text .title sup {
  font-size: clamp(18px, 0.42rem, 42px);
  position: absolute;
  transform: translateY(-0.1rem);
}
.about .about01 .bottom .item .text .summary {
  font-size: clamp(12px, 0.18rem, 18px);
  color: #555;
}
.about .about01 .bottom .item .icon {
  flex-basis: clamp(30px, 0.7rem, 70px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.about .about02 {
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(50px, 1.2rem, 120px);
  background: url('../images/about15.jpg') no-repeat center bottom / cover;
}
@media screen and (max-width: 767px) {
  .about .about02 .auto {
    width: 100%;
  }
}
.about .about02 .swiper {
  margin: clamp(20px, 0.6rem, 60px) auto 0;
}
.about .about02 .swiper .swiper-slide .img-box {
  background: rgba(255, 255, 255, 0.4);
  height: 0;
  padding-bottom: 135%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  transform: scale(0.7);
  transition: all 0.5s;
}
.about .about02 .swiper .swiper-slide .img-box .point1,
.about .about02 .swiper .swiper-slide .img-box .point2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about .about02 .swiper .swiper-slide .img-box .point1::before,
.about .about02 .swiper .swiper-slide .img-box .point2::before,
.about .about02 .swiper .swiper-slide .img-box .point1::after,
.about .about02 .swiper .swiper-slide .img-box .point2::after {
  content: "";
  position: absolute;
  background: url('../images/about17.png') no-repeat center / contain;
  width: 8px;
  height: 9px;
}
.about .about02 .swiper .swiper-slide .img-box .point1::before {
  left: 8px;
  top: 8px;
}
.about .about02 .swiper .swiper-slide .img-box .point1::after {
  right: 8px;
  top: 8px;
}
.about .about02 .swiper .swiper-slide .img-box .point2::before {
  left: 8px;
  bottom: 8px;
}
.about .about02 .swiper .swiper-slide .img-box .point2::after {
  right: 8px;
  bottom: 8px;
}
.about .about02 .swiper .swiper-slide .img-box .img {
  height: 100%;
  position: absolute;
  padding: clamp(16px, 0.2rem, 20px);
  width: 100%;
}
.about .about02 .swiper .swiper-slide .img-box .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about .about02 .swiper .swiper-slide .text {
  text-align: center;
  color: #333;
  font-size: clamp(12px, 0.22rem, 22px);
  margin-top: clamp(20px, 0.4rem, 40px);
  opacity: 0;
  transition: all 0.5s;
}
.about .about02 .swiper .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}
.about .about02 .swiper .swiper-slide.swiper-slide-active .img-box {
  transform: scale(1);
}
.about .about02 .swiper .swiper-slide.swiper-slide-prev .img-box {
  transform: scale(0.8);
  transform-origin: left center;
}
.about .about02 .swiper .swiper-slide.swiper-slide-next .img-box {
  transform: scale(0.8);
  transform-origin: right center;
}
.about .about02 .swiper .swiper-pagination {
  position: inherit;
  margin-top: clamp(20px, 0.3rem, 30px);
}
.about .about02 .swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
.about .about02 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
}
.about .about02 .swiper .swiper-button-prev,
.about .about02 .swiper .swiper-button-next {
  background: rgba(0, 0, 0, 0.2);
  width: clamp(30px, 0.6rem, 60px);
  height: clamp(30px, 0.6rem, 60px);
  border-radius: 50%;
  transition: all 0.5s;
  transform: translateY(-100%);
}
@media screen and (max-width: 767px) {
  .about .about02 .swiper .swiper-button-prev,
  .about .about02 .swiper .swiper-button-next {
    display: none;
  }
}
.about .about02 .swiper .swiper-button-prev img,
.about .about02 .swiper .swiper-button-next img {
  width: 25%;
}
.about .about02 .swiper .swiper-button-prev::after,
.about .about02 .swiper .swiper-button-next::after {
  display: none;
}
.about .about02 .swiper .swiper-button-prev:hover,
.about .about02 .swiper .swiper-button-next:hover {
  background: var(--color);
}
.about .about02 .swiper .swiper-button-prev {
  left: 34%;
}
.about .about02 .swiper .swiper-button-prev img {
  transform: rotate(180deg);
}
.about .about02 .swiper .swiper-button-next {
  right: 34%;
}
.about .about03 {
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(50px, 1.2rem, 120px);
  background: url('../images/about08.png') no-repeat center bottom / contain;
}
.about .about03 .lines {
  overflow: hidden;
}
.about .about03 .lines .line {
  display: flex;
}
.about .about03 .lines .line .lists {
  flex-shrink: 0;
  width: 41%;
  border-left: 1px solid #dedede;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about .about03 .lines .line .lists {
    width: 85%;
  }
}
.about .about03 .lines .line .lists .list {
  height: clamp(160px, 3.3rem, 330px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-left: clamp(16px, 0.2rem, 20px);
  padding-right: clamp(20px, 1.2rem, 120px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .about .about03 .lines .line .lists .list {
    height: 200px;
  }
}
.about .about03 .lines .line .lists .list .time {
  color: var(--color);
  font-size: clamp(14px, 0.6rem, 60px);
  font-family: 'Barlow';
  line-height: 1;
}
.about .about03 .lines .line .lists .list .summary {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #666;
  line-height: 1.8;
  margin-top: clamp(10px, 0.1rem, 10px);
}
.about .about03 .lines .line .lists .list .bottom {
  width: clamp(120px, 2.3rem, 230px);
}
.about .about03 .lines .line .lists .list .bottom img {
  width: 100%;
}
.about .about03 .lines .line .lists::after {
  content: '';
  position: absolute;
  left: -8px;
  top: -8px;
  width: 15px;
  height: 15px;
  background: #fff url('../images/about14.png') no-repeat center / cover;
  z-index: 2;
}
.about .about03 .lines .line.line1 {
  position: relative;
}
.about .about03 .lines .line.line1 .lists {
  padding-bottom: clamp(20px, 0.6rem, 60px);
  transform: translateX(50%);
}
.about .about03 .lines .line.line1 .lists::after {
  top: auto;
  bottom: -8px;
}
.about .about03 .lines .line.line1 .lists:nth-child(odd) {
  display: none;
}
.about .about03 .lines .line.line2 .lists {
  padding-top: clamp(10px, 0.1rem, 10px);
}
.about .about03 .lines .line.line2 .lists:nth-child(even) {
  display: none;
}
.about .about03 .lines .line-h {
  height: 1px;
  width: 100%;
  background: #dedede;
}
.about .about03 .lines .line-c {
  background: #f2f2f2;
  height: clamp(6px, 0.1rem, 10px);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-top: clamp(30px, 0.9rem, 90px);
}
.about .about03 .lines .line-c .line-cc {
  background: var(--color);
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  border-radius: 5px;
  cursor: pointer;
}
.about .about04 {
  background: #fafafa;
  padding-top: clamp(50px, 1.5rem, 150px);
  padding-bottom: clamp(50px, 1.2rem, 120px);
}
.about .about04 .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(20px, 0.7rem, 70px);
}
@media screen and (max-width: 767px) {
  .about .about04 .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.about .about04 .items .item {
  padding: clamp(20px, 0.6rem, 60px);
  display: flex;
  gap: clamp(20px, 0.6rem, 60px);
  align-items: center;
  background: url('../images/about07.png') no-repeat center / cover;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  height: clamp(160px, 3.2rem, 320px);
}
@media screen and (max-width: 767px) {
  .about .about04 .items .item {
    flex-direction: column;
    align-items: flex-start;
    height: fit-content;
  }
}
.about .about04 .items .item .icon {
  width: clamp(35px, 0.7rem, 70px);
}
.about .about04 .items .item .text {
  flex: 1;
}
.about .about04 .items .item .text .title {
  font-size: clamp(14px, 0.24rem, 24px);
  color: #333;
  transition: all 0.5s;
}
.about .about04 .items .item .text .summary {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #666666;
  margin-top: clamp(6px, 0.16rem, 16px);
  line-height: 1.8;
}
.about .about04 .items .item:hover {
  z-index: 2;
  box-shadow: 12.5px 21.65px 46px 11px rgba(18, 127, 59, 0.2);
}
.about .about04 .items .item:hover .title {
  color: var(--color);
}
.index-bg {
  width: 100%;
  height: 100%;
  background: url('../images/index32.jpg') no-repeat center top / contain;
}
.index1 {
  position: relative;
  background: linear-gradient(to top, #fbfbfb, #fff);
}
.index1 .index-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .index1 .index-box {
    position: inherit;
  }
}
.index1 .index-box .text {
  height: 100%;
  margin-top: clamp(40px, 1.2rem, 120px);
}
@media screen and (max-width: 1366px) {
  .index1 .index-box .text {
    margin-top: 40px;
  }
}
.index1 .index-box .text .fade-text {
  margin-top: clamp(20px, 0.9rem, 90px);
  width: clamp(250px, 5.2rem, 520px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1366px) {
  .index1 .index-box .text .fade-text {
    margin-top: 20px;
    width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .index1 .index-box .text .fade-text {
    width: 100%;
  }
}
.index1 .index-box .text .fade-text .item {
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}
.index1 .index-box .text .fade-text .item .title {
  font-size: clamp(14px, 0.32rem, 32px);
  color: #222;
  font-family: 'SYH-M';
}
.index1 .index-box .text .fade-text .item .summary {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #555;
  margin-top: clamp(10px, 0.3rem, 30px);
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.index1 .index-box .text .fade-text .item .lists {
  margin-top: clamp(10px, 0.3rem, 30px);
  margin-bottom: clamp(20px, 0.7rem, 70px);
  display: flex;
  justify-content: space-between;
}
.index1 .index-box .text .fade-text .item .lists .list {
  text-align: center;
}
.index1 .index-box .text .fade-text .item .lists .list .key {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.2rem, 20px);
  font-family: 'SYH-M';
}
.index1 .index-box .text .fade-text .item .lists .list .key span {
  font-family: 'Barlow';
  font-weight: 600;
  font-size: clamp(14px, 0.22rem, 22px);
}
.index1 .index-box .text .fade-text .item .lists .list .value {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #555;
}
.index1 .index-box .text .fade-text .item .lists .line {
  width: 1px;
  background: #e1e1e1;
}
.index1 .index-box .text .fade-text .item:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index1 .index-box .text .fade-text .item.active {
  opacity: 1;
  pointer-events: auto;
}
.index1 .index-box .text .fade-img-s {
  position: absolute;
  left: -1%;
  bottom: 0;
  width: 6.7rem;
  z-index: 0;
}
.index1 .index-box .text .fade-img-s img {
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.index1 .index-box .text .fade-img-s img:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index1 .index-box .text .fade-img-s img.active {
  opacity: 1;
}
.index1 .index-box .text .swiper {
  position: absolute;
  bottom: clamp(20px, 0.9rem, 90px);
  width: clamp(300px, 6.7rem, 670px);
  border-top: 1px solid #e1e1e1;
}
@media screen and (max-width: 767px) {
  .index1 .index-box .text .swiper {
    position: inherit;
    width: 100%;
    margin-top: 30px;
  }
}
.index1 .index-box .text .swiper .swiper-slide {
  width: max-content;
  font-size: clamp(12px, 0.16rem, 16px);
  color: #555;
  padding-top: clamp(16px, 0.2rem, 20px);
  cursor: pointer;
  border-top: 2px solid transparent;
  transition: color 1s;
}
.index1 .index-box .text .swiper .swiper-slide.active {
  border-top: 2px solid var(--dominant-color);
  color: var(--dominant-color);
}
.index1 .fade-img {
  margin-right: 0;
  margin-left: auto;
  width: 11.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index1 .fade-img {
    width: 94%;
    margin-top: 30px;
  }
}
.index1 .fade-img img {
  width: 100%;
  opacity: 0;
}
.index1 .fade-img img:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index1 .fade-img img.active {
  opacity: 1;
}
.index2 {
  padding-top: clamp(50px, 1.2rem, 120px);
  padding-bottom: clamp(50px, 1.2rem, 120px);
  overflow: hidden;
}
.index2 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .index2 .top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.index2 .swiper {
  margin-top: clamp(20px, 0.6rem, 60px);
  overflow: inherit;
}
.index2 .swiper .swiper-slide {
  overflow: hidden;
}
.index2 .swiper .swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  transition: all 1s;
  opacity: 0.6;
}
.index2 .swiper .swiper-slide::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #127f3b, rgba(0, 0, 0, 0));
  transition: all 1s;
  opacity: 0;
  z-index: 1;
}
.index2 .swiper .swiper-slide .img {
  height: 0;
  padding-bottom: 120%;
}
.index2 .swiper .swiper-slide .img img {
  transition: all 0.5s;
}
.index2 .swiper .swiper-slide .img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.index2 .swiper .swiper-slide .text {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: clamp(20px, 0.35rem, 35px);
}
.index2 .swiper .swiper-slide .text .title {
  font-size: clamp(14px, 0.24rem, 24px);
  color: #fff;
}
.index2 .swiper .swiper-slide .text .t-more {
  width: clamp(30px, 0.5rem, 50px);
  height: clamp(30px, 0.5rem, 50px);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99%;
  transition: all 0.2s;
  opacity: 0;
}
.index2 .swiper .swiper-slide .text .t-more img {
  width: clamp(8px, 0.12rem, 12px);
}
.index2 .swiper .swiper-slide:hover .t-more {
  opacity: 1;
}
.index2 .swiper .swiper-slide:hover::after {
  opacity: 0;
}
.index2 .swiper .swiper-slide:hover::before {
  opacity: 1;
}
.index2 .swiper .swiper-slide:hover img {
  transform: scale(1.1);
}
.index2 .swiper .swiper-button-prev,
.index2 .swiper .swiper-button-next {
  background: rgba(0, 0, 0, 0.2);
  width: clamp(30px, 0.6rem, 60px);
  height: clamp(30px, 0.6rem, 60px);
  border-radius: 50%;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .index2 .swiper .swiper-button-prev,
  .index2 .swiper .swiper-button-next {
    display: none;
  }
}
.index2 .swiper .swiper-button-prev img,
.index2 .swiper .swiper-button-next img {
  width: 25%;
}
.index2 .swiper .swiper-button-prev::after,
.index2 .swiper .swiper-button-next::after {
  display: none;
}
.index2 .swiper .swiper-button-prev:hover,
.index2 .swiper .swiper-button-next:hover {
  background: var(--color);
}
.index2 .swiper .swiper-button-prev {
  left: -6%;
}
.index2 .swiper .swiper-button-prev img {
  transform: rotate(180deg);
}
.index2 .swiper .swiper-button-next {
  right: -6%;
}
.index3 .top {
  display: flex;
}
@media screen and (max-width: 767px) {
  .index3 .top {
    flex-direction: column-reverse;
  }
}
.index3 .top .left {
  flex-basis: 66.9%;
  padding-top: clamp(20px, 0.6rem, 60px);
}
.index3 .top .left .text {
  width: 11.2rem;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .index3 .top .left .text {
    width: 100%;
    flex-direction: column;
    padding: 20px;
  }
}
.index3 .top .left .text .page-title:first-child {
  flex-basis: 4rem;
}
@media screen and (max-width: 767px) {
  .index3 .top .left .text .page-title:first-child {
    flex-basis: auto;
    margin-bottom: 20px;
  }
}
.index3 .top .left .text .page-title:last-child {
  flex: 1;
  padding-right: clamp(20px, 1rem, 100px);
}
@media screen and (max-width: 767px) {
  .index3 .top .left .text .page-title:last-child {
    padding: 0;
  }
}
.index3 .top .left .text .page-title:last-child .summary {
  margin-top: 0;
}
.index3 .top .left .text .page-title:last-child .f-more {
  margin-top: clamp(20px, 0.5rem, 50px);
}
.index3 .top .right {
  flex-basis: 33.1%;
}
.index3 .top .right img {
  width: 100%;
}
.index3 .bottom {
  display: flex;
  margin-top: -0.88rem;
}
@media screen and (max-width: 767px) {
  .index3 .bottom {
    flex-direction: column;
  }
}
.index3 .bottom .left {
  flex-basis: 66.9%;
  position: relative;
}
.index3 .bottom .left .en-title {
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 7.71rem;
  z-index: -1;
}
.index3 .bottom .right {
  flex-basis: 33.1%;
  padding: clamp(20px, 1rem, 100px) clamp(20px, 1rem, 100px) 0;
  margin-top: 0.88rem;
}
@media screen and (max-width: 767px) {
  .index3 .bottom .right {
    flex-basis: 100%;
  }
}
.index3 .bottom .right .number {
  width: 3.8rem;
}
@media screen and (max-width: 767px) {
  .index3 .bottom .right .number {
    width: 100%;
  }
}
.index3 .bottom .right .number .item {
  border-bottom: 1px solid #ededed;
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding-bottom: clamp(20px, 0.6rem, 60px);
  margin-bottom: clamp(20px, 0.6rem, 60px);
}
.index3 .bottom .right .number .item .text {
  flex: 1;
}
.index3 .bottom .right .number .item .text .title {
  font-size: clamp(12px, 0.24rem, 24px);
  color: var(--color);
  font-family: 'Barlow';
  font-weight: 600;
}
.index3 .bottom .right .number .item .text .title span {
  font-size: clamp(18px, 0.66rem, 66px);
}
.index3 .bottom .right .number .item .text .title sup {
  font-size: clamp(18px, 0.42rem, 42px);
  transform: translateY(-0.1rem);
  position: absolute;
}
.index3 .bottom .right .number .item .text .summary {
  font-size: clamp(12px, 0.18rem, 18px);
  color: #555;
}
.index3 .bottom .right .number .item .icon {
  flex-basis: clamp(30px, 0.7rem, 70px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index3 .bottom .right .number .item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.index3 .bottom img {
  width: 100%;
}
.index4 {
  padding-top: clamp(50px, 1.6rem, 160px);
  padding-bottom: clamp(50px, 1.4rem, 140px);
  background: url('../images/index08.jpg') no-repeat center bottom / cover;
  position: relative;
}
.index4 .en-title {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(300px, 5.44rem, 544px);
}
@media screen and (max-width: 767px) {
  .index4 .en-title {
    width: 150px;
  }
}
.index4 .en-title img {
  width: 100%;
}
.index4 .index-box {
  position: relative;
  margin-top: clamp(20px, 0.6rem, 60px);
}
.index4 .index-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(to right, #d9eae9, rgba(217, 234, 233, 0));
  z-index: 2;
  opacity: 0.7;
}
.index4 .index-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(to left, #d9eae9, rgba(217, 234, 233, 0));
  z-index: 2;
  opacity: 0.7;
}
.index4 .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear 2;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.index4 .swiper .swiper-slide img {
  width: 100%;
}
.index4 .swiper-bottom {
  margin-top: 15px;
}
.iddd73,
.iddd98 {
  display: none !important;
}
/*# sourceMappingURL=index.css.map */