* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-word;
}
li,
i,
em {
  list-style: none;
}
a {
  text-decoration: none;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  color: #fff;
  font-size: 14px;
  scroll-behavior: smooth;
}
.formMessage {
  position: fixed;
  top: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  min-width: 280px;
  max-width: 92%;
  padding: 14px 18px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  transform: translate(-50%, -100%);
  transition: opacity 0.3s, transform 0.3s, top 0.3s;
}

.formMessage .icon {
  flex-shrink: 0;
}

.formMessage .el-message__content {
  margin: 0;
  color: #606266;
  font-size: 14px;
  line-height: 1.5;
}

.formMessage.el-message--success .el-message__content {
  color: #67c23a;
}

.formMessage.el-message--error .el-message__content {
  color: #f56c6c;
}

.el-message-fade-enter-active {
  opacity: 1;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}

.el-message-fade-leave-active {
  opacity: 0;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.inner {
  max-width: 1440px;
  width: 80%;
  margin: 0 auto;
}
@keyframes horizontalMove {
  0% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(-3px);
  }
}
@keyframes verticalMove {
  0% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-3px);
  }
}
button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

img,
svg {
  display: block;
}

body {
  color: #172033;
  background: #ffffff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.banner1 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  color: #003771;
  background: #dfe8f4;
}

.banner1 > img {
  display: block;
  width: 100%;
  max-width: none;
}

.banner1 .banner-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 3%;
  pointer-events: none;
}

.banner1 .top {
  display: flex;
  flex-direction: column;
  width: 78%;
  margin: 0 auto;
}

.banner1 .title {
  display: flex;
  align-items: center;
  width: 100%;
}

.banner1 .title p {
  color: #003771;
  font-family: "Alibaba PuHuiTi", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 75px;
}

.banner1 .title span {
  color: #F97316;
}

.banner1 .desc {
  display: flex;
  width: 100%;
  margin-top: 24px;
}

.banner1 .desc p {
  color: #003771;
  font-family: "Alibaba PuHuiTi", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.banner1 .bottom {
  position: absolute;
  right: 0;
  bottom: 6%;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  color: #ffffff;
  font-family: "Space Mono", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.banner1 .bottom .line {
  width: 0.08%;
  padding-top: 4%;
  margin-top: 7px;
  background: #ffffff;
}

.banner1 .bottom .dot {
  width: 0.45%;
  padding-top: 0.45%;
  border-radius: 50%;
  background: #0069bb;
}

@media (max-width: 900px) {
  .banner1 .top {
    width: 86%;
  }

  .banner1 .title p {
    font-size: 34px;
    line-height: 48px;
  }

  .banner1 .desc {
    margin-top: 14px;
  }

  .banner1 .desc p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 640px) {

  .banner1 .top {
    width: 88%;
  }

  .banner1 .title p {
    font-size: 22px;
    line-height: 32px;
  }

  .banner1 .desc {
    margin-top: 8px;
  }

  .banner1 .desc p {
    font-size: 12px;
    line-height: 20px;
  }

  .banner1 .bottom {
    display: none;
  }
}

input,
textarea {
  width: 100%;
  color: #172033;
  border: 0;
  outline: none;
  background: transparent;
}

.container {
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 3%;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 91.3%;
  padding: 12px 0.8% 12px 5.6%;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(2, 20, 39, 0.14);
  transform: translateX(-50%) !important;
  transition: top 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.site-header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 16%;
}

.site-header .logo img {
  width: 62%;
  object-fit: contain;
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 49%;
  gap: 5.6%;
  padding: 0;
}

.site-header .nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  color: #003771;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border-radius: 10px;
  transition: color 0.3s ease, background 0.3s ease;


  color: #003771;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.site-header .nav a::after {
  display: none;
}

.site-header .nav a:hover {
  color: #fb8933;
}

.site-header .nav a.active {
  padding: 17px 24px;
  color: #ffffff;
  background: #ff7a1a;
}

.site-header .nav a.active:hover {
  color: #ffffff;
  background: #f97316;
}

.site-header .nav a svg path {
  fill: currentColor;
}

.site-header .action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 26%;
  gap: 5%;
}

.site-header .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 19%;
  color: #003771;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;

  color: #003771;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.site-header .lang svg path {
  fill: currentColor;
}

.site-header .search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 11%;
  aspect-ratio: 1 / 1;
  padding: 0;
  color: #003771;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.site-header .search:hover {
  background: #e8edf3;
  transform: translateY(-1px);
}

.site-header .search svg {
  width: 45%;
  aspect-ratio: 1 / 1;
}

.site-header .search svg path {
  stroke: currentColor;
}

.site-header .header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 55%;
  padding: 15px 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: #ff8a34;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;


  color: #ffffff;
font-family: "Alibaba PuHuiTi";
font-weight: 700;
font-size: 20px;
line-height: 24px;
}

.site-header .header-contact:hover {
  background: #f97316;
  transform: translateY(-1px);
}

.header-index.site-header {
  display: block;
  padding: 0;
  overflow: visible;
}

.header-index .header-index-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0.8% 12px 5.6%;
}

.header-index.site-header.header-scroll-hidden {
  top: -140px !important;
  transform: translateX(-50%) !important;
}

.header-index .logo-index {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 16%;
}

.header-index .logo-index a {
  display: flex;
  align-items: center;
  width: 100%;
}

.header-index .logo-index img {
  display: block;
  width: 62%;
}

.header-index .header-index-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 82%;
  min-width: 0;
}

.header-index .header-index-nav nav {
  display: flex;
  align-items: center;
  flex: 0 1 68%;
}

.header-index .header-index-nav nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 3.6%;
}

.header-index .header-index-nav nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header-index .header-index-nav nav .nav-item .nav-item-first {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-index .header-index-nav nav .nav-item .nav-item-first .nav-item-p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  color: #003771;
  font-family: "Alibaba PuHuiTi", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
}

.header-index .header-index-nav nav .nav-item .nav-item-first .nav-item-p p {
  position: relative;
  z-index: 2;
}

.header-index .header-index-nav nav .nav-item .nav-item-first .nav-item-p svg {
  flex: 0 0 auto;
}

.header-index .header-index-nav nav .nav-item .nav-item-first .nav-item-p svg path {
  fill: currentColor;
}

.header-index .header-index-nav nav .nav-item .nav-item-first .nav-item-p::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 0;
  padding-top: 2px;
  margin: 0 auto;
  background: #fb903b;
  content: "";
  transition: width 0.3s ease;
}

.header-index .header-index-nav nav .nav-item .nav-item-first:hover .nav-item-p,
.header-index .header-index-nav nav .nav-item .nav-item-first.nav-item-first-active .nav-item-p {
  color: #fb903b;
}

.header-index .header-index-nav nav .nav-item .nav-item-first:hover .nav-item-p::after,
.header-index .header-index-nav nav .nav-item .nav-item-first.nav-item-first-active .nav-item-p::after {
  width: 100%;
}

.header-index .header-index-nav nav .nav-item .nav-item-first.active .nav-item-p {
  padding: 15px 17px;
  color: #ffffff;
  font-weight: 600;
  background: #fb903b;
  border-radius: 10px;
}

.header-index .header-index-nav nav .nav-item .nav-item-first.active .nav-item-p::after {
  width: 0;
}

.header-index .header-index-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 30%;
}

.header-index .header-index-right-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 5%;
}

.header-index .header-index-search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 11%;
  aspect-ratio: 1 / 1;
  color: #003771;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header-index .header-index-search:hover {
  background: #e8edf3;
  transform: translateY(-1px);
}

.header-index .header-index-search svg {
  width: 45%;
  aspect-ratio: 1 / 1;
}

.header-index .header-index-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22%;
  gap: 8px;
  color: #003771;
  font-family: "Alibaba PuHuiTi", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
}

.header-index .header-index-langs .langName-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header-index .header-index-langs .langName-icon svg path {
  fill: currentColor;
}

.header-index .header-index-langs:hover {
  color: #fb903b;
}

.header-index .header-index-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52%;
  padding: 15px 0;
  color: #ffffff;
  font-family: "Alibaba PuHuiTi", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background: #fb903b;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header-index .header-index-contact:hover {
  background: #fb903b;
  transform: translateY(-1px);
}

.nav-item-second {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 999;
  width: 280%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  white-space: normal;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}

.nav-item-second.nav-item-second-show {
  max-height: 620px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item-second .nav-item-second-inner-other {
  width: 100%;
  padding: 18px 14px 10px;
  background: #ffffff;
  border: 1px solid #edf1f5;
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(2, 20, 39, 0.14);
}

.nav-item-second .nav-item-second-inner-other .nav-item-second-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 8px;
  color: #003771;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-item-second .nav-item-second-inner-other .nav-item-second-link .text {
  width: 86%;
  font-size: 15px;
  line-height: 22px;
}

