body {
  font-family: 'Source Han Sans SC', Arial, Helvetica, 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  width: 100%;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  --bs-body-color: #4C4948;
  color: #4C4948;
}

.video-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
}

.videobut {
  cursor: pointer;
}

.videoclock {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
  transition: all 0.5s;
}

.videoclock svg {
  width: var(--d40);
  fill: #fff;
}

.videoclock:hover svg {
  fill: #7356a1;
}

.videoaction {
  opacity: 1;
  visibility: visible;
}

.video-box video {
  /*height: 80%;*/
  object-fit: cover;
  max-width: 100%;
}


.setSlow0 {
  animation: an0 1s ease forwards;
}

.setSlow1 {
  animation: an1 1s ease forwards;
}

.setSlow2 {
  animation: an2 1s ease forwards;
}

.setSlow3 {
  animation: an3 1s ease forwards;
}

.setSlow1_1 {
  animation: an1 1s ease forwards;
  animation-delay: 0.5s;
}

.setSlow2_1 {
  animation: an2 1s ease forwards;
  animation-delay: 0.5s;
}

.setSlow3_1 {
  animation: an3 1s ease forwards;
  animation-delay: 0.5s;
}

.setSlow4_1 {
  animation: an4 1s ease forwards;
  animation-delay: 0.5s;
}

.setSlow1_2 {
  animation: an1_1 1s ease forwards;
}

.setSlow2_2 {
  animation: an2_2 1s ease forwards;
}

.setSlow3_2 {
  animation: an3_3 1s ease forwards;
}

.setSlow4_2 {
  animation: an4_4 1s ease forwards;
}

@keyframes an0 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

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

@keyframes an2 {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes an3 {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

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

@keyframes an4 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes an1_1 {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

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

@keyframes an2_2 {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50px);
  }
}

@keyframes an3_3 {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(50px);
  }
}

@keyframes an4_4 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@font-face {
  font-family: 'Rubik';
  font-weight: 500;
  font-style: normal;
  src: local('Rubik Medium'), local('Rubik-Medium'), url('../font/Rubik-Medium.woff2') format('woff2'), url('../font/Rubik-Medium.woff') format('woff'), url('../font/Rubik-Medium.ttf') format('truetype');
  font-display: swap;
}

table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  overflow: auto;
  text-align: center;
  font-size: var(--20);
  line-height: calc(29 / 20);
  color: #231815;
}

table tr,
table td,
table th {
  width: auto;
  height: auto;
}

table td,
table th {
  padding: var(--d18);
  border: 1px solid rgba(56, 39, 88, 0.2);
}

@media (max-width: 1200px) {
  .table-box {
    overflow-y: hidden;
    overflow-x: auto;
  }

  table {
    min-width: 900px;
  }

  /* 针对WebKit/Blink浏览器 */
  .table-box::-webkit-scrollbar {
    height: 6px;
    transform: translateY(3px);
  }

  .table-box::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .table-box::-webkit-scrollbar-thumb {
    background: var(--c3);
  }

}

body.fancybox-active {
  overflow: auto;
}

.img-box {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
}

.img-box iframe,
.img-box video,
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

label {
  width: 100%;
}

.pro {
  position: relative;
}

.top {
  position: absolute;
  top: 0;
  pointer-events: none;
  height: 150px;
  transform: translateY(-100%);
  left: 0;
}

@keyframes playan1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

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

@keyframes playan2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

input,
textarea {
  border: none;
  resize: none;
  outline: none;
}

i {
  line-height: 1;
}

.row {
  --bs-gutter-x: 1.875rem;
}

:root {
  scroll-behavior: auto;
  --p: calc((100vw - 1620px) / 2);
  --c: #382758;
  --c2: linear-gradient(90deg, #1B5099 17.31%, #2C99A0 85.58%);
  --c3: #00479D;
  --g40: 2.5rem;
  --r110: 110px;
  --r60: 60px;
  --r54: 54px;
  --r50: 50px;
  --r48: 48px;
  --r44: 44px;
  --d700: 700px;
  --d376: 376px;
  --d357: 357px;
  --d330: 330px;
  --d292: 292px;
  --d286: 286px;
  --d260: 260px;
  --d243: 243px;
  --d225: 225px;
  --d210: 210px;
  --d208: 208px;
  --d200: 200px;
  --d190: 190px;
  --d185: 185px;
  --d180: 180px;
  --d178: 178px;
  --d170: 170px;
  --d164: 164px;
  --d160: 160px;
  --d154: 154px;
  --d150: 150px;
  --d147: 147px;
  --d145: 145px;
  --d140: 140px;
  --d135: 135px;
  --d130: 130px;
  --d128: 128px;
  --d124: 124px;
  --d120: 120px;
  --d118: 118px;
  --d115: 115px;
  --d110: 110px;
  --d105: 105px;
  --d100: 100px;
  --d96: 96px;
  --d93: 93px;
  --d90: 90px;
  --d88: 88px;
  --d86: 86px;
  --d84: 84px;
  --d80: 80px;
  --d75: 75px;
  --d78: 78px;
  --d72: 72px;
  --d70: 70px;
  --d68: 68px;
  --d66: 66px;
  --d64: 64px;
  --d62: 62px;
  --d60: 60px;
  --d58: 58px;
  --d56: 56px;
  --d55: 55px;
  --d52: 52px;
  --d50: 50px;
  --d48: 48px;
  --d46: 46px;
  --d45: 45px;
  --d44: 44px;
  --d40: 40px;
  --d38: 38px;
  --d36: 36px;
  --d35: 35px;
  --d34: 34px;
  --d32: 32px;
  --d30: 30px;
  --d28: 28px;
  --d26: 26px;
  --d25: 25px;
  --d24: 24px;
  --d22: 22px;
  --d20: 20px;
  --d18: 18px;
  --d17: 17px;
  --d16: 16px;
  --d15: 15px;
  --d14: 14px;
  --d12: 12px;
  --d10: 10px;
  --d8: 8px;
  --110: 110px;
  --100: 100px;
  --96: 96px;
  --92: 92px;
  --90: 90px;
  --80: 80px;
  --76: 76px;
  --75: 75px;
  --72: 72px;
  --70: 70px;
  --68: 68px;
  --66: 66px;
  --65: 65px;
  --64: 64px;
  --60: 60px;
  --58: 58px;
  --56: 56px;
  --50: 50px;
  --48: 48px;
  --46: 46px;
  --44: 44px;
  --40: 40px;
  --38: 38px;
  --36: 36px;
  --34: 34px;
  --32: 32px;
  --30: 30px;
  --28: 28px;
  --26: 26px;
  --24: 24px;
  --22: 22px;
  --21: 21px;
  --20: 20px;
  --18: 18px;
  --17: 17px;
  --16: 16px;
  --15: 15px;
  --14: 14px;
  --13: 13px;
  --12: 12px;
}

.rubik {
  font-family: 'Rubik', 'Source Han Sans SC', Arial, Helvetica, 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
}

.titlebox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: var(--48);
  line-height: calc(61 / 48);
  color: #231815;
  font-weight: 700;
}

.title2 {
  display: flex;
  align-items: center;
  font-size: var(--20);
  line-height: calc(24 / 20);
  color: var(--c3);
  padding: var(--d10) 0;
  font-family: 'Rubik', 'Source Han Sans SC', Arial, Helvetica, 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
}

.title2::before {
  width: 33px;
  height: 4px;
  border-radius: 4px;
  content: '';
  position: relative;
  background-color: var(--c3);
  margin-right: var(--d10);
}

.header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10001;
  transition: all 0.5s;
  background-color: transparent;
}

.header:hover {
  background-color: #fff;
}

.header:hover .header-nav .header-list .header-list3 a span {
  color: var(--c);
}

.header:hover .header-box1 .header-content1 .logo a .logo1 {
  transform: translateY(-100%);
}

.header:hover .header-box1 .header-content1 .logo a .logo2 {
  transform: translateY(0);
}

.header .header-box1 {
  position: relative;
  z-index: 10;
  transition: all 0.5s;
}

.header .header-box1 .header-content1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.header .header-box1 .header-content1 .logo {
  width: 200px;
}

.header .header-box1 .header-content1 .logo a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.header .header-box1 .header-content1 .logo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.header .header-box1 .header-content1 .logo a .logo1 {
  position: relative;
  top: 0;
  left: 0;
  transform: translateY(0%);
}

.header .header-box1 .header-content1 .logo a .logo2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.header .header-box1 .header-content1 .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.header .s-nav {
  width: 21px;
  height: 18px;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  display: none;
  z-index: 999;
  margin-left: 15px;
}

.header .s-nav i {
  width: 21px;
  height: 2px;
  background-color: #000;
  transition: all 0.5s;
}

.header .s-nav-action i {
  background-color: #000;
}

.header .s-nav-action i:first-child {
  transform: translateY(8px) rotate(45deg);
}

.header .s-nav-action i:nth-child(2) {
  opacity: 0;
}

.header .s-nav-action i:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.headeraction {
  background-color: #fff;
}

.headeraction .header-nav .header-list .header-list3 a span {
  color: var(--c);
}

.headeraction .header-box1 .header-content1 .logo a .logo1 {
  transform: translateY(-100%);
}

.headeraction .header-box1 .header-content1 .logo a .logo2 {
  transform: translateY(0);
}

@media (min-width: 1201px) {
  .header-nav {
    height: 100%;
  }

  .header-nav .header-list {
    display: flex;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
  }

  .header-nav .header-list .header-list2 {
    position: relative;
    transition: all 0.5s;
    padding: var(--d10) 0;
  }

  .header-nav .header-list .header-list2:hover .header-list3 a::after {
    animation: headan 0.75s;
  }

  .header-nav .header-list .header-list2:hover .more {
    opacity: 1;
    transform: translate(-50%, 100%);
    visibility: visible;
  }

  .header-nav .header-list .action .header-list3 span {
    font-weight: 700;
  }

  .header-nav .header-list:last-child {
    margin-right: 0;
  }

  .header-nav .header-list .header-list3 {
    min-width: 140px;
    height: 100%;
    transition: all 0.5s;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-nav .header-list .header-list3 .more-button {
    display: none;
  }

  .header-nav .header-list .header-list3 a {
    width: calc(100 / 140 * 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .header-nav .header-list .header-list3 a::after {
    width: 100%;
    height: 2px;
    background-color: var(--c);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    content: "";
    animation: headan2 0.75s;
  }

  @keyframes headan {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(0%);
    }
  }

  @keyframes headan2 {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(100%);
    }
  }

  .header-nav .header-list .header-list3 a span {
    font-size: var(--18);
    line-height: calc(26 / 18);
    color: #fff;
    transition: all 0.5s;
  }

  .header-nav .header-list .header-list3 a img {
    width: 20px;
    object-fit: cover;
    margin-right: 6px;
    opacity: 0;
    transition: all 0.5s;
  }

  .header-nav .header-list .header-op a::after {
    opacity: 0;
  }

  .header-navbox1 .header-product-list .more {
    display: none;
  }

  .more {
    visibility: hidden;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translate(-50%, 100%) rotateX(-50deg);
    transform-origin: top;
    opacity: 0;
    transition: all 0.5s;
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.15);
    min-width: 100%;
    width: 200px;
    text-align: center;
    background-color: #fff;
    padding: var(--d10) var(--d26);
    border-radius: 10px;
  }

  .more .more-1-list {
    display: flex;
    justify-content: stretch;
    flex-direction: column;
  }

  .more .more-1-list .more-1-list2 {
    width: 100%;
    position: relative;
    font-size: var(--16);
    line-height: 1;
    color: #333333;
    border-bottom: 1px solid rgba(102, 185, 108, 0.45);
    transition: all 0.5s;
    padding: var(--d16) 0;
    font-weight: 500;
  }

  .more .more-1-list .more-1-list2:last-child {
    border-bottom: none;
  }

  .more .more-1-list .more-1-list2:hover {
    color: var(--c2);
  }

  .more .more-1-list .more-1-list2:hover .more2 {
    opacity: 1;
    transform: translate(100%, 0) rotateY(0deg);
    visibility: visible;
  }

  .more .more-1-list .more-1-list2 .more2 {
    max-width: 300px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(100%, 0) rotateY(-50deg);
    visibility: hidden;
    transform-origin: left;
    opacity: 0;
    transition: all 0.5s;
    background-color: #fff;
  }

  .more .more-1-list .more-1-list2 a {
    display: block;
  }
}

