* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
img {
  vertical-align: top;
}
li {
  list-style: none;
}
em,
i {
  font-style: normal;
}
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

:root {
  /*--font-16: max(0.16rem, 14px);
  --font-18: max(0.18rem, 16px);
  --font-24: clamp(18px, 0.24rem, 24px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font40: clamp(23px, 0.4rem, 40px);
  --font60: clamp(30px, 0.6rem, 60px);*/
 	--font-16: max(0.16rem, 14px);
  --font-18: max(0.18rem, 16px);
  --font-24: clamp(17px, 0.24rem, 24px);
  --font30: clamp(18px, 0.3rem, 30px);
  --font40: clamp(23px, 0.4rem, 40px);
  --font60: clamp(28px, 0.6rem, 60px);
}
/*202606*/
@media screen and (max-width: 1920px) and (min-width: 992px){
	:root {
	  --font-16: 0.8333333333333333vw;
  	--font-18: 0.9375vw;
  	--font-24: 1.25vw;
  	--font30: 1.5625vw;
  	--font40: 2.083333333333333vw;
  	--font60: 3.125vw;
	}
}


html {
  font-size: calc(100 * 100vw / 1920);
}
@media (max-width: 768px) {
  html {
    /* font-size: calc(100 * 100vw / 768); */
    font-size: calc(100vw / 15.36);
  }
}