.nav-item-second .nav-item-second-inner-other .nav-item-second-link .right {
  opacity: 0;
  color: #fb903b;
  line-height: 1;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item-second .nav-item-second-inner-other .nav-item-second-link:hover {
  color: #fb903b;
  background: #fff2e9;
}

.nav-item-second .nav-item-second-inner-other .nav-item-second-link:hover .right {
  opacity: 1;
  transform: translateX(0);
}

.nav-item-second-pro {
  position: fixed;
  top: 118px;
  right: 5%;
  left: 5%;
  width: 90%;
  border-radius: 24px;
  transform: translateY(12px);
}

.nav-item-second-pro.nav-item-second-show {
  transform: translateY(0);
}

.nav-item-second-pro .nav-item-second-inner-pro {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 36px 4%;
  background: #ffffff;
  border: 1px solid #edf1f5;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(2, 20, 39, 0.16);
}

.nav-item-second-pro .nav-item-second-type-box {
  display: flex;
  flex-direction: column;
  width: 32%;
  padding: 18px 2%;
  background: #f5f8fb;
  border-radius: 12px;
}

.nav-item-second-pro .nav-item-second-type-box .itemProduct-type-one {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 4%;
  margin-bottom: 10px;
  color: #003771;
  border-radius: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-item-second-pro .nav-item-second-type-box .itemProduct-type-one .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18%;
  color: #fb903b;
  font-size: 14px;
  line-height: 20px;
}

.nav-item-second-pro .nav-item-second-type-box .itemProduct-type-one .text {
  flex: 0 0 82%;
  min-width: 0;
  padding-left: 4%;
  font-size: 16px;
  line-height: 24px;
}

.nav-item-second-pro .nav-item-second-type-box .itemProduct-type-one .text .name {
  display: inline;
}

.nav-item-second-pro .nav-item-second-type-box .itemProduct-type-one:hover,
.nav-item-second-pro .nav-item-second-type-box .itemProduct-type-one-active1 {
  color: #fb903b;
  background: #ffffff;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 64%;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .secondProList-box1 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-height: 360px;
  overflow-y: auto;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .secondProList-box1 .nav-item-second-proall-other-a {
  display: flex;
  align-items: center;
  width: calc((100% - 16px) / 2);
  padding: 14px 3%;
  color: #003771;
  background: #f5f8fb;
  border-radius: 12px;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .secondProList-box1 .nav-item-second-proall-other-a:hover {
  color: #fb903b;
  background: #fff2e9;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .secondProList-box1 .nav-item-second-proall-other-a .cover {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22%;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .secondProList-box1 .nav-item-second-proall-other-a .cover img {
  width: 100%;
  object-fit: contain;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .secondProList-box1 .nav-item-second-proall-other-a .text {
  flex: 0 0 78%;
  padding-left: 4%;
  font-size: 16px;
  line-height: 24px;
}

.nav-item-second-pro .nav-item-second-pro-empty {
  width: 100%;
  padding: 24px 4%;
  color: #003771;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  background: #f5f8fb;
  border-radius: 12px;
}

.nav-item-second-pro .header-product-hidden {
  display: none;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .secondProList-box1.header-product-hidden {
  display: none;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .nav-item-second-inner-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .nav-item-second-inner-link .nav-item-second-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36%;
  padding: 13px 0;
  color: #ffffff;
  background: #fb903b;
  border-radius: 24px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .nav-item-second-inner-link .nav-item-second-link:hover {
  background: #fb903b;
  transform: translateY(-1px);
}

.nav-item-second-pro .nav-item-second-pro-doms-other1 .nav-item-second-inner-link .nav-item-second-link .right {
  margin-left: 8px;
}

@media (max-width: 1600px) {
  .site-header {
    width: 92%;
    padding: 10px 0.8% 10px 4.8%;
    border-radius: 24px;
  }

  .header-index .header-index-inner {
    padding: 10px 0.8% 10px 4.8%;
  }

  .header-index .logo-index {
    flex-basis: 15%;
  }

  .header-index .logo-index img {
    width: 68%;
  }

  .header-index .header-index-nav {
    flex-basis: 83%;
  }

  .header-index .header-index-nav nav ul {
    gap: 2.8%;
  }

  .header-index .header-index-nav nav .nav-item .nav-item-first .nav-item-p {
    font-size: 15px;
    line-height: 23px;
  }

  .header-index .header-index-contact {
    padding: 13px 0;
    font-size: 18px;
    border-radius: 22px;
  }

  .site-header .logo {
    flex-basis: 15%;
  }

  .site-header .logo img {
    width: 68%;
  }

  .site-header .nav {
    flex-basis: 50%;
    gap: 4.2%;
  }

  .site-header .nav a {
    font-size: 18px;
  }

  .site-header .nav a.active {
    padding: 14px 20px;
  }

  .site-header .action {
    flex-basis: 27%;
    gap: 4%;
  }

  .site-header .lang {
    font-size: 18px;
  }

  .site-header .header-contact {
    padding: 20px 0;
    font-size: 22px;
    border-radius: 22px;
  }
}

@media (max-width: 1380px) {
  .site-header {
    width: 93%;
    padding: 9px 0.7% 9px 3.8%;
    border-radius: 22px;
  }

  .header-index .header-index-inner {
    padding: 9px 0.7% 9px 3.8%;
  }

  .header-index .logo-index {
    flex-basis: 14%;
  }

  .header-index .logo-index img {
    width: 72%;
  }

  .header-index .header-index-nav {
    flex-basis: 84%;
  }

  .header-index .header-index-nav nav {
    flex-basis: 70%;
  }

  .header-index .header-index-right {
    flex-basis: 28%;
  }

  .header-index .header-index-nav nav ul {
    gap: 2%;
  }

  .header-index .header-index-nav nav .nav-item .nav-item-first .nav-item-p {
    font-size: 14px;
    line-height: 22px;
  }

  .header-index .header-index-contact {
    padding: 12px 0;
    font-size: 16px;
    border-radius: 20px;
  }

  .site-header .logo {
    flex-basis: 14%;
  }

  .site-header .logo img {
    width: 72%;
  }

  .site-header .nav {
    flex-basis: 51%;
    gap: 3.2%;
  }

  .site-header .nav a {
    font-size: 16px;
  }

  .site-header .nav a.active {
    padding: 12px 16px;
  }

  .site-header .action {
    flex-basis: 28%;
    gap: 3.6%;
  }

  .site-header .lang {
    font-size: 16px;
  }

  .site-header .header-contact {
    padding: 18px 0;
    font-size: 20px;
    border-radius: 20px;
  }
}

.site-contact {
  padding: 6% 0;
  color: #172033;
  background: #f3f5f7;
}

.site-contact .wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6%;
  width: 82%;
  margin: 0 auto;
}

.site-contact .text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  position: relative;
}

.site-contact .en_text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #003771;
font-family: Inter;
font-weight: 700;
font-size: 14px;
line-height: 20px;
text-transform: uppercase;
}
.site-contact .en_text .inline {
width: 48px;
height: 2px;
background: #003771;
}
.site-contact .h1 {
  margin-top: 25px;
  color: #003771;
font-family: Inter;
font-weight: 700;
font-size: 48px;
line-height: 60px;
}

.site-contact .h1 em {
  color: #fb8933;
  font-style: normal;
}

.site-contact .span {
  width: 82%;
  margin-top: 18px;
  color: #003971b3;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.3px;
}

.site-contact .list {
  display: flex;
  flex-direction: column;
  gap: 18px 3%;
  margin-top: 4%;
}

.site-contact .item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.site-contact .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 8%;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e6edf4;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 55, 113, 0.08);

  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  border-radius: 18641400px;
  border: 1px solid #00397108;
  box-sizing: border-box;
  background: #0039711a;
}

.site-contact .icon svg {
  width: 100%;
}

.site-contact .label {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

.site-contact .label .p {
color: #00397180;
font-family: Inter;
font-weight: 400;
font-size: 14px;
line-height: 20px;
}

.site-contact .label .val {
  margin-top: 3px;
  color: #003771;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  color: #003771;
font-family: Inter;
font-weight: 700;
font-size: 20px;
line-height: 28px;
}

.site-contact .item:hover .label .val {
  color: #fb8933;
  text-decoration-color: currentColor;
}

.site-contact .codes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4%;
  overflow: visible;
}
    .site-contact .codesM{
    display: none;
  }
.site-contact .code {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 12%;
  padding: 2%;
  cursor: pointer;
}

.site-contact .code svg {
  width: 100%;
}

.site-contact .code > span {
  display: none;
  margin-top: 6px;
  color: #003771;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.site-contact .code .img {
  position: absolute;
  top: 108%;
  left: 50%;
  z-index: 10;
  width: 150%;
  padding: 8%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6edf4;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 55, 113, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-contact .code:hover .img {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-contact .code .img img {
  width: 100%;
  object-fit: cover;
}

.site-contact .form {
  display: flex;
  flex: 0 0 36%;
  flex-direction: column;
  padding: 3%;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0px 0px 20.8px #0000001c;
  position: relative;
}
.site-contact .form .back1 {
width: 96px;
height: 96px;
border-radius: 18641400px;
background: #f97316;
filter: blur(128px);
position: absolute;
top: 0;
right: 0;
}
.site-contact .form .back2{
width: 96px;
height: 191.6px;
border-radius: 18641400px;
background: rgba(0, 57, 113, 0.1);
filter: blur(128px);
position: absolute;
bottom: 0;
left: 0;
}

.site-contact .form .title {
color: #003771;
font-family: "Alibaba PuHuiTi";
font-weight: 700;
font-size: 30px;
line-height: 41px;
text-decoration-line: underline;
text-underline-offset: 30%;
text-underline-position: from-font;
text-decoration-skip-ink: auto;
}

.site-contact .form_item {
  width: 100%;
  display: flex;
  flex-direction: row !important;
  gap: 4%;
  margin-top: 18px;
  z-index: 1;    
}
.site-contact .form_item1 {
  width: 100%;
  display: flex;
  gap: 4%;
  margin-top: 18px;
  z-index: 1;
}
.site-contact .form_item  .input {
  width: calc(50% - 1%);
}
.site-contact .form_item1  .input  {
  width: 100%;
}

.site-contact .input .label {
  color: #003771;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;    
  flex-direction: row;
  align-items: center;
  color: #003771;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.site-contact .form_item .label span{
  color: #fb8933;
  font-style: normal;
}
.site-contact .input .label i {
  color: #fb8933;
  font-style: normal;
}

.site-contact .value {
  margin-top: 8px;
  padding: 10px 12px;
  background: #f7f9fb;
  border-radius: 6px;
}

.site-contact .value input,
.site-contact .value textarea {
  color: #172033;
  font-size: 15px;
}

.site-contact .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 13px 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  background: #08263e;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.site-contact .submit:hover {
  background: #003771;
  transform: translateY(-2px);
}

.site-contact .tips {
  margin-top: 16px;
text-align: center;
color: #99a1af;
font-family: Inter;
font-weight: 400;
font-size: 12px;
line-height: 16px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.86);
  background: #183244;
}

.site-footer .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  width: 84.8%;
  margin: 0 auto;
  padding: 50px 0 66px;
}

.site-footer .left {
  display: flex;
  flex: 0 0 43%;
  flex-direction: column;
  min-width: 0;
}

.site-footer .logo {
  display: flex;
  align-items: center;
  width: 55%;
}

.site-footer .logo img {
  width: 100%;
  object-fit: contain;
}

.site-footer .text1 {
  width: 82%;
  margin-top: 36px;
  color: rgba(153, 161, 175, 1);
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
}

.site-footer .contactShare {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
}

.site-footer .contactShare-item {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-footer .contactShare-item svg {
  width: 38px;
  height: 38px;
}

.site-footer .contactShare-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-footer .right {
  display: flex;
  justify-content: space-between;
  flex: 0 0 44%;
  gap: 0;
}

.site-footer .right .item {
  display: flex;
  flex: 0 0 36%;
  flex-direction: column;
}

.site-footer .right .item:first-child {
  flex-basis: 34%;
}

.site-footer .right .text1 {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 1);
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}

.site-footer .line {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 72px;
  height: 0.6px;
}