@media (max-width: 1400px) and (min-width: 1201px) {
  .header-nav .header-list .header-list3 {
    min-width: 100px;
  }
}

@media (max-width: 1200px) {
  .header .s-nav {
    display: flex;
  }

  .header-nav {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 1;
    overflow-y: scroll;
  }

  .header-nav .header-list {
    padding: 0 16px;
    padding-top: 70px;
    width: 100%;
  }

  .header-nav .header-list .header-list2 {
    width: 100%;
    position: relative;
    font-size: 16px;
    color: #001937;
    font-weight: 400;
  }

  .header-nav .header-list .header-list2:first-child .header-list3::before {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #f2f2f2;
    content: "";
    top: 0;
    left: 0;
    opacity: 0.5;
  }

  .header-nav .header-list .header-list2 .header-list3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--c);
  }

  .header-nav .header-list .header-list2 .header-list3 .more-button {
    display: block;
  }

  .header-nav .header-list .header-list2 .header-list3 a {
    width: calc(100% - 45px);
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 13px 0;
    padding-left: 26px;
    padding-right: 45px;
    font-size: 16px;
    color: #666;
    font-weight: 600;
  }

  .header-nav .header-list .header-list2 .header-list3 a img {
    opacity: 0;
    margin-right: 10px;
  }

  .header-nav .header-list .header-list2 .header-list3 .more-button {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-nav .header-list .header-list2 .more {
    display: none;
  }

  .header-nav .header-list .header-list2 .more .more-1-list .more-1-list2 .more-1-list3 {
    padding: 3px 0 3px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #001937;
    font-weight: 500;
  }

  .header-nav .header-list .header-list2 .more .more-1-list .more-1-list2 .more-1-list3 a {
    width: calc(100% - 45px);
  }

  .header-nav .header-list .header-list2 .more .more-1-list .more-1-list2 .more-1-list3 .more-button2 {
    width: 45px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-self: center;
  }

  .header-nav .header-list .header-list2 .more .more-1-list .more-1-list2 .more2 {
    display: none;
  }

  .header-nav .header-list .header-list2 .more .more-1-list .more-1-list2 .more2 .more-2-list .more-2-list2 .more-2-list3 {
    padding: 4px 0 4px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #001937;
    font-weight: normal;
  }

  .header-nav .header-list .header-list2 .more .more-1-list .more-1-list2 .more2 .more-2-list .more-2-list2 .more-2-list3 a {
    width: 100%;
  }

  .header-nav .header-list .action .header-list3 a {
    color: var(--c);
  }

  .header-nav .header-list .action .header-list3 a img {
    opacity: 1;
  }
}

.s-nav {
  width: 21px;
  height: 18px;
  justify-content: space-between;
  display: none;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.s-nav i {
  width: 21px;
  height: 2px;
  background-color: #003366;
  transition: all 0.5s;
}

.s-nav-action i:first-child {
  transform: translateY(8px) rotate(45deg);
}

.s-nav-action i:nth-child(2) {
  opacity: 0;
}

.s-nav-action i:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.banneranbox {
  animation: banneran 6s ease forwards;
}

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

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

.index-banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-banner .banner-swiper {
  height: 100%;
}

.index-banner .swiper-slide {
  width: 100%;
  position: relative;
}

.index-banner .swiper-slide .slide-inner {
  height: 100%;
}

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

#myMenu {
  position: fixed;
  right: var(--d48);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

#myMenu li {
  margin-bottom: var(--d24);
}

#myMenu li:last-child {
  margin-bottom: 0;
}

#myMenu li:nth-child(2n - 1) a::after {
  border: 1px solid #fff;
}

#myMenu li a {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}

#myMenu li a::after {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #009FA8;
  content: '';
  opacity: 0;
}

#myMenu li a::before {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--c);
  content: '';
  z-index: 10;
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  opacity: 0;
}

#myMenu .active a::before {
  opacity: 1;
}

#myMenu .active a::after {
  opacity: 1;
}

.banner-textbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  z-index: 10;
}

.banner-downimg {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  color: #fff;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
}

.banner-downimg i {
  display: block;
  width: 20px;
  height: 30px;
  position: relative;
  margin: 0px auto;
  border-radius: 12px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-image: initial;
  margin-bottom: 10px;

}

@keyframes scrollmouse {
  from {
    transform: translate(-50%, 0);
    opacity: 1
  }

  to {
    transform: translate(-50%, 10px);
    opacity: 0
  }
}

.banner-downimg i::before {
  content: "";
  display: block;
  width: 4px;
  height: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0px);
  top: 3px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
  animation: 2s linear 0s infinite normal none running scrollmouse;
}

.banner-downimg span {
  font-size: 16px;
}

@media (max-width: 540px) {
  .banner-downimg {
    top: 88%;
  }

  .banner-downimg i {
    margin-bottom: 8px;

  }

  .banner-downimg span {
    font-size: 12px;
  }
}


.banner-textbox .banner-textbox2 {
  animation-delay: 0.8s;
  opacity: 0;
}

.banner-textbox .banner-indextitle {
  margin-bottom: var(--d24);
}

.banner-textbox .banner-indextitle h2 {
  font-size: var(--48);
  line-height: calc(70 / 48);
  font-weight: 700;
}

.banner-textbox .banner-title {
  margin-bottom: var(--d25);
}

.banner-textbox .banner-title h2 {
  font-size: var(--60);
  line-height: calc(87 / 60);
  font-weight: 700;
}

.banner-textbox .banner-line {
  width: 400px;
  max-width: 100%;
  background: linear-gradient(90deg, #FFFFFF 22.18%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: var(--d35);
  height: 1px;
}

.banner-textbox .banner-text {
  font-size: var(--32);
  line-height: calc(46 / 32);
  width: 736px;
  max-width: 100%;
}

.crbam {
  color: #fff;
}

.crbam i {
  margin-right: var(--d12);
  font-size: var(--20);
}

.crbam .crbam-list {
  display: inline;
  font-size: var(--16);
  line-height: var(--20);
  font-weight: 500;
}

.crbam .crbam-list .crbam-list2 {
  display: inline;
}

.crbam .crbam-list .crbam-list2::after {
  content: '/';
}

.crbam .crbam-list .crbam-list2:last-child::after {
  content: '';
}

.con-but .con-but2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #47B2BB;
  border-radius: 50px;
  padding: var(--d12) var(--d30);
  font-size: var(--16);
  color: #47B2BB;
  line-height: calc(23 / 16);
  overflow: hidden;
  position: relative;
}

.con-but .con-but2:hover {
  color: #fff;
}

.con-but .con-but2:hover::after {
  opacity: 1;
}

.con-but .con-but2 span {
  position: relative;
  z-index: 10;
  transition: all 0.5s;
}

.con-but .con-but2 i {
  font-size: var(--20);
  margin-left: var(--d8);
  position: relative;
  z-index: 10;
  transition: all 0.5s;
}

.con-but .con-but2::after {
  width: 101%;
  height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--c2);
  content: '';
  opacity: 0;
  transition: all 0.5s;
}

.con-but .w {
  border-color: #FFFFFF;
  color: #fff;
}

.con-but .w:hover {
  color: #47B2BB;
}

.con-but .w::after {
  background: #fff;
}

@keyframes playan1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.index .indexbox {
  padding-top: var(--d100);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index .i-news {
  background-image: url('../image/other/i_news_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.index .i-news .i-news-titlebox {
  margin-bottom: var(--d52);
}

.index .i-news .i-news-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.index .i-news .i-news-content .i-news-box1 {
  width: calc(420 / 1620 * 100%);
}

.index .i-news .i-news-content .i-news-box2 {
  width: calc(678 / 1620 * 100%);
  padding: var(--d64) var(--d40);
  border-radius: 20px;
  background-color: #fff;
  position: relative;
}

.index .i-news .i-news-content .i-news-box2 .i-news-box2-title {
  font-size: var(--18);
  line-height: calc(26 / 18);
  color: #1B5099;
  font-weight: 500;
  margin-bottom: var(--d40);
}

.index .i-news .i-news-content .i-news-box2 .i-news-swiper {
  height: 288px;
}

.index .i-news .i-news-content .i-news-box2 .i-news-swiper a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--20);
  line-height: calc(36 / 20);
  font-weight: 500;
  color: #231815;
  transition: all 0.5s;
}

.index .i-news .i-news-content .i-news-box2 .i-news-swiper a:hover {
  color: var(--c3);
}

.index .i-news .i-news-content .i-news-box2 .swiper-pagination {
  right: var(--d24);
  left: unset;
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  z-index: 100;
  background: rgba(0, 0, 0, .25);
}

.index .i-news .i-news-content .i-news-box2 .swiper-pagination .swiper-scrollbar-drag {
  background-color: var(--c3);
}

.index .i-about {
  background-image: url('../image/other/i_about_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.index .i-about .i-about-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--d64);
  align-items: flex-start;
}

.index .i-about .i-about-box .i-about-left {
  width: calc(750 / 1620 * 100%);
  position: relative;
}

.index .i-about .i-about-box .i-about-right {
  width: calc(870 / 1620 * 100%);
  padding-left: var(--d64);
  padding-top: var(--d24);
}

.index .i-about .i-about-box .i-about-right .titlebox2 .title {
  color: #fff;
}

.index .i-about .i-about-box .i-about-right .titlebox2 .title2 {
  color: #fff;
}

.index .i-about .i-about-box .i-about-right .titlebox2 .title2::before {
  background-color: #fff;
}

.index .i-product {
  background-image: url('../image/other/i_product_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.index .i-product .i-product-con {
  width: 100%;
}

.index .i-product .i-product-titlebox {
  align-items: flex-end;
  margin-bottom: var(--d70);
}

.index .i-product .i-product-nav {
  display: flex;
  justify-content: safe center;
  align-items: center;
}

.index .i-product .i-product-nav .i-product-nav2 {
  margin-right: var(--d8);
}

.index .i-product .i-product-nav .i-product-nav2:hover .i-product-nav3 {
  color: #fff;
}

.index .i-product .i-product-nav .i-product-nav2:hover .i-product-nav3::after {
  opacity: 1;
}

.index .i-product .i-product-nav .i-product-nav2:hover .i-product-nav3 img {
  filter: brightness(0) invert(1);
}

.index .i-product .i-product-nav .i-product-nav2 .i-product-nav3 {
  padding: var(--d10);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--16);
  line-height: calc(22 / 16);
  color: #231815;
  background-color: #fff;
  border-radius: 5px;
  min-width: 154px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.index .i-product .i-product-nav .i-product-nav2 .i-product-nav3::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--c2);
  opacity: 0;
  transition: all 0.5s;
}

.index .i-product .i-product-nav .i-product-nav2 .i-product-nav3 img {
  font-size: var(--32);
  margin-right: 6px;
  position: relative;
  z-index: 10;
  transition: all 0.5s;
}

.index .i-product .i-product-nav .i-product-nav2 .i-product-nav3 span {
  position: relative;
  z-index: 10;
}

.index .i-product .i-product-nav .action .i-product-nav3 {
  color: #fff;
}

.index .i-product .i-product-nav .action .i-product-nav3::after {
  opacity: 1;
}

.index .i-product .i-product-nav .action .i-product-nav3 img {
  filter: brightness(0) invert(1);
}

.index .i-product .i-product-box {
  width: 100vw;
  position: relative;
}

.index .i-product .i-product-box .i-product-box2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transform: translateY(20px);
}

.index .i-product .i-product-box .action {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  z-index: 10;
}

.index .i-product .i-product-box .i-product-box-act {
  position: relative;
}

.index .i-product .i-product-box .i-product-left {
  padding-top: var(--d30);
  padding-right: var(--d147);
  width: calc(1130 / 1920 * 100%);
  padding-left: var(--p);
}

.index .i-product .i-product-box .i-product-left .i-product-sw-title {
  margin-bottom: var(--d24);
}

