:root {
  --theme: #14837a;
  --duration: 0.45s;
  --header-height: 100px;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font15: clamp(12px, 0.15rem, 15px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  --font68: clamp(31px, 0.68rem, 68px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font88: clamp(32px, 0.88rem, 88px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
  --space-min: 30px;
  --space: 45px;
}
html {
  font-size: calc(100vw / 19.2);
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
.wrap {
  width: 86%;
  margin: 0 auto;
  max-width: 1600px;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .wrap {
    width: 92%;
  }
}
/*
@media (max-width: 768px) {
  html {
    font-size: calc(100vw * 76.8 / 768);
  }
}

@media (max-width: 480px) {
  html {
    font-size: calc(100vw / 7.5);
  }
} */
@font-face {
  font-family: "BebasNeue";
  src: url("https://font.fonwi.com/xinweb/fonts/BebasNeue-1.otf");
}
@font-face {
  font-family: "HONOR Sans CN";
  src: url("https://font.fonwi.com/xinweb/fonts/HONORSansCN-Regular.ttf");
}
body {
  font-size: 14px;
  font-family: HONOR Sans CN, sans-serif;
  line-height: normal;
}
input,
select,
textarea {
  font-family: HONOR Sans CN, sans-serif;
}
body.lock {
  overflow: hidden;
}
header {
  width: 100%;
  height: var(--header-height);
  transition: background 0.6s ease;
  /* 激活的样式 */
}
header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 199;
}
header.active,
header.hover {
  background-color: #fff;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}
header.active .header-wrap .logo a .active,
header.hover .header-wrap .logo a .active {
  display: block;
}
header.active .header-wrap .logo a .default,
header.hover .header-wrap .logo a .default {
  display: none;
}
header.active .header-wrap .nav .nav-top .nav-top-link,
header.hover .header-wrap .nav .nav-top .nav-top-link {
  color: #000;
}
header.active {
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.03);
}
.header-wrap {
  max-width: 1850px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-wrap .logo {
  user-select: none;
  cursor: pointer;
}
.header-wrap .logo a img {
  display: block;
  max-width: max(1.76rem, 90px);
}
.header-wrap .logo a .active {
  display: none;
}
.header-wrap .nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 0.35rem;
  transition: 0.45s ease all;
  transform-origin: center center;
}
.header-wrap .nav.hide {
  visibility: hidden;
  transform: scale(0);
}
.header-wrap .nav::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 0.4rem;
}
.header-wrap .nav .nav-item {
  margin-right: 0.56rem;
  height: 100%;
  position: relative;
}
.header-wrap .nav .nav-item:last-of-type {
  margin-right: 0;
}
.header-wrap .nav .nav-item.current .nav-top .nav-top-link span::after,
.header-wrap .nav .nav-item:hover .nav-top .nav-top-link span::after {
  width: 100%;
}
.header-wrap .nav .nav-item .nav-top {
  height: 100%;
}
.header-wrap .nav .nav-item .nav-top .nav-top-link {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
}
.header-wrap .nav .nav-item .nav-top .nav-top-link span {
  position: relative;
  z-index: 2;
}
.header-wrap .nav .nav-item .nav-top .nav-top-link span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  width: 0;
  height: max(3px, 0.05rem);
  background-color: #14837a;
  transition: var(--duration) ease;
  z-index: -1;
}
.header-wrap .nav .nav-item .nav-dropdown {
  position: fixed;
  left: 0;
  top: var(--header-height);
  z-index: 67;
  background: #ffffff;
  width: 100%;
  height: auto;
  padding-top: max(0.6rem, 30px);
  padding-bottom: max(0.98rem, 40px);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  display: none;
  --leftUnit: 28px;
  /* 产品下拉 */
  /* 应用方案下拉 */
  max-height: 76vh;
  overflow-y: auto; 
}

/* 2025-6-7 修改 */
.header-wrap .nav .nav-item .nav-dropdown::-webkit-scrollbar {
  width: 7px;
  background-color: #ccc;
}

.header-wrap .nav .nav-item .nav-dropdown::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 10px;
}

/* 2025-6-7 修改 */
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item {
  width: 22.5%;
  flex-shrink: 0;
  margin-right: 3.332%;
  flex-shrink: 0;
}

.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item:not(:nth-child(-n + 4)) {
  margin-top: max(45px, 0.75rem);
}