.site-footer .text2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #99a1af;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  transition: color 0.2s ease;
}

.site-footer .text2:hover {
  color: #ffffff;
}

.site-footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3%;
  width: 84.8%;
  margin: 0 auto;
  padding: 26px 0 30px;
  color: #99a1af;
  border-top: 1px solid rgba(153, 161, 175, 0.8);
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

.site-footer .footer-side {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer .footer-bottom-infor-a {
  color: inherit;
  font-size: 13px;
  transition: color 0.2s ease;
}

.site-footer a.footer-bottom-infor-a:hover {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .site-header {
    width: 94%;
  }

  .site-header .logo {
    flex-basis: 13%;
  }

  .site-header .nav {
    gap: 2%;
  }

  .site-header .action {
    flex-basis: 27%;
  }

  .site-contact .wrap {
    width: 88%;
    gap: 4%;
  }

  .site-footer .top {
    width: 88%;
    gap: 6%;
  }

  .site-footer .bottom {
    width: 88%;
  }
}

@media (max-width: 960px) {
  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 4%;
    border-radius: 0;
    transform: none;
  }

  .site-header .logo {
    flex-basis: 20%;
  }

  .site-header .nav {
    display: none;
  }

  .site-header .action {
    align-items: center;
    flex: 0 0 12%;
  }

  .site-header .lang {
    display: none;
  }

  .site-header .search {
    display: none;
  }

  .site-header .header-contact {
    display: none;
  }

  .site-header .action::before {
    display: flex;
    width: 100%;
    padding-top: 70%;
    background: linear-gradient(#1c2b39, #1c2b39) 0 18% / 100% 2px no-repeat,
      linear-gradient(#1c2b39, #1c2b39) 0 50% / 100% 2px no-repeat,
      linear-gradient(#1c2b39, #1c2b39) 0 82% / 100% 2px no-repeat;
    content: "";
  }

  .site-contact {
    padding: 9% 0;
  }

  .site-contact .wrap {
    align-items: center;
    flex-direction: column;
    gap: 24px;
    width: 90%;
  }

  .site-contact .text {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .site-contact .span {
    width: 100%;
  }

  .site-contact .list {
    width: 100%;
  }

  .site-contact .item {
    flex-basis: 48%;
    text-align: left;
  }

  .site-contact .icon {
    flex-basis: 9%;
  }

  .site-contact .codes {
    justify-content: center;
    gap: 14px;
  }

  .site-contact .code {
    flex: 0 0 68px;
    width: 68px;
    padding: 0;
  }

  .site-contact .code svg {
    width: 68px;
    height: auto;
  }

  .site-contact .form {
    flex: 0 0 auto;
    width: 82%;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer .top {
    align-items: center;
    flex-direction: column;
    gap: 28px;
    width: 90%;
    padding: 8% 0 6%;
  }

  .site-footer .left {
    align-items: center;
    width: 100%;
  }

  .site-footer .logo {
    width: 28%;
  }

  .site-footer .text1 {
    width: 82%;
  }

  .site-footer .contactShare {
    justify-content: center;
  }

  .site-footer .contactShare-item {
    flex-basis: 6%;
  }

  .site-footer .right {
    justify-content: center;
    width: 100%;
    gap: 10%;
  }

  .site-footer .right .item {
    align-items: center;
    flex: 0 0 30%;
  }

  .site-footer .line {
    width: 24%;
  }

  .site-footer .bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    width: 90%;
    text-align: center;
  }

  .site-footer .footer-side {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 12px;
    line-height: 1.55;
  }

  .site-header {
    padding: 7px 4%;
    box-shadow: 0 2px 10px rgba(0, 24, 48, 0.08);
  }

  .site-header .logo {
    flex-basis: 22%;
  }

  .site-header .action {
    flex-basis: 7%;
  }

  .site-contact {
    padding: 9% 0 10%;
    background: #f4f6f8;
  }

  .site-contact .wrap {
    gap: 20px;
    width: 90%;
  }

  .site-contact .en_text {
    color: #003771;
    font-size: 11px;
    display: none;
  }

  .site-contact .h1 {
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.25;
  }

  .site-contact .span {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.75;
  }

  .site-contact .list {
    gap: 10px;
    margin-top: 16px;
  }

  .site-contact .item {
    flex: 1 1 100%;
    gap: 10px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 8px;
  }

  .site-contact .icon {
    flex-basis: 9%;
    padding: 6px;
  }

  .site-contact .label .p {
    font-size: 11px;
  }

  .site-contact .label .val {
    font-size: 12px;
  }

  .site-contact .codes {
    gap: 10px;
    margin-top: 14px;
  }

  .site-contact .code {
    flex-basis: 15%;
    padding: 2%;
  }

  .site-contact .code .img {
    width: 170%;
  }

  .site-contact .form {
    width: 100%;
    padding: 6% 5%;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 55, 113, 0.1);
  }

  .site-contact .form .title {
    font-size: 17px;
    text-align: center;
  }

  .site-contact .form_item {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .site-contact .input .label {
    font-size: 12px;
  }

  .site-contact .value {
    margin-top: 4px;
    padding: 9px 10px;
  }

  .site-contact .value input {
    font-size: 13px;
  }

  .site-contact .submit {
    margin-top: 20px;
    padding: 11px 14px;
    font-size: 13px;
    border-radius: 6px;
  }

  .site-contact .tips {
    margin-top: 10px;
    font-size: 10px;
    text-align: center;
  }

  .site-footer .top {
    gap: 22px;
    padding: 10% 0 7%;
  }

  .site-footer .logo {
    width: 34%;
  }

  .site-footer .text1 {
    width: 100%;
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.8;
  }

  .site-footer .contactShare {
    gap: 8px;
    margin-top: 14px;
  }

  .site-footer .contactShare-item {
    flex-basis: 8%;
  }

  .site-footer .right {
    gap: 8%;
  }

  .site-footer .right .item {
    flex-basis: 38%;
  }

  .site-footer .right .text1 {
    font-size: 13px;
  }

  .site-footer .line {
    margin: 8px 0 10px;
  }

  .site-footer .text2 {
    justify-content: center;
    margin-top: 5px;
    font-size: 11px;
  }

  .site-footer .bottom {
    padding: 12px 0;
    font-size: 10px;
  }

  .site-footer .footer-side {
    gap: 10px;
  }

  .site-footer .footer-bottom-infor-a {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .site-contact {
    padding: 40px 0;
  }

  .site-contact .wrap,
  .site-footer .top,
  .site-footer .bottom {
    width: calc(100% - 32px);
  }

  .site-contact .wrap {
    gap: 20px;
  }

  .site-contact .text {
    text-align: center;
  }

  .site-contact .en_text,
  .site-contact .span,
  .site-contact .label .p,
  .site-contact .label .val,
  .site-contact .input .label,
  .site-contact .value input,
  .site-contact .tips,
  .site-footer .text1,
  .site-footer .text2,
  .site-footer .footer-bottom-infor-a {
    font-size: 13px;
  }

  .site-contact .h1,
  .site-contact .form .title {
    font-size: 22px;
    line-height: 1.3;
  }

  .site-contact .span,
  .site-contact .list,
  .site-contact .codes,
  .site-contact .form_item,
  .site-contact .submit,
  .site-contact .tips {
    margin-top: 16px;
  }
.site-contact .form_item {
  flex-direction: column !important;
}
.site-contact .form_item  .input {
  width: 100%;
}
  .site-contact .list {
    gap: 12px;
  }

  .site-contact .item {
    padding: 12px 14px;
  }

  .site-contact .icon {
    flex: 0 0 34px;
  }

  .site-contact .codes {
    justify-content: center;
  }

  .site-contact .code {
    flex: 0 0 48px;
  }

  .site-contact .form {
    padding: 20px 18px;
    border-radius: 8px;
  }

  .site-contact .value {
    padding: 10px 12px;
  }

  .site-contact .submit {
    padding: 12px 16px;
    font-size: 14px;
  }

  .site-footer .top {
    gap: 22px;
    padding: 40px 0 28px;
  }

  .site-footer .left {
    text-align: center;
  }

  .site-footer .logo {
    width: 120px;
    margin: 0 auto;
  }

  .site-footer .text1 {
    margin-top: 14px;
  }

  .site-footer .contactShare {
    justify-content: center;
    margin-top: 16px;
  }

  .site-footer .contactShare-item {
    flex: 0 0 34px;
  }

  .site-footer .right {
    gap: 18px 8%;
  }

  .site-footer .right .item {
    flex-basis: 46%;
    text-align: center;
  }

  .site-footer .right .text1 {
    font-size: 15px;
  }

  .site-footer .text2 {
    justify-content: center;
  }

  .site-footer .bottom {
    padding: 14px 0;
  }

  .site-footer .footer-side {
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 450px) {
  .site-contact .h1,
  .site-contact .form .title {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .site-contact {
    padding: 30px 0;
    background: #f2f4f6;
  }

  .site-contact .wrap {
    width: calc(100% - 28px);
    gap: 18px;
  }

  .site-contact .en_text {
    font-size: 10px;
  }

  .site-contact .h1,
  .site-contact .form .title {
color: #003771;
font-family: "Alibaba PuHuiTi";
font-weight: 700;
font-size: 20px;
line-height: 30px;
  }
  .site-contact .form .title {
    font-size: 20px;
line-height: 27px;
  }
  .site-contact .span {
    width: 100%;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.7;
    display: none;
  }

  .site-contact .list {
    gap: 25px;
    margin-top: 20px;
  }

  .site-contact .item {
    flex: 0 0 100%;
    gap: 9px;
    padding: 0;
    background: transparent;
    border: none;
  }

  .site-contact .icon {
    width: 37px;
    max-width: 37px;
    min-width: 37px;
    height: 37px;
    border-radius: 18641400px;
    border: 1px solid #00397108;
    box-sizing: border-box;
    background: #0039711a;
  }

  .site-contact .label .p {
    color: #00397180;
font-family: Inter;
font-weight: 400;
font-size: 14px;
line-height: 20px;
  }

  .site-contact .label .val {
    color: #003771;
font-family: Inter;
font-weight: 700;
font-size: 13px;
line-height: 16px;
  }

  .site-contact .codes {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 14px;
  }

  .site-contact .code {
    flex: 0 0 58px;
    border-radius: 4px;
    flex-direction: column;
  }

  .site-contact .code > span {
    display: block;
    font-size: 9px;
  }

  .site-contact .code .img {
    top: 0;
    left: 112%;
    width: 84px;
    transform: translate(0, 0);
  }
  .site-contact .codes{
    display: none;
  }
    .site-contact .codesM{
    display: flex;
    flex-direction: column;
    align-items: center;   
    gap: 0px;     
    position: absolute;
    top: 80px;
    right: 0;
    }
  }
      .site-contact .codesM .code{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
      .site-contact .codesM .code .img{
    width: 72px;
    height: 67px;
    border-radius: 12px;
    background: #003771;
            position: relative;
            top: 0;
            left: 0;
            opacity: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translate(0, 0);
            transition: none;
  }      
        .site-contact .codesM .code:hover .img{
    width: 72px;
    height: 67px;
    border-radius: 12px;
    background: #003771;
            position: relative;
            top: 0;
            left: 0;
            opacity: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translate(0, 0);
            transition: none;
  }  
  .site-contact .codesM .code .img img{
  width: 62px;
  background: #ffffff;
  }
    .site-contact .codesM .code > span{
color: #003771;
font-family: "Alibaba PuHuiTi";
font-weight: 400;
font-size: 12px;
line-height: 16px;
  }
  .site-contact .form {
    padding: 18px 16px;
    border-radius: 10px;
  }

  .site-contact .form_item {
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }

  .site-contact .input .label {
    font-size: 10px;
  }

  .site-contact .value {
    margin-top: 5px;
    padding: 9px 10px;
  }

  .site-contact .value input,
  .site-contact .value textarea {
    font-size: 11px;
  }

  .site-contact .submit {
    margin-top: 14px;
    padding: 10px 14px;
    font-size: 11px;
    border-radius: 5px;
  }

  .site-contact .tips {
    margin-top: 10px;
    font-size: 9px;
  }

  .site-footer {
    background: #102f43;
  }

  .site-footer .top,
  .site-footer .bottom {
    width: calc(100% - 28px);
    width: 83%;
    margin: 0 auto;
  }

  .site-footer .top {
    gap: 18px;
    padding: 30px 0 22px;
  }

  .site-footer .logo {
    width: 132px;
  }


  .site-footer .contactShare {
    gap: 14px;
    margin-top: 16px;
  }

  .site-footer .contactShare-item {
    flex: 0 0 20px;
  }

  .site-footer .right {
    gap: 16px 10%;
  }

  .site-footer .right .item {
    flex-basis: 45%;
  }


  .site-footer .line {
    width: 28px;
  }


  .site-footer .bottom {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
  }

  .site-footer .footer-side {
    gap: 8px;
  }



@media (max-width: 450px) {
  .site-contact .wrap,
  .site-footer .top,
  .site-footer .bottom {
    width: calc(100% - 24px);
  }
}
.headerM {
    z-index: 999;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 1px -3px 10px 2px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.headerM.header-scroll-hidden {
    top: -100px;
    transform: translateY(0);
}

.headerM .header-inner {
    width: 90%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.headerM .header-inner .header-lang {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 20%;
    gap: 12%;
}

.headerM .header-inner .header-lang-one {
    position: relative;
    width: 62%;
}

.headerM .header-inner .searchBtn {
    width: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.headerM .header-inner .searchBtn img {
    width: 100%;
    transform: scale(1);
    transition: 0.5s;
}

.headerM .header-inner .searchBtn:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}

.headerM .header-inner .searchInput {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240%;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
    transform: translateY(10px) scaleY(0);
    transform-origin: top right;
    transition: all 0.5s;
}

.headerM .header-inner .searchInput .searchInput-inner {
    width: 100%;
    position: relative;
    color: #fff !important;
}

.headerM .header-inner .searchInput .searchInput-inner .el-icon-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.headerM .header-inner .searchInput input {
    width: 100%;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid #F97316;
    background: #F97316;
    border-radius: 6px;
    color: #fff !important;
}

.headerM .header-inner .searchInput input::-webkit-input-placeholder {
    color: #fff;
    text-indent: 0px;
}

.headerM .header-inner .searchInputShow {
    opacity: 1;
    z-index: 1000;
    transform: translateY(8px) scaleY(1);
    transition: all 0.5s;
}

.headerM .header-inner .langBtn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12%;
    cursor: pointer;
}

.headerM .header-inner .langBtn .langBtn-img {
    width: 24%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.headerM .header-inner .langBtn .langBtn-img svg {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
}

.headerM .header-inner .langBtn .langBtnA {
    font-size: 18px;
    color: #333;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.5s;
}

.headerM .header-inner .langBtn .langBtnA .langBtnA-icon {
    margin-left: 10%;
}

.headerM .header-inner .langBtn .langBtnA:hover {
    color: #F97316;
    transition: 0.5s;
}

.headerM .header-inner .langList {
    position: absolute;
    top: 100%;
    right: 0;
    width: 160%;
    opacity: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(10px) scaleY(0);
    transform-origin: top right;
    transition: all 0.5s;
}

.headerM .header-inner .langList .langList-inner {
    width: 100%;
    background: #F97316;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.5s;
}

.headerM .header-inner .langList .langList-inner a {
    padding: 8px 10%;
    text-align: center;
    width: 100%;
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.5s;
    position: relative;
}

.headerM .header-inner .langList .langList-inner a:hover {
    background: #F97316;
    transition: all 0.5s;
}

.headerM .header-inner .langList .langList-inner a:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 68%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.headerM .header-inner .langList .langList-inner a:hover:after {
    background: transparent;
    transition: 0.5s;
}

.headerM .header-inner .langList .langList-inner .langList-last:after {
    height: 0;
}

.headerM .header-inner .langListShow {
    opacity: 1;
    z-index: 1000;
    pointer-events: auto;
    transform: translateY(8px) scaleY(1);
    transition: all 0.5s;
}

.headerM .header-inner .langListShow .langList-inner {
    padding: 8px 0;
    transition: all 0.5s;
}

.headerM .header-inner .action_item {
    width: 12%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 7px;
}

.headerM .header-inner .action_item .action_item_span_line {
    width: 100%;
    padding-top: 2px;
    transform: scaleY(0.5);
    background: #333;
}

.headerM .logo {
    width: 12%;
    display: flex;
    align-items: center;
}

.headerM .logo img {
    width: 100%;
    display: block;
}

.sidefixed .vr {
    width: 90px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    font-family: 'LamaSans-Medium';
    transform: translateX(-42px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.sidefixed .vr .vr-img {
    width: 50px;
    display: block;
}

.sidefixed .vr .vr-img img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: 0.5s;
}

.sidefixed .vr .vr-text {
    padding: 0 2px;
    transition: 0.5s;
    color: #000000;
    display: inline-block;
    transform: translateY(-6px);
    position: relative;
}

.sidefixed .vr:hover .vr-text {
    color: #45A954;
    transition: 0.5s;
}

.sidefixed .vr:hover .vr-img img {
    transform: scale(1.05);
    transition: 0.5s;
}

/* 侧边固定工具栏基础样式 */
.sidefixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-60%);
    z-index: 999;
    display: flex;
    width: 58px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}







.sidefixed .sideitemTop {
    border-radius: 10px 10px 0px 0px;
    padding: 8px 0 0;
}

.sidefixed .sideitemTop .icon-box {
    color: #fff;
}

.sidefixed .sideitemTop .icon-box p {
    color: #fff;
}

.sidefixed .sideitemTop a p {
    color: #fff;
}

.sidefixed .sideitemTop .icon-box img {
    width: 19px;
    transition: 0.5s;
}

.sidefixed .sideitemTop:hover .icon-box img {
    transform: scale(1.1);
}

.sidefixed .sideitem3 {
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #F97316;
    transition: 0.5s;
    position: relative;
    right: 0px;
}

.sidefixed .sideitem3:hover {
    background: #F97316;
    transition: .5s;
    right: 210px;
    border-radius: 10px !important;
}

.sidefixed .sideitem3:hover .icon-box {
    border-radius: 10px 0px 0px 10px !important;
    background: #F97316;
    transition: .5s;
    color: #fff;
}

.sidefixed .sideitem3:hover .sideins {
    border-radius: 0px 10px 10px 0px;
    transition: .5s;
}

.sidefixed .sideitem3 .p {
    font-size: 12px;
}

.sidefixed .sideitem3 .p a {
    color: #fff;
    width: 100%;
    display: block;
}

.sidefixed .sideitem3 .p a span {
    white-space: wrap;
}

.sidefixed .sideitem3 .icon-box {
    z-index: 801;
    padding: 10px 0px;
    align-items: center;
    flex-direction: column;
    width: 58px;
    display: flex;
    transition: .5s;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #F97316;
    position: relative;
}

.sidefixed .sideitem3 .icon-box p {
    margin-top: 4px;
    font-size: 12px;
    background: transparent !important;
    text-align: center;
    word-break: break-word;
    font-family: Alibaba PuHuiTi, Alibaba PuHuiTi;
    font-weight: 400;
}

.sidefixed .sideitem3 .icon-box::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    background: #F97316;
    width: 34px;
}

.sidefixed .sideitem3 svg {
    width: 19px;
    height: 19px;
}

.sidefixed .sideitem3 .sideins {
    width: 210px;
    background: #F97316;
    padding: 10px 10px;
    min-height: 65px;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

.sidefixed .sideitem3 .sideins .contactWays-value {
    position: relative;
}

.sidefixed .sideitem3 .sideins .contactWays-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: #fff;
    transition: 0.5s;
}

.sidefixed .sideitem3 .sideins .contactWays-value:hover::after {
    width: 100%;
    background: #fff;
    transition: 0.5s;
}

.sidefixed .sideitem3 .sideins p {
    line-height: 20px;
    padding: 8px 0px;
    white-space: nowrap;
    position: relative;
}

.sidefixed .sideitem3 .sideins p::after {
    content: '';
    position: absolute;
    top: 14%;
    height: 80%;
    left: -20px;
    width: 1px;
    background: #fff;
}

.sidefixed .sideitem3_1 {
    border-radius: 10px 10px 0 0;
}

.sidefixed .sideitem3_1 .icon-box {
    border-radius: 10px 10px 0 0;
}

.sidefixed .sideitem4:hover {
    right: 210px;
}

.sidefixed .sideitem4 .sideins {
    width: 210px;
}

.sidefixed .sideitem1 {
    width: 58px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-family: Alibaba PuHuiTi-Regular;
    background: #F97316;
    transition: .5s;
    position: relative;
    right: 0px;
    overflow: hidden;
}

.sidefixed .sideitem1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    background: #F97316;
    width: 34px;
}

.sidefixed .sideitem1:hover {
    overflow: visible;
    background: #F97316;
    transition: .5s;
}

.sidefixed .sideitem1:hover .sideins {
    transform: translateX(-5px) translateY(-50%);
    opacity: 1;
    transition: all .5s;
}

.sidefixed .sideitem1 .p {
    font-size: 11px;
}

.sidefixed .sideitem1 .p a {
    color: #fff;
}

.sidefixed .sideitem1 .icon-box {
    z-index: 801;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 58px;
}

.sidefixed .sideitem1 .icon-box p {
    margin-top: 4px;
    font-size: 11px;
    background: transparent !important;
    text-align: center;
    word-break: break-word;
}

.sidefixed .sideitem1 svg {
    width: 19px;
    height: 19px;
}

.sidefixed .sideitem1 .sideins {
    opacity: 0;
    z-index: 800;
    border-radius: 8px;
    transform: translateX(10px) translateY(-50%);
    background: #F97316;
    padding: 10px 10px;
    position: absolute;
    top: 0;
    right: 100%;
    min-height: 74px;
    transition: all .5s;
    display: flex;
}

.sidefixed .sideitem1 .sideins .sideins-one {
    width: 50%;
    margin: 5px 4px 0px;
}

.sidefixed .sideitem1 .sideins p {
    line-height: 26px;
    padding: 5px 0px;
    white-space: nowrap;
    text-align: center;
}

.sidefixed .sideitem1 .sideins img {
    width: 100px;
    height: 100px;
    display: block;
}

.sidefixed .sideitem2 {
    cursor: pointer;
    width: 58px;
    display: flex;
    padding-bottom: 8px;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #F97316;
    transition: .5s;
    overflow: hidden;
    position: relative;
    right: 0px;
    border-radius: 0px 0px 10px 10px;
}

.sidefixed .sideitem2:hover {
    background: #F97316;
}

.sidefixed .sideitem2 .p {
    font-size: 16px;
}

.sidefixed .sideitem2 .p a {
    color: #fff;
}

.sidefixed .sideitem2 .sideins {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidefixed .sideitem2 .icon-box {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.sidefixed .sideitem2 .icon-box svg {
    width: 10px;
    height: 10px;
    margin-right: 4px;
}

.sidefixed .sideitem2 .icon-box p {
    font-size: 12px;
    background: transparent !important;
    color: #fff;
}

.sidefixed .sideitemBase {
    border-radius: 23px;
}

.sidefixed .sideitemOther {
    display: flex;
    border-radius: 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: -12px;
    bottom: -60%;
    transform: scale(0.7);
}

.sidefixed .sideitemOther .sideitemOther-title {
    font-size: 20px;
    color: #565656;
    font-weight: bold;
    text-align: center;
    padding: 15px 10px;
    width: 100%;
    background: #F8F8F8;
    border-radius: 20px 20px 0 0;
}

.sidefixed .sideitemOther .sideitem-chat {
    width: 100px;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #EFEFEF;
    transition: 0.5s;
    position: relative;
}

.sidefixed .sideitemOther .sideitem-chat:last-child {
    border-bottom: none;
}

.sidefixed .sideitemOther .sideitem-chat:last-child:hover::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #EFEFEF;
    position: absolute;
    top: -1px;
    left: 0;
}

.sidefixed .sideitemOther .sideitem-chat .link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    opacity: 0;
    transition: 0.5s;
    background: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 10px;
    left: 10px;
    overflow: hidden;
}

.sidefixed .sideitemOther .sideitem-chat .link:hover {
    background: #EFEFEF;
}

.sidefixed .sideitemOther .sideitem-chat .link:focus {
    background: #EFEFEF;
}

.sidefixed .sideitemOther .sideitem-chat .link span {
    font-weight: bold;
    font-size: 16px;
    color: #565656;
    text-decoration: underline;
}

.sidefixed .sideitemOther .sideitem-chat .link .customer-icon {
    display: block;
    width: 50px;
    height: auto;
}

.sidefixed .sideitemOther .sideitem-chat .gif {
    display: block;
    width: 76px;
    margin: 0 auto;
    transition: 0.5s;
    transform: scale(0.9);
    opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover {
    width: 210px;
}

.sidefixed .sideitemOther .sideitem-chat:hover .link {
    opacity: 1;
}

.sidefixed .sideitemOther .sideitem-chat:hover .gif {
    opacity: 0;
}

.sidefixed .sideitemOther-show {
    display: flex !important;
    margin-top: 20px;
    min-height: 120px;
}

.sidefixedM {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 998;
    left: 0;
    display: none;
    justify-content: space-between;
    background: #F97316;
}

.sidefixedM .sideitem1 {
    width: 25%;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-family: Alibaba PuHuiTi-Regular;
    transition: .5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sidefixedM .sideitem1:hover {
    overflow: visible;
}

.sidefixedM .sideitem1:hover .sideins {
    bottom: calc(105%);
    opacity: 1;
    transition: .5s;
}

.sidefixedM .sideitem1 .p {
    font-size: 12px;
}

.sidefixedM .sideitem1 .p a {
    color: #fff;
}

.sidefixedM .sideitem1 .sideins1 {
    display: flex;
}

.sidefixedM .sideitem1 .sideins-one {
    width: 50%;
    margin: 5px 5px 0;
}

.sidefixedM .sideitem1 .sideins-one p {
    text-align: center;
    padding: 2px 0;
    line-height: 20px !important;
}

.sidefixedM .sideitem1 .icon-box {
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.sidefixedM .sideitem1 .icon-box p {
    margin-top: 4px;
    font-size: 12px;
    word-break: break-word;
    background: transparent !important;
}

.sidefixedM .sideitem1 .icon-box img {
    width: 20px;
    height: 20px;
}

.sidefixedM .sideitem1 svg {
    width: 20px;
    height: 20px;
}

.sidefixedM .sideitem1 .sideins {
    border-radius: 6px 6px 6px 6px;
    background: #F97316;
    padding: 5px 5px;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.sidefixedM .sideitem1 .sideins p {
    line-height: 50px;
    white-space: nowrap;
}

.sidefixedM .sideitem1 .sideins img {
    width: 100px;
    height: 100px;
    display: block;
}

.sidefixedM .sideitem2 {
    width: 25%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: .5s;
    overflow: hidden;
    position: relative;
}

.sidefixedM .sideitem2 .p {
    font-size: 12px;
}

.sidefixedM .sideitem2 .p a {
    color: #fff;
}

.sidefixedM .sideitem2 .sideins {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidefixedM .sideitem2 .icon-box {
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.sidefixedM .sideitem2 .icon-box svg {
    width: 15px;
    height: 10px;
    margin-bottom: 2px;
    margin-top: 5px;
}

.sidefixedM .sideitem2 .icon-box p {
    margin-top: 4px;
    font-size: 12px;
    background: transparent !important;
    color: #fff;
}

.top_nav.show_nav {
    transform: translateY(0);
}

.top_nav {
    display: none;
    overflow: auto;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    transform: translateY(-100%);
    transition: 0.5s;
    background: #fff;
}

.top_nav .top_nav_inner {
    width: 100%;
    min-height: 100%;
    position: relative;
    background: #fff;
}

.top_nav .logo img {
    display: block;
    width: 100%;
}

.top_nav .top_nav_close {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 4%;
}

.top_nav .top_nav_close .logo {
    width: 8%;
    display: flex;
    align-items: center;
}

.top_nav .top_nav_close svg {
    width: 3%;
    height: auto;
    margin-top: 2%;
    margin-right: 0;
    cursor: pointer;
}

.top_nav .nav {
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    background: #fff;
    height: auto;
    padding: 0 4% 8%;
    display: flex;
    flex-direction: column;
}

.top_nav .nav .li {
    width: 100%;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.top_nav .proMenu-a {
    width: 230px;
    height: 42px;
    background: #F97316;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    padding: 0 10px;
}

.top_nav .proMenu-a .proMenu-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.top_nav .proMenu-a .proMenu-icon img {
    width: 100%;
}

.top_nav .proMenu-a:hover {
    transform: rotateY(15deg) rotateX(-15deg) scale(1);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.top_nav .nav .li:last-child {
    border-right: none;
}

.top_nav .nav .li .logo {
    width: 150px;
    height: 100%;
    padding-top: 60px;
    box-sizing: border-box;
    margin: 0 auto;
}

.top_nav .nav .li .menu {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    margin-bottom: 20px;
    padding: 10px 0;
}

.top_nav .nav .li .menu a {
    width: auto;
    display: flex;
    height: auto;
    justify-content: flex-end;
    align-items: center;
}

.top_nav .nav .li .menu p {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
    margin-right: 0;
    transition: 0.5s;
    color: #333;
}

.top_nav .nav .li .menu p:hover {
    transform: translateX(12px);
    transition: 0.5s;
}

.top_nav .nav .li .menu img {
    display: block;
    width: 100%;
    transition: 0.5s;
}

.top_nav .nav .li .menu .icon-cai {
    display: block;
    width: 45%;
    height: auto;
    transition: 0.5s;
}

.top_nav .nav .li .menu .index {
    font-size: 18px;
    color: #333;
}

.top_nav .nav .li .menu .name {
    font-size: 18px;
    color: #333;
    width: 78%;
    display: flex;
    height: auto;
    justify-content: flex-start;
    align-items: center;
}

.top_nav .nav .li .menu .name:hover {
    color: #F97316;
}

.top_nav .nav .li .menu2 {
    width: 100%;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 4%;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.5s linear;
}

.top_nav .nav .li .menu2 .item_list {
    width: 100%;
}

.top_nav .nav .li .menu2 .item_val {
    line-height: 24px;
}

.top_nav .nav .li .menu2 .item_val a {
    color: #333;
    display: flex;
    margin-bottom: 6px;
    width: 100%;
}

.top_nav .nav .li .menu2 .item_val a span {
    font-size: 12px;
    margin-right: 8px;
    white-space: nowrap;
}

.top_nav .nav .li .menu2 .item_val a p {
    font-size: 16px;
}

.top_nav .nav .li .menu2 .item_val a:hover {
    color: #F97316;
}

.searchDialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  z-index: 2001;
  display: none;
  backdrop-filter: blur(8px);
}
.searchDialog .searchDialog-inner {
  width: 90%;
  max-width: 1200px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 5% 5%;
  position: relative;
  overflow: hidden;
}
.searchDialog .searchDialog-inner .searchDialog-close {
  position: absolute;
  cursor: pointer;
  width: 160px;
  height: 160px;
  top: -80px;
  right: -80px;
  background: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
}
.searchDialog .searchDialog-inner .searchDialog-close svg {
  width: 34px;
  height: 34px;
  margin: 0 0 26px 26px;
}
.searchDialog .searchDialog-inner .searchDialog-title {
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin-bottom: 36px;
  line-height: 30px;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner {
  width: 100%;
  height: 42px;
  position: relative;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input {
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  transition: 0.5s;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input:focus {
  font-weight: 400;
  outline: none;
  font-size: 24px;
  color: #333333;
  line-height: 42px;
  border: none;
  border-bottom: 1px solid #333;
  transition: 0.5s;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .icon-searchIcon {
  width: 32px;
  height: 32px;
  font-size: 24px;
  color: #ccc;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.langDialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 2001;
  display: none;
}
.langDialog .langDialog-inner {
  width: 90%;
  max-width: 1200px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 5% 5%;
  position: relative;
  overflow: hidden;
}
.langDialog .langDialog-inner .langDialog-close {
  position: absolute;
  width: 160px;
  height: 160px;
  cursor: pointer;
  top: -80px;
  right: -80px;
  background: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
}
.langDialog .langDialog-inner .langDialog-close svg {
  width: 34px;
  height: 34px;
  margin: 0 0 26px 26px;
}
.langDialog .langDialog-inner .langDialog-title {
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin-bottom: 16px;
  line-height: 30px;
}
.langDialog .langDialog-inner .langDialog-main {
  display: flex;
  flex-wrap: wrap;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one {
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  border: 1px solid #EFEFEF;
  transition: 0.5s;
  margin-right: 5%;
  height: 60px;
  border-radius: 30px;
  margin-top: 20px;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one p {
  width: 10px;
  height: 10px;
  background: #999999;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:hover {
  background: #F97316;
  border: 1px solid #F97316;
  color: #fff;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:hover p {
  background: #fff;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one:nth-of-type(3n) {
  margin-right: 0;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one-active {
  background: #F97316;
  border: 1px solid #F97316;
  color: #fff;
  transition: 0.5s;
}
.langDialog .langDialog-inner .langDialog-main .langDialog-one-active p {
  background: #fff;
  transition: 0.5s;
}
@media only screen and (max-width: 1380px) { 
  .header .header-inner{
    width: 90%;
  }
  .header .header-inner .header-logo {
    max-width: 132px;
  }
  .header .header-inner .header-right {
    width: calc(100% - 132px - 42px);
  }
  .header .header-inner .header-right .header-right-top {
    padding: 9px 20px;
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-top .header-right-top-info {
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav {
    gap: 30px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first {
    padding: 0 6px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right {
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right .header-right-bottom-right-left {
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right .header-right-bottom-right-right a {
    padding: 7px 16px;
  }
}
@media only screen and (max-width: 1280px) {
  .header .header-inner,
  .banner1 .content {
    width: 90%;
  }
  .header .header-inner .header-logo {
    max-width: 132px;
  }
  .header .header-inner .header-right {
    width: calc(100% - 132px - 42px);
  }
  .header .header-inner .header-right .header-right-top {
    padding: 9px 20px;
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-top .header-right-top-info {
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav {
    gap: 18px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first {
    padding: 0 6px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right {
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right .header-right-bottom-right-left {
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right .header-right-bottom-right-right a {
    padding: 7px 16px;
  }
  .banner1 {
    margin-top: 104px;
  }
  .banner1 .content .top {
    gap: 32px;
  }
  .banner1 .content .top .title {
    font-size: 32px;
    line-height: 40px;
  }
  .banner1 .content .top .desc {
    font-size: 20px;
    line-height: 29px;
  }
  .contacti .inner .section1 {
    gap: 36px;
  }
  .contacti .inner .section2 {
    padding: 28px;
  }
  .footer .inner .section1 {
    gap: 34px;
    flex-wrap: wrap;
  }
  .footer .inner .section1 .section1-left {
    width: 32%;
  }
  .footer .inner .section1-right {
    width: 22%;
  }
}

@media only screen and (max-width: 1023px) {
  .header .header-inner,
  .banner1 .content {
    width: 92%;
  }
  .header .header-inner {
    align-items: center;
  }
  .header .header-inner .header-logo {
    max-width: 112px;
    margin: 8px 0;
  }
  .header .header-inner .header-right {
    width: calc(100% - 112px - 26px);
    margin-top: 0;
  }
  .header .header-inner .header-right .header-right-top {
    display: none;
  }
  .header .header-inner .header-right .header-right-bottom {
    height: 58px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    gap: 18px;
  }
  .header .header-inner .header-right .header-right-bottom::-webkit-scrollbar {
    display: none;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav {
    height: 58px;
    flex: 0 0 auto;
    gap: 16px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item,
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first,
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first .nav-item-p {
    height: 58px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right {
    flex: 0 0 auto;
  }
  .banner1 {
    margin-top: 74px;
  }
  .banner1 .content {
    height: 78%;
  }
  .banner1 .content .top {
    gap: 24px;
  }
  .banner1 .content .top .title {
    font-size: 30px;
    line-height: 38px;
  }
  .banner1 .content .top .desc {
    font-size: 18px;
    line-height: 27px;
  }
  .faq .inner {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 60px;
  }
  .faq .inner .section1,
  .faq .inner .section2 {
    width: 100%;
  }
  .contacti {
    padding: 56px 0 126px 0;
  }
  .contacti .inner {
    flex-direction: column;
    gap: 34px;
  }
  .contacti .inner .section1,
  .contacti .inner .section2 {
    width: 100%;
  }
  .contacti .inner .section2 {
    max-width: 760px;
    margin: 0 auto;
  }
  .footer {
    padding: 54px 0 48px 0;
  }
  .footer .inner {
    gap: 34px;
  }
  .footer .inner .section1 .section1-left {
    width: 100%;
  }
  .footer .inner .section1 .section1-left .section1-left-middle {
    margin-bottom: 30px;
  }
  .footer .inner .section1 .section1-middle {
    width: calc((100% - 60px) / 3);
  }
  .footer .inner .section1-right {
    width: 100%;
    max-width: 460px;
  }

}

@media only screen and (max-width: 767px) {
  .inner {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}
  .banner1 .content {
    width: 92%;
  }
  .header .header-inner {
    width: 100%;
    padding: 0 4%;
    flex-direction: column;
    align-items: flex-start;
  }
  .header .header-inner .header-logo {
    max-width: 96px;
    margin: 8px 0 4px;
  }
  .header .header-inner .header-right {
    width: 100%;
  }
  .header .header-inner .header-right .header-right-bottom {
    width: 100%;
    height: 44px;
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav {
    height: 44px;
    gap: 14px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item,
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first,
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first .nav-item-p {
    height: 44px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first {
    padding: 0 2px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first:hover,
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first-active {
    border-bottom-width: 3px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-nav .nav-item .nav-item-first .nav-item-p p {
    font-size: 13px;
    line-height: 19px;
    white-space: nowrap;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right {
    gap: 12px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right .header-right-bottom-right-left {
    gap: 12px;
  }
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right .header-right-bottom-right-right a {
    padding: 6px 13px;
    font-size: 13px;
    white-space: nowrap;
  }
  .nav-item-second {
    left: 0;
    transform: translateX(0);
  }
  .banner1 {
    margin-top: 96px;
  }
  .banner1 .content {
    bottom: auto;
    top: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    justify-content: center;
    gap: 22px;
  }
  .banner1 .content .top {
    gap: 18px;
  }
  .banner1 .content .top .tag {
    padding: 6px 14px;
  }
  .banner1 .content .top .tag p {
    font-size: 11px;
    line-height: 17px;
  }
  .banner1 .content .top .title {
    font-size: 26px;
    line-height: 34px;
  }
  .banner1 .content .top .desc {
    font-size: 15px;
    line-height: 24px;
  }
  .banner1 .content .bottom .scroll {
    display: none;
  }
  .banner1 .content .bottom .from {
    gap: 10px;
    flex-wrap: wrap;
  }
  .banner1 .content .bottom .from .text,
  .banner1 .content .bottom .from .text a {
    font-size: 12px;
    line-height: 18px;
  }

  .contacti {
    padding: 42px 0 102px 0;
  }
  .contacti .inner {
    gap: 28px;
  }
  .contacti .inner .section1 {
    gap: 26px;
  }
  .contacti .inner .section1 .section1-top .title {
    font-size: 20px;
    line-height: 36px;
  }
  .contacti .inner .section1 .section1-top .desc {
    line-height: 24px;
  }
  .contacti .inner .section1 .section1-middle {
    gap: 18px;
  }
  .contacti .inner .section1 .section1-middle .section1-middle-item {
    align-items: flex-start;
    gap: 12px;
  }
  .contacti .inner .section1 .section1-middle .section1-middle-item .icon {
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
  }
  .contacti .inner .section1 .section1-bottom {
    gap: 18px;
    flex-wrap: wrap;
  }
  .contacti .inner .section2 {
    border-radius: 14px;
    padding: 24px;
    gap: 20px;
  }
  .contacti .inner .section2 .section2-top {
    font-size: 18px;
    line-height: 27px;
  }
  .contacti .inner .section2 .section2-middle .form-item1 {
    flex-direction: column;
    gap: 16px;
  }
  .contacti .inner .section2 .section2-middle .form-item1 input {
    width: 100%;
  }
  .contacti::after {
    height: 92px;
    background-size: auto 92px;
  }
  .footer {
    padding: 44px 0 86px 0;
  }
  .footer .inner {
    gap: 28px;
  }
  .footer .inner .section1 {
    flex-direction: column;
    gap: 24px;
  }
  .footer .inner .section1 .section1-left,
  .footer .inner .section1 .section1-middle,
  .footer .inner .section1-right {
    width: 100%;
    max-width: none;
  }
  .footer .inner .section1 .section1-left .section1-left-top {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
  }
  .footer .inner .section1 .section1-left .section1-left-top .logo {
    width: 44px;
    min-width: 44px;
    max-width: 44px;
  }
  .footer .inner .section1 .section1-left .section1-left-middle {
    margin-bottom: 22px;
  }
  .footer .inner .section1 .section1-middle .text1,
  .footer .inner .section1-right .text1 {
    margin-bottom: 14px;
  }
  .footer .inner .section1-right .text2 {
    margin-bottom: 16px;
  }
  .footer .section2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer .section2 .footer-side .footer-bottom-infor-a {
    font-size: 13px;
    line-height: 22px;
  }

  .searchDialog .searchDialog-inner,
  .langDialog .langDialog-inner {
    width: 92%;
    border-radius: 14px;
    padding: 36px 24px 28px;
  }
  .searchDialog .searchDialog-inner .searchDialog-close,
  .langDialog .langDialog-inner .langDialog-close {
    width: 104px;
    height: 104px;
    top: -52px;
    right: -52px;
  }
  .searchDialog .searchDialog-inner .searchDialog-close svg,
  .langDialog .langDialog-inner .langDialog-close svg {
    width: 24px;
    height: 24px;
    margin: 0 0 18px 18px;
  }
  .searchDialog .searchDialog-inner .searchDialog-title,
  .langDialog .langDialog-inner .langDialog-title {
    font-size: 20px;
    line-height: 28px;
  }
  .langDialog .langDialog-inner .langDialog-main .langDialog-one {
    width: 100%;
    height: 48px;
    margin-right: 0;
    margin-top: 12px;
    font-size: 16px;
  }
  .sidefixedM .sideitem1 .icon-box p,
  .sidefixedM .sideitem2 .icon-box p {
    font-size: 11px;
  }
}

@media only screen and (max-width: 480px) {
  .header .header-inner .header-right .header-right-bottom .header-right-bottom-right .header-right-bottom-right-right {
    display: none;
  }
  .banner1 .content .top .title {
    font-size: 24px;
    line-height: 32px;
  }
  .contacti .inner .section2 {
    padding: 20px;
  }
  .footer .inner .section1 .section1-left .section1-left-top {
    flex-direction: column;
  }
  .sidefixedM .sideitem1 .icon-box,
  .sidefixedM .sideitem2 .icon-box {
    padding-left: 3px;
    padding-right: 3px;
  }
}

@media only screen and (max-width: 1250px) {
  .header {
    display: none;
  }
  .site-header {
    display: none;
  }
  .header-index.site-header {
    display: none;
  }
  .headerM {
    display: block;
  }
  .headerM .header-inner .header-lang {
    width: 20%;
  }
  .headerM .header-inner .header-lang-one {
    width: 62%;
  }
  .headerM .header-inner .action_item {
    width: 12%;
  }
  .top_nav {
    display: block;
    z-index: 2900;
  }
  .banner1 {
    margin-top: 65px;
  }
  .banner1 {
    margin-top: 65px;
  }
}

@media only screen and (max-width: 850px) {
  .sidefixed .sideitemBase {
    display: none;
  }
  .sidefixedM {
    display: flex;
  }
  .footer {
    padding-bottom: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .headerM .header-inner {
    padding: 18px 0;
  }
  .headerM .logo {
    width: 18%;
  }
  .headerM .header-inner .header-lang {
    width: 34%;
    gap: 12%;
  }
  .headerM .header-inner .header-lang-one {
    width: 58%;
  }
  .headerM .header-inner .langBtn .langBtnA {
    font-size: 15px;
    line-height: 22px;
  }
  .headerM .header-inner .langBtn .langBtn-img {
    width: 24%;
  }
  .headerM .header-inner .action_item {
    width: 16%;
    gap: 5px;
  }
  .headerM .header-inner .action_item .action_item_span_line {
    width: 100%;
  }
  .banner1 {
    margin-top: 60px;
  }
  .banner1 {
    margin-top: 60px;
  }
  .top_nav .top_nav_close {
    padding: 16px 5%;
  }
  .top_nav .top_nav_close .logo {
    width: 16%;
  }
  .top_nav .logo img {
    width: 100%;
  }
  .top_nav .top_nav_close svg {
    width: 7%;
    height: auto;
    margin-top: 4%;
  }
  .top_nav .nav {
    padding: 0 5% 18%;
  }
  .top_nav .nav .li .menu {
    margin-bottom: 10px;
    padding: 9px 0;
  }
  .top_nav .nav .li .menu .name {
    font-size: 16px;
    line-height: 22px;
  }
  .top_nav .nav .li .menu2 .item_val a {
    padding: 8px 0;
    margin-bottom: 4px;
  }
  .top_nav .nav .li .menu2 .item_val a p {
    font-size: 14px;
    line-height: 22px;
  }
  .faq .inner .section1 .tag p{
    font-size: 12px;
  }
}

@media only screen and (max-width: 480px) {
  .headerM .header-inner {
    padding: 16px 0;
  }
  .headerM .logo {
    width: 24%;
  }
  .headerM .header-inner .header-lang {
    width: 42%;
    gap: 12%;
  }
  .headerM .header-inner .header-lang-one {
    width: 60%;
  }
  .headerM .header-inner .langBtn .langBtnA {
    font-size: 13px;
  }
  .headerM .header-inner .langBtn .langBtn-img {
    width: 24%;
  }
  .headerM .header-inner .action_item {
    width: 17%;
  }
  .banner1 {
    margin-top: 60px;
  }
  .banner1 {
    margin-top: 60px;
  }
  .top_nav .nav .li .menu .name {
    font-size: 14px;
  }
  .sidefixedM .sideitem1 .icon-box,
  .sidefixedM .sideitem2 .icon-box {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  box-sizing: content-box;
  transition-property: transform;
}

.swiper-slide {
  flex-shrink: 0;
}

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

.wow[style*="visibility: hidden"] {
  visibility: hidden;
  opacity: 0;
}

.wow.animated,
.wow[style*="visibility: visible"],
.wow.wow-visible {
  visibility: visible;
  opacity: 1;
}

.fadeInUp.animated,
.fadeInUp.wow-visible {
  animation: qcFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fadeIn.animated,
.fadeIn.wow-visible {
  animation: qcFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes qcFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

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

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

  100% {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    background: #102f43;
  }

  .site-footer .top {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 88%;
    gap: 0;
    padding: 34px 0 26px;
  }

  .site-footer .left {
    display: contents;
  }

  .site-footer .logo {
    order: 1;
    width: 50%;
    margin: 0 auto;
  }

  .site-footer .logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .site-footer .left > .text1 {
    order: 2;
    width: 82%;
    margin: 26px auto 0;
    color: #99a1af;
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }

  .site-footer .right {
    position: relative;
    order: 3;
    display: flex;
    justify-content: center;
    width: 60%;
    margin: 44px auto 0;
    gap: 0;
  }

  .site-footer .right::before {
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: 50%;
    width: 1px;
    background: rgba(153, 161, 175, 0.35);
    content: "";
  }

  .site-footer .right .item {
    display: none;
  }

  .site-footer .right .item:first-child {
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: 50% 50%;
    row-gap: 46px;
    width: 100%;
  }

  .site-footer .right .item:first-child > .text1,
  .site-footer .right .item:first-child > .line {
    display: none;
  }

  .site-footer .right .item:first-child .text2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    color: #99a1af;
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
  }

  .site-footer .right .item:first-child .text2 svg {
    display: none;
  }

  .site-footer .right .item:first-child .text2:nth-of-type(1) {
    grid-row: 1;
    grid-column: 1;
    padding-left: 14%;
  }

  .site-footer .right .item:first-child .text2:nth-of-type(4) {
    grid-row: 1;
    grid-column: 2;
    padding-left: 28%;
  }

  .site-footer .right .item:first-child .text2:nth-of-type(2) {
    grid-row: 2;
    grid-column: 1;
    padding-left: 14%;
  }

  .site-footer .right .item:first-child .text2:nth-of-type(5) {
    grid-row: 2;
    grid-column: 2;
    padding-left: 28%;
  }

  .site-footer .right .item:first-child .text2:nth-of-type(3) {
    grid-row: 3;
    grid-column: 1;
    padding-left: 14%;
  }

  .site-footer .right .item:first-child .text2:nth-of-type(6) {
    grid-row: 3;
    grid-column: 2;
    padding-left: 28%;
  }

  .site-footer .contactShare {
    order: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 48%;
    margin: 48px auto 0;
    gap: 0;
  }

  .site-footer .contactShare-item {
    flex: 0 0 18%;
    width: auto;
    height: auto;
  }

  .site-footer .contactShare-item svg {
    display: block;
    width: 100%;
    height: auto;
  }

  .site-footer .bottom {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 88%;
    gap: 18px 0;
    padding: 26px 0 24px;
    border-top: 1px solid rgba(153, 161, 175, 0.8);
  }

  .site-footer .footer-side {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .site-footer .footer-side:nth-child(1) {
    justify-content: flex-start;
    flex: 0 0 50%;
  }

  .site-footer .footer-side:nth-child(2) {
    justify-content: flex-end;
    flex: 0 0 50%;
  }

  .site-footer .footer-side:nth-child(3) {
    justify-content: center;
    flex: 0 0 100%;
  }

  .site-footer .footer-bottom-infor-a {
    color: #99a1af;
    font-family: "Alibaba PuHuiTi";
    font-weight: 700;
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 450px) {
  .site-footer .top,
  .site-footer .bottom {
    width: 88%;
  }

  .site-footer .top {
    padding: 30px 0 24px;
  }

  .site-footer .logo {
    width: 54%;
  }

  .site-footer .left > .text1 {
    width: 90%;
    margin-top: 22px;
    font-size: 12px;
    line-height: 22.8px;
  }

  .site-footer .right {
    width: 90%;
    margin-top: 36px;
  }

  .site-footer .right .item:first-child {
    row-gap: 25px;
  }

  .site-footer .right .item:first-child .text2 {
    font-size: 17px;
    line-height: 20px;
  }

  .site-footer .contactShare {
    width: 50%;
    margin-top: 44px;
  }

  .site-footer .bottom {
    gap: 14px 0;
    padding: 22px 0 22px;
  }

  .site-footer .footer-side {
    gap: 8px;
  }

  .site-footer .footer-bottom-infor-a {
    font-weight: 400;
    font-size: 12px;
  }
}

.site-contact .form_item {
  display: flex;
  align-items: flex-start;
  gap: 5.5%;
  margin-top: 30px;
}

.site-contact .form .title + .form_item {
  margin-top: 38px;
}

.site-contact .form_item .input {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-width: 0;
}

.site-contact .form_item .label {
  color: #003771;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.site-contact .form_item .label i {
  color: #fb8933;
  font-style: normal;
}

.site-contact .form_item .value {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  padding: 17px 22px;
  background: #f8f9fb;
  border: 1px solid #e3e8ef;
  border-radius: 18px;
}

.site-contact .form_item .value input,
.site-contact .form_item .value textarea {
  width: 100%;
  color: #003771;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  background: transparent;
  border: 0;
  outline: none;
}

.site-contact .form_item .value input::placeholder,
.site-contact .form_item .value textarea::placeholder {
  color: #9aa6b5;
}

.site-contact .form_item:has(#contactmessage) .value {
  align-items: flex-start;
  aspect-ratio: 2.15 / 1;
  padding: 18px 22px;
}

.site-contact .form_item:has(#contactmessage) .value textarea {
  align-self: flex-start;
  height: 100%;
  min-height: 96px;
  resize: none;
  overflow: auto;
}

@media (max-width: 640px) {
  .site-contact .form_item {
    flex-direction: column;
    gap: 22px;
    margin-top: 24px;
  }

  .site-contact .form .title + .form_item {
    margin-top: 22px;
  }

  .site-contact .form_item .input {
    width: 100%;
  }

  .site-contact .form_item .label {
    width: 100%;
    font-size: 19px;
    line-height: 27px;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    line-height: 20px;
  }

  .site-contact .form_item .value {
    margin-top: 9px;
    padding: 18px 22px;
    border-radius: 18px;
  }

  .site-contact .form_item .value input,
  .site-contact .form_item .value textarea {
    font-size: 16px;
    line-height: 26px;
  }

  .site-contact .form_item:has(#contactmessage) .value {
    aspect-ratio: 1.85 / 1;
    padding: 18px 22px;
  }
  .site-contact .submit{
    font-size: 16px;
line-height: 24px;
  }
  .site-contact .tips{
    font-size: 12px;
line-height: 16px;
  }
}

@media (max-width: 450px) {
  .site-contact .form_item {
    gap: 10px;
    margin-top: 10px;
  }

  .site-contact .form .title + .form_item {
    margin-top: 20px;
  }


  .site-contact .form_item .value {
    padding: 16px 20px;
    border-radius: 17px;
  }

  .site-contact .form_item .value input,
  .site-contact .form_item .value textarea {
    font-size: 15px;
    line-height: 24px;
  }

  .site-contact .form_item:has(#contactmessage) .value {
    aspect-ratio: 1.78 / 1;
    padding: 17px 20px;
  }
}

/* Global clickable hover effects */
a[href].button,
a[href][class*="button"],
a[href][class*="btn"],
a[href][class*="more"],
button:not(.swiper-pagination-bullet):not(.swiper-button-prev):not(.swiper-button-next),
[role="button"],
input[type="button"],
input[type="submit"],
.site-contact .submit,
.header-index .header-index-search,
.header-index .header-index-langs,
.site-header .search,
.site-header .header-contact,
.sidefixed .sideitemTop,
.sidefixed .sideitem1,
.sidefixed .sideitem2,
.sidefixed .sideitem3,
.sidefixed .sideitem4,
.sidefixedM .sideitem1 {
  cursor: pointer;
  transition-property: color, background-color, border-color, box-shadow, opacity, filter, transform, text-decoration-color;
  transition-duration: 0.28s;
  transition-timing-function: ease;
}

a[href].button img,
a[href].button svg,
a[href].button svg path,
a[href][class*="button"] img,
a[href][class*="button"] svg,
a[href][class*="button"] svg path,
a[href][class*="btn"] img,
a[href][class*="btn"] svg,
a[href][class*="btn"] svg path,
a[href][class*="more"] img,
a[href][class*="more"] svg,
a[href][class*="more"] svg path,
button img,
button svg,
button svg path,
.site-contact .submit svg,
.site-contact .submit svg path {
  transition-property: transform, opacity, filter;
  transition-duration: 0.28s;
  transition-timing-function: ease;
}

a[href].button:focus-visible,
a[href][class*="button"]:focus-visible,
a[href][class*="btn"]:focus-visible,
a[href][class*="more"]:focus-visible,
button:not(.swiper-pagination-bullet):not(.swiper-button-prev):not(.swiper-button-next):focus-visible,
[role="button"]:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
.site-contact .submit:focus-visible {
  outline: 2px solid #fb903b;
  outline-offset: 4px;
}

a[href].button:hover,
a[href][class*="button"]:hover,
a[href][class*="btn"]:hover,
a[href][class*="more"]:hover,
button:not(.swiper-pagination-bullet):not(.swiper-button-prev):not(.swiper-button-next):hover,
[role="button"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.site-contact .submit:hover,
.header-index .header-index-contact:hover,
.site-header .header-contact:hover,
.successPage .active-back:hover {
  color: #ffffff !important;
  background-color: #fb903b !important;
  border-color: #fb903b !important;
  box-shadow: 0 14px 30px rgba(251, 144, 59, 0.28) !important;
  filter: saturate(1.08);
  transform: translateY(-3px) scale(1.02);
}

a[href].button:hover svg,
a[href][class*="button"]:hover svg,
a[href][class*="btn"]:hover svg,
a[href][class*="more"]:hover svg,
button:not(.swiper-pagination-bullet):not(.swiper-button-prev):not(.swiper-button-next):hover svg,
[role="button"]:hover svg,
.site-contact .submit:hover svg {
  animation: horizontalMove 1.4s ease-in-out infinite;
}

.banner .button:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16), 0 18px 36px rgba(0, 55, 113, 0.24) !important;
  color: #003771 !important;
  filter: none !important;
  transform: translateY(-4px) !important;
}

.banner .button:hover .icon {
  background-color: #fb903b;
  transform: none !important;
}

.model6 .button {
  transition: none !important;
}

.model6 .button:hover {
  background-color: #003771 !important;
  box-shadow: 0px 0px 4px -2px #0000001a !important;
  color: #ffffff !important;
  filter: none !important;
  transform: none !important;
}

.model6 .button:hover .icon,
.model6 .button:hover svg {
  animation: none !important;
  transform: none !important;
}

.model6 .card1 .more {
  transition: none !important;
}

.model6 .card1 .more:hover {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
  filter: none !important;
  transform: none !important;
}

.model6 .card1 .more:hover svg {
  animation: none !important;
  transform: none !important;
}

.site-footer .contactShare-item:hover {
  opacity: 0.85 !important;
  transform: none !important;
}

.model8 .swiper .btn,
.model8 .swiper .btn .prev,
.model8 .swiper .btn .next,
.model3 .btn,
.model3 .btn .prev,
.model3 .btn .next {
  transition: none !important;
}

.model8 .swiper .btn:hover,
.model8 .swiper .btn .prev:hover,
.model8 .swiper .btn .next:hover,
.model3 .btn:hover,
.model3 .btn .prev:hover,
.model3 .btn .next:hover {
  filter: none !important;
  transform: none !important;
}

.model8 .swiper .btn .prev:hover {
  background-color: #f1f5f9 !important;
  box-shadow: none !important;
}

.model8 .swiper .btn .next:hover {
  background-color: #fb903b !important;
  box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a !important;
}

.model3 .btn .prev:hover {
  background-color: #ffffff !important;
  border-color: #e2e8f0 !important;
  box-shadow: none !important;
}

.model3 .btn .next:hover {
  background-color: #f97316 !important;
  border-color: #f97316 !important;
  box-shadow: 0px 4px 6px -4px #f9731633, 0px 10px 15px -3px #f9731633 !important;
}

.model8 .swiper .btn:hover svg,
.model8 .swiper .btn:hover svg path,
.model8 .swiper .btn .prev:hover svg,
.model8 .swiper .btn .prev:hover svg path,
.model8 .swiper .btn .next:hover svg,
.model8 .swiper .btn .next:hover svg path,
.model3 .btn:hover svg,
.model3 .btn:hover svg path,
.model3 .btn .prev:hover svg,
.model3 .btn .prev:hover svg path,
.model3 .btn .next:hover svg,
.model3 .btn .next:hover svg path {
  animation: none !important;
  transform: none !important;
}

.banner .prev,
.banner .next {
  transition-property: background-color, border-color, box-shadow, filter, transform;
  transition-duration: 0.28s;
  transition-timing-function: ease;
}

.banner .prev:hover {
  box-shadow: 0 14px 30px rgba(251, 144, 59, 0.3);
  transform: translateY(-50%) scale(1.06);
}

.banner .next:hover {
  box-shadow: 0 14px 30px rgba(251, 144, 59, 0.3);
  transform: translateY(-50%) scale(1.06);
}

.model1 .pro_img .prev:hover {
  background-color: #fb903b !important;
  box-shadow: none !important;
  filter: none !important;
  transform: translateY(-50%) !important;
}

.model1 .pro_detail .next:hover {
  background-color: #fb903b !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.sidefixed .sideitemOther .sideitem-chat:hover,
.sidefixedM .sideitem1:hover {
  background-color: #fb903b !important;
  border-color: #fb903b !important;
  box-shadow: 0 12px 26px rgba(251, 144, 59, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  a[href].button,
  a[href][class*="button"],
  a[href][class*="btn"],
  a[href][class*="more"],
  button:not(.swiper-pagination-bullet):not(.swiper-button-prev):not(.swiper-button-next),
  [role="button"],
  input[type="button"],
  input[type="submit"],
  .site-contact .submit {
    transition: none !important;
  }

  a[href].button:hover,
  a[href][class*="button"]:hover,
  a[href][class*="btn"]:hover,
  a[href][class*="more"]:hover,
  button:not(.swiper-pagination-bullet):not(.swiper-button-prev):not(.swiper-button-next):hover,
  [role="button"]:hover,
  input[type="button"]:hover,
  input[type="submit"]:hover,
  .site-contact .submit:hover {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .container > .page,
  .model1 .page,
  .factory .page,
  .honor .page,
  .test .page {
    gap: 10px !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .page > .pages {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100vw - 124px);
    gap: 8px !important;
    justify-content: center;
  }

  .page > .pre-pageBtn,
  .page > .next-pageBtn {
    flex: 0 0 44px;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 12px !important;
  }

  .page > .pages > .num {
    flex: 0 0 34px;
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .page > .pages > .ellipsis {
    flex: 0 0 14px;
    width: 14px;
    justify-content: center;
    font-size: 14px !important;
  }

  .page > .pre-pageBtn svg,
  .page > .next-pageBtn svg {
    width: 9px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .container > .page,
  .model1 .page,
  .factory .page,
  .honor .page,
  .test .page {
    gap: 6px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .page > .pages {
    max-width: calc(100vw - 104px);
    gap: 5px !important;
  }

  .page > .pre-pageBtn,
  .page > .next-pageBtn {
    flex-basis: 40px;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
  }

  .page > .pages > .num {
    flex-basis: 30px;
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 40px !important;
    font-size: 14px !important;
  }
}