.index .i-product .i-product-box .i-product-left .i-product-sw-title h3 {
  font-size: var(--32);
  line-height: calc(46 / 32);
  font-weight: 700;
  background: linear-gradient(90deg, #1B5099 17.31%, #2C99A0 85.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.index .i-product .i-product-box .i-product-left .i-product-sw-text {
  font-size: var(--18);
  line-height: calc(40 / 18);
  margin-bottom: var(--d120);
}

.index .i-product .i-product-box .i-product-right {
  width: calc(790 / 1920 * 100%);
  overflow: hidden;
}

.index .i-product .i-product-box .i-product-right .i-product-rightbox {
  padding-right: var(--p);
}

.index .i-product .i-product-box .i-product-right .img-box {
  padding-bottom: calc(3 / 4 * 100%);
  border-radius: 20px;
}

.index .i-product .i-product-box .i-product-right .i-product-swiper2 {
  position: relative;
}

.index .i-product .i-product-box .i-product-right .i-product-swiper2 .swiper-slide {
  transform: scale(0.85);
  transition: all 0.5s;
  opacity: 0.8;
}

.index .i-product .i-product-box .i-product-right .i-product-swiper2 .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.index .i-product .i-product-box .i-product-right .i-product-butbox {
  position: absolute;
  right: var(--d20);
  bottom: var(--d20);
  z-index: 10;
}

.index .i-core .i-core-title {
  position: absolute;
  left: var(--p);
  top: 11.14583vw;
  z-index: 100;
}

.index .i-core .i-core-title .title {
  color: #fff;
}

.index .i-core .i-core-title .i-product-title2 {
  color: #fff;
}

.index .i-core .i-core-title .title2::before {
  background-color: #fff;
}

.index .i-core .i-core-imgbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.index .i-core .i-core-imgbox .i-core-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}

.index .i-core .i-core-imgbox .i-core-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .i-core .i-core-imgbox .action {
  opacity: 1;
}

.index .i-core .i-core-list {
  width: 100%;
  height: 100%;
  --bs-gutter-x: 0rem;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  overflow: hidden;
}

.index .i-core .i-core-list .i-core-list2 .i-core-list3 {
  height: 100%;
  position: relative;
}