@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
/* 引入字体包 */
@font-face {
  font-family: "HONOR Sans CN", sans-serif;
  src: url("../fonts/HONORSansCN-Regular.ttf");
}
@media (max-width: 768px) {
  :root {
    --font-18: max(0.18rem, 16px);
  }
}
body {
  font-family: "HONOR Sans CN", sans-serif;
  font-size: 0.14rem;
}
body.lock {
  overflow: hidden;
}
.wrap-max {
  width: 97.292%;
  max-width: 1868px;
  margin-left: auto;
  margin-right: auto;
}
.header {
  display: flex;
  align-items: center;
  height: 95px;
  position: relative;
}
@media (min-width: 1201px){
	.header {
		justify-content: space-between;
	}
}
.header .logo img {
  display: block;
  /* width: max(3.3rem, 170px); */
  height: auto;
  object-fit: contain;
}
.header .nav {
  display: flex;
  /*margin-left: 12.848%;*/
  height: 100%;
}
.header .nav li {
  position: relative;
  z-index: 6;
  margin-right: max(0.42rem, 15px);
  height: 100%;
  display: flex;
  align-items: center;
  /** 产品下拉 */
}
.header .nav li .nav-top a {
  font-family: HONOR Sans CN, sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  transition: all 0.45s ease;
  white-space: nowrap;
  position: relative;
}
@media (max-width: 1580px){
	.header .nav li .nav-top a{
		font-size: 18px;
	}
}
.header .nav li .nav-top > a > i{
  display: inline-block;
  margin-left: 10px;
  width: 13px;
  height: 10px;
  background: url(../images/arrow-down.png) center no-repeat;
  background-size: 100% auto;
}
.header .nav li:hover .nav-top > a > i {
  background: url(../images/arrow-down_p.png) center no-repeat;
  background-size: 100% auto;
}
.header .nav li.current .nav-top > a i {
  background: url(../images/arrow-down_p.png) center no-repeat;
  background-size: 100% auto;
}
.header .nav li .nav-top a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 1px;
  background-color: #018a9a;
  transition: all 0.45s ease;
}
.header .nav li .nav-top a:hover {
  color: #018a9a;
}
.header .nav li:last-of-type {
  margin-right: 0;
}
.header .nav li.current .nav-top a {
  color: #018a9a;
}
.header .nav li.current .nav-top a::after {
  width: 100%;
}
.header .nav li .nav-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 100%;
  height: auto;
  padding: 20px 10px;
  background-color: #fff;
  width: 210px;
  text-align: center;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: none;
}
.header .nav li .nav-bottom div {
  width: 100%;
  margin-bottom: 13px;
}
.header .nav li .nav-bottom div:last-of-type {
  margin-bottom: 0;
}
.header .nav li .nav-bottom a {
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  transition: all 0.45s ease;
  position: relative;
  white-space: nowrap;
}
.header .nav li .nav-bottom a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 1px;
  background-color: #018a9a;
  transition: all 0.45s ease;
}
.header .nav li .nav-bottom a:hover {
  color: #018a9a;
}
.header .nav li .nav-bottom a:hover::after {
  width: 100%;
}
.header .nav li .pro-nav-bottom {
  position: fixed;
  left: 50%;
  top: 95px;
  transform: translateX(-50%);
  z-index: 9999;
  height: auto;
  max-width: 1868px;
  width: 97.292%;
  /* 先隐藏 */
  display: none;
  /* 一级 */
  /* 二级 */
  /* 三级 */
}
.header .nav li .pro-nav-bottom::before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  pointer-events: none;
  z-index: -2;
}
.header .nav li .pro-nav-bottom .cate-list {
  padding-right: 10%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: stretch;
  background-color: #fff;
  scrollbar-width: thin;
  scrollbar-color: #ccc;
  overflow-y: auto;
  height: auto;
}
.header .nav li .pro-nav-bottom .cate-one,
.header .nav li .pro-nav-bottom .cate-two,
.header .nav li .pro-nav-bottom .cate-three {
  flex: 1;
  min-width: 0;
  padding-top: max(0.45rem, 20px);
  padding-bottom: max(0.45rem, 21px);
}
.header .nav li .pro-nav-bottom .cate-one {
  padding-left: 10%;
  background-image: url(../images/header-nav-pro-liner.png);
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list > div {
  padding-right: max(0.78rem, 13px);
  border-right: 2px solid transparent;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list > div:last-of-type {
  margin-bottom: 0;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list > div.current {
  background-image: linear-gradient(to left, rgba(0, 73, 108, 0.1) 30%, transparent);
  border-right-color: #018a9a;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list > div.current a {
  color: #018a9a;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list > div.current a .icon {
  opacity: 1;
  vertical-align: middle;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list a {
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  /* 字体同步修改大小 */
  font-size: max(0.18rem, 14px);
  color: rgba(0, 0, 0, 0.6);
  /* 2025-2-11 字体排列在小一点 */
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list a .icon {
  font-weight: 400;
  opacity: 0;
  vertical-align: middle;
  font-size: 20px;
  font-family: "HONOR Sans CN", sans-serif;
}
.header .nav li .pro-nav-bottom .cate-two {
  position: relative;
  padding-left: max(0.62rem, 15px);
  padding-right: max(0.73rem, 15px);
  background-color: #fff;
}
.header .nav li .pro-nav-bottom .cate-two.show::after {
  opacity: 1;
}
.header .nav li .pro-nav-bottom .cate-two::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 73, 108, 0.2);
  width: 1px;
  height: calc(100% - 0.9rem);
  opacity: 0;
  transition: all 0.45s ease;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list {
  display: none;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div {
  transition: all 0.45s ease;
  position: relative;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 0;
  height: 1px;
  background-color: #018a9a;
  transition: all 0.45s ease;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div:last-of-type {
  margin-bottom: 0;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div.current a {
  color: #018a9a;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div.current a .icon {
  opacity: 1;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div.current::after {
  width: 100%;
  right: auto;
  left: 0;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div a {
  font-weight: 400;
  font-size: max(0.18rem, 14px);
  color: rgba(0, 0, 0, 0.6);
  font-family: "HONOR Sans CN", sans-serif;
  /* 字体排列在小一点 */
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div a .icon {
  vertical-align: middle;
  font-size: 20px;
  opacity: 0;
}
.header .nav li .pro-nav-bottom .cate-three {
  padding-left: max(0.64rem, 15px);
  background-color: #fff;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list {
  display: none;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div {
  transition: all 0.45s ease;
  position: relative;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 0;
  height: 1px;
  background-color: #018a9a;
  transition: all 0.45s ease;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div:last-of-type {
  margin-bottom: 0;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div.current::after {
  width: 100%;
  right: auto;
  left: 0;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div.current a {
  color: #018a9a;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div.current .icon {
  opacity: 1;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div a {
  padding-top: 13px;
  padding-bottom: 13px;
  font-weight: 400;
  font-size: max(0.18rem, 14px);
  color: rgba(0, 0, 0, 0.6);
  /* 字体排列在小一点 */
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-wrap: break-word;
  font-family: "HONOR Sans CN", sans-serif;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div .icon {
  opacity: 0;
}
.header .other {
  display: flex;
  align-items: center;
  /*margin-left: auto;*/
}
@media (max-width: 1200px){
	.header .other{
		margin-left: auto;
	}
}
.header .other .search {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin-right: 14px;
  transition: all 0.45s ease;
}
.header .other .search .active {
  display: none;
}
.header .other .search:hover {
  background-color: #018a9a;
  border-color: #018a9a;
}
.header .other .search:hover .active {
  display: block;
}
.header .other .search:hover .default {
  display: none;
}
.header .other .lang {
  display: none !important;
  width: 80px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.45s ease;
  margin-right: 13px;
}
.header .other .lang .head-text {
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  transition: all 0.45s ease;
}
.header .other .lang .triangle {
  margin-left: 9px;
  display: flex;
  align-items: center;
}
.header .other .lang .triangle .active {
  display: none;
}
.header .other .lang:hover {
  background-color: #018a9a;
  border-color: #018a9a;
}
.header .other .lang:hover .head-text {
  color: #fff;
}
.header .other .lang:hover .triangle .active {
  display: block;
}
.header .other .lang:hover .triangle .default {
  display: none;
}
.header .other .login {
  width: 120px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  transition: all 0.45s ease;
  text-transform: capitalize;
}

/* 2025-3-15 增加登出按钮 */
.header .other .logout {
  width: 80px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  transition: all 0.45s ease;
  text-transform: capitalize;
  margin-left: 10px;
}
.header .other .login span {
  margin-left: 12px;
}
.header .other .login .active {
  display: none;
}
.header .other .login:hover {
  color: #fff;
  background-color: #018a9a;
  border-color: #018a9a;
}

.header .other .logout:hover {
  color: #fff;
  background-color: #018a9a;
  border-color: #018a9a;
}
.header .other .login:hover .default {
  display: none;
}
.header .other .login:hover .active {
  display: block;
}
.header .header-search {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding-bottom: 25px;
  background-color: #fff;
  z-index: 999;
  display: none;
}
.header .header-search form {
  max-width: 500px;
  width: 92%;
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-search form .search-input {
  flex: 1;
  height: 100%;
  border: 1px solid #ccc;
  border-right: 0px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}
.header .header-search form .search-input:focus {
  outline: none;
}
.header .header-search form .seach-btn {
  flex-shrink: 0;
  width: 80px;
  height: 100%;
  background: #018a9a;
  border-radius: 0 10px 10px 0;
  border: 0;
  user-select: none;
  cursor: pointer;
}
.header .header-search form .seach-btn:focus {
  border: 0;
  outline: 0;
}


.footer {
  background: #018a9a;
  border-radius: 10px;
  /*padding-top: 85px;*/
 	padding-top: clamp(60px, 4.427083333333333vw, 85px);
}
.footer.wrap {
  width: 97.291%;
  max-width: 1868px;
  margin-left: auto;
  margin-right: auto;
}
.footer .foot-content {
  width: 85.653%;
  margin-left: auto;
  margin-right: auto;
}
.footer .foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding-bottom: 31px;*/
 	padding-bottom: clamp(24px, 1.62vw, 31px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.footer .foot-top .foot-logo img {
  display: block;
  width: 173px;
}
.footer .foot-top .icon-list {
  display: flex;
  align-items: center;
}
.footer .foot-top .icon-list .icon-item {
  margin-right: max(0.32rem, 15px);
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.footer .foot-top .icon-list .icon-item .active {
  display: none;
}
.footer .foot-top .icon-list .icon-item:last-of-type {
  margin-right: 0;
}
.footer .foot-top .icon-list .icon-item:hover .active {
  display: block;
}
.footer .foot-top .icon-list .icon-item:hover .default {
  display: none;
}
.footer .foot-top .icon-list .icon-item img{
	width: 22px;
}
/* 2025-7-15 新增 */
.footer .foot-top .icon-list .icon-item .hover-box {
  width: 110px;
  height: 110px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) scale(0, 1);
  transition: var(--duration, 0.45s) ease;
  padding: 6px;
}
.footer .foot-top .icon-list .icon-item .hover-box img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer .foot-top .icon-list .icon-item:hover .hover-box {
  transform: translateX(-50%) scale(1, 1);
}
.footer .foot-info {
  display: flex;
  justify-content: space-between;
  margin-top: 71px;
  margin-bottom: 30px;
}
/*.footer .foot-info .left {
  width: 68.751%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .foot-info .left .left-item {
  width: 43.637%;
}*/
.footer .foot-info .l-item{
	width: 30%;
}
.footer .foot-info .r-item{
	max-width: 30%;
  min-width: 22.5%;
}
.footer .foot-info .left-title {
  /*font-size: 24px;*/
 	font-size: clamp(20px, 1.25vw, 24px);
  font-family: HONOR Sans CN, sans-serif;
  font-weight: bold;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  line-height: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
 	margin-bottom: clamp(20px, 1.354166666666667vw, 26px);
 	padding-bottom: clamp(16px, 1.09375vw, 21px);
}
.footer .foot-info .list p {
  /*font-size: 20px;*/
 	font-size: clamp(16px, 1.041666666666667vw, 20px);
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #FFFFFF;
  line-height: 1.625;
}
.footer .foot-info .list a{
	color: #FFFFFF;
}


.footer .foot-info .locations {
  width: 30.625%;
}
.footer .foot-info .locations .content {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.footer .foot-info .locations .content .img img {
  max-width: 100%;
}
.footer .foot-info .locations .content .txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-family: HONOR Sans CN, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  /*font-size: 18px;*/
 	font-size: clamp(14px, 0.9375vw, 18px);
}
.footer .foot-info .locations .content .txt ul li {
  position: absolute;
}
.footer .foot-info .locations .content .txt ul li.a1 {
  left: 6%;
  top: 30%;
}
.footer .foot-info .locations .content .txt ul li.a2 {
  left: 45%;
  top: 23.5%;
}
.footer .foot-info .locations .content .txt ul li.a3 {
  left: 73%;
  top: 39%;
}
.footer .foot-info .locations .content .txt ul li.a4 {
  left: 34%;
  top: 48%;
}
.footer .foot-info .locations .content .txt ul li.a5 {
  left: 18%;
  top: 70%;
}
.footer .foot-info .locations .content .txt ul li.a6 {
  left: 72%;
  top: 72%;
}


















.footer .foot-info .right {
  width: 360px;
  margin-left: auto;
}
.footer .foot-info .right .right-title {
  font-size: 24px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #000;
  line-height: 1;
  margin-bottom: 21px;
}
.footer .foot-info .right .input-area {
  display: block;
  width: 100%;
  display: flex;
  margin-bottom: 17px;
}
.footer .foot-info .right .input-area input {
  flex: 1;
  font-size: 16px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #000;
  padding-left: 23px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px 0 0 10px;
  border-right: none;
  transition: all 0.45s ease;
}
.footer .foot-info .right .input-area input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.footer .foot-info .right .input-area input:focus {
  outline: none;
  border-color: #018a9a;
}
.footer .foot-info .right .input-area button {
  width: 67px;
  height: 60px;
  background: #018a9a;
  border-radius: 0px 10px 10px 0px;
  outline: none;
  user-select: none;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  font-size: 16px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  color: #ffffff;
}
.footer .foot-info .right .input-area button:focus {
  outline: none;
}
.footer .foot-info .right .agree {
  display: flex;
  align-items: center;
}
.footer .foot-info .right .agree .checkbox label {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.footer .foot-info .right .agree .checkbox label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #018a9a;
  width: 50%;
  height: 50%;
  opacity: 0;
  transition: all 0.45s ease;
}
.footer .foot-info .right .agree .checkbox input {
  display: none;
}
.footer .foot-info .right .agree .checkbox input:checked + label::after {
  opacity: 1;
}
.footer .foot-info .right .agree .text {
  color: #000000;
  font-size: 12px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  text-align: left;
  margin-left: 9px;
  line-height: 1;
}
.footer .copyright {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 19px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .copyright .left ul {
  display: flex;
  align-items: center;
}
.footer .copyright .left li::after {
  content: "|";
  font-size: 16px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 7px;
  margin-right: 7px;
}
.footer .copyright .left li:last-of-type::after {
  content: "";
}
.footer .copyright .left li a {
  font-size: 16px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.45s ease;
}
.footer .copyright .left li a:hover {
  color: #FFFFFF;
}
.footer .copyright .support {
  font-size: 16px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.1);
  transition: all 0.45s ease;
}
.footer .copyright .support a{
	color: rgba(255, 255, 255, 0.1);
}
.footer .copyright .support:hover,
.footer .copyright .support:hover a{
  color: #FFFFFF;
}


/* 断点1600px */
@media (max-width: 1700px) {
  .header .nav {
    /*margin-left: 9%;*/
  }
  .footer .foot-info .left {
    margin-right: 35px;
  }
}
/* 断点1400px */
@media (max-width: 1600px) {
  .footer .foot-info .left {
    width: 64%;
  }
  .footer .foot-content {
    width: 92%;
  }
  .footer .foot-info .left .left-item {
    width: 46%;
  }
  .header .nav li .pro-nav-bottom .cate-one {
    padding-left: 5%;
  }
  .header .nav li .pro-nav-bottom .cate-list {
    padding-right: 5%;
  }
}
/* 断点1200px */
@media (max-width: 1400px) {
  .header .logo {
    margin-right: 20px;
  }

  .header .nav {
    /*margin-left: auto;*/
  }
  .footer .foot-info {
    margin-top: 5vw;
    margin-bottom: 7vw;
  }
}
/* 出现手机导航 */
@media (max-width: 1200px) {
  .header {
    position: relative;
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header .nav {
    position: absolute;
    left: 0;
    top: 100%;
    display: block;
    width: 100%;
    background-color: #fff;
    z-index: 6;
    padding: 25px 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    display: none;
  }
  .header .nav li {
    margin-bottom: 10px;
  }
  .header .nav li:last-of-type {
    margin-bottom: 0;
  }
  .header .min-btn {
    display: block;
    margin-left: 15px;
    user-select: none;
    cursor: pointer;
  }
  .header .min-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    margin-bottom: 5px;
    transition: all 0.45s ease;
  }
  .header .min-btn span:last-of-type {
    margin-bottom: 0;
  }
  .header .min-btn.current span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .header .min-btn.current span:nth-child(2) {
    display: none;
  }
  .header .min-btn.current span:nth-child(3) {
    transform: rotate(45deg);
  }
  .footer .copyright {
    flex-wrap: wrap;
  }
  .footer .copyright .left li {
    margin-bottom: 7px;
  }
  .footer .copyright .left ul {
    align-items: flex-start;
    gap: 5px;
  }
  .footer .copyright .left ul li{
  	width: auto;
  	display: inline;
  	margin-bottom: 0;
  }
  .footer .copyright .left li:last-of-type::after{
  	display: none;
  }
  .footer .copyright .left li a,
  .footer .copyright .support {
    font-size: 14px;
  }
  .phone-nav {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 5;
    width: 100%;
    height: auto;
    max-height: 70vh;
    overflow-y: auto;
    background-color: #fff;
    padding: 20px 15px 0;
    box-shadow: 0 0 5px #ccc;
    display: none;
    /* 普通的样式 */
    /* 产品 */
  }
  .phone-nav li {
    margin-bottom: 15px;
  }
  .phone-nav .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .phone-nav .nav-top.current a {
    color: #018a9a;
    font-weight: bold;
  }
  .phone-nav .nav-top.current .icon {
    transform: rotate(-180deg);
  }
  .phone-nav .nav-top a {
    font-size: 16px;
    color: #000000;
    white-space: nowrap;
    transition: all 0.45s ease;
  }
  .phone-nav .nav-top a:hover {
    color: #018a9a;
  }
  .phone-nav .nav-top .icon {
    transition: all 0.45s ease;
    user-select: none;
    cursor: pointer;
  }
  .phone-nav .nav-top .icon img {
    width: 26px;
  }
  .phone-nav .phone-nav-bottom {
    display: none;
    padding-left: 10px;
  }
  .phone-nav .phone-nav-bottom div {
    margin-bottom: 10px;
  }
  .phone-nav .phone-nav-bottom a {
    font-size: 14px;
    color: #000000;
    white-space: normal;
    transition: all 0.45s ease;
  }
  .phone-nav .phone-nav-bottom a:hover {
    color: #018a9a;
  }
  .phone-nav .pro-nav-bottom {
    line-height: 1.25;
  }
  .phone-nav .pro-nav-bottom .cate-one {
    padding-left: 10px;
    padding-right: 20px;
  }
  .phone-nav .pro-nav-bottom .one-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .phone-nav .pro-nav-bottom .one-item.current a {
    color: #018a9a;
    font-weight: bold;
  }
  .phone-nav .pro-nav-bottom .one-item.current .icon {
    transform: rotate(-180deg);
  }
  .phone-nav .pro-nav-bottom .one-item a {
    font-size: 16px;
    color: #000;
    overflow-wrap: break-word;
  }
  .phone-nav .pro-nav-bottom .one-item:hover>a{
  	color: #018a9a;
  }
  .phone-nav .pro-nav-bottom .one-item .icon {
    user-select: none;
    cursor: pointer;
    transition: all 0.45s ease;
  }
  .phone-nav .pro-nav-bottom .one-item .icon img {
    width: 22px;
  }
  .phone-nav .pro-nav-bottom .cate-two {
    padding-left: 10px;
    padding-right: 20px;
  }
  .phone-nav .pro-nav-bottom .two-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .phone-nav .pro-nav-bottom .two-item.current a {
    color: #018a9a;
    font-weight: bold;
  }
  .phone-nav .pro-nav-bottom .two-item.current .icon {
    transform: rotate(-180deg);
  }
  .phone-nav .pro-nav-bottom .two-item a {
    font-size: 15px;
    color: #000;
    overflow-wrap: break-word;
  }
  .phone-nav .pro-nav-bottom .two-item .icon {
    user-select: none;
    cursor: pointer;
    transition: all 0.45s ease;
  }
  .phone-nav .pro-nav-bottom .two-item .icon img {
    width: 20px;
  }
  .phone-nav .pro-nav-bottom .cate-three {
    padding-left: 10px;
  }
  .phone-nav .pro-nav-bottom .three-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
    overflow-wrap: break-word;
  }
  .phone-nav .pro-nav-bottom .three-item:hover a {
    color: #018a9a;
  }
  .phone-nav .pro-nav-bottom .three-item a {
    font-size: 13px;
    color: #000;
    overflow-wrap: break-word;
  }
  .phone-nav .pro-nav-bottom .cate-two,
  .phone-nav .pro-nav-bottom .cate-three {
    display: none;
  }
  
  /*20260319*/
 	.footer .foot-info{
 		flex-wrap: wrap;
 		gap: 40px;
 	}
 	.footer .foot-info .l-item{
 		width: 100%;
 	}
 	.footer .foot-info .locations{
 		width: 100%;
 	}
 	.footer .foot-info .r-item{
 		max-width: 100%;
    width: 100%;
 	}
 	.footer .copyright .left{
 		width: 100%;
 	}
 	.footer .copyright .support{
 		width: 100%;
 	}
}
@media (max-width: 992px) {
  .footer .foot-info {
    flex-wrap: wrap;
    margin-top:7vw;
    margin-bottom: 9vw;
  }
  .footer .foot-info .left,
  .footer .foot-info .right {
    width: 100%;
  }
  .footer .foot-info .left {
    margin-bottom: 25px;
  }
  .footer .foot-info .right .right-title {
    margin-bottom: 10px;
  }
  
}
@media (max-width: 768px) {
  .wrap-max {
    width: 96%;
  }

  .header .other .search {
    width: 40px;
    height: 40px;
  }
  .header .other .search img {
    width: 15px;
  }
  .header .other .lang {
    width: 70px;
    height: 40px;
  }
  .header .other .lang .head-text {
    font-size: 14px;
  }
  .header .other .login {
    width: 95px;
    height: 40px;
    font-size: 14px;
  }
  .header .other .login img {
    width: 15px;
  }
  .header .other .login span {
    margin-left: 7px;
  }
  .footer .foot-top .foot-logo img {
    width: 150px;
  }
  .footer .foot-top .icon-list .icon-item {
    margin-right: 15px;
  }
  .footer {
    padding-top: 35px;
  }
  .footer .foot-top {
    padding-bottom: 15px;
  }
  .footer .foot-info .left {
    flex-wrap: wrap;
  }
  .footer .foot-info .left .left-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer .foot-info .left .left-item .left-title {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 20px;
  }
  .footer .foot-info .left .left-item .list p {
    font-size: 14px;
  }
  .footer .foot-info .left .left-item:last-of-type {
    margin-bottom: 0;
  }
  .footer .foot-info .right .right-title {
    font-size: 20px;
  }
  .footer .copyright .left ul {
    flex-wrap: wrap;
  }
  .footer .copyright .left li {
    width: 48.5%;
    margin-bottom: 5px;
  }
  .footer .copyright .left li::after {
    content: none;
  }
  .footer .copyright .left li a,
  .footer .copyright .support {
    font-size: 12px;
  }
  .footer .copyright {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  /**/
 	.footer .foot-info .left-title{
 		font-size: 20px;
 		padding-bottom: 15px;
    margin-bottom: 15px;
 	}
 	.footer .foot-info .list p{
 		font-size: 16px;
 	}
 	.footer .foot-info .locations .content .txt{
 		font-size: 16px;
 	}
}
@media (max-width: 576px) {
  .header .other .search,
  .header .other .lang {
    margin-right: 5px;
  }
  .header .other .login {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .header .other .login span {
    display: none;
  }
  .header .nav a {
    font-size: 16px;
  }
  .header .nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .index-page .pro-list .item .text .more-btn {
    font-size: 14px;
  }
  .index-page .swiper-container .swiper4 .arrow {
    width: 30px;
    height: 30px;
  }
  .footer .foot-info .right .input-area button {
    height: 45px;
  }
  .footer .foot-info .right .input-area input {
    font-size: 14px;
  }
  .footer .foot-top .foot-logo img {
    width: 130px;
  }
  /**/
 	.footer .foot-info .left-title {
    font-size: 18px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .footer .foot-info .list p{
 		font-size: 14px;
 	}
 	.footer .foot-info .locations .content .txt{
 		font-size: 14px;
 	}
}
/* 大于等于1201px */
@media (min-width: 1201px) {
  .min-btn {
    display: none !important;
  }
  .header .nav {
    display: flex !important;
  }
  .phone-nav {
    display: none !important;
  }
}
/* 公用登录 */
.common-login-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: zoom-out;
  display: none;
}
.common-login-mask .login {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  max-width: 800px;
  height: auto;
  background: #ffffff;
  border-radius: 10px;
  padding-top: max(0.3rem, 15px);
  padding-bottom: max(0.92rem, 20px);
  cursor: default;
}
.common-login-mask .login .icon-line {
  display: flex;
  margin-bottom: 40px;
  padding-right: 32px;
}
.common-login-mask .login .icon-line .close-form {
  margin-left: auto;
  width: fit-content;
}
.common-login-mask .login .icon-line .close-form:hover .default {
  display: none;
}
.common-login-mask .login .icon-line .close-form:hover .active {
  display: inline-block;
}
.common-login-mask .login .icon-line .close-form img {
  user-select: none;
  cursor: pointer;
  transition: all 0.45s ease;
  vertical-align: top;
}
.common-login-mask .login .icon-line .close-form img.active {
  display: none;
}
.common-login-mask .login .login-title {
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  font-size: max(0.3rem, 20px);
  color: #000000;
  line-height: 1;
  margin-bottom: 35px;
  text-align: center;
  text-transform: capitalize;
}
.common-login-mask .login form {
  display: block;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.common-login-mask .login form .input-line {
  position: relative;
}
.common-login-mask .login form .input-line .icons {
  position: absolute;
  top: 50%;
  right: 5%;
  user-select: none;
  cursor: pointer;
  transform: translateY(-50%);
}
.common-login-mask .login form .input-line .icons .close {
  display: none;
}
.common-login-mask .login form .input-line .icons.current .close {
  display: inline-block;
}
.common-login-mask .login form .input-line .icons.current .open {
  display: none;
}
.common-login-mask .login form input {
  display: block;
  width: 100%;
  height: 70px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  outline: none;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-bottom: 14px;
  padding-left: 26px;
  /* text-transform: capitalize; */
}
.common-login-mask .login form input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.common-login-mask .login form input:focus {
  outline: none;
  border-color: #018a9a;
}
.common-login-mask .login form button {
  display: block;
  width: 100%;
  height: 70px;
  background: #018a9a;
  border-radius: 6px;
  margin-top: 27px;
  font-family: "HONOR Sans CN", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  border: none;
  user-select: none;
  cursor: pointer;
  line-height: 1;
  text-transform: capitalize;
  transition: all 0.45s ease;
}
.common-login-mask .login form button span {
  position: relative;
}
.common-login-mask .login form button span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.45s ease;
}
.common-login-mask .login form button:hover {
  font-weight: bold;
}
.common-login-mask .login form button:hover span::after {
  width: 100%;
}
.common-login-mask .login .email {
  font-size: 14px;
  color: #ccc;
  /* text-transform: capitalize; */
}
.common-login-mask .login .email:hover {
  color: #000;
}
@media (max-width: 1918px) {
  .common-login-mask .login {
    max-width: 600px;
  }
  .common-login-mask .login .icon-line {
    margin-bottom: 15px;
  }
  .common-login-mask .login .login-title {
    margin-bottom: 20px;
  }
  .common-login-mask .login form input {
    height: 60px;
  }
  .common-login-mask .login form {
    width: 82%;
  }
  .common-login-mask .login {
    padding-bottom: max(20px, 0.45rem);
  }
  .common-login-mask .login form button {
    height: 60px;
  }
}
@media (max-width: 992px) {
  /* .common-login-mask .login {
    padding-bottom: 50px;
  } */
}
@media (max-width: 576px) {
  /* 登录框 */
  .common-login-mask .login .icon-line {
    margin-bottom: 15px;
  }
  .common-login-mask .login {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  .common-login-mask .login .login-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .common-login-mask .login form {
    width: 90%;
  }
  .common-login-mask .login form input {
    height: 50px;
  }
  .common-login-mask .login form button {
    height: 50px;
  }
  .common-login-mask .login form input {
    padding-left: 15px;
  }
  .header .header-search {
    padding-bottom: 15px;
  }
  .header .header-search form {
    height: 45px;
  }
  .common-login-mask .login form input {
    font-size: 16px;
  }
  .common-login-mask .login form .input-line .icons img {
    width: 24px;
  }
  .common-login-mask .login .icon-line .close-form img {
    width: 18px;
  }
  .common-login-mask .login .email {
    font-size: 12px;
  }
  .footer .foot-info .left .left-item .left-title {
    font-size: 18px;
  }
}
/* 回到顶部 */
.common-go-top {
  width: 61px;
  height: 61px;
  background: #ffffff;
  box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  position: fixed;
  right: 73px;
  top: 70vh;
  z-index: 99;
  transition: all 0.45s ease;
  display: none;
}
.common-go-top img {
  width: 10px;
  transform: rotate(90deg);
  fill: #018a9a;
  transition: all 0.45s ease;
}
.common-go-top .hover {
  display: none;
}
.common-go-top:hover {
  background: #018a9a;
}
.common-go-top:hover .hover {
  display: block;
}
.common-go-top:hover .default {
  display: none;
}
@media (max-width: 1600px) {
  .common-go-top {
    right: 3vw;
  }
}
@media (max-width: 576px) {
  .common-go-top {
    width: 45px;
    height: 45px;
  }
  .common-go-top img {
    width: 8px;
  }
}
@media (max-width: 576px) {
  .header {
    height: 75px;
  }
  .header .other .logout {
    height: 40px;
    font-size: 14px;
  }
}


/*20260319新增*/
.header .logo img{
	height: max(0.58rem, 40px);
}
.header .other .head-contact {
  display: flex;
  align-items: center;
}
.header .other .head-contact a{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 50px;
  border-radius: 25px;
  font-family: HONOR Sans CN, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  font-size: 18px;
  padding: 0 12px;
  background: #7abf48;
  box-sizing: border-box;
}
.header .other .head-contact a img{
	display: none;
	width: 17px;
}
@media screen and (max-width: 768px) {
  .header .other .head-contact a{
  	min-width: 100px;
  	height: 40px;
  	border-radius: 20px;
    font-size: 16px;
  }
  
}
@media screen and (max-width: 576px){
	.header .other .head-contact a{
		min-width: 40px;
	}
	.header .other .head-contact a img{
		display: inline-block;
	}
	.header .other .head-contact a span{
  	display: none;
  }
}

.header .nav li .navcell {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  min-width: 1.2rem;
  width: max-content;
}
.header .nav li .navcell .cell {
  display: flex;
  flex-direction: column;
  width: max-content;
  min-width: max-content;
  padding: 0.12rem 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}
.header .nav li .navcell .cell a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #333333;
  font-size: max(0.18rem, 14px);
  line-height: 1.7;
  white-space: nowrap;
  padding: 0.05rem 0.25rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .nav li .navcell .cell a:hover {
  color: #018a9a;
}






/*20260623*/
/*:root {
  --size16: max(0.16rem, 14px);
  --size18: max(0.18rem, 16px);
  --size20: clamp(15px, 0.2rem, 20px);
  --size24: clamp(17px, 0.24rem, 24px);
  --size30: clamp(18px, 0.3rem, 30px);
  --size40: clamp(23px, 0.4rem, 40px);
  --size42: clamp(24px, 0.42rem, 42px);
  --size50: clamp(28px, 0.5rem, 50px);
  --size90: clamp(32px, 0.9rem, 90px);
 	--size16: max(0.16rem, 14px);
  --size18: max(0.18rem, 16px);
  --size20: clamp(15px, 1.041666666666667vw, 20px);
  --size24: clamp(17px, 1.25vw, 24px);
  --size30: clamp(18px, 1.5625vw, 30px);
  --size40: clamp(23px, 2.083333333333333vw, 40px);
  --size42: clamp(24px, 2.1875vw, 42px);
  --size50: clamp(28px, 2.604166666666667vw, 50px);
  --size90: clamp(32px, 4.6875vw, 90px);
}*/

:root {
	--size14: max(0.14rem, 14px);
  --size16: max(0.16rem, 14px);
  --size18: max(0.18rem, 16px);
  --size20: clamp(15px, 0.2rem, 20px);
  --size24: clamp(17px, 0.24rem, 24px);
  --size30: clamp(18px, 0.3rem, 30px);
  --size32: clamp(20px, 0.32rem, 32px);
  --size34: clamp(20px, 0.34rem, 34px);
  --size40: clamp(23px, 0.4rem, 40px);
  --size42: clamp(24px, 0.42rem, 42px);
  --size50: clamp(28px, 0.5rem, 50px);
  --size70: clamp(28px, 0.7rem, 70px);
  --size90: clamp(32px, 0.9rem, 90px);
}
@media screen and (max-width: 1920px) and (min-width: 992px){
	:root {
		--size14: 0.7291666666666667vw;
		--size16: 0.8333333333333333vw;
  	--size18: 0.9375vw;
	  --size20: 1.041666666666667vw;
	  --size24: 1.25vw;
	  --size30: 1.5625vw;
	  --size32: 1.666666666666667vw;
	  --size34: 1.770833333333333vw;
	  --size40: 2.083333333333333vw;
	  --size42: 2.1875vw;
	  --size50: 2.604166666666667vw;
	  --size70: 3.645833333333333vw;
	  --size90: 4.6875vw;
	}
}

#interval{
	height: 166px;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	#interval{
		height: 8.645833333333333vw;
	}
}
@media screen and (max-width: 1200px){
	#interval{
		height: 70px;
	}
}

.header{
	position: fixed;
  z-index: 15;
  width: 100%;
	height: auto;
	transition: all 0.4s ease;
}
/*.header.displace{
	top: -100%;
}*/
.header.white{
	background: #FFFFFF;
	box-shadow: 0px 0px 12px rgba(0,0,0,0.1);
}
.header.whitebg{
	background: #ffffff;
}
.wrap-max{
	width: 90.625%;
  max-width: 1740px;
}
.header .wrap-max{
	display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1920px){
	.wrap-max{
		width: 90.625%;
	  max-width: 90.625%;
	}
}
@media screen and (min-width: 1201px){
	.header .wrap-max{
		justify-content: space-between;
	}
}
.header .logo a{
	display: flex;
	align-items: center;
	height: 166px;
}
@media screen and (max-width: 1920px){
	.header .logo a{
		height: 8.645833333333333vw;
	}
}
@media screen and (max-width: 1200px){
	.header .wrap-max{
		align-items: center;
	}
	.header .logo a{
		height: 70px;
	}
}
.header .logo img{
	height: 59.63855421686747%;
}
.header .nav{
	height: auto;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.header .nav li{
		margin-right: 2.1875vw;
	}
	.header .nav li .nav-top > a > i{
		margin-left: 0.5208333333333333vw;
    width: 0.6770833333333333vw;
    height: 0.5208333333333333vw;
	}
}
.header .nav li .nav-top a{
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: var(--size20);
}
.header .nav li:hover .nav-top a{
	color: #7abf48;
}
.header .nav li .nav-top a::after {
	height: 3px;
  background-color: #7abf48;
}
.header .nav li:hover .nav-top a::after{
	width: 100%;
}
.header .nav li .nav-top a:hover {
  color: #7abf48;
}
.header .nav li.current .nav-top a {
  color: #7abf48;
}
.header .nav li .nav-bottom a::after {
  background-color: #7abf48;
}
.header .nav li .nav-bottom a:hover {
  color: #7abf48;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list > div.current {
  background-image: linear-gradient(to left, rgba(122, 191, 72, 0.1) 30%, transparent);
  border-right-color: #7abf48;
}
.header .nav li .pro-nav-bottom .cate-one .cate-one-list > div.current a {
  color: #7abf48;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div::after {
  background-color: #7abf48;
}
.header .nav li .pro-nav-bottom .cate-two .cate-two-list > div.current a {
  color: #7abf48;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div::after {
  background-color: #7abf48;
}
.header .nav li .pro-nav-bottom .cate-three .cate-three-list > div.current a {
  color: #7abf48;
}
.header .nav li .navcell .cell a:hover{
	color: #7abf48;
}

.header .nav li .pro-nav-bottom{
	top: 166px;
}
@media screen and (max-width: 1920px){
	.header .nav li .pro-nav-bottom{
		top: 8.645833333333333vw;
	}
	.header .nav li .nav-top a{
		padding-top: 0.5vw;
		padding-bottom: 0.5vw;
	}
	.header .nav li .nav-top a::after{
		height: 0.15625vw;
	}
}
@media screen and (max-width: 1200px){
	.header .nav li .pro-nav-bottom{
		top: 70px;
	}
}
.header .other .head-contact a{
	min-width: max-content;
  height: 64px;
  border-radius: 12px;
	border: #018a9a solid 3px;
	box-sizing: border-box;
	background: none;
	color: #018a9a;
	font-size: 20px;
	padding: 0 40px;
	transition: all 0.4s ease;
}
@media screen and (max-width: 1920px){
	.header .other .head-contact a{
		height: 3.333333333333333vw;
  	border-radius: 0.625vw;
		border-width: 0.15625vw;
		font-size: 1.041666666666667vw;
		padding: 0 2.083333333333333vw;
	}
}
@media screen and (max-width: 1200px){
	.header .other .head-contact a{
		height: 45px;
  	border-radius: 12px;
		border-width: 2px;
		font-size: 16px;
		padding: 0 20px;
	}
}
@media screen and (max-width: 576px){
	.header .other .head-contact a{
		background: #018a9a;
		border-radius: 50%;
		min-width: 40px;
		height: 40px;
		padding: 0;
	}
}
.header .other .head-contact a:hover{
	background: #018a9a;
	color: #ffffff;
}



.header .other .head-nation {
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
}
.header .other .head-nation .title {
  display: inline-flex !important;
  align-items: center;
  box-sizing: border-box;
  padding-right: 26px;
  background: url(../images/arrow-h.png) center right no-repeat;
  background-size: 11px auto;
}
.header .other .head-nation .title img {
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  /*-webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .other .head-nation .title span {
	display: inline-flex;
	align-items: center;
	font-weight: bold;
  color: #000000;
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .other .head-nation .dropdown {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  top: 100%;
  z-index: 100;
  min-width: 150%;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .other .head-nation .dropdown ul {
  margin-top: 15px;
  background: #FFFFFF;
  padding: 10px 0px;
  text-align: left;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.header .other .head-nation .dropdown ul li {
  list-style: none;
}
.header .other .head-nation .dropdown ul li a {
  display: block;
  font-size: 18px;
  color: #2b2b2b;
  line-height: 2.2;
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
.header .other .head-nation .dropdown ul li a:hover {
  color: #018a9a;
}
.header .other .head-nation:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1920px){
	.header .other .head-nation{
		margin-left: 1.5625vw;
		margin-right: 1.5625vw;
	}
	.header .other .head-nation .title {
	  padding-right: 1.354166666666667vw;
	  background: url(../images/arrow-h.png) center right no-repeat;
	  background-size: 0.5729166666666667vw auto;
	}
	.header .other .head-nation .title img {
	  margin-right: 0.5208333333333333vw;
	  width: 1.25vw;
	}
	.header .other .head-nation .title span {
	  font-size: 1.041666666666667vw;
	}
	.header .other .head-nation .dropdown ul {
	  margin-top: 0.78125vw;
	  padding: 0.5208333333333333vw 0;
	}
	.header .other .head-nation .dropdown ul li a {
	  font-size: 0.9375vw;
	  padding: 0 1.041666666666667vw;
	}
}
@media screen and (max-width: 1200px){
	.header .wrap-max{
		max-width: 100%;;
		width: 100%;
	}
	.header .other .head-nation{
		margin-left: 15px;
		margin-right: 15px;
	}
	.header .other .head-nation .title {
	  padding-right: 30px;
	  background: url(../images/arrow-h.png) center right no-repeat;
	  background-size: 8px auto;
	}
	.header .other .head-nation .title img {
	  margin-right: 8px;
	  width: 20px;
	}
	.header .other .head-nation .title span {
	  font-size: 16px;
	}
	.header .other .head-nation .dropdown ul {
	  margin-top: 10px;
	  padding: 8px 0;
	}
	.header .other .head-nation .dropdown ul li a {
	  font-size: 16px;
	  padding: 0 15px;
	}
}

.phone-nav .pro-nav-bottom .two-item a:hover{
	color: #018a9a;
}



/*--size16: max(0.16rem, 14px);
--size18: max(0.18rem, 16px);
--size20: clamp(16px, 0.2rem, 20px);*/
.footer {
	position: relative;
	max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background-color: #ffffff;
  padding-top: 15px;
  --fsize30: clamp(24px, 0.3rem, 30px);
  --fsize20: clamp(16px, 0.2rem, 20px);
  --fsize18: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer{
		padding-top: 0.78125vw;
		--fsize30: 1.5625vw;
  	--fsize20: 1.041666666666667vw;
  	--fsize18: 0.9375vw;
	}
}
.footer::before{
	content: '';
	position: absolute;
	left: 0;
	top: 90px;
	width: 5.885416666666667%;
	height: 100%;
	background: url(../images/footer-bg1.png) left top no-repeat;
	background-size: 100% auto;
}
.footer::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 8.645833333333333%;
	height: 100%;
	background: url(../images/footer-bg2.png) right top no-repeat;
	background-size: 100% auto;
}
.footer .wrap .box{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .footer .wrap .box {
    flex-wrap: wrap;
  }
}
.footer .box .footer-info {
  width: 20.85%;
}
@media screen and (max-width: 1200px) {
  .footer .box .footer-info {
    width: 100%;
  }
}
.footer .box .footer-info .footer-logo {
  margin-bottom: 16px;
}
.footer .box .footer-info .footer-logo a{
	display: inline-block;
}
.footer .box .footer-info .footer-logo a img {
  height: 68px;
}
@media screen and (max-width: 1920px){
	.footer .box .footer-info .footer-logo a img{
		height: 3.541666666666667vw;
	}
}
@media screen and (max-width: 1200px){
	.footer .box .footer-info .footer-logo a img{
		height: 50px;
	}
}
.footer .wrap .box .title{
	position: relative;
	font-weight: bold;
	color: #018a9a;
	font-size: var(--fsize20);
}
@media screen and (max-width: 1200px){
	.footer .wrap .box .title{
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
.footer .box .footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  
  width: 76.3%;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer .box .footer-nav{
		gap: 0.78125vw;
	}
}
@media screen and (max-width: 1200px) {
  .footer .box .footer-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
  }
}
.footer .box .footer-nav .row {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
  max-width: 21.138%;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer .box .footer-nav .row{
		row-gap: 1.5625vw;
	}
}
@media screen and (max-width: 1200px) {
  .footer .box .footer-nav .row {
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 1200px){
	.footer .box .footer-nav .item .title{
		border-bottom: rgba(179,200,212,0.2) solid 1px;
	}
}
.footer .box .footer-nav .item.on .title i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer .box .footer-nav .item .title i {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -10px;
  top: -8px;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
}
@media screen and (max-width: 1200px) {
  .footer .box .footer-nav .item .title i {
    display: block;
  }
}
.footer .box .footer-nav .item .title i::before {
  content: '';
  width: 12px;
  position: absolute;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #018a9a;
}
.footer .box .footer-nav .item .title i::after {
  content: '';
  height: 12px;
  position: absolute;
  width: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #018a9a;
}
.footer .box .footer-nav .item ul{
	margin-top: 15px;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer .box .footer-nav .item ul{
		margin-top: 0.78125vw;
	}
}
@media screen and (max-width: 1200px) {
  .footer .box .footer-nav .item ul {
    display: none;
    padding-top: 20px;
    margin-top: 0;
    margin-bottom: 12px;
  }
}
.footer .box .footer-nav .item ul li {
  margin-bottom: 0.06rem;
}
@media screen and (max-width: 1200px) {
  .footer .box .footer-nav .item ul li {
    margin-bottom: 10px;
  }
}
.footer .box .footer-nav .item ul li a {
  color: #0e2356;
  font-size: var(--fsize18);
  line-height: 1.7;
  transition: all 0.5s ease;
}
.footer .box .footer-nav .item ul li a:hover {
  color: #018a9a;
}
.footer .box .footer-contact {
  display: flex;
  flex-direction: column;
}

.footer .box .footer-contact ul{
	display: flex;
	flex-direction: column;
}
.footer .box .footer-contact ul li{
	color: #0e2356;
	font-size: var(--fsize18);
}
.footer .footerbottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
  margin-top: 40px;
  padding: 12px 0;
  border-top: rgba(179, 200, 212, 0.1) solid 3px;
  color: #0e2356;
  font-size: var(--fsize18);
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer .footerbottom{
		border-width: 0.15625vw;
	}
}
.footer .footerbottom .left_w{
	display: inline-flex;
	align-items: center;
}
.footer .footerbottom .right_w{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 37%;
}
.footer .footerbottom .copyright {
  display: inline-block;
  padding: 0;
}
.footer .footerbottom .copyright a{
  display: inline-block;
  color: #0e2356;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .footerbottom .copyright a:hover {
  color: #018a9a;
}
.footer .footerbottom .copylink {
  color: #0e2356;
  line-height: 1.7;
}

.footer .footerbottom .copylink span {
  display: inline-block;
  margin: 0 3px;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer .footerbottom .copylink span{
		margin: 0 0.15625vw;
	}
}
.footer .footerbottom .copylink a {
  color: #0e2356;;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .footerbottom .copylink a:hover {
  color: #018a9a;
}
.footer .footerbottom .poweredBy {
  display: inline-block;
  margin-left: 36px;
  color: rgba(14, 35, 86, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer .footerbottom .poweredBy{
		margin-left: 1.875vw;
	}
}
.footer .footerbottom .poweredBy a {
  color: rgba(14, 35, 86, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .footerbottom .poweredBy:hover {
  color: #2f318b;
}
.footer .footerbottom .poweredBy:hover a {
  color: #2f318b;
}
@media screen and (max-width: 1200px) {
  .footer .footerbottom {
    border-top: none;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
    margin-top: 0px;
  }
  .footer .footerbottom .left_w{
  	display: flex;
  	flex-direction: column-reverse;
  }
  .footer .footerbottom .copylink{
  	display: flex;
  	flex-wrap: wrap;
  	width: 100%;
  }
}
@media screen and (max-width: 576px){
	.footer .footerbottom .right_w{
		flex-direction: column;
		gap: 12px;
	}
	.footer .footerbottom .copyright{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.footer .footer-nation{
		display: none !important;
	}
}
.footer .footer-nation {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.footer .footer-nation .title {
  display: inline-flex !important;
  align-items: center;
  box-sizing: border-box;
  padding-right: 26px;
  background: url(../images/arrow-b.png) center right no-repeat;
  background-size: 11px auto;
}
.footer .footer-nation .title img {
  display: inline-block;
  margin-right: 10px;
  width: clamp(18px, 0.24rem, 24px);
  /*-webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .footer-nation .title span {
	display: inline-flex;
	align-items: center;
	font-weight: bold;
  color: #0e2356;
  font-size: var(--fsize20);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1920px) and (min-width: 1201px){
	.footer .footer-nation{
		margin-left: 1.041666666666667vw;
	}
	.footer .footer-nation .title {
	  padding-right: 1.354166666666667vw;
	  background: url(../images/arrow-b.png) center right no-repeat;
	  background-size: 0.5729166666666667vw auto;
	}
	.footer .footer-nation .title img {
	  margin-right: 0.5208333333333333vw;
	  width: 1.25vw;
	}
}
.footer .footer-nation .dropdown {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  bottom: 100%;
  z-index: 100;
  min-width: 150%;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .footer-nation .dropdown ul {
  margin-bottom: 15px;
  background: #FFFFFF;
  padding: 10px 0px;
  text-align: left;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.footer .footer-nation .dropdown ul li {
  list-style: none;
}
.footer .footer-nation .dropdown ul li a {
  display: block;
  font-size: var(--fsize18);
  color: #0e2356;
  line-height: 2.2;
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
.footer .footer-nation .dropdown ul li a:hover {
  color: #018a9a;
}
.footer .footer-nation:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.advert-space{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 30px 80px;
	box-sizing: border-box;
	background-image: -moz-linear-gradient( 180deg, rgb(106,196,68) 16%, rgb(1,138,154) 60%);
  background-image: -webkit-linear-gradient( 180deg, rgb(106,196,68) 16%, rgb(1,138,154) 60%);
  background-image: -ms-linear-gradient( 180deg, rgb(106,196,68) 16%, rgb(1,138,154) 60%);
	border-radius: 13px;
	overflow: hidden;
	margin-bottom: 65px;
}
.advert-space .icon {
	flex-shrink: 0;
}
.advert-space .icon img{
	width: 85px;
}
.advert-space .textbox{
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.advert-space .textbox .subtitle{
	font-weight: bold;
	color: #FFFFFF;
	font-size: var(--fsize30);
}
.advert-space .textbox .txt{
	color: #FFFFFF;
	font-size: var(--fsize20);
}
.advert-space .btns{
	flex-shrink: 0;
}
.advert-space .btns .gbtn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 75px;
	border-radius: 10px;
	background: #FFFFFF;
	font-weight: bold;
	color: #018a9a;
	font-size: var(--fsize20);
	padding: 0 50px;
	box-sizing: border-box;
	transition: all 0.4s ease;
}
.advert-space .btns .gbtn span{
	display: inline-block;
	margin-left: 15px;
}
.advert-space .btns .gbtn:hover{
	background: #018a9a;
	color: #ffffff;
}
@media screen and (max-width: 1920px){
	.advert-space{
		gap: 1.5625vw;
		padding: 1.5625vw 4.166666666666667vw;
		border-radius: 0.6770833333333333vw;
		margin-bottom: 3.385416666666667vw;
	}
	.advert-space .icon img{
		width: 4.427083333333333vw;
	}
	.advert-space .btns .gbtn{
		height: 3.90625vw;
		border-radius: 0.5208333333333333vw;
		padding: 0 2.604166666666667vw;
	}
	.advert-space .btns .gbtn span{
		margin-left: 0.78125;
	}
}
@media screen and (max-width: 1200px){
	.advert-space{
		gap: 20px;
		padding: 24px 30px;
		border-radius: 10px;
		margin-bottom: 50px;
	}
	.advert-space .icon img{
		width: 45px;
	}
	.advert-space .btns .gbtn{
		height: 42px;
		border-radius: 10px;
		padding: 0 20px;
	}
	.advert-space .btns .gbtn span{
		margin-left: 10px;
	}
}
@media screen and (max-width: 991px){
	.advert-space{
		flex-wrap: wrap;
		margin-bottom: 40px;
	}
	.advert-space .btns{
		width: 100%;
		padding-left: 65px;
	}
}
@media screen and (max-width: 640px){
	.advert-space{
		margin-bottom: 35px;
	}
	.advert-space .icon{
		width: 100%;
	}
	.advert-space .btns{
		padding-left: 0;
	}
}




.sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 13;
}
@media screen and (max-width: 991px) {
  .sidebar {
    right: 0.2rem;
  }
}
.sidebar ul {
  padding-left: 0;
}
.sidebar ul li {
  position: relative;
  text-align: center;
  cursor: pointer;
  margin-bottom: 10px;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .sidebar ul li {
    margin-bottom: 0.5208333vw;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li {
    margin-bottom: 6px;
  }
}
.sidebar ul li.istop span .img,
.sidebar ul li.istop a .img {
  background: #FFFFFF;
}
.sidebar ul li span,
.sidebar ul li a {
  display: block;
}
.sidebar ul li span .img,
.sidebar ul li a .img {
	position: relative;
	z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sidebar ul li span .img::before,
.sidebar ul li a .img::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #018a9a;
	transition: all 0.5s ease;
}
@media screen and (max-width: 1920px) and (min-width: 992px) {
  .sidebar ul li span .img,
  .sidebar ul li a .img {
    width: 3.229166666666667vw;
    height: 3.229166666666667vw;
  }
  .sidebar ul li span .img::before,
	.sidebar ul li a .img::before{
  	width: 2.395833333333333vw;
  	height: 2.395833333333333vw;
  }
}
@media screen and (max-width: 991px) {
  .sidebar ul li span .img,
  .sidebar ul li a .img {
    width: 48px;
    height: 48px;
  }
  .sidebar ul li span .img::before,
	.sidebar ul li a .img::before{
		width: 38px;
		height: 38px;
	}
}
.sidebar ul li span .img img,
.sidebar ul li a .img img {
  display: block;
  margin: auto;
  width: 30.65%;
}
.sidebar ul li:hover span .img::before,
.sidebar ul li:hover a .img::before {
  background: #7abf48;
}
.sidebar ul li .secondary {
  display: none;
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 12;
  min-width: 100%;
  white-space: nowrap;
  text-align: center;
  padding-right: 10px;
}
.sidebar ul li .secondary .box {
  position: relative;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-sizing: border-box;
}
.sidebar ul li .secondary .box::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffffff;
}
.sidebar ul li .secondary .box .codeimg {
  text-align: center;
}
.sidebar ul li .secondary .box .codeimg img {
  display: block;
  margin: auto;
  max-width: inherit;
  width: 120px;
}
.sidebar ul li .secondary .txt {
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}
.sidebar ul li .secondary .txtli {
  font-size: var(--size20);
  color: #000000;
  padding: 0 0.15rem;
  box-sizing: border-box;
}