.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item:nth-child(4n) {
  margin-right: 0;
}

.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: max(15px, 0.21rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1;
  margin-bottom: max(0.3rem, 15px);
  position: relative;
  z-index: 2;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-top:hover .i-top-text {
  color: #14837a;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-top:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-top:hover img {
  filter: none;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-top img {
  filter: contrast(0) brightness(0);
  transition: var(--duration);
  max-width: 26px;
  object-fit: contain;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-top .i-top-text {
  font-weight: bold;
  font-size: var(--font24);
  color: #000000;
  margin-left: max(0.19rem, 10px);
  transition: var(--duration);
  flex: 1;
  min-width: 0;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #14837a;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item.active .cate1 .pre {
  padding-left: var(--leftUnit);
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item.active .cate1 .pre .pre-icon {
  left: 0;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item.active .cate1 .pre .cate1-text {
  color: #14837a;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item.active .cate1 .icon img {
  transform: rotate(0);
  filter: none;
  opacity: 1;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.7;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate1 .pre {
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  transition: var(--duration);
  flex: 1;
  min-width: 0;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate1 .pre .pre-icon {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: -100%;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate1 .pre .cate1-text {
  display: block;
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate1 .icon {
  display: flex;
  align-items: center;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate1 .icon img {
  transform: rotate(-90deg);
  filter: contrast(0);
  opacity: 0.6;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate2 {
  margin-bottom: 20px;
  display: none;
  padding-left: var(--leftUnit);
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate2 .cate2-item {
  margin-bottom: 2px;
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate2 .cate2-item .cate2-text {
  display: block;
  font-weight: 400;
  font-size: var(--font16);
  color: rgba(1, 1, 1, 0.6);
  line-height: 1.5;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .nav-dropdown.pro-dropdown .list .item .i-bottom .bottom-item .cate2 .cate2-item .cate2-text:hover {
  color: #14837a;
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown {
  padding-top: max(30px, 0.6rem);
  padding-bottom: max(30px, 0.8rem);
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list {
  display: flex;
  flex-wrap: wrap;
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item {
  width: 22.5%;
  margin-right: 3.332%;
  flex-shrink: 0;
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item:nth-child(n + 5) {
  margin-top: max(30px, 0.72rem);
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item:nth-child(4n) {
  margin-right: 0;
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item .item-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: max(15px, 0.21rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--duration);
  position: relative;
  z-index: 2;
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item .item-link .link-icon {
  transition: var(--duration);
  filter: grayscale(100%) brightness(0);
  margin-right: max(15px, 0.2rem);
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item .item-link .link-text {
  font-weight: bold;
  font-size: var(--font24);
  color: #000000;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item .item-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #14837a;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item .item-link:hover .link-icon {
  filter: none;
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item .item-link:hover .link-text {
  color: #14837a;
}
.header-wrap .nav .nav-item .nav-dropdown.common-dropdown .list .item .item-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.header-wrap .other {
  display: flex;
  align-items: center;
}
.header-wrap .other .other-item {
  width: max(30px, 0.5rem);
  height: max(30px, 0.5rem);
  background: #14837a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: bold;
  font-size: var(--font20);
  color: #ffffff;
  margin-right: 11px;
  line-height: 1;
}
.header-wrap .other .other-item:last-child {
  margin-right: 0;
}
.header-wrap .other .other-item img {
  max-width: 70%;
  object-fit: contain;
}
.header-wrap .header-search {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  background-color: #fff;
  display: none;
  --opacity-value: 0.65;
}
.header-wrap .header-search .form-search {
  position: absolute;
  top: 62%;
  transform: translateY(-50%);
  left: 10px;
  user-select: none;
  cursor: pointer;
  opacity: var(--opacity-value);
}
.header-wrap .header-search input {
  width: 100%;
  height: max(40px, 0.5rem);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-left: 50px;
  padding-right: 50px;
  font-size: 15px;
  background-color: transparent;
}
.header-wrap .header-search .form-close {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  right: 10px;
  width: 16px;
  user-select: none;
  cursor: pointer;
  opacity: var(--opacity-value);
}
/* 网页尾部 */
footer {
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 0.93rem;
}
footer .foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: max(15px, 0.29rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .foot-top .foot-logo {
  max-width: 176px;
}
footer .foot-top .icon-list {
  display: flex;
  align-items: center;
}
footer .foot-top .icon-list .item {
  margin-right: 10px;
  position: relative;
  z-index: 2;
}
footer .foot-top .icon-list .item:last-of-type {
  margin-right: 0;
}
footer .foot-top .icon-list .item .icon {
  width: max(45px, 0.64rem);
  height: max(45px, 0.64rem);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
footer .foot-top .icon-list .item .icon img {
  opacity: 0.4;
  transition: var(--duration);
}
footer .foot-top .icon-list .item .qrcode {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 106%;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  transition: var(--duration);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
}
footer .foot-top .icon-list .item .qrcode img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
footer .foot-top .icon-list .item:hover .qrcode {
  transform: translateX(-50%) scale(1, 1);
}
footer .foot-top .icon-list .item:hover .icon img {
  opacity: 1;
}
footer .foot-bottom {
  margin-top: max(30px, 0.58rem);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.03rem;
}
footer .foot-bottom .foot-common-title {
  display: block;
  font-weight: bold;
  font-size: var(--font20);
  color: #ffffff;
  line-height: 1.5;
  padding-bottom: max(15px, 0.22rem);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
footer .foot-bottom .foot-common-desc {
  font-weight: 400;
  font-size: var(--font16);
  color: #ffffff;
  line-height: 1.625;
  margin-top: max(10px, 0.21rem);
  overflow-wrap: break-word;
}
footer .foot-bottom .left {
  width: 21.875%;
  flex-shrink: 0;
  margin-right: 3.25%;
}
footer .foot-bottom .center {
  width: 26.9375%;
  flex-shrink: 0;
  margin-right: 4.75%;
}
footer .foot-bottom .center .foot-center-top {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  user-select: none;
  cursor: pointer;
}
footer .foot-bottom .center .foot-center-top .bar {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  background-color: #fff;
  transition: 0.45s ease;
}
footer .foot-bottom .center .foot-center-top .foot-common-title {
  margin-right: max(10px, 0.3rem);
  border: none;
  white-space: nowrap;
}
footer .foot-bottom .center .foot-center-top .foot-common-title:last-of-type {
  margin-right: 0;
}
footer .foot-bottom .center .foot-common-desc {
  display: none;
}
footer .foot-bottom .center .foot-common-desc.active {
  display: block;
}
footer .foot-bottom .right {
  width: 43.1875%;
  flex-shrink: 0;
}
footer .foot-bottom .right form {
  display: block;
  width: 100%;
}
footer .foot-bottom .right form .input-line {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
footer .foot-bottom .right form .input-line input {
  height: max(0.6rem, 45px);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: max(15px, 0.22rem);
  font-weight: bold;
  font-size: var(--font16);
  background-color: transparent;
  color: #ffffff;
  transition: var(--duration) ease;
}
footer .foot-bottom .right form .input-line input:focus {
  border-color: #ffffff;
}
footer .foot-bottom .right form .input-line input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
footer .foot-bottom .right form .input-line input:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}
footer .foot-bottom .right form .input-line input.min {
  width: 30.39%;
}
footer .foot-bottom .right form .input-line input.max {
  width: 34.732%;
}
footer .foot-bottom .right form .textarea-line {
  margin-bottom: 15px;
}
footer .foot-bottom .right form .textarea-line textarea {
  resize: none;
  padding: max(15px, 0.23rem) max(15px, 0.22rem);
  font-weight: bold;
  font-size: var(--font16);
  color: #ffffff;
  width: 100%;
  height: 160px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  transition: var(--duration) ease;
}
footer .foot-bottom .right form .textarea-line textarea:focus {
  border-color: #ffffff;
}
footer .foot-bottom .right form .textarea-line textarea::-webkit-scrollbar {
  width: 7px;
  background-color: #fff;
  border-radius: 10px;
}
footer .foot-bottom .right form .textarea-line textarea::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 10px;
}
footer .foot-bottom .right form .textarea-line textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
footer .foot-bottom .right form .foot-submit-btn {
  width: 120px;
  height: 50px;
  background: #ffffff;
  border-radius: 10px;
  font-weight: bold;
  font-size: var(--font16);
  color: #14837a;
  user-select: none;
  cursor: pointer;
}
footer .foot-copyright {
  display: flex;
  align-items: center;
  padding-top: max(10px, 0.2rem);
  padding-bottom: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .foot-copyright .left {
  display: flex;
  align-items: center;
}
footer .foot-copyright .left .text {
  font-weight: 400;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.4);
}
footer .foot-copyright .left .text::after {
  content: "|";
  margin-left: 5px;
  margin-right: 5px;
}
footer .foot-copyright .left .text:last-child::after {
  display: none;
}
footer .foot-copyright .right {
  margin-left: auto;
}
footer .foot-copyright .right a {
  font-weight: 400;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.4);
  transition: var(--duration);
}
footer .foot-copyright .right a:hover {
  color: #fff;
}
.page-right-menu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 18;
}
.page-right-menu .menu-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: max(60px, 0.8rem);
  height: max(60px, 0.8rem);
  background: #14837a;
  border-radius: 10px;
  position: relative;
  margin-bottom: 2px;
  user-select: none;
  cursor: pointer;
  /* 拨打电话 */
  /* 回到顶部 */
}
.page-right-menu .menu-item .icon {
  margin-bottom: 8px;
}
.page-right-menu .menu-item .icon img {
  width: max(0.24rem, 14px);
}
.page-right-menu .menu-item .text {
  font-weight: bold;
  font-size: var(--font14);
  color: #ffffff;
  line-height: 1;
}
.page-right-menu .menu-item .position-phone {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width var(--duration);
  background-color: #14837a;
  border-radius: 10px;
  overflow: hidden;
}
.page-right-menu .menu-item .position-phone .phone-num {
  color: #fff;
  font-size: var(--font18);
  white-space: nowrap;
  font-weight: bold;
}
.page-right-menu .menu-item .position-phone span {
  display: block;
  margin: 10px;
}
.page-right-menu .menu-item.phone-item:hover .position-phone {
  width: 180px;
}
.page-right-menu .menu-item.go-top {
  background-color: #fff;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.03);
}
.page-right-menu .menu-item.go-top .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
@media (min-width: 1201px) {
  /* 手机端导航和按钮都隐藏掉 */
  .phone-nav,
  .phone-btn {
    display: none !important;
  }
}
@media (max-width: 1450px) {
  .header-wrap .other .other-item img {
    max-width: 50%;
  }
  .header-wrap .other .other-item {
    font-size: 12px;
  }
}
/* 隐藏pc的导航 */
@media (max-width: 1200px) {
  :root {
    --header-height: 70px;
  }
  .header-wrap .pc-nav {
    display: none;
  }
  .header-wrap .other {
    margin-left: auto;
  }
  .header-wrap .phone-btn {
    width: 30px;
    display: block;
    margin-left: 15px;
    user-select: none;
    cursor: pointer;
  }
  .header-wrap .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .header-wrap .phone-btn.active span:nth-child(2) {
    display: none;
  }
  .header-wrap .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg);
  }
  .header-wrap .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  .header-wrap .phone-btn span:nth-child(3) {
    margin-bottom: 0;
  }
  .phone-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    padding: 20px 5%;
    overflow-y: auto;
    display: none;
    /* 产品三级下拉 */
  }
  .phone-nav .nav-item {
    margin-bottom: 20px;
  }
  .phone-nav .nav-item .nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .phone-nav .nav-item .nav-top .icon {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    user-select: none;
  }
  .phone-nav .nav-item .nav-top .icon .line1 {
    width: 20px;
    height: 2px;
    background-color: #000;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .phone-nav .nav-item .nav-top .icon .line2 {
    width: 2px;
    height: 20px;
    background-color: #000;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .phone-nav .nav-item .nav-top.active .nav-top-link {
    color: var(--theme);
    font-weight: 700;
  }
  .phone-nav .nav-item .nav-top.active .icon .line2 {
    transform: translateX(-50%) rotate(90deg);
    background-color: var(--theme);
  }
  .phone-nav .nav-item .nav-top.active .icon .line1 {
    background-color: var(--theme);
  }
  .phone-nav .nav-item .nav-top-link {
    font-size: var(--font32);
    color: #000;
    transition: var(--duration);
  }
  .phone-nav .nav-item .nav-dropdown {
    padding-left: 1em;
    padding-right: 1.5em;
    margin-top: 15px;
    display: none;
  }
  .phone-nav .nav-item .nav-dropdown .item {
    margin-bottom: 7px;
  }
  .phone-nav .nav-item .nav-dropdown .item a {
    font-size: var(--font22);
    color: #000;
    transition: var(--duration);
  }
  .phone-nav .nav-item .nav-dropdown .item a:hover {
    color: var(--theme);
  }
  .phone-nav .pro-dropdown .pro-item {
    margin-bottom: 20px;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .pro-top-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .pro-top-link .pro-icon img {
    filter: contrast(0) brightness(0);
    transition: var(--duration);
    max-width: 26px;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .pro-top-link .pro-text {
    color: #000;
    font-size: 18px;
    margin-left: 15px;
    transition: var(--duration);
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .icon {
    width: 20px;
    height: 20px;
    position: relative;
    user-select: none;
    cursor: pointer;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .icon .line1 {
    width: 20px;
    height: 2px;
    background-color: #000;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .icon .line2 {
    width: 2px;
    height: 20px;
    background-color: #000;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .phone-nav .pro-dropdown .pro-item .pro-top.active .pro-top-link .pro-icon img {
    filter: none;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top.active .pro-text {
    color: var(--theme);
  }
  .phone-nav .pro-dropdown .pro-item .pro-top.active .icon .line1 {
    background-color: var(--theme);
  }
  .phone-nav .pro-dropdown .pro-item .pro-top.active .icon .line2 {
    transform: translateX(-50%) rotate(90deg);
    background-color: var(--theme);
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate-area {
    display: none;
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate {
    padding-left: 15px;
    margin-top: 20px;
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-three a {
    font-size: 16px;
    color: #000000;
    transition: var(--duration);
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-three a:hover {
    color: var(--theme);
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-list .cate-item {
    width: 32%;
    margin-right: 1.5%;
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-list .cate-item a {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    transition: var(--duration);
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-list .cate-item a:hover {
    color: var(--theme);
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-list .cate-item:nth-child(3n) {
    margin-right: 0;
  }
  /* 底部 */
  footer .foot-bottom {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .foot-bottom .left,
  footer .foot-bottom .center {
    margin-right: 0;
    width: 47.5%;
  }
  footer .foot-bottom .right {
    width: 100%;
    margin-top: max(25px, 0.45rem);
  }
}
@media (max-width: 768px) {
  .header-wrap .other .other-item.head-search-btn {
    display: none;
  }
  footer .foot-bottom .left,
  footer .foot-bottom .center {
    width: 100%;
  }
  footer .foot-bottom .center {
    margin-top: 25px;
  }
  .page-right-menu .menu-item {
    width: 45px;
    height: 45px;
  }
  .page-right-menu .menu-item .text {
    display: none;
  }
  .page-right-menu .menu-item .icon {
    margin-bottom: 0;
  }
  footer .foot-copyright .left {
    flex-wrap: wrap;
  }
  footer .foot-copyright .left .text {
    margin-bottom: 7px;
  }
  footer .foot-copyright {
    flex-wrap: wrap;
  }
  footer .foot-copyright .right {
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .phone-nav .nav-item .nav-top-link {
    font-size: 18px;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .pro-top-link .pro-text {
    font-size: 16px;
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-three a {
    font-size: 14px;
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-list {
    justify-content: space-between;
  }
  .phone-nav .pro-dropdown .pro-item .pro-cate .cate-list .cate-item {
    width: 47.5%;
    margin-right: 0;
  }
  .phone-nav .pro-dropdown .pro-item .pro-top .pro-top-link .pro-icon img {
    width: 18px;
  }
  .page-right-menu {
    display: none;
  }
  footer .foot-top {
    flex-wrap: wrap;
  }
  footer .foot-top .foot-logo img {
    max-width: 130px;
    object-fit: contain;
  }
  footer .foot-top .icon-list {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }
  footer .foot-bottom .center .foot-center-top .foot-common-title {
    margin-right: 15px;
  }
  footer .foot-bottom .right form .input-line {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  footer .foot-bottom .right form .input-line input.min,
  footer .foot-bottom .right form .input-line input.max {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  footer .foot-bottom .right form .textarea-line textarea {
    height: 110px;
  }
  footer .foot-bottom .right form .foot-submit-btn {
    height: 40px;
  }
  footer .foot-top .icon-list .item .icon {
    width: 35px;
    height: 35px;
  }
  footer .foot-top .icon-list .item .icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    object-position: center center;
  }
}
.w-28 {
  width: 28px;
}