.index .i-core .i-core-list .i-core-list2 .i-core-list3::after {
  width: 100%;
  height: 100%;
  opacity: 0;
  content: '';
  transition: all 0.5s;
  background: linear-gradient(0deg, rgba(0, 71, 157, 0.8) 0%, rgba(74, 181, 188, 0.4) 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.index .i-core .i-core-list .i-core-list2 .i-core-list3 .i-core-con {
  padding: 0 var(--d40);
  position: absolute;
  bottom: var(--d100);
  left: 0;
  width: 100%;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s;
}

.index .i-core .i-core-list .i-core-list2 .i-core-list3 .i-core-con .i-core-list-icon {
  width: var(--60);
  margin-bottom: var(--d12);
}

.index .i-core .i-core-list .i-core-list2 .i-core-list3 .i-core-con .i-core-list-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .i-core .i-core-list .i-core-list2 .i-core-list3 .i-core-con .i-core-list-title h2 {
  text-align: center;
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: #fff;
  font-weight: 700;
}

.index .i-core .i-core-list .i-core-list2 .i-core-list3 .i-core-con .i-core-list-text {
  position: absolute;
  width: 100%;
  bottom: calc(var(--d50) * -1);
  left: 0;
  font-size: var(--18);
  line-height: calc(26 / 18);
  color: #fff;
  padding: 0 var(--d40);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s;
}

.index .i-core .i-core-list .action .i-core-list3::after {
  opacity: 1;
}

.index .i-core .i-core-list .action .i-core-list3 .i-core-con {
  bottom: 30%;
}

.index .i-core .i-core-list .action .i-core-list3 .i-core-con .i-core-list-text {
  opacity: 1;
}

.index .i-partners {
  background-image: url('../image/other/i_partners_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.index .i-partners .i-partners-con {
  width: 100%;
  height: 100%;
}

.index .i-partners .i-partners-con .container {
  height: 100%;
  position: relative;
}

.index .i-partners .i-partners-titlebox {
  width: 280px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(90deg, #1B5099 17.31%, #2C99A0 85.58%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.index .i-partners .i-partners-titlebox::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #1B5099 17.31%, #2C99A0 85.58%);
  opacity: 0.5;
  animation: partnersan 3s linear infinite normal;
  border-radius: 50%;
}

.index .i-partners .i-partners-titlebox::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #1B5099 17.31%, #2C99A0 85.58%);
  opacity: 0.5;
  animation: partnersan 3s linear infinite normal;
  animation-delay: 1.5s;
  border-radius: 50%;
}

.index .i-partners .i-partners-titlebox .i-partners-icon {
  width: var(--60);
  margin-bottom: var(--d12);
  position: relative;
  z-index: 10;
}

.index .i-partners .i-partners-titlebox .i-partners-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .i-partners .i-partners-titlebox .i-partners-title {
  margin-bottom: var(--d10);
  position: relative;
  z-index: 10;
}

.index .i-partners .i-partners-titlebox .i-partners-title h2 {
  color: #fff;
}

.index .i-partners .i-partners-titlebox .i-partners-title2 {
  color: #fff;
  position: relative;
  z-index: 10;
}

.index .i-partners .i-partners-titlebox .i-partners-title2::before {
  background-color: #fff;
}

.index .i-partners .i-partners-logobox {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 120px;
}

.index .i-partners .i-partners-logobox .i-partners-logobox2 {
  width: 100%;
  transition: all 0.5s;
}

.index .i-partners .i-partners-logobox .i-partners-logobox2:hover img {
  transform: scale(1.1);
}

.index .i-partners .i-partners-logobox .i-partners-logobox2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.index .i-partners .i-partners-logo1 {
  left: calc(176 / 1620 * 100%);
}

.index .i-partners .i-partners-logo1 .i-partners-logobox2 {
  padding: 16px 0;
}

.index .i-partners .i-partners-logo2 {
  left: calc(376 / 1620 * 100%);
}

.index .i-partners .i-partners-logo2 .i-partners-logobox2 {
  padding: 18px 0;
}

.index .i-partners .i-partners-logo3 {
  right: calc(376 / 1620 * 100%);
}

.index .i-partners .i-partners-logo3 .i-partners-logobox2 {
  padding: 18px 0;
}

.index .i-partners .i-partners-logo4 {
  right: calc(176 / 1620 * 100%);
}

.index .i-partners .i-partners-logo4 .i-partners-logobox2 {
  padding: 16px 0;
}

.left,
.right,
.up,
.op {
  opacity: 0;
}

.section {
  position: relative;
}

.i-about-list {
  padding: var(--d24) 0;
  margin-bottom: calc(var(--d30) * -1);
}

.i-about-list .i-about-list2 {
  margin-bottom: var(--d30);
}

.i-about-list .i-about-list2 .i-about-list3 .i-about-numbox {
  display: flex;
  align-items: flex-end;
  color: #fff;
  line-height: 1;
}

.i-about-list .i-about-list2 .i-about-list3 .i-about-numbox .i-about-numbox2 {
  display: flex;
  align-items: flex-start;
}

.i-about-list .i-about-list2 .i-about-list3 .i-about-numbox .num {
  font-size: var(--50);
  font-weight: 700;
}

.i-about-list .i-about-list2 .i-about-list3 .i-about-numbox .tip1 {
  font-size: var(--30);
  font-weight: 700;
}

.i-about-list .i-about-list2 .i-about-list3 .i-about-numbox .tip2 {
  font-size: var(--20);
  font-weight: 500;
}

.i-about-list .i-about-list2 .i-about-list3 .i-about-numtitle {
  margin-top: var(--d18);
  font-size: var(--18);
  line-height: calc(26 / 18);
  color: #fff;
}

.i-about-img {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

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

.i-about-title2 {
  margin-bottom: var(--d16);
}

.i-about-text1 {
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: #fff;
  margin-bottom: var(--d24);
  font-weight: 700;
}

.i-about-text2 {
  font-size: var(--16);
  line-height: calc(30 / 16);
  color: #fff;
  margin-bottom: var(--d36);
}

.i-about-icon {
  position: absolute;
  right: var(--d18);
  bottom: var(--d15);
  z-index: 10;
  width: var(--80);
  z-index: 100;
}

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

@keyframes partnersan {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.swiper-butbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-butbox .swiper-but:first-child {
  margin-right: var(--d36);
}

.swiper-but {
  width: var(--r60);
  height: var(--r60);
  min-width: var(--r60);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #47B2BB;
  cursor: pointer;
  color: #47B2BB;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
}

.swiper-but::after {
  content: '';
  width: 101%;
  height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--c2);
  opacity: 0;
  transition: all 0.5s;
}

.swiper-but:hover {
  color: #fff !important;
}

.swiper-but:hover::after {
  opacity: 1 !important;
}

.swiper-but i {
  font-size: var(--24);
  z-index: 10;
  position: relative;
  transition: all 0.5s;
}

.news-box {
  filter: drop-shadow(0px 4px 20px rgba(177, 177, 177, 0.25));
  height: 100%;
}

.news-box .news-box2 {
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
}

.news-box:hover .img-box img {
  transform: scale(1.1);
}

.news-box:hover .news-list-date {
  color: var(--c3) !important;
}

.news-box:hover .news-list-title h3 {
  color: var(--c3) !important;
}

.news-box:hover .con-but2 {
  color: #fff !important;
}

.news-box:hover .con-but2::after {
  opacity: 1 !important;
}

.news-box .news-box2 {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.news-box .news-box2 .news-list-imgbox .img-box {
  padding-bottom: calc(3 / 4 * 100%);
}

.news-box .news-box2 .news-list-textbox {
  padding: var(--d20) var(--d22) var(--d40);
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.news-box .news-box2 .news-list-textbox .news-list-type {
  font-size: var(--18);
  line-height: calc(26 / 18);
  color: #1B5099;
  font-weight: 500;
  margin-bottom: var(--d12);
}

.news-box .news-box2 .news-list-textbox .news-list-title {
  margin-bottom: var(--d40);
}

.news-box .news-box2 .news-list-textbox .news-list-title h3 {
  font-size: var(--20);
  color: #231815;
  transition: all 0.5s;
  font-weight: 500;
  line-height: calc(29 / 20);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-box .news-box2 .news-list-textbox .news-list-date {
  font-size: var(--18);
  line-height: calc(26 / 18);
  color: #4C4948;
}

.news-box .news-box2 .news-list-textbox .news-list-date2 {
  margin-bottom: var(--d20);
}

.fooder {
  background-image: url('../image/other/fooder_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.fooder .fooder-top {
  padding-top: var(--d80);
  padding-bottom: var(--d44);
  display: flex;
  justify-content: space-between;
}

.fooder .fooder-top .fooder-left {
  width: 426px;
}

.fooder .fooder-top .fooder-left .fooder-logo {
  width: 200px;
  margin-bottom: var(--d30);
}

.fooder .fooder-top .fooder-left .fooder-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fooder .fooder-top .fooder-left .fooder-mesbox a {
  transition: all 0.5s;
  position: relative;
}

.fooder .fooder-top .fooder-left .fooder-mesbox a::after {
  content: '';
  width: 0%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: all 0.5s;
}

.fooder .fooder-top .fooder-left .fooder-mesbox a:hover::after {
  width: 100%;
}

.fooder .fooder-top .fooder-left .fooder-mesbox .fooder-tel {
  margin-bottom: var(--d24);
}

.fooder .fooder-top .fooder-left .fooder-mesbox .fooder-tel .fooder-mes-title {
  margin-bottom: 6px;
}

.fooder .fooder-top .fooder-left .fooder-mesbox .fooder-mes-title {
  font-size: var(--18);
  line-height: calc(26 / 18);
  color: #fff;
}

.fooder .fooder-top .fooder-left .fooder-mesbox .fooder-telcon {
  font-size: var(--36);
  line-height: calc(52 / 36);
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
}

.fooder .fooder-top .fooder-left .fooder-mesbox .fooder-mes-title {
  margin-bottom: var(--d10);
}

.fooder .fooder-top .fooder-left .fooder-mesbox .fooder-mes-title:last-child {
  margin-bottom: 0;
}

.fooder .fooder-top .fooder-right {
  display: flex;
}

.fooder .fooder-top .fooder-right a {
  color: #fff;
}

.fooder .fooder-top .fooder-right .fooder-nav {
  margin-right: var(--d100);
}

.fooder .fooder-top .fooder-right .fooder-nav:last-child {
  margin-right: 0;
}

.fooder .fooder-top .fooder-right .fooder-nav .fooder-nav-title {
  font-size: var(--18);
  line-height: 1;
  margin-bottom: var(--d50);
}

.fooder .fooder-top .fooder-right .fooder-nav .fooder-nav-content a {
  display: block;
  margin-bottom: var(--d30);
  font-size: var(--16);
  line-height: 1;
  opacity: 0.8;
  transition: all 0.5s;
}

.fooder .fooder-top .fooder-right .fooder-nav .fooder-nav-content a:hover {
  opacity: 1;
}

.fooder .fooder-bom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--d20);
  padding-bottom: var(--d40);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: var(--16);
  line-height: calc(32 / 16);
  color: rgba(255, 255, 255, 0.6);
}

.fooder .fooder-bom a {
  transition: all 0.5s;
}

.fooder .fooder-bom a:hover {
  color: #fff;
}

.other-banner {
  position: relative;
}

.other-banner .other-imgbox {
  width: 100%;
}

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

.other-banner .banner-textbox .banner-textbox2 {
  animation: an2 1s ease forwards;
}

.crumbs {
  max-width: 70%;
}

.crumbs i {
  font-size: var(--16);
  color: #212427;
  margin-right: 6px;
}

.crumbs .crumbs-list {
  display: inline;
}

.crumbs .crumbs-list .crumbs-list2 {
  display: inline;
  font-size: var(--16);
  line-height: 1;
  color: #4C4948;
  transition: all 0.5s;
}

.crumbs .crumbs-list .crumbs-list2:hover {
  color: var(--c);
}

.crumbs .crumbs-list .crumbs-list2::after {
  content: '>';
}

.crumbs .crumbs-list .crumbs-list2:last-child::after {
  display: none;
}

.crumbs .crumbs-list .action {
  color: var(--c);
}

.crumbs-nav {
  display: flex;
  justify-content: space-between;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.crumbs-nav .crumbs-nav2 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-right: var(--d40);
  position: relative;
}

.crumbs-nav .crumbs-nav2:last-child {
  margin-right: 0;
}

.crumbs-nav .crumbs-nav2:hover::after {
  width: 100%;
}

.crumbs-nav .crumbs-nav2::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: #382758;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}

.crumbs-nav .crumbs-nav2 .crumbs-nav3 {
  height: 100%;
  color: #382758;
  font-size: var(--16);
  white-space: nowrap;
  position: relative;
}

.crumbs-nav .action::after {
  width: 100%;
}

.crumbs-nav .action .crumbs-nav3 {
  font-weight: 700;
}

.crumbs-con {
  position: absolute;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(56, 39, 88, 0.2);
  z-index: 100;
}

.crumbs-con .crumbs-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
}

.content {
  padding-top: 70px;
}

.product {
  background-image: url('../image/other/product_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.product .product-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.product .product-contentbox .product-list .product-list2 {
  margin-bottom: var(--d30);
  filter: drop-shadow(0 4px 20px rgba(177, 177, 177, 0.25));
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}

.product .product-contentbox .product-list .product-list2:last-child {
  margin-bottom: 0;
}

.product .product-contentbox .product-list .product-list2 .product-list3 {
  display: flex;
  justify-content: space-between;
}

.product .product-contentbox .product-list .product-list2 .product-list3:hover .img-box img {
  transform: scale(1.1);
}

.product .product-contentbox .product-list .product-list2 .product-list3:hover .product-textbox .product-list-title h3 {
  color: var(--c3);
}

.product .product-contentbox .product-list .product-list2 .product-list3:hover .product-textbox .product-list-text {
  color: var(--c3);
}

.product .product-contentbox .product-list .product-list2 .product-list3 .product-imgbox {
  width: calc(360 / 1182 * 100%);
}

.product .product-contentbox .product-list .product-list2 .product-list3 .product-imgbox .img-box {
  padding-bottom: calc(3 / 4 * 100%);
}

.product .product-contentbox .product-list .product-list2 .product-list3 .product-textbox {
  width: calc(822 / 1182 * 100%);
  padding: var(--d30) var(--d60);
}

.product .product-contentbox .product-list .product-list2 .product-list3 .product-textbox .product-list-title {
  padding-bottom: var(--d20);
  margin-bottom: var(--d20);
  border-bottom: 1px solid var(--c3);
}

.product .product-contentbox .product-list .product-list2 .product-list3 .product-textbox .product-list-title h3 {
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: #231815;
  font-weight: 500;
  transition: all 0.5s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product .product-contentbox .product-list .product-list2 .product-list3 .product-textbox .product-list-text {
  color: #4C4948;
  font-size: var(--16);
  line-height: calc(30 / 16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: var(--d36);
}

.product .product-contentbox .product-list .product-list2 .product-list3 .product-textbox .con-but .con-but2 {
  padding: var(--d8) var(--d20);
}

.gmt-box {
  display: flex;
  justify-content: space-between;
}

.gmt-box .gmt-left {
  width: calc(376 / 1620 * 100%);
}

.gmt-box .gmt-left .gmt-left2 {
  position: sticky;
  top: 150px;
  left: 0;
  width: 100%;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 {
  transition: all 0.5s;
  margin-bottom: var(--d20);
  box-shadow: 0px 4px 20px rgba(177, 177, 177, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2:hover .gmt-list3::after {
  opacity: 1;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2:hover .gmt-list3 .menubut .gmt-but i {
  color: #fff;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2:hover .gmt-list3 a {
  color: #fff;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2:last-child {
  margin-bottom: 0;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-list3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
  position: relative;
  background-color: #F8F8F8;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-list3::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--c2);
  backdrop-filter: blur(9.6px);
  opacity: 0;
  transition: all 0.5s;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-list3 .menubut {
  width: 100%;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-list3 .menubut .gmt-but {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: var(--d20) var(--d24);
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-list3 .menubut .gmt-but i {
  color: #231815;
  transition: all 0.5s;
  font-size: var(--30);
  display: block;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-list3 a {
  display: block;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: var(--d20) var(--d24);
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: #231815;
  transition: all 0.5s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-list3 a span {
  width: 90%;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more {
  display: none;
  background: #F8F8F8;
  border-bottom: 1px solid #D2D2D2;
  backdrop-filter: blur(9.6px);
  border-radius: 6px;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more1 {
  overflow: hidden;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more2 {
  transition: all 0.5s;
  position: relative;
  padding: var(--d20) var(--d48);
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more2:last-child {
  margin-bottom: 0;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more2 a {
  display: block;
  width: 100%;
  font-size: var(--18);
  line-height: calc(26 / 18);
  transition: all 0.5s;
  position: relative;
  transform: translateX(15px);
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more2 a:hover {
  color: var(--c3);
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more2 a::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c2);
  position: absolute;
  left: -14px;
  top: calc(var(--18) / 2);
  border-radius: 50%;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .action a {
  color: var(--c3);
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .open .gmt-list3::after {
  opacity: 1;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .open .gmt-but i {
  transform: rotate(180deg);
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .open .gmt-list3 .menubut .gmt-but i {
  color: #fff;
}

.gmt-box .gmt-left .gmt-left2 .gmt-list .open .gmt-list3 a {
  color: #fff;
}

.gmt-box .gmt-rigth {
  width: calc(1244 / 1620 * 100%);
  padding-left: var(--d62);
}

.productdetails {
  background-image: url('../image/other/productdetails_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.productdetails .productdetails-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.productdetails .productdetails-contentbox .productdetails-con {
  background-color: #FFFFFF;
  padding: var(--d60) var(--d40);
  border-radius: 20px;
}

.productdetails .productdetails-contentbox .productdetails-con .content-title {
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: var(--c3);
  margin-bottom: var(--d16);
  font-weight: 500;
}

.productdetails .productdetails-contentbox .productdetails-con .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--d48);
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-swbox {
  width: calc(360 / 1134 * 100%);
  filter: drop-shadow(0 4px 20px rgba(177, 177, 177, 0.25));
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-swbox .img-box {
  padding-bottom: calc(3 / 4 * 100%);
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-swbox .details-pagination {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: var(--d16);
  text-align: center;
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-swbox .details-pagination .swiper-pagination-bullet {
  opacity: 0.6;
  width: 6px;
  height: 6px;
  margin: 0;
  margin-right: var(--d12);
  background-color: var(--c3);
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-swbox .details-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-swbox .details-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-textbox {
  width: calc(774 / 1134 * 100%);
  padding-left: var(--d36);
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-textbox .details-title {
  margin-bottom: var(--d26);
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-textbox .details-title h2 {
  font-size: var(--36);
  line-height: calc(52 / 36);
  font-weight: 500;
  color: var(--c3);
}

.productdetails .productdetails-contentbox .productdetails-con .details .details-textbox .details-text {
  font-size: var(--18);
  line-height: calc(30 / 18);
  color: #4C4948;
}

.productdetails .productdetails-contentbox .productdetails-con .features {
  margin-bottom: var(--d48);
}

.productdetails .productdetails-contentbox .productdetails-con .features .features-text {
  font-size: var(--16);
  line-height: calc(30 / 16);
  color: #4C4948;
}

.productdetails .productdetails-contentbox .productdetails-con .features .features-text span {
  font-weight: 500;
  color: #231815;
}

.productdetails .productdetails-contentbox .productdetails-con .product-table .table-box {
  margin-bottom: var(--d32);
}

.productdetails .productdetails-contentbox .productdetails-con .product-text {
  font-size: var(--16);
  line-height: calc(30 / 16);
  color: #4C4948;
}

.industry {
  background-image: url('../image/other/industry_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.industry .industry-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.industry .industry-contentbox .industry-list .industry-list2 {
  margin-bottom: var(--d60);
  filter: drop-shadow(0px 4px 20px rgba(177, 177, 177, 0.25));
}

.industry .industry-contentbox .industry-list .industry-list2:last-child {
  margin-bottom: 0;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3 {
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3:hover .img-box img {
  transform: scale(1.1);
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3:hover .industry-list-title {
  border-color: #00479D !important;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3:hover .industry-list-title h3 {
  color: #00479D !important;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3:hover .industry-list-text {
  color: #00479D !important;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3:hover .con-but2 {
  color: #fff !important;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3:hover .con-but2::after {
  opacity: 1 !important;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-imgbox {
  width: calc(513 / 1620 * 100%);
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-imgbox .img-box {
  padding-bottom: calc(3 / 4 * 100%);
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-textbox {
  width: calc(1107 / 1620 * 100%);
  padding: var(--d40) var(--d60);
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-textbox .industry-list-title {
  margin-bottom: var(--d30);
  padding-bottom: var(--d24);
  border-bottom: 1px solid rgba(56, 39, 88, 0.2);
  transition: all 0.5s;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-textbox .industry-list-title h3 {
  font-size: var(--32);
  line-height: calc(48 / 32);
  color: #231815;
  transition: all 0.5s;
  font-weight: 500;
}

.industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-textbox .industry-list-text {
  font-size: var(--18);
  line-height: calc(36 / 18);
  color: #4C4948;
  margin-bottom: var(--d48);
  transition: all 0.5s;
}

.industrydetails {
  background-image: url('../image/other/industrydetails_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.industrydetails .industrydetails-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d100);
}

.industrydetails .industrydetails-contentbox .ind-details {
  padding: var(--d60);
  border-radius: 20px;
  background-color: #fff;
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-img {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: var(--d60);
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-textbox {
  margin-bottom: var(--d60);
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-textbox:last-child {
  margin-bottom: 0;
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-textbox .ind-details-title {
  margin-bottom: var(--d24);
  font-size: var(--32);
  line-height: calc(46 / 32);
  color: var(--c3);
  font-weight: 500;
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-textbox .ind-details-text {
  font-size: var(--18);
  line-height: calc(26 / 18);
  color: #231815;
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-textbox .ind-details-text-list2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--d12);
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-textbox .ind-details-text-list2:last-child {
  margin-bottom: 0;
}

.industrydetails .industrydetails-contentbox .ind-details .ind-details-textbox .ind-details-text-list2 img {
  width: var(--26);
  margin-right: var(--d20);
}

.industrydetails .more-cases {
  padding-bottom: var(--d120);
}

.industrydetails .more-cases .more-cases-textbox {
  margin-bottom: var(--d36);
}

.industrydetails .more-cases .more-cases-textbox .more-cases-title {
  text-align: center;
}

.industrydetails .more-cases .more-cases-textbox .more-cases-title2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-cases-list {
  margin-bottom: calc(var(--d48) * -1);
  --bs-gutter-x: var(--g40);
}

.more-cases-list .more-cases-list2 {
  margin-bottom: var(--d48);
}

.more-cases-list3 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  filter: drop-shadow(0 4px 20px rgba(177, 177, 177, 0.25));
}

.more-cases-icon {
  width: var(--r50);
  height: var(--r50);
  margin-bottom: var(--d15);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-cases-icon i {
  font-size: var(--20);
  color: var(--c);
}

.more-cases-list-title2 {
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: #fff;
  text-align: center;

}

.more-cases-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 71, 157, 0.8) 0%, rgba(74, 181, 188, 0.4) 100%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: all .5s;
}

.more-cases-list3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, rgba(0, 71, 157, 0.6) 5.77%, rgba(74, 181, 188, 0) 100%);
  z-index: 5;
}

.more-cases-list3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4D667C;
  opacity: 0.1;
  z-index: 4;
}

.more-cases-list3 .more-cases-img .img-box {
  padding-bottom: calc(3 / 4 * 100%);
}

.more-cases-list3 .more-cases-list-title {
  position: absolute;
  bottom: var(--d24);
  left: 0;
  width: 100%;
  text-align: center;
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: #fff;
  z-index: 10;
  transition: all .5s;
}

.more-cases-list3:hover img {
  transform: scale(1.1) !important;
}

.more-cases-list3:hover .more-cases-content {
  opacity: 1;
}

.more-cases-list3:hover .more-cases-list-title {
  opacity: 0;
}

.cases {
  background-image: url('../image/other/cases_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.cases .cases-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.cases .more-cases-list {
  padding-bottom: var(--d80);
}

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

.pagination a {
  width: var(--r50);
  height: var(--r50);
  border-radius: 50%;
  color: #47B2BB;
  border: 1px solid #47B2BB;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--16);
  line-height: 1;
  font-family: 'Arial', 'Source Han Sans SC', Arial, Helvetica, 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  font-weight: 700;
  position: relative;
  transition: all 0.5s;
}

.pagination a:hover {
  color: #fff;
}

.pagination a:hover::after {
  opacity: 1;
}

.pagination a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c2);
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}

.pagination a span {
  position: relative;
  z-index: 10;
}

.pagination a i {
  position: relative;
  z-index: 10;
  display: block;
  transform: rotate(-90deg);
  transition: all 0.5s;
  font-size: var(--20);
}

.pagination .pagination-page {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 var(--d40);
}

.pagination .pagination-page li {
  margin-right: var(--d20);
}

.pagination .pagination-page li:last-child {
  margin-right: 0;
}

.pagination .pagination-page .active a {
  color: #fff;
}

.pagination .pagination-page .active a::after {
  opacity: 1;
}

.casesdetails {
  background-image: url('../image/other/casesdetails_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.casesdetails .casesdetails-textbox {
  margin-bottom: var(--d36);
}

.casesdetails .casesdetails-textbox .casesdetails-title {
  text-align: center;
}

.casesdetails .casesdetails-textbox .casesdetails-title2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.casesdetails .casesdetails-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d100);
}

.casesdetails .casesdetails-contentbox .casesdetails-list {
  margin-bottom: calc(var(--d36) * -1);
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 {
  margin-bottom: var(--d36);
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3 {
  filter: drop-shadow(0 4px 20px rgba(177, 177, 177, 0.25));
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3:hover .casesdetails-list-title h3 {
  color: var(--c3) !important;
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3:hover .img-box img {
  transform: scale(1.1);
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3:hover .casesdetails-list-text {
  color: var(--c3) !important;
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3 .casesdetails-box {
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFFFFF;
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3 .casesdetails-box .img-box {
  padding-bottom: calc(3 / 4 * 100%);
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3 .casesdetails-box .casesdetails-list-textbox {
  padding: var(--d38) var(--d10);
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3 .casesdetails-box .casesdetails-list-textbox .casesdetails-list-title {
  margin-bottom: var(--d10);
  text-align: center;
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3 .casesdetails-box .casesdetails-list-textbox .casesdetails-list-title h3 {
  font-size: 18px;
  line-height: calc(26 / 18);
  color: #231815;
  transition: all 0.5s;
  font-weight: 500;
}

.casesdetails .casesdetails-contentbox .casesdetails-list .casesdetails-list2 .casesdetails-list3 .casesdetails-box .casesdetails-list-textbox .casesdetails-list-text {
  font-size: 16px;
  line-height: calc(23 / 16);
  color: #231815;
  transition: all 0.5s;
  text-align: center;
}

.casesdetails .moreCases {
  padding-bottom: var(--d120);
}

.casesdetails .moreCases .moreCases-swbox {
  position: relative;
}

.casesdetails .moreCases .moreCases-swbox .moreCases-prev {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translate(-100%, -50%);
  z-index: 10;
}

.casesdetails .moreCases .moreCases-swbox .moreCases-next {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(100%, -50%);
  z-index: 10;
}

.casesdetails .moreCases .moreCases-swbox .moreCases-pagination {
  bottom: 0;
  top: unset;
  position: relative;
  width: 992px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: var(--d100);
  background-color: #fff;
}

.casesdetails .moreCases .moreCases-swbox .moreCases-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--c3);
}

.service {
  background-image: url('../image/other/service_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.service .service-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.service .service-contentbox .service-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--d80);
}

.service .service-contentbox .service-box .service-img {
  width: calc(513 / 1620 * 100%);
}

.service .service-contentbox .service-box .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.service .service-contentbox .service-box .service-textbox {
  width: calc(1107 / 1620 * 100%);
  padding-left: var(--d75);
}

.service .service-contentbox .service-box .service-textbox .service-title2 {
  margin-bottom: var(--d36);
}

.service .service-contentbox .service-box .service-text {
  font-size: var(--20);
  line-height: calc(48 / 20);
  color: #231815;
}

.service .service-contentbox .service-list {
  display: flex;
  justify-content: flex-start;
  margin: 0 -5px;
}

.service .service-contentbox .service-list .service-list2 {
  flex: 1;
  margin: 0 5px;
}

.service .service-contentbox .service-list .service-list2 .service-list3 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--d30) var(--d10);
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  font-size: var(--18);
  line-height: calc(26 / 18);
  transition: all 0.5s;
  color: #231815;
  cursor: pointer;
}

.service .service-contentbox .service-list .service-list2 .service-list3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c2);
  border-radius: 20px;
  opacity: 0;
  transition: all 0.5s;
}

.service .service-contentbox .service-list .service-list2 .service-list3:hover {
  color: #FFFFFF;
}

.service .service-contentbox .service-list .service-list2 .service-list3:hover::after {
  opacity: 1;
}

.service .service-contentbox .service-list .service-list2 .service-list3:hover img {
  filter: brightness(0) invert(1);
}

.service .service-contentbox .service-list .service-list2 .service-list3 span {
  position: relative;
  z-index: 10;
}

.service .service-contentbox .service-list .service-list2 .service-list3 img {
  transition: all 0.5s;
  position: relative;
  z-index: 10;
  width: var(--24);
  margin-right: var(--d10);
}

.about {
  margin-top: 70px;
}

.about .company {
  background-image: url('../image/other/company_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.about .company .company-contentbox {
  padding-top: var(--d90);
  padding-bottom: var(--d80);
}

.about .company .company-contentbox .company-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--d36);
  align-items: flex-start;
}

.about .company .company-contentbox .company-box .company-left {
  width: calc(870 / 1620 * 100%);
  padding-right: var(--d64);
  padding-top: var(--d20);
}

.about .company .company-contentbox .company-box .company-left .i-about-text1 {
  background: linear-gradient(90deg, #1B5099 16.83%, #2C99A0 85.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.about .company .company-contentbox .company-box .company-left .i-about-text2 {
  color: #231815;
  font-size: var(--18);
  line-height: calc(36 / 18);
}

.about .company .company-contentbox .company-box .company-right {
  width: calc(750 / 1620 * 100%);
  position: relative;
}

.about .company .company-contentbox .i-about-numbox,
.about .company .company-contentbox .i-about-numtitle {
  color: var(--c3) !important;
}

.about .manufacturing {
  background-image: url('../image/other/manufacturing_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: var(--d100);
  padding-bottom: var(--d160);
}

.about .manufacturing .manufacturing-titlebox {
  margin-bottom: var(--d124);
}

.about .manufacturing .manufacturing-titlebox .title {
  color: #fff;
}

.about .manufacturing .manufacturing-titlebox .title2 {
  color: #fff;
}

.about .manufacturing .manufacturing-titlebox .title2::before {
  background-color: #fff;
}

.about .manufacturing .manufacturing-list {
  --bs-gutter-x: 12rem;
  margin-bottom: calc(var(--d30) * -1);
}

.about .manufacturing .manufacturing-list .manufacturing-list2 {
  margin-bottom: var(--d30);
}

.about .manufacturing .manufacturing-list .manufacturing-list2:nth-child(2) {
  transform: translateY(calc(var(--d120) * -1));
}

.about .manufacturing .manufacturing-list .manufacturing-list2 .manufacturing-list3 {
  padding: var(--d36) var(--d30);
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about .manufacturing .manufacturing-list .manufacturing-list2 .manufacturing-list3 .manufacturing-list-icon {
  width: var(--50);
}

.about .manufacturing .manufacturing-list .manufacturing-list2 .manufacturing-list3 .manufacturing-list-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .manufacturing .manufacturing-list .manufacturing-list2 .manufacturing-list3 .manufacturing-list-title {
  margin-bottom: var(--d25);
}

.about .manufacturing .manufacturing-list .manufacturing-list2 .manufacturing-list3 .manufacturing-list-title h3 {
  font-size: calc(--24);
  line-height: calc(35 / 24);
  background: linear-gradient(90deg, #1B5099 16.83%, #2C99A0 85.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}

.about .manufacturing .manufacturing-list .manufacturing-list2 .manufacturing-list3 .manufacturing-list-text {
  font-size: var(--18);
  line-height: calc(32 / 18);
  color: #231815;
}

.about .strategic {
  background-image: url('../image/other/strategic_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: var(--d80);
  padding-bottom: var(--d55);
}

.about .strategic .strategic-title3 {
  margin-top: var(--d16);
  background: linear-gradient(90deg, #1B5099 16.83%, #2C99A0 85.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: var(--32);
  line-height: calc(46 / 32);
  font-weight: 700;
  margin-bottom: var(--d48);
}

.about .strategic .strategic-list {
  margin-bottom: var(--d60);
}

.about .strategic .strategic-list .strategic-list2 {
  display: flex;
  justify-content: flex-start;
  font-size: var(--20);
  line-height: var(29 / 20);
  color: #231815;
  margin-bottom: var(--d24);
}

.about .strategic .strategic-list .strategic-list2:last-child {
  margin-bottom: 0;
}

.about .strategic .strategic-list .strategic-list2 i {
  width: var(--20);
  height: var(--20);
  min-width: var(--20);
  display: block;
  background: linear-gradient(90deg, #1B5099 17.31%, #2C99A0 85.58%);
  margin-right: var(--d20);
  border-radius: 50%;
  margin-top: 4px;
}

.about .strategic .strategic-swbox .img-box {
  padding-bottom: calc(3 / 4 * 100%);
  border-radius: 10px;
}

.about .strategic .strategic-swbox .strategic-pagination {
  text-align: center;
  margin-top: var(--d40);
}

.about .strategic .strategic-swbox .strategic-pagination .swiper-pagination-bullet {
  opacity: 0.6;
  width: 6px;
  height: 6px;
  margin: 0;
  margin-right: var(--d12);
  background-color: var(--c3);
}

.about .strategic .strategic-swbox .strategic-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.about .strategic .strategic-swbox .strategic-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.about .history {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
  background-image: url('../image/other/history_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.about .history .history-title {
  text-align: center;
}

.about .history .history-title h2 {
  color: #fff;
}

.about .history .history-title2 {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--d36);
}

.about .history .history-title2::before {
  background-color: #fff;
}

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

.about .history .history-box .history-date {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFFFFF;
  opacity: 0.4;
  font-size: 130px;
  font-weight: 700;
}

.about .history .history-box .history-con {
  width: calc(740 / 1620 * 100%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.about .history .history-box .history-con .history-con-num {
  font-size: var(--64);
  line-height: calc(93 / 64);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--d16);
}

.about .history .history-box .history-con .history-iconbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: var(--d40);
}

.about .history .history-box .history-con .history-iconbox::after {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: 0.4;
  content: '';
}

.about .history .history-box .history-con .history-iconbox .history-con-icon {
  width: var(--r60);
  height: var(--r60);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .history .history-box .history-con .history-iconbox .history-con-icon i {
  font-size: var(--24);
  color: #47B2BB;
}

.about .history .history-box .history-con .history-con-text {
  font-size: var(--20);
  line-height: calc(36 / 20);
  text-align: center;
  color: #fff;
}

.about .history .history-swiper1 {
  margin-bottom: var(--d120);
}

.about .history .history-swbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about .history .history-swbox .history-prev {
  margin-right: var(--d75);
}

.about .history .history-swbox .history-prev::after {
  display: none;
}

.about .history .history-swbox .history-prev:hover {
  background-color: #fff;
}

.about .history .history-swbox .history-prev:hover i {
  color: #47B2BB;
}

.about .history .history-swbox .history-next {
  margin-left: var(--d75);
}

.about .history .history-swbox .history-next::after {
  display: none;
}

.about .history .history-swbox .history-next:hover {
  background-color: #fff;
}

.about .history .history-swbox .history-next:hover i {
  color: #47B2BB;
}

.about .history .history-swbox .swiper-but {
  border: 1px solid #fff;
  color: #fff;
}

.about .history .history-swbox .history-swiper2 .swiper-slide-thumb-active .history-sw-con::after {
  opacity: 0.2;
}

.about .history .history-swbox .history-swiper2 .swiper-slide-thumb-active .history-sw-con .history-sw-date {
  transform: scale(1.5);
  font-weight: 700;
}

.about .history .history-swbox .history-swiper2::after {
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 40px;
  left: 0;
  background-color: #fff;
  opacity: 0.2;
  content: '';
  transition: all 0.5s;
}

.about .history .history-swbox .history-swiper2 .history-sw-con {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s;
}

.about .history .history-swbox .history-swiper2 .history-sw-con::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  transition: all 0.5s;
  content: '';
}

.about .history .history-swbox .history-swiper2 .history-sw-con .history-sw-date {
  font-size: var(--18);
  line-height: calc(26 / 18);
  margin-bottom: var(--d12);
  color: #fff;
  position: relative;
  z-index: 10;
  font-weight: 500;
  transition: all 0.5s;
}

.about .history .history-swbox .history-swiper2 .history-sw-con .history-cir {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}

.about .development {
  padding-top: var(--d145);
  padding-bottom: var(--d286);
  background-image: url('../image/other/development_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.about .development .development-titlebox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--d72);
}

.about .development .development-swiper {
  position: relative;
}

.about .development .development-swiper::after {
  width: 100vw;
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translate(-50%, 0%);
  content: '';
  height: 1px;
  background-color: #00479D;
  opacity: 0.2;
}

.about .development .development-box .development-date {
  font-size: var(--32);
  line-height: calc(46 / 32);
  margin-bottom: var(--d35);
  font-weight: 700;
  color: var(--c3);
}

.about .development .development-box .development-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--c3);
  margin-left: var(--d32);
  position: relative;
  margin-bottom: var(--d60);
}

.about .development .development-box .development-dot::after {
  width: calc(38 / 12 * 100%);
  height: calc(38 / 12 * 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: 50%;
  border: 2px solid #47B2BB;
}

.about .development .development-box .development-dot::before {
  width: calc(38 / 12 * 100%);
  height: calc(38 / 12 * 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: 50%;
  z-index: 10;
  border: 2px solid var(--c3);
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}

.about .development .development-box .development-list .development-list2 {
  display: flex;
  justify-content: flex-start;
  font-size: var(--20);
  line-height: var(29 / 20);
  color: #231815;
  margin-bottom: var(--d30);
}

.about .development .development-box .development-list .development-list2:last-child {
  margin-bottom: 0;
}

.about .development .development-box .development-list .development-list2 i {
  width: var(--20);
  height: var(--20);
  min-width: var(--20);
  display: block;
  background: linear-gradient(90deg, #1B5099 17.31%, #2C99A0 85.58%);
  margin-right: var(--d20);
  border-radius: 50%;
  margin-top: 4px;
}

.about .honors {
  padding-top: var(--d120);
  padding-bottom: var(--d110);
  background-image: url('../image/other/honors_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.about .honors .container {
  position: relative;
}

.about .honors .title {
  text-align: center;
  color: #fff;
}

.about .honors .title2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: var(--d100);
}

.about .honors .title2::before {
  background-color: #fff;
}

.about .honors .honors-box {
  height: 500px;
  width: 80%;
  position: relative;
  margin: 0 auto;
  margin-bottom: 100px;
}

.about .honors .honors-box li p {
  font-size: var(--32);
  line-height: calc(46 / 32);
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-top: var(--d80);
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  width: 100%;
}

.about .honors .honors-box .roundabout-in-focus p {
  opacity: 1;
}

.about .honors .honors-box .roundabout_box {
  height: 100%;
}

.about .honors .honors-box .roundabout_box .roundabout-holder {
  height: 100%;
}

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

.about .honors .honors-prev {
  position: absolute;
  top: 50%;
  left: -36px;
  transform: translate(-100%, -50%);
  border: 1px solid #fff;
  color: #fff;
  z-index: 1000;
}

.about .honors .honors-next {
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translate(100%, -50%);
  border: 1px solid #fff;
  color: #fff;
  z-index: 1000;
}

.about .partners {
  padding-top: var(--d84);
  padding-bottom: var(--d120);
  background-image: url('../image/other/partners_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.about .partners .title {
  text-align: center;
}

.about .partners .title2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .partners .partners-content {
  margin-top: var(--d80);
}

.about .partners .partners-content .dowebok {
  margin-bottom: var(--d60);
}

.about .partners .partners-content .ams {
  display: inline-block;
  margin-right: 1.5625vw;
}

.about .partners .partners-content .ams img {
  width: 14.58333vw;
}

.news {
  background-image: url('../image/other/news_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.news .news-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.news .news-contentbox .news-list {
  margin-bottom: calc(var(--d60) * -1);
  padding-bottom: var(--d80);
}

.news .news-contentbox .news-list .news-list2 {
  margin-bottom: var(--d60);
}

.newsdetails {
  background-image: url('../image/other/newsdetails_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.newsdetails .newsdetails-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d225);
}

.newsdetails .newsdetails-contentbox .newsdetails-con {
  padding: var(--d90) var(--d60);
  border-radius: 20px;
  background-color: #fff;
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-titlebox {
  border-bottom: 1px solid rgba(56, 39, 88, 0.2);
  padding-bottom: var(--d40);
  margin-bottom: var(--d40);
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-titlebox .newsdetails-title {
  margin-bottom: var(--d12);
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-titlebox .newsdetails-title h2 {
  font-size: var(--40);
  line-height: calc(58 / 40);
  text-align: center;
  color: #231815;
  font-weight: 500;
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-titlebox .newsdetails-date {
  font-size: var(--16);
  line-height: calc(23 / 16);
  text-align: center;
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-textbox {
  font-size: var(--16);
  line-height: calc(30 / 16);
  color: #231815;
  border-bottom: 1px solid rgba(56, 39, 88, 0.2);
  padding-bottom: var(--d40);
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-textbox p:has(img) {
  text-align: center;
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-textbox p img {
  max-width: 100%;
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox {
  padding-top: var(--d10);
  font-size: var(--20);
  line-height: calc(29 / 20);
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-prev {
  margin-bottom: var(--d30);
  transition: all 0.5s;
}


.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-next {
  margin-bottom: var(--d34);
  transition: all 0.5s;
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-prev p,
.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-next p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-back a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--c3);
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-back i {
  font-size: var(--36);
  margin-right: var(--d10);
}

.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-prev:hover,
.newsdetails .newsdetails-contentbox .newsdetails-con .newsdetails-butbox .newsdetails-next:hover {
  font-weight: 500;
  color: var(--c3);
}

.contact {
  background-image: url('../image/other/contact_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.contact .contact-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.contact .contact-contentbox .contact-con {
  padding: var(--d60) var(--d40);
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.contact .contact-contentbox .contact-con .contact-textbox {
  width: calc(640 / 1540 * 100%);
  padding-right: var(--d170);
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-titlebox {
  margin-bottom: var(--d50);
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-contitle {
  font-size: var(--36);
  line-height: calc(52 / 36);
  color: #231815;
  font-weight: 500;
  margin-bottom: var(--d60);
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2 {
  margin-bottom: var(--d36);
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2:last-child {
  margin-bottom: 0;
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2 .contact-mes3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: var(--18);
  line-height: calc(26 / 18);
  font-weight: 500;
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2 .contact-mes3 a {
  transition: all 0.5s;
  font-size: var(--18);
  line-height: calc(26 / 18);
  font-weight: 500;
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2 .contact-mes3 a:hover {
  color: var(--c3);
}

.contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2 .contact-mes3 img {
  width: var(--32);
  margin-right: var(--d20);
}

.contact .contact-contentbox .contact-con .contact-form {
  width: calc(900 / 1540 * 100%);
}

.contact .contact-contentbox .contact-con .contact-form .form-title {
  font-size: var(--18);
  line-height: calc(26 / 18);
  margin-bottom: var(--d16);
}

.contact .contact-contentbox .contact-con .contact-form .input-box {
  width: 100%;
  background-color: transparent;
  font-size: var(--16);
  line-height: calc(23 / 16);
  padding: var(--d18) 0;
  margin-bottom: var(--d32);
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
}

.contact .contact-contentbox .contact-con .contact-form .input-box::placeholder {
  color: #999999;
}

.contact .contact-contentbox .contact-con .contact-form .textarea-box {
  height: 120px;
  padding-bottom: 0;
}

.contact .contact-contentbox .contact-con .contact-form .code {
  display: flex;
  margin-bottom: var(--d64);
}

.contact .contact-contentbox .contact-con .contact-form .code .code-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--20);
  line-height: calc(29 / 20);
}

.contact .contact-contentbox .contact-con .contact-form .code .input-box2 {
  width: 150px;
  margin: 0;
  padding: 0;
}

.contact .contact-contentbox .contact-con .contact-form .code .code-imgbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-contentbox .contact-con .contact-form .code .code-imgbox .code-img {
  width: 120px;
  margin-left: 30px;
  margin-right: 10px;
}

.contact .contact-contentbox .contact-con .contact-form .code .code-imgbox .code-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact .contact-contentbox .contact-con .contact-form .code .code-imgbox .code-icon {
  font-size: var(--20);
  line-height: calc(29 / 20);
  color: #999999;
  cursor: pointer;
}

.contact .contact-contentbox .contact-con .contact-form .submit {
  background-color: transparent;
}

.recruitment {
  background-image: url('../image/other/recruitment_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.recruitment .recruitment-contentbox {
  padding-top: var(--d80);
  padding-bottom: var(--d120);
}

.recruitment .recruitment-contentbox .recruitment-title {
  text-align: center;
  margin-bottom: var(--d48);
}

.recruitment .recruitment-contentbox .recruitment-title h2 {
  font-size: var(--50);
  line-height: calc(72 / 50);
  color: #231815;
  font-weight: 700;
}

.recruitment .recruitment-contentbox .recruitment-text {
  text-align: center;
  font-size: var(--20);
  line-height: calc(24 / 20);
  color: #231815;
  margin-bottom: var(--d60);
  font-family: 'Rubik', 'Source Han Sans SC', Arial, Helvetica, 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
}

.join-list {
  margin-bottom: var(--d80);
}

.join-list .join-list2 {
  border-radius: 20px;
  margin-bottom: var(--d40);
  padding: 5px;
  overflow: hidden;
  position: relative;
}

.join-list .join-list2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c2);
  z-index: 0;
}

.join-list .join-list2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: all 0.5s;
}

.join-list .join-list2:last-child {
  margin-bottom: 0;
}

.join-list .join-list2 .join-list3 {
  position: relative;
  z-index: 10;
  padding: 0 calc(var(--d50) - 5px);
  background: #fff;
  border-radius: 20px;
}

.join-list .join-list2 .join-list3 .join-titlebox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  padding-top: calc(var(--d36) - 5px);
  padding-bottom: var(--d36);
}

.join-list .join-list2 .join-list3 .join-titlebox:hover .join-icon::after {
  opacity: 1;
}

.join-list .join-list2 .join-list3 .join-titlebox:hover .join-icon i {
  color: #fff;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-list-title {
  width: calc(100% - 50px);
}

.join-list .join-list2 .join-list3 .join-titlebox .join-list-title .join-list-title-con {
  font-size: var(--24);
  line-height: calc(35 / 24);
  color: #231815;
  padding: 6px 0;
  margin-bottom: var(--d20);
  font-weight: 500;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-list-title .join-list-mes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-list-title .join-list-mes .join-list-mes2 {
  margin-right: var(--d30);
}

.join-list .join-list2 .join-list3 .join-titlebox .join-list-title .join-list-mes .join-list-mes2:last-child {
  margin-right: 0;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-list-title .join-list-mes .join-list-mes2 img {
  font-size: var(--24);
  margin-right: 4px;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-list-title .join-list-mes .join-list-mes2 span {
  font-size: var(--16);
  line-height: calc(23 / 16);
}

.join-list .join-list2 .join-list3 .join-titlebox .join-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--24);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #47B2BB;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c2);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-icon i {
  position: relative;
  z-index: 10;
  transition: all 0.5s;
  color: #47B2BB;
  font-size: var(--20);
}

.join-list .join-list2 .join-list3 .join-titlebox .join-icon .join-icon1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}

.join-list .join-list2 .join-list3 .join-titlebox .join-icon .join-icon2 {
  position: relative;
  z-index: 10;
  transition: all 0.5s;
}

.join-list .join-list2 .join-list3 .join-textbox {
  padding-bottom: calc(var(--d60) - 5px);
  display: none;
}

.join-list .join-list2 .join-list3 .join-textbox .join-list-textbox {
  margin-bottom: var(--d36);
}

.join-list .join-list2 .join-list3 .join-textbox .join-list-textbox:last-child {
  margin-bottom: var(--d80);
}

.join-list .join-list2 .join-list3 .join-textbox .join-list-textbox .join-list-title {
  font-size: var(--18);
  line-height: calc(26 / 18);
  font-weight: 500;
  color: #231815;
}

.join-list .join-list2 .join-list3 .join-textbox .join-list-textbox .join-list-text {
  font-size: var(--16);
  line-height: calc(23 / 16);
  color: #4C4948;
}

.join-list .open::before {
  opacity: 0;
}

.join-list .open .join-list3 .join-titlebox .join-icon::after {
  opacity: 1;
}

.join-list .open .join-list3 .join-titlebox .join-icon .join-icon1 {
  opacity: 1;
}

.join-list .open .join-list3 .join-titlebox .join-icon .join-icon1 i {
  color: #fff;
}

.join-list .open .join-list3 .join-titlebox .join-icon .join-icon2 {
  opacity: 0;
}

.container {
  max-width: 1620px;
  padding: 0;
}

@media (max-width: 1800px) {
  .container {
    max-width: 1400px;
  }

  :root {
    --p: calc((100vw - 1400px) / 2);
  }

  .fooder .fooder-top .fooder-left {
    width: 380px;
  }

  .industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-imgbox {
    width: calc(570 / 1620 * 100%);
  }

  .industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-textbox {
    width: calc(1050 / 1620 * 100%);
  }

  .industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-textbox .industry-list-text {
    margin-bottom: var(--d30);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .service .service-contentbox .service-list .service-list2 .service-list3 {
    font-size: var(--16);
  }

  .about .manufacturing .manufacturing-list {
    --bs-gutter-x: 8rem;
  }

  .about .honors .honors-box {
    width: 70%;
  }
}

@media (max-width: 1600px) {
  .container {
    max-width: 1260px;
  }

  :root {
    --p: calc((100vw - 1260px) / 2);
    --r110: 90px;
    --r60: 50px;
    --d700: 600px;
    --d357: 285px;
    --d330: 270px;
    --d286: 150px;
    --d260: 150px;
    --d243: 150px;
    --d225: 150px;
    --d210: 130px;
    --d208: 130px;
    --d200: 130px;
    --d190: 110px;
    --d180: 110px;
    --d178: 110px;
    --d170: 110px;
    --d164: 110px;
    --d160: 110px;
    --d154: 100px;
    --d150: 100px;
    --d147: 100px;
    --d145: 100px;
    --d140: 90px;
    --d135: 90px;
    --d130: 90px;
    --d128: 90px;
    --d124: 90px;
    --d120: 90px;
    --d115: 90px;
    --d118: 90px;
    --d110: 70px;
    --d105: 70px;
    --d100: 70px;
    --d96: 70px;
    --d93: 70px;
    --d90: 70px;
    --d86: 60px;
    --d84: 60px;
    --d80: 60px;
    --d75: 50px;
    --d70: 50px;
    --d66: 40px;
    --d62: 40px;
    --d64: 40px;
    --d60: 35px;
    --d58: 35px;
    --d56: 35px;
    --d55: 35px;
    --d52: 30px;
    --d50: 30px;
    --d45: 30px;
    --d40: 30px;
    --d38: 30px;
    --d36: 24px;
    --d35: 24px;
    --d32: 24px;
    --d30: 24px;
    --d28: 24px;
    --d24: 15px;
    --d20: 10px;
    --d18: 10px;
    --d12: 8px;
    --110: 75px;
    --100: 75px;
    --96: 75px;
    --90: 75px;
    --80: 65px;
    --76: 65px;
    --75: 65px;
    --72: 65px;
    --68: 60px;
    --64: 54px;
    --60: 45px;
    --56: 45px;
    --50: 40px;
    --48: 40px;
    --44: 36px;
    --40: 30px;
    --38: 34px;
    --36: 32px;
    --34: 30px;
    --32: 30px;
    --28: 24px;
    --26: 22px;
    --24: 22px;
    --21: 18px;
    --20: 18px;
    --18: 16px;
  }

  .about .development .development-swiper::after {
    top: 74px;
  }

  .about .manufacturing .manufacturing-list {
    --bs-gutter-x: 5rem;
  }

  .index .i-partners .i-partners-logo4 .i-partners-logobox2,
  .index .i-partners .i-partners-logo1 .i-partners-logobox2 {
    padding: 8px 0;
  }

  .index .i-partners .i-partners-logo3 .i-partners-logobox2,
  .index .i-partners .i-partners-logo2 .i-partners-logobox2 {
    padding: 10px 0;
  }

  .service .service-contentbox .service-list .service-list2 .service-list3 img {
    margin-right: 4px;
    width: var(--18);
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1060px;
  }

  .row {
    --bs-gutter-x: 1rem;
  }

  :root {
    --p: calc((100vw - 1060px) / 2);
    --r50: 40px;
    --d700: 450px;
    --d357: 205px;
    --d330: 205px;
    --d286: 100px;
    --d260: 100px;
    --d243: 100px;
    --d225: 100px;
    --d210: 80px;
    --d208: 80px;
    --d200: 80px;
    --d190: 80px;
    --d180: 80px;
    --d178: 80px;
    --d170: 80px;
    --d164: 80px;
    --d160: 80px;
    --d154: 80px;
    --d150: 70px;
    --d147: 70px;
    --d145: 70px;
    --d140: 60px;
    --d135: 60px;
    --d130: 60px;
    --d128: 60px;
    --d124: 60px;
    --d120: 60px;
    --d118: 60px;
    --d115: 60px;
    --d110: 60px;
    --d100: 60px;
    --d96: 40px;
    --d93: 40px;
    --d90: 40px;
    --d86: 40px;
    --d80: 30px;
    --d72: 40px;
    --d70: 30px;
    --d68: 30px;
    --d62: 30px;
    --d58: 25px;
    --d56: 25px;
    --d55: 25px;
    --d48: 33px;
    --d46: 33px;
    --d40: 20px;
    --d38: 20px;
    --d34: 20px;
    --d32: 20px;
    --d30: 20px;
    --d28: 20px;
    --d26: 20px;
    --d24: 20px;
    --d25: 20px;
    --d22: 16px;
    --d18: 10px;
    --d16: 10px;
    --d15: 10px;
    --d14: 10px;
    --110: 66px;
    --100: 66px;
    --96: 66px;
    --90: 66px;
    --80: 50px;
    --76: 50px;
    --75: 50px;
    --70: 50px;
    --68: 50px;
    --65: 50px;
    --64: 40px;
    --60: 38px;
    --56: 38px;
    --50: 38px;
    --48: 32px;
    --44: 30px;
    --40: 30px;
    --38: 28px;
    --36: 24px;
    --34: 28px;
    --32: 24px;
    --30: 24px;
    --24: 20px;
    --22: 18px;
    --21: 17px;
    --20: 16px;
    --17: 15px;
    --16: 14px;
  }

  .about .development .development-swiper::after {
    top: 65px;
  }

  .about .manufacturing .manufacturing-list {
    --bs-gutter-x: 3rem;
  }

  .about .history .history-swbox .history-swiper2 .history-sw-con {
    width: 90px;
    height: 90px;
  }

  .about .history .history-swbox .history-swiper2::after {
    bottom: 30px;
  }

  .about .history .history-box .history-date {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFFFFF;
    opacity: 0.4;
    font-size: 90px;
    font-weight: 700;
  }

  .crumbs-con .crumbs-box {
    height: 50px;
  }

  .gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more2 {
    padding: var(--d20);
  }

  .content {
    padding-top: 50px;
  }

  .index .i-news .i-news-content .i-news-box2 .swiper-pagination {
    right: 10px;
  }

  .fooder .fooder-top .fooder-left {
    width: 300px;
  }

  .header .header-box1 .header-content1 {
    height: 70px;
  }

  .header .header-box1 .header-content1 .logo {
    width: 160px;
  }

  .index .i-partners .i-partners-logo2 {
    left: calc(274 / 1620 * 100%);
  }

  .index .i-partners .i-partners-logo3 {
    right: calc(274 / 1620 * 100%);
  }

  .index .i-partners .i-partners-logo4 {
    right: 0;
  }

  .index .i-partners .i-partners-logo1 {
    left: 0;
  }

  .about .honors .honors-box {
    width: 50%;
  }

  .about .honors .honors-prev {
    left: -20px;
  }

  .about .honors .honors-next {
    right: -20px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 860px;
  }

  :root {
    --p: calc((100vw - 860px) / 2);
    --r110: 70px;
    --r54: 40px;
    --r50: 35px;
    --r48: 35px;
    --d700: 380px;
    --d357: 150px;
    --d330: 150px;
    --d90: 55px;
    --d88: 55px;
    --d70: 40px;
    --d64: 30px;
    --d62: 25px;
    --d60: 25px;
    --d50: 20px;
    --d48: 20px;
    --d45: 20px;
    --d44: 20px;
    --d25: 15px;
    --d15: 10px;
    --d10: 8px;
    --d8: 6px;
    --100: 50px;
    --90: 50px;
    --80: 45px;
    --76: 45px;
    --75: 45px;
    --72: 45px;
    --70: 45px;
    --68: 45px;
    --64: 38px;
    --50: 30px;
    --38: 25px;
    --34: 25px;
    --32: 25px;
    --26: 20px;
    --24: 18px;
    --22: 20px;
    --18: 16px;
  }

  .left,
  .right,
  .up,
  .op {
    opacity: 1;
  }

  .about .company .company-contentbox .company-box {
    flex-direction: column;
  }

  .about .company .company-contentbox .company-box .company-left {
    width: 100%;
    padding: 0;
    margin-bottom: var(--d30);
  }

  .about .company .company-contentbox .company-box .company-right {
    width: 100%;
  }

  .about .honors .honors-prev {
    left: 20px;
  }

  .about .honors .honors-next {
    right: 20px;
  }

  .about .manufacturing .manufacturing-list .manufacturing-list2 .manufacturing-list3 .manufacturing-list-icon {
    width: 40px;
  }

  .about .manufacturing .manufacturing-list .manufacturing-list2:nth-child(2) {
    transform: none;
  }


  .service .service-contentbox .service-box {
    flex-direction: column;
  }

  .casesdetails .moreCases .moreCases-swbox .moreCases-prev {
    left: 10px;
    transform: translate(0, -50%);
    border: 1px solid #fff;
    color: #fff;
  }

  .casesdetails .moreCases .moreCases-swbox .moreCases-next {
    right: 10px;
    transform: translate(0, -50%);
    border: 1px solid #fff;
    color: #fff;
  }

  .service .service-contentbox .service-box .service-img {
    width: 100%;
  }

  .service .service-contentbox .service-box .service-textbox {
    width: 100%;
    padding: 0;
    margin-top: var(--d30);
  }

  .contact .contact-contentbox .contact-con {
    flex-direction: column;
  }

  .contact .contact-contentbox .contact-con .contact-textbox {
    width: 100%;
    padding-right: 0;
    margin-bottom: var(--d100);
  }

  .contact .contact-contentbox .contact-con .contact-form {
    width: 100%;
  }

  .service .service-contentbox .service-list {
    flex-wrap: wrap;
    margin-bottom: calc(var(--d20) * -1);
  }

  .service .service-contentbox .service-list .service-list2 {
    flex: unset;
    width: auto;
    margin-bottom: var(--d20);
  }

  .service .service-contentbox .service-list .service-list2 .service-list3 {
    padding: var(--d20) var(--d30);
  }

  .industry .industry-contentbox .industry-list .industry-list2 .industry-list3 {
    flex-direction: column;
  }

  .industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-imgbox {
    width: 100%;
  }

  .industry .industry-contentbox .industry-list .industry-list2 .industry-list3 .industry-textbox {
    width: 100%;
  }

  .gmt-box {
    flex-direction: column;
  }

  .gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more1 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .gmt-box .gmt-left .gmt-left2 .gmt-list .gmt-list2 .gmt-more .gmt-more2 {
    width: auto;
    margin-right: 20px;
  }

  .gmt-box .gmt-left {
    width: 100%;
  }

  .gmt-box .gmt-rigth {
    width: 100%;
    margin-top: var(--d30);
    padding: 0;
  }

  .crumbs {
    display: none;
  }

  body:has(.productdetails) .gmt-box .gmt-left {
    display: none;
  }

  .index .i-core .i-core-list {
    position: unset;
    transform: none;
  }

  .i-core {
    display: block !important;
    padding-bottom: 0 !important;
    overflow: hidden;
  }

  .index .i-core .i-core-list .i-core-list2 .i-core-list3 .i-core-con {
    position: relative;
    transform: none;
    z-index: 10;
    top: 0;
    left: 0;
    padding: var(--d30);
  }

  .index .i-core .i-core-list .i-core-list2 .i-core-list3 .i-core-con .i-core-list-text {
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    transform: none;
    margin-top: var(--d50);
    opacity: 1 !important;
  }

  .index .i-core .i-core-title {
    position: relative;
    z-index: 10;
    transform: unset;
    top: 0;
    margin-bottom: var(--d50);
    left: var(--p);
    width: auto;
  }

  #myMenu {
    display: none;
  }

  .index .i-product .i-product-box .i-product-box2 {
    flex-direction: column;
  }

  .index .i-product .i-product-box .i-product-left {
    width: 100%;
    padding-right: var(--p);
    margin-bottom: var(--d40);
  }

  .index .i-product .i-product-box .i-product-right {
    width: 100%;
    padding: 0 var(--p);
  }

  .i-partners-logo-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .i-partners-logo-box .i-partners-logo-box2 {
    display: inline-block;
    width: auto;
    text-align: center;
  }

  .index .indexbox {
    position: relative;
  }

  .index .i-news .i-news-content {
    flex-wrap: wrap;
  }

  .index .i-news .i-news-content .i-news-box1 {
    width: 48%;
  }

  .index .i-news .i-news-content .i-news-box2 {
    width: 100%;
    margin-top: var(--d30);
  }

  .index .indexbox {
    padding: var(--d100) 0;
  }

  .index .i-about .i-about-box {
    flex-direction: column-reverse;
  }

  .index .i-about .i-about-box .i-about-right {
    width: 100%;
    padding: 0;
    margin-bottom: var(--d30);
  }

  .index .i-about .i-about-box .i-about-left {
    width: 100%;
  }

  .index .i-partners .i-partners-logobox {
    position: unset;
    text-align: center;
    transform: none;
    width: auto;
    display: inline;
  }

  .index .i-partners .i-partners-logobox .i-partners-logobox2 {
    display: inline-block !important;
    width: 139px;
  }

  .index .i-partners .i-partners-titlebox .i-partners-icon {
    display: none;
  }

  .index .i-partners .i-partners-titlebox .i-partners-title h2 {
    color: #231815;
  }

  .index .i-partners .i-partners-titlebox .i-partners-title2 {
    color: var(--c3);
  }

  .index .i-partners .i-partners-titlebox .i-partners-title2::before {
    background-color: var(--c3);
  }

  .fooder .fooder-top .fooder-right {
    display: none;
  }

  .fooder .fooder-top .fooder-left {
    width: 100%;
  }

  .index .i-partners .i-partners-titlebox {
    position: unset;
    transform: unset;
    width: auto;
    height: auto;
    background: transparent;
  }

  .index .i-partners .i-partners-titlebox::after {
    display: none;
  }

  .index .i-partners .i-partners-titlebox::before {
    display: none;
  }
}

@media (max-width: 990px) {
  .container {
    max-width: 700px;
  }

  :root {
    --p: calc((100vw - 700px) / 2);
    --r60: 45px;
    --d700: 264px;
    --d330: 100px;
    --d178: 80px;
    --d170: 80px;
    --d164: 80px;
    --d154: 70px;
    --d150: 70px;
    --d110: 65px;
    --d100: 60px;
    --d105: 40px;
    --d58: 28px;
    --d46: 28px;
    --d24: 20px;
    --100: 40px;
    --96: 45px;
    --80: 40px;
    --70: 40px;
    --60: 40px;
    --48: 30px;
    --44: 26px;
    --40: 26px;
    --34: 26px;
    --32: 26px;
    --30: 20px;
    --24: 18px;
  }

  .about .honors .honors-box {
    height: 300px;
  }

  .about .history .history-box .history-date {
    font-size: 60px;
  }

  .join-list .join-list2 .join-list3 .join-titlebox .join-icon {
    width: 40px;
    height: 40px;
  }

  .fooder .fooder-top .fooder-left .fooder-logo {
    width: 150px;
  }

  .productdetails .productdetails-contentbox .productdetails-con .details {
    flex-direction: column;
  }

  .productdetails .productdetails-contentbox .productdetails-con .details .details-swbox {
    width: 100%;
  }

  .productdetails .productdetails-contentbox .productdetails-con .details .details-textbox {
    width: 100%;
    margin-top: var(--d30);
    padding: 0;
  }

  .index .i-product .i-product-titlebox {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 90%;
  }

  .other-banner .other-imgbox {
    height: 250px;
  }

  :root {
    --p: 5%;
    --r110: 50px;
    --r60: 40px;
    --r48: 35px;
    --d357: 85px;
    --d286: 80px;
    --d260: 80px;
    --d243: 80px;
    --d225: 80px;
    --d210: 60px;
    --d208: 60px;
    --d200: 60px;
    --d190: 60px;
    --d180: 60px;
    --d178: 60px;
    --d170: 60px;
    --d164: 60px;
    --d160: 60px;
    --d154: 50px;
    --d150: 50px;
    --d147: 50px;
    --d145: 50px;
    --d135: 40px;
    --d130: 40px;
    --d128: 40px;
    --d124: 40px;
    --d120: 40px;
    --d118: 40px;
    --d115: 40px;
    --d110: 40px;
    --d105: 40px;
    --d100: 40px;
    --d90: 40px;
    --d88: 40px;
    --d75: 40px;
    --d72: 40px;
    --d46: 20px;
    --d36: 20px;
    --d35: 18px;
    --d30: 18px;
    --d28: 15px;
    --d24: 15px;
    --d22: 8px;
    --d18: 8px;
    --100: 38px;
    --80: 38px;
    --76: 38px;
    --75: 38px;
    --72: 38px;
    --70: 30px;
    --64: 36px;
    --60: 34px;
    --56: 30px;
    --50: 28px;
    --48: 30px;
    --38: 24px;
    --32: 20px;
    --22: 18px;
  }

  .about .development .development-swiper::after {
    top: 53px;
  }

  .about .history .history-box .history-con {
    width: 100%;
  }

  .about .history .history-box .history-date {
    display: none;
  }

  .about .partners .partners-content .ams img {
    width: 24vw;
  }

  .join-list .join-list2 .join-list3 .join-titlebox .join-list-title .join-list-mes {
    flex-wrap: wrap;
  }

  .header {
    position: sticky;
    background-color: #fff;
  }

  .header .header-nav .header-list .header-list3 a span {
    color: var(--c);
  }

  .header .header-box1 .header-content1 .logo a .logo1 {
    transform: translateY(-100%);
  }

  .header .header-box1 .header-content1 .logo a .logo2 {
    transform: translateY(0);
  }

  .index .i-product .i-product-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -12px;
    margin-top: 12px;
  }

  .index .i-product .i-product-nav .i-product-nav2 {
    margin-right: 0;
    width: 48%;
    margin-bottom: 12px;
  }

  .index .i-partners .i-partners-logobox .i-partners-logobox2 {
    width: 105px;
  }

  .fooder .fooder-bom {
    flex-wrap: wrap;
  }

  .index .i-news .i-news-content .i-news-box1 {
    width: 100%;
    margin-bottom: var(--d30);
  }

  .header .header-box1 .header-content1 .logo {
    width: 120px;
  }

  .product .product-contentbox .product-list .product-list2 .product-list3 {
    flex-direction: column;
  }

  .product .product-contentbox .product-list .product-list2 .product-list3 .product-imgbox {
    width: 100%;
  }

  .product .product-contentbox .product-list .product-list2 .product-list3 .product-textbox {
    width: 100%;
  }
}

@media (max-width: 540px) {
  :root {
    --d700: 200px;
    --d357: 50px;
    --d330: 50px;
    --d286: 50px;
    --d260: 50px;
    --d243: 50px;
    --d210: 30px;
    --d208: 30px;
    --d190: 30px;
    --d180: 30px;
    --d178: 30px;
    --d170: 30px;
    --d160: 30px;
    --d164: 30px;
    --d154: 30px;
    --d150: 30px;
    --d145: 30px;
    --d130: 30px;
    --d124: 30px;
    --d120: 30px;
    --d110: 30px;
    --d105: 30px;
    --d100: 30px;
    --d93: 30px;
    --d90: 30px;
    --d88: 30px;
    --d84: 30px;
    --d80: 30px;
    --d75: 30px;
    --d72: 30px;
    --d70: 30px;
    --d64: 20px;
    --d62: 20px;
    --d50: 20px;
    --d44: 10px;
    --d40: 15px;
    --d38: 15px;
    --d36: 15px;
    --d30: 15px;
    --d16: 8px;
    --d15: 6px;
    --d10: 6px;
    --100: 30px;
    --96: 30px;
    --90: 35px;
    --80: 30px;
    --76: 28px;
    --75: 28px;
    --72: 30px;
    --70: 20px;
    --68: 28px;
    --65: 28px;
    --64: 28px;
    --60: 28px;
    --50: 26px;
    --48: 28px;
    --44: 30px;
    --40: 26px;
    --38: 24px;
    --30: 20px;
    --28: 18px;
    --26: 16px;
    --22: 16px;
    --21: 16px;
    --18: 14px;
    --17: 14px;
  }

  .about .development .development-titlebox {
    flex-direction: column;
  }

  .about .development .development-titlebox .development-titlebox2 {
    width: 100%;
  }

  .about .partners .partners-content .ams img {
    width: 30vw;
  }

  .about .history .history-swbox .history-swiper2 .history-sw-con {
    width: 60px;
    height: 60px;
  }

  .about .history .history-swbox .history-swiper2::after {
    bottom: 15px;
  }

  .about .honors .honors-prev {
    left: 40px;
  }

  .about .honors .honors-box {
    height: 200px;
    width: 70%;
  }

  .about .honors .honors-next {
    right: 40px;
  }

  .join-list .join-list2 .join-list3 .join-titlebox .join-icon {
    width: 35px;
    height: 35px;
  }

  .contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2 .contact-mes3 {
    font-size: 16px;
  }

  .contact .contact-contentbox .contact-con .contact-textbox .contact-mes .contact-mes2 .contact-mes3 a {
    font-size: 16px;
  }

  .contact .contact-contentbox .contact-con .contact-textbox .contact-contitle {
    font-size: 20px;
  }

  .contact .contact-contentbox .contact-con .contact-form .textarea-box {
    height: 80px;
  }

  .contact .contact-contentbox .contact-con .contact-form .code {
    flex-wrap: wrap;
  }

  .contact .contact-contentbox .contact-con .contact-form .code .code-imgbox {
    width: 100%;
    margin-top: var(--d20);
  }

  .header .header-box1 .header-content1 {
    height: 60px;
  }

  .index-banner .swiper-slide .slide-inner {
    height: 400px;
  }

  .news-box .news-box2 .news-list-textbox {
    padding: 15px;
  }

  .about .honors .honors-box li p {
    font-size: 16px;
  }

  .about .honors .honors-box {
    margin-bottom: 60px;
  }
}