/*
Theme Name: 三鸟科技
Version: 1.0
Description: 三鸟科技提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：三鸟科技
*/
@charset "utf-8";

.wrap {
  width: 78.125%;
  margin: 0 auto;
}

.wrap_top {
  width: 87.4%;
  margin: 0 auto;
}

@media screen and (max-width: 1600px) {
  .wrap {
    width: 88%;
  }
}
@media screen and (max-width: 1440px) {
  .wrap {
    width: 90%;
  }
}
@media screen and (max-width: 1366px) {
  .wrap_top {
    width: 96%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    width: 94%;
  }
  .wrap_top {
    position: initial;
  }
}

:root {
  --i_color: #50a957;
  /* 全局颜色 */
  --i_color2: #e5b593;
  /* 副颜色 */
  --header_height: 0.8rem;
  /* 头部高度 */
  --border_color: rgba(0, 0, 0, 0.1);
  /* 默认边框颜色 */
  --f_menu_height: 50px;
  /* 移动端底部菜单 */
}

@font-face {
  font-family: "bincond";
  src: url("static/webfonts/DINCond-Bold.otf");
}

@media screen and (max-width: 1024px) {
  :root,
  header {
    --header_height: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}
* {
  box-sizing: border-box;
  line-height: 150%;
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2014;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
/* header::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--border_color);
	z-index: 2014;
} */

.top_cont {
  position: relative;
  z-index: 2013;
}
.top {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.TopHeader .top_cont {
  background: #fff;
}

@media screen and (max-width: 1024px) {
  header {
    top: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  header {
    border-radius: 0;
  }
  /* .top_cont {
		background: #333 !important;
	} */
  .top_search_ico::after {
    height: 0rem !important;
  }
}

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
  margin-left: 3.5%;
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  max-width: 2rem;
  max-height: 90%;
}
.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .logo a {
    max-width: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .logo a {
    max-width: 1.8rem;
  }
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-right: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    z-index: 2014;
  }
  .i_nav > li {
    position: relative;
    margin-left: 0.5rem;
  }
  .i_nav > li > a {
    display: flex;
    height: var(--header_height);
    align-items: center;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    text-transform: capitalize;
    opacity: 0.8;
  }
  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav .curr > a {
    position: relative;
    color: var(--i_color);
  }
  .i_nav .sub-menu {
    display: none;
    position: absolute;
    border-top: 2px solid var(--i_color);
    background: #f8f8f8;
    min-width: 1.6rem;
  }
  .i_nav .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu li::before,
  .i_nav .sub-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
  }
  .i_nav .sub-menu li::before {
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 8%);
  }
  .i_nav .sub-menu li::after {
    right: 0;
    width: 0;
    background: var(--i_color);
  }
  .i_nav .sub-menu a {
    display: block;
    padding: 0 0.8rem 0 0.2rem;
    font-size: 0.15rem;
    color: #666;
    line-height: 0.44rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    left: 0;
  }
  .i_nav .sub-menu a::before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-left: 8px solid var(--i_color);
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    left: -0.1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .i_nav .sub-menu li:hover::after {
    right: initial;
    left: 0;
    width: 100%;
  }
  .i_nav .sub-menu > li:hover > a {
    left: 0.16rem;
  }
  .i_nav .sub-menu > li:hover > a {
    color: var(--i_color);
  }
  .i_nav .sub-menu > li:hover > a::before {
    left: 0;
  }
  .i_nav .sub-menu li,
  .i_nav .sub-menu li::after,
  .i_nav .sub-menu a,
  .i_nav .sub-menu a::before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav .sub-menu .sub-menu {
    display: none;
    position: absolute;
    top: -2px;
    left: 100%;
    background: var(--i_color);
    min-width: 1.4rem;
  }
  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: rgb(255 255 255 / 15%);
  }
  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;
    color: #fff;
  }
  .i_nav .sub-menu .sub-menu li:hover {
    background: rgb(255 255 255 / 15%);
  }
	.i_nav .sub-menu .sub-menu li:hover a{
    color:#666
  }
}
@media screen and (max-width: 1440px) {
  .i_nav > li {
    margin-left: 0.4rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav > li {
    margin-left: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: fixed;
    top: var(--header_height);
    left: 0;
    width: 100%;
    width: 100vw;
    max-height: calc(100vh - var(--header_height));
    background: #fff;
    overflow-y: auto;
    z-index: 2;
  }
  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }
  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M36 18L24 30L12 18'/%3E%3C/svg%3E") no-repeat center;
    background-size: 0.18rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);
  }
  .i_nav > li > a {
    padding: 0 0.2rem;
    font-size: 0.14rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: capitalize;
  }
  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 0.14rem;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border_color);
  }
  .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M36 18L24 30L12 18'/%3E%3C/svg%3E") no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M36 18L24 30L12 18'/%3E%3C/svg%3E") no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav .sub-menu .sub-menu {
    display: none;
  }
  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 0.13rem;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }
  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: #222;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #222;
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}

@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
  }
}

.top_r {
  --size: 0.28rem;
}
.top_r {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
}

.top_email {
}
.top_email iconify-icon {
  font-size: var(--size);
  cursor: pointer;
  color: #333;
}

.top_search_ico {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  margin-left: 0.3rem;
  position: relative;
}
.top_search_ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.15rem;
  transform: translate(0, -50%);
  width: 0.01rem;
  height: 0.3rem;
  background-color: #d8d8d8;
}
.top_search_ico iconify-icon {
  font-size: var(--size);
  cursor: pointer;
  color: #333;
}
.top_search_ico.on iconify-icon {
  color: var(--i_color);
}

.top_language {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  position: relative;
  margin-left: 0.2rem;
}

.top_language_i {
  display: flex;
  display: -webkit-flex;

  padding: 0 0.5rem;
  align-items: center;
  background-color: var(--i_color);
  height: 100%;
  gap: 0.1rem;
}
.top_language_i p {
  font-size: 0.18rem;
  color: #fff;
  cursor: pointer;
}
.top_language iconify-icon {
  font-size: var(--size);
  cursor: pointer;
  color: #fff;
}

.top_language.on iconify-icon {
}

.top_language_list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(var(--header_height) - 0.2rem);
  right: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_language_list.on {
  visibility: visible;
  opacity: 1;
  top: var(--header_height);
  box-shadow: 0.04rem 0.06rem 0.1rem rgb(0 0 0 / 10%);
}

.top_language_list ul {
  overflow: hidden;
}

.top_language_list li {
  background: #fff;
}
.top_language_list a > span {
  display: block;
  padding: 0 14px;
  min-width: 100px;
  overflow: hidden;
}
.top_language_list img,
.top_language_list .trp-ls-language-name {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 0.12rem;
  color: #666;
  line-height: 0.3rem;
}

.top_language_list li:hover {
  background: var(--i_color);
}
.top_language_list li:hover .trp-ls-language-name {
  color: #fff;
}
.top_language,
.top_language > iconify-icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .top_language {
    margin: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

header,
.top_cont,
.logo,
.logo img,
.i_nav > li,
.i_nav > li > a,
.top_r {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

/* search main */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  position: fixed;
  top: -1rem;
  left: 0;
  width: 100%;
  padding: 0.16rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
}
.top_search.on {
  top: var(--header_height);
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}
.top_search form {
  width: 80%;
  margin: 0 auto;
  max-width: 5rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;

  border: 1px solid var(--i_color);
  overflow: hidden;
}
.top_search_ipt {
  width: calc(100% - var(--search_height));
  height: var(--search_height);

  padding: 0 0 0 0.12rem;
}
.top_search_btn {
  font-size: 0;
  width: calc(var(--search_height));
  height: var(--search_height);
  background: var(--i_color) url(static/imgs/search.svg) no-repeat center;
  background-size: 0.2rem;
  cursor: pointer;
}

@media screen and (max-width: 1366px) {
  .top {
    padding-right: 3%;
  }
  .top_language_i {
    padding: 0 0.4rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;
  }
  .top_search_ico {
    margin-left: 0.2rem;
  }
  .top_language_i {
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 0.34rem;
  }
  .top_search {
    padding: 0.12rem 0;
  }
}
@media screen and (max-width: 560px) {
  .top_search form {
    width: 94%;
  }
  .top_search_btn {
  }
}

/* 导航下拉 */
/* products */

@media screen and (min-width: 1025px) {
  .drop {
    display: none;
    width: 100%;
    position: fixed;
    top: var(--header_height);
    left: 0;
    background-color: #f5f8fa;

    padding: 0.4rem 0;
    z-index: 99999999;
    border-radius: 0 0 0.4rem 0.4rem;
  }
  .drop_ul {
    display: flex;
    display: -webkit-flex;

    padding: 0 3%;
    justify-content: center;
    overflow: hidden;
  }
  /*滚动条*/
  .drop_ul::-webkit-scrollbar {
    width: 3px;
    height: 2px;
  }
  .drop_ul::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .drop_ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }

  .drop_ul li {
    width: 2.25rem;
    margin-right: 3%;
  }
  .drop_ul li:last-child {
    margin-right: 0;
  }
  .drop_ul li a {
    display: block;
    width: 100%;
  }
  .drop_img {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0.2rem;
  }
  .drop_img::after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .drop_img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .drop_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: all 0.3s ease;
  }
  .drop_ul h2 {
    display: inline-block;
    font-size: 0.15rem;
    color: #222222;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    padding: 0.2rem 0 0.1rem 0;
    margin: 0 auto;
  }
  .drop_ul h2::after {
    content: " ";
    width: 0%;
    height: 0.01rem;
    background: var(--i_color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    bottom: 0;
  }
  .drop_ul li:hover h2::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  .drop_text {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
  }
  .drop_ul li:hover img {
    width: 110%;
    height: 110%;
  }
  .drop_ul li:hover .drop_img::before {
    opacity: 1;
  }
  /* 3个点 */
  .post-image-mask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 0;
    transition: 0.6s all;
    z-index: 3;
  }
  .post-image-mask span,
  .post-image-mask:after,
  .post-image-mask:before {
    display: inline-block;
    margin-right: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.2s ease;
    -webkit-animation: wd-fadeOutRight 0.3s ease;
    animation: wd-fadeOutRight 0.3s ease;
  }
  .post-image-mask:before {
    content: "";
    transition-delay: 0.15s;
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
  }
  .drop_ul li:hover .post-image-mask span,
  .drop_ul li:hover .post-image-mask:after,
  .drop_ul li:hover .post-image-mask:before {
    opacity: 1;
    -webkit-animation: wd-fadeInLeft 0.3s ease;
    animation: wd-fadeInLeft 0.3s ease;
  }
  .drop_ul li:hover .post-image-mask:before {
    transition-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  .drop_ul li:hover .post-image-mask span {
    transition-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  .post-image-mask:after {
    content: "";
    margin-right: 0;
  }
  @-webkit-keyframes wd-fadeOutRight {
    from {
      -webkit-transform: none;
      transform: none;
    }
    to {
      -webkit-transform: translate3d(50px, 0, 0);
      transform: translate3d(50px, 0, 0);
    }
  }
  @keyframes wd-fadeOutRight {
    from {
      -webkit-transform: none;
      transform: none;
    }
    to {
      -webkit-transform: translate3d(50px, 0, 0);
      transform: translate3d(50px, 0, 0);
    }
  }
  @-webkit-keyframes wd-fadeOutLeft {
    from {
      -webkit-transform: none;
      transform: none;
    }
    to {
      -webkit-transform: translate3d(-50px, 0, 0);
      transform: translate3d(-50px, 0, 0);
    }
  }
  @keyframes wd-fadeOutLeft {
    from {
      -webkit-transform: none;
      transform: none;
    }
    to {
      -webkit-transform: translate3d(-50px, 0, 0);
      transform: translate3d(-50px, 0, 0);
    }
  }
  @-webkit-keyframes wd-fadeInLeft {
    from {
      -webkit-transform: translate3d(-50px, 0, 0);
      transform: translate3d(-50px, 0, 0);
    }
    to {
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes wd-fadeInLeft {
    from {
      -webkit-transform: translate3d(-50px, 0, 0);
      transform: translate3d(-50px, 0, 0);
    }
    to {
      -webkit-transform: none;
      transform: none;
    }
  }

  @media screen and (max-width: 1600px) {
  }
  @media screen and (max-width: 1440px) {
  }
  @media screen and (max-width: 1366px) {
  }
  @media screen and (max-width: 1200px) {
    .drop_ul li {
      margin-right: 2%;
    }
  }
}

@media screen and (max-width: 1024px) {
  .drop {
    display: none;
  }
}

/* banner */
.banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.banner .swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.banner .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.banner .swiper-slide {
  height: 0;
  padding-bottom: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide > img,
.banner .swiper-slide video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-button-prev,
.banner-button-next {
  position: absolute;
  top: 48%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: rgb(0 0 0 / 30%);
  z-index: 999;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-border-radius: 0.05rem;
  border-radius: 0.05rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.banner-button-prev {
  left: -0.6rem;
}
.banner-button-next {
  right: -0.6rem;
}
.banner-button-prev i,
.banner-button-next i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #fff;
}
.banner:hover .banner-button-prev {
  left: 0.3rem;
}
.banner:hover .banner-button-next {
  right: 0.3rem;
}
.banner-button-prev:hover,
.banner-button-next:hover {
  background-color: var(--i_color2);
}

.banner-pagination {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0.4rem;
  width: auto;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  z-index: 3;
}

.banner-pagination .swiper-pagination-bullet {
  display: block;
  width: 0.5rem;
  height: 2px;
  margin: 0 0.08rem;
  background: rgb(255 255 255 / 50%);
  position: relative;
  outline: none;
}
.banner-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--i_color);
}
.banner-pagination .swiper-pagination-bullet-active::before {
  -webkit-animation: w100 5800ms 1;
  animation: w100 5800ms 1;
}
@keyframes w100 {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}
/* @media screen and (max-width:1440px) {
	.banner{
		height: 80vh;
	}

	.banner .swiper-slide{
		padding-bottom: 80vh;
	}

	.fullMask {
		height:80vh;
	}
} */

@media screen and (max-width: 1440px) {
  .banner .swiper-slide > img,
  .banner .swiper-slide video {
    object-fit: cover !important;
  }
  .banner {
    height: 74vh;
  }

  .banner .swiper-slide {
    padding-bottom: 74vh;
  }

  .fullMask {
    height: 74vh !important;
  }
}

@media screen and (max-width: 1366px) {
  .banner {
    height: 70vh;
  }

  .banner .swiper-slide {
    padding-bottom: 70vh;
  }

  .fullMask {
    height: 70vh !important;
  }
}

@media screen and (max-width: 1200px) {
  .banner {
    height: 61vh;
  }

  .banner .swiper-slide {
    padding-bottom: 61vh;
  }

  .fullMask {
    height: 61vh !important;
  }
}

@media screen and (max-width: 1024px) {
  .banner {
    margin-top: var(--header_height);
    position: relative;
    top: initial;
    height: auto;
    -webkit-border-radius: 0 0;
    border-radius: 0 0;
  }
  .banner .swiper-slide {
    padding-bottom: 46%;
  }

  .banner-button-prev,
  .banner-button-next {
    display: none;
  }
  .banner-pagination .swiper-pagination-bullet {
    width: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  /* .banner .swiper-slide {
		padding-bottom: 64%
	} */
  .banner-pagination {
    bottom: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .banner-pagination {
    bottom: 0.2rem;
  }
  .banner-pagination .swiper-pagination-bullet {
    width: 0.3rem;
    margin: 0 0.05rem;
  }
}

.fullMask {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .fullMask {
    display: none;
  }
}

/* --------------------banner文字------------------- */
main,
footer {
  background-color: white;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}

.home_btn {
}
.home_btn_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}
.home_btn a {
  display: inline-block;
  background-color: var(--i_color);
  transition: all 0.3s ease;
}
.home_btn a:hover {
  background-color: #222;
}
.home_btn_text {
  display: flex;
  display: -webkit-flex;
}
.home_btn_text p {
  font-size: 0.18rem;
  color: #fff;

  padding: 0.145rem 0.45rem;
  text-transform: capitalize;
}
.home_btn_text i {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;

  background-color: #333;
  padding: 0 0.13rem;
}
.home_btn_text i iconify-icon {
  font-size: 0.24rem;
  color: #fff;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .home_btn_text p {
    font-size: 0.16rem;
    padding: 0.12rem 0.4rem;
  }
  .home_btn_text i {
    padding: 0 0.12rem;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .home_btn_text p {
    font-size: 0.14rem;
    padding: 0.12rem 0.25rem;
  }
  .home_btn_text i {
    padding: 0 0.08rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

.banner_text1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner_text1 h2 {
  font-size: 0.54rem;
  font-weight: 900;
  color: #fff;
  text-transform: capitalize;
  text-shadow: 2px 2px 4px #666;
}
.banner_text1 h3 {
  font-size: 0.2rem;
  color: #fff;
  padding: 0.1rem 0.2rem;
  display: inline-block;
  background: linear-gradient(to top, rgba(20, 20, 20, 1), rgba(64, 64, 64, 1));
  border-radius: 0.9rem;
  margin: 0.2rem 0 0.3rem 0;
}
.banner_text1 dl {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.2rem;
}
.banner_text1 dl dt {
  font-size: 0.2rem;
  color: #fff;
  padding-left: 0.2rem;
  position: relative;
  text-shadow: 1px 1px 2px #666;
}
.banner_text1 dl dt::after {
  content: "";
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 100%;
  background-color: var(--i_color);
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.banner_text1_btn {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}

.banner_text2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner_text2 h2 {
  font-size: 0.54rem;
  color: #fff;
  text-shadow: 2px 2px 4px #666;
  font-weight: 900;
  text-transform: capitalize;
  line-height: 100%;
  text-align: center;
}
.banner_text2 h3 {
  font-size: 0.54rem;
  color: var(--i_color);
  font-weight: 900;
  text-transform: capitalize;
  line-height: 100%;
  text-align: center;
}
.banner_text2 h4 {
  font-size: 0.2rem;
  color: #fff;
  padding: 0.1rem 0.2rem;
  display: inline-block;
  background: linear-gradient(to top, rgba(20, 20, 20, 1), rgba(64, 64, 64, 1));
  border-radius: 0.9rem;
  margin: 0.2rem 0 0.3rem 0;
}
.banner_text2 h5 {
  font-size: 0.2rem;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #666;
  padding: 0 19%;
}
.banner_text1_btnLeft {
  justify-content: flex-start;
  top: 90%;
}
.banner_text3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}
.banner_text3_area {
  width: 45%;
}
.banner_text3_area h2 {
  font-size: 0.2rem;
  color: #fff;
  background: linear-gradient(to bottom right, var(--i_color), var(--i_color2));
  display: inline-block;
  padding: 0.1rem 0.2rem;
  border-radius: 0.9rem;
}
.banner_text3_area h3 {
  font-size: 0.48rem;
  color: #fff;
  font-weight: 900;
  text-transform: capitalize;
  line-height: 120%;
  margin: 0.2rem 0 0.3rem 0;
  text-shadow: 2px 2px 4px #666;
}
.banner_text3_area h4 {
  font-size: 0.2rem;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px #666;
}
.banner .home_btn {
  margin-top: 0.2rem;
}
@media screen and (max-width: 1440px) {
  .banner_text1 h2 {
    font-size: 0.5rem;
  }
  .banner_text1 h3 {
    font-size: 0.18rem;
    border-radius: 0.8rem;
    margin: 0.15rem 0 0.25rem 0;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.5rem;
  }
  .banner_text2 h5 {
    font-size: 0.18rem;
    padding: 0 15%;
  }
  .banner_text3_area h3 {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 1366px) {
  .banner_text1 h2 {
    font-size: 0.45rem;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.45rem;
  }
}
@media screen and (max-width: 1200px) {
  .banner_text1 h2 {
    font-size: 0.4rem;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.4rem;
  }
  .banner_text1 dl {
    gap: 0.15rem;
  }
  .banner_text1 dl dt {
    font-size: 0.18rem;
  }
  .banner_text2 h5 {
    font-size: 0.16rem;
    padding: 0 5%;
  }
  .banner_text2 h4 {
    font-size: 0.16rem;
    border-radius: 0.8rem;
    margin: 0.15rem 0 0.25rem 0;
  }
  .banner_text3_area h3 {
    font-size: 0.3rem;
    margin: 0.15rem 0 0.2rem 0;
  }
  .banner_text3_area h4 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .banner_text1 h2 {
    font-size: 0.35rem;
  }
  .banner_text1 dl dt {
    font-size: 0.16rem;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.35rem;
  }
  .banner_text3_area h4 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 960px) {
  .banner_text1 h2 {
    font-size: 0.3rem;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.3rem;
  }
  .banner_text2 h4 {
    font-size: 0.14rem;
    border-radius: 0.6rem;
    margin: 0.1rem 0 0.2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .banner_text1 h2 {
    font-size: 0.28rem;
  }
  .banner_text1 dl {
    gap: 0.1rem;
  }
  .banner_text1 dl dt {
    font-size: 0.14rem;
  }
  .banner_text1 h3 {
    font-size: 0.16rem;
    border-radius: 0.6rem;
    margin: 0.1rem 0 0.2rem 0;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.28rem;
  }
  .banner_text2 h5 {
    font-size: 0.14rem;
    padding: 0%;
  }
  .banner_text3_area h4 {
    display: none;
  }
  .banner_text3_area h3 {
    font-size: 0.25rem;
    margin: 0.15rem 0 0rem 0;
  }
  .banner_text3_area h2 {
    font-size: 0.18rem;
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 560px) {
  .banner_text1 h2 {
    font-size: 0.26rem;
  }
  .banner_text1 h3 {
    display: none;
  }
  .banner_text1 dl {
    display: none;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.26rem;
  }
  .banner_text2 h5 {
    display: none;
  }
  .banner_text3_area h3 {
    font-size: 0.18rem;
  }
  .banner_text3_area h2 {
    font-size: 0.16rem;
    border-radius: 0.6rem;
    padding: 0.08rem 0.15rem;
  }

  .banner_text1_btnLeft {
    top: 86%;
  }
}
@media screen and (max-width: 425px) {
  .banner_text1 h2 {
    font-size: 0.24rem;
  }
  .banner_text2 h2,
  .banner_text2 h3 {
    font-size: 0.24rem;
  }
  .banner_text3_area h3 {
    font-size: 0.14rem;
  }
  .banner_text3_area h2 {
    font-size: 0.14rem;
    border-radius: 0.4rem;
    padding: 0.06rem 0.1rem;
  }
}

/* Applications */
.Applications_bac {
  padding: 0.6rem 0;
  background: linear-gradient(
    to top,
    rgba(247, 247, 247, 1),
    rgba(247, 247, 247, 0)
  );
  overflow: hidden;
}
.title {
  position: relative;
  z-index: 1;
}
.title p {
  font-size: 0.38rem;
  color: #333;
  font-weight: 900;
  text-align: center;
  position: relative;

  padding-bottom: 0.08rem;
  margin-bottom: 0.1rem;
  text-transform: capitalize;
}
.title p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.52rem;
  height: 0.06rem;
  background-color: var(--i_color);
  border-radius: 0.7rem;
}
.title span {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #666;
  text-align: center;
  display: block;

  padding: 0 20%;
}

@media screen and (max-width: 1440px) {
  .title span {
    padding: 0 15%;
  }
  .title p {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 1366px) {
  .title p {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 1200px) {
  .title span {
    padding: 0 10%;
  }
  .title p {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 1024px) {
  .title span {
    padding: 0 8%;
  }
  .title p {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 960px) {
  .title span {
    padding: 0 6%;
  }
  .title p {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 768px) {
  .title span {
    font-size: 0.14rem;
    line-height: 0.2rem;
    padding: 0%;
  }
  .title p {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 560px) {
  .title p {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 425px) {
}

.Applications_ul {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.2rem;
  grid-template-rows: repeat(2, 2.9rem);
  width: 100%;
  grid-template-areas:
    "a a b c d"
    "e e b f f";
}
.Applications_ul li {
  background-color: var(--i_color);
  border-radius: 0.14rem;
  overflow: hidden;
  position: relative;
}
.Applications_ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}
.Applications_ul li a:hover::after {
  height: 100%;
}
.Applications_ul li:nth-child(1) {
  grid-area: a;
  background: url("static/imgs/application (1).webp") no-repeat center;
  background-size: cover;
}
.Applications_ul li:nth-child(2) {
  grid-area: b;
  background: url("static/imgs/ad (1).webp") no-repeat left;
  background-size: cover;
}
.Applications_ul li:nth-child(3) {
  grid-area: c;
  background: url("static/imgs/application (3).webp") no-repeat center;
  background-size: cover;
}
.Applications_ul li:nth-child(4) {
  grid-area: d;
  background: url("static/imgs/application (4).webp") no-repeat center;
  background-size: cover;
}
.Applications_ul li:nth-child(5) {
  grid-area: e;
  background: url("static/imgs/application (5).webp") no-repeat center;
  background-size: cover;
}
.Applications_ul li:nth-child(6) {
  grid-area: f;
  background: url("static/imgs/ad (3).webp") no-repeat center;
  background-size: cover;
}
.Applications_ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.Applications_ul_p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 0.8rem 0.2rem 0.2rem 0.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.Applications_ul_p p {
  font-size: 0.22rem;
  color: #fff;
  font-weight: bold;
  position: relative;

  padding-left: 0.12rem;
  z-index: 4;
}
.Applications_ul_p p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.03rem;
  height: 0.19rem;
  background-color: var(--i_color);
  transform: translate(0, -50%);
}

@media screen and (max-width: 1440px) {
  .Applications_ul_p p {
    font-size: 0.2rem;
  }
  .Applications_ul {
    grid-template-rows: repeat(2, 2.8rem);
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .Applications_ul_p p {
    font-size: 0.18rem;
  }
  .Applications_ul {
    grid-template-rows: repeat(2, 2.6rem);
  }
  .Applications_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .Applications_ul {
    grid-template-rows: repeat(2, 2.4rem);
  }
}
@media screen and (max-width: 960px) {
  .Applications_ul {
    grid-template-rows: repeat(2, 2rem);
  }
}
@media screen and (max-width: 768px) {
  .Applications_ul_p p {
    font-size: 0.16rem;
  }
  .Applications_ul {
    grid-gap: 0.1rem;
  }
  .Applications_ul {
    margin-top: 0.4rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1.5rem);
    grid-template-areas:
      "a a a"
      "e e e"
      "b c d"
      "b f f";
  }
}
@media screen and (max-width: 560px) {
  .Applications_ul {
    grid-gap: 0.05rem;
  }
  .Applications_ul_p p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 425px) {
}

/* home_products */
.home_products_bac {
  padding: 0.8rem 0;
}
.home_products {
}

/*  */
.HP_partner_box {
  margin: 0.6rem 0;
}

.HP_partner {
  position: relative;
}
.HP_partner_list {
  width: 100%;
  padding: 0.1rem;

  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.HP_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.HP_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.HP_partner_list li a {
  display: block;
  width: 100%;
}
.HP_partner_list .img {
  width: 100%;

  transition: all 0.3s ease;
  border: 1px solid #d6d6d6;
  border-radius: 0.22rem;
  position: relative;
  overflow: hidden;
}
.HP_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.HP_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.HP_partner_list .img img {
  transition: all 0.3s ease;
}

.HP_partner_list p {
  font-size: 0.2rem;
  color: #333;
  text-align: center;

  margin: 0.2rem 2% 0 2%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  transition: all 0.3s ease;
}
.HP_partner_list li:hover .img {
  border-color: var(--i_color);
}
.HP_partner_list li:hover p {
  color: var(--i_color);
}

/* 指示器 */
.HP_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.HP_partner .pt-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  background: #bbb;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.HP_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */
.HP_partner .pt-button-prev,
.HP_partner .pt-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
  outline: none;
}
.HP_partner .pt-button-prev:before,
.HP_partner .pt-button-next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  font-family: -apple-system, simsun, system-ui, sans-serif;
  letter-spacing: -2px;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.HP_partner .pt-button-prev {
  left: 1px;
}
.HP_partner .pt-button-prev:before {
  content: "<";
}
.HP_partner .pt-button-next {
  right: 1px;
}
.HP_partner .pt-button-next:before {
  content: ">";
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .HP_partner .pt-button-prev,
  .HP_partner .pt-button-next {
    display: none;
  }
  .HP_partner .pt-pagination {
    display: block;
  }
  .home_products_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .HP_partner_box {
    margin: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .HP_partner .pt-pagination {
    margin: 14px auto 0;
  }
  .HP_partner .pt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* home_about */

.home_about_bac {
  padding: 0.8rem 0;
  position: relative;
  overflow: hidden;
}
.home_about {
}
.home_about_area {
  margin-left: 6.2%;
  position: relative;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 0.6rem;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
}
.home_about_bac::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #f7f7f7;
}
.home_about_area > i {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(25, 161, 151, 0.3),
    rgba(255, 255, 255, 0.3)
  );
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  z-index: 1;
}
.home_about_left {
  width: 50%;

  padding: 1rem 5% 0 5%;
  position: relative;
  z-index: 2;
}
.home_about_left h3 {
  font-size: 0.28rem;
  color: #333;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.home_about_left h4 {
  font-family: "bincond";
  font-size: 0.6rem;
  color: var(--i_color);
  text-transform: capitalize;
  margin: 0.4rem 0 0.2rem 0;
  position: relative;
  z-index: 2;
}

.home_about_left article {
  font-size: 0.18rem;
  color: #333;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}

.home_about_left article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.home_about_left article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.home_about_left article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .home_about_left article {
    font-size: 0.18rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
}
@media screen and (max-width: 1024px) {
  .home_about_left article {
    font-size: 16px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
}

.home_about_right {
  width: 50%;
  position: relative;
  border-radius: 1.72rem 0 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home_about_right::after {
  content: "";
  display: block;
  padding-bottom: 80.5%;
}
.home_about_right img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.home_four {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.home_four li {
  width: 25%;

  padding: 0 5%;
}
.home_four_div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home_four_div::after {
  content: "";
  position: absolute;
  width: 0.98rem;
  height: 0.98rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    135deg,
    rgba(25, 161, 151, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}
.home_four_div h2 {
  font-family: "bincond";
  font-size: 0.72rem;
  color: #333;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.home_four_div h3 {
  font-family: "bincond";
  font-size: 0.24rem;
  color: #333;
  position: relative;
  z-index: 2;
  margin-left: 0.05rem;
  transition: all 0.3s ease;
}
.home_four li h4 {
  font-size: 0.16rem;
  color: #999;
  text-align: center;
  margin-top: 0.1rem;
}
.home_four li:hover h2 {
  color: var(--i_color);
}
.home_four li:hover h3 {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .home_about_left {
    padding: 0.8rem 4% 0 4%;
  }
  .home_about_left h4 {
    font-size: 0.55rem;
    margin: 0.3rem 0 0.2rem 0;
  }
  .home_about_area {
    margin-left: 5%;
  }
  .home_four_div h2 {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .home_about_left {
    padding: 0.6rem 3% 0 3%;
  }
  .home_about_left h4 {
    font-size: 0.5rem;
    margin: 0.2rem 0 0.1rem 0;
  }

  .home_about_area {
    margin-left: 4%;
  }
  .home_four_div h2 {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .home_about_left {
    padding: 0.4rem 2% 0 2%;
  }
  .home_about_left h4 {
    font-size: 0.4rem;
    margin: 0.2rem 0;
  }
  .home_about_area {
    margin-left: 3%;
  }
}
@media screen and (max-width: 960px) {
  .home_four li {
    padding: 0 4%;
  }
}
@media screen and (max-width: 768px) {
  .home_about_area {
    margin-top: 0.4rem;
  }
  .home_about_left {
    width: 100%;
  }
  .home_about_right {
    width: 100%;
    border-radius: 1.72rem 0 0 1.72rem;
    margin-top: 0.4rem;
  }
  .home_four li {
    width: 50%;
  }
  .home_four {
    margin-top: 0.6rem;
    gap: 0.6rem 0;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* strengths */
.strengths_bac {
  padding-top: 0.8rem;
  background-color: #f7f7f7;
}
.strengths {
}
.strengths_ul {
  margin-top: 0.6rem;
  display: flex;
  display: -webkit-flex;
}
.strengths_ul li {
  width: 17.55%;
  height: 4.46rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  transition: all 0.5s ease;
}
.strengths_text {
  padding: 0.3rem 0.4rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  z-index: 3;
}
.strengths_ul li img {
  width: 0.49rem;
}
.strengths_ul li h3 {
  font-size: 0.22rem;
  color: #fff;
  margin-top: 0.1rem;
  position: relative;
  padding-bottom: 0.1rem;
}
.strengths_ul li h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.02rem;
  background-color: #fff;
  transition: all 0.3s ease 0.5s;
}
.strengths_ul li h4 {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #fff;
  margin-top: 0.2rem;
  display: none;
}

.strengths_ul li:nth-child(1) {
  background: url("static/imgs/ad (1).webp") no-repeat center;
  background-size: cover;
}
.strengths_ul li:nth-child(2) {
  background: url("static/imgs/ad (2).webp") no-repeat center;
  background-size: cover;
}
.strengths_ul li:nth-child(3) {
  background: url("static/imgs/ad (3).webp") no-repeat center;
  background-size: cover;
}
.strengths_ul li:nth-child(4) {
  background: url("static/imgs/ad (4).webp") no-repeat center;
  background-size: cover;
}
.strengths_ul li:nth-child(5) {
  background: url("static/imgs/ad (1).webp") no-repeat center;
  background-size: cover;
}

.strengths_active {
  flex-grow: 4 !important;
}
.strengths_active h3::after {
  width: 0.2rem !important;
}
.strengths_active h4 {
  display: block !important;
}
.strengths_active .strengths_text {
  align-items: flex-start !important;
}

.strengths_ul li::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(80 169 87 / 45%);
  transition: all 0.3s ease 0.5s;
}
.strengths_ul li::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0%;
  left: 25%;
  background-color: rgb(80 169 87 / 45%);
  transition: all 0.4s ease 0.5s;
}

.strengths_active::after {
  width: 25% !important;
}
.strengths_active::before {
  width: 25% !important;
}

.strengths_ul li span::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 50%;
  background-color: rgb(80 169 87 / 45%);
  transition: all 0.5s ease 0.5s;
}
.strengths_ul li span::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 75%;
  background-color: rgb(80 169 87 / 45%);
  transition: all 0.6s ease 0.5s;
}
.strengths_active span::after {
  width: 25% !important;
}
.strengths_active span::before {
  width: 25% !important;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .strengths_ul li {
    width: 13.55%;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .strengths_ul li {
    width: 100%;
    height: 4rem;
  }
  .strengths_ul {
    margin-top: 0.4rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 560px) {
  .strengths_ul li {
    height: 3rem;
  }
}
@media screen and (max-width: 425px) {
}

/* @media screen and (max-width:1440px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {

}
@media screen and (max-width:425px) {

} */

/* home_news */
.home_news_bac {
  padding: 1rem 0;
}
.home_news {
}
.home_news_list {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.4rem 0 0.6rem 0;
}
.home_news_list li {
}
.home_news_list li a {
  font-size: 0.18rem;
  color: #333;

  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.05rem 0.5rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.home_news_list li:hover a {
  background-color: var(--i_color);
  color: #fff;
}
.home_news_area {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.home_news_area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 1px;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.2);
}
.home_news_left {
  width: 47.5%;
}
.home_news_left a {
  display: block;
  width: 100%;
}
.home_news_leftImg {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.home_news_leftImg::after {
  content: "";
  display: block;
  padding-bottom: 67%;
}
.home_news_leftImg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.home_news_leftData {
  position: absolute;
  bottom: 0.15rem;
  left: 0.15rem;
  z-index: 2;
  background-color: var(--i_color);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.15rem 0.2rem;
}
.home_news_leftData h2 {
  font-size: 0.36rem;
  color: #fff;
}
.home_news_leftData h3 {
  font-size: 0.18rem;
  color: #fff;
  margin-top: 0.05rem;
}
.home_news_leftText {
}
.home_news_leftText h4 {
  font-size: 0.22rem;
  color: #333;
  font-weight: bold;
  margin: 0.2rem 0 0.1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.3s ease;
}
.home_news_leftText h5 {
  font-size: 0.16rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home_news_left a:hover h4 {
  color: var(--i_color);
}
.home_news_left a:hover img {
  width: 110%;
  height: 110%;
}

.home_news_right {
  width: 47.5%;
}
.home_news_right li {
  padding: 0.25rem 0;
}
.home_news_right li:not(:last-child) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.home_news_right li a {
  display: block;
  width: 100%;
  display: flex;
  display: -webkit-flex;
}
.home_news_rightImg {
  width: 33.5%;
  position: relative;
  overflow: hidden;
}
.home_news_rightImg::after {
  content: "";
  display: block;
  padding-bottom: 68%;
}
.home_news_rightImg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.home_news_rightText {
  width: 66.5%;

  padding-left: 4%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
}
.home_news_rightText h2 {
  font-size: 0.16rem;
  color: #999;
}
.home_news_rightText h3 {
  font-size: 0.22rem;
  color: var(--i_color);
  font-weight: bold;
  margin: 0.12rem 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home_news_rightText h4 {
  font-size: 0.16rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home_news_right li:hover a img {
  width: 110%;
  height: 100%;
}

@media screen and (max-width: 1440px) {
  .home_news_bac {
    padding: 0.8rem 0px;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .home_news_bac {
    padding: 0.6rem 0px;
  }
  .home_news_list {
    gap: 0.5rem;
    margin: 0.3rem 0 0.5rem 0;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .home_news_left {
    width: 100%;
  }
  .home_news_right {
    width: 100%;
  }
  .home_news_area::after {
    height: 0%;
  }
  .home_news_left a {
    padding-bottom: 0.25rem;
    padding-top: 0;
  }
  .home_news_left {
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  }
  .home_news_list {
    gap: 0.4rem;
    margin: 0.2rem 0 0.4rem 0;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* ---------------------------------footer---------------------------------- */
.footer_top_bac {
  background: linear-gradient(to bottom right, var(--i_color), #50a99d);
  padding: 0.45rem 0;
  position: relative;
  overflow: hidden;
}

.footer_top_bac::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  z-index: 1;
  border-radius: 8px;
}

/* 内容层 */
.footer_top_bac > * {
  position: relative;
  z-index: 2; /* 确保内容在最上层 */
}

.footer_top {
  justify-content: center;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-direction: column;
}
.footer_top img {
  width: 1.8rem;
}
.footer_top h2 {
  font-size: 0.24rem;
  color: #fff;
  text-align: center;
  margin: 0.2rem 0;
}
@keyframes shimmer {
  0% {
    background-position: -50% 0;
  }
  100% {
    background-position: 150% 0;
  }
}

.footer_top_bac::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(80, 169, 87, 0.5) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}
.footer_btn {
  display: flex;
  display: -webkit-flex;
  gap: 0.3rem;
}
.footer_btn a {
  font-size: 0.16rem;

  padding: 0.14rem 0.48rem;
  border-radius: 0.07rem;
  display: inline-block;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.footer_btn_black {
  background-color: #333;
  border: 1px solid #333;
}
.footer_btn_white {
  border: 1px solid #fff;
}

.footer_btn_black:hover {
  background-color: transparent;
  border: 1px solid #fff;
}
.footer_btn_white:hover {
  border: 1px solid #333;
  background-color: #333;
}

@media screen and (max-width: 1440px) {
  .footer_top img {
    width: 1.7rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .footer_top img {
    width: 1.6rem;
  }
  .footer_top h2 {
    font-size: 0.22rem;
  }
  .footer_btn a {
    padding: 0.1rem 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .footer_top img {
    width: 1.5rem;
  }
  .footer_top h2 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* @media screen and (max-width:1440px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {

}
@media screen and (max-width:425px) {

} */

.footer_bac {
  padding: 0.6rem 0;
  background-color: #181818;
}
.footer {
  display: flex;
  display: -webkit-flex;
}
.footer_1 {
  width: 32%;

  padding-right: 2%;
}
.footer_h2 {
  font-size: 0.22rem;
  color: #fff;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 0.3rem;
}
.footer_1_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer_1_ul li {
  display: flex;
  display: -webkit-flex;
}
.footer_1_ul li iconify-icon {
  font-size: 0.18rem;
  color: #999;
  object-fit: contain;
  margin-top: 0.03rem;
}
.footer_1_ul li a {
  font-size: 0.18rem;
  color: #999;
  width: calc(100% - 0.14rem);

  padding-left: 0.1rem;
  transition: all 0.3s ease;
}
.footer_1_ul li a:hover {
  color: #fff;
}
.footer_1_dl {
  display: flex;
  display: -webkit-flex;
  margin-top: 0.8rem;
  gap: 0.2rem;
}
.footer_1_dl dt {
}
.footer_1_dl dt a {
}
.footer_1_dl dt a iconify-icon {
  font-size: 0.24rem;
  color: #999;
  transition: all 0.3s ease;
}
.footer_1_dl dt a iconify-icon:hover {
  color: var(--i_color);
  transform: translateY(-0.05rem);
}

.footer_2 {
  width: 16.5%;

  padding-right: 2%;
}
.footer_h2_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer_h2_ul ul {
  display: none;
}
.footer_h2_ul li {
}
.footer_h2_ul li a {
  font-size: 0.18rem;
  color: #999;
  display: inline-block;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  text-transform: capitalize;
}
.footer_h2_ul li a:hover {
  color: var(--i_color);
  border-bottom: 1px solid var(--i_color);
}
.footer_3 {
  width: 22.5%;

  padding-right: 2%;
}
.footer_4 {
  width: 29%;
}
.footer_max_bac {
  background-color: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_max {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;

  padding: 0.2rem 0;
}
.footer_max p {
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer_max a {
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.5);
}

#wpforms-76 {
  --input_font_size: 0.14rem;
  --input_height: 0.52rem;
}
#wpforms-76 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-76 {
  width: 100%;
  overflow: hidden;
}

#wpforms-76 input,
#wpforms-76 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-76 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-76 .wpforms-error-container {
  line-height: 16px;
}
#wpforms-76 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-76 .wpforms-submit-container {
  padding: 0 !important;
  width: 100%;
  height: 0.42rem;
  margin: 0 auto;
  background: var(--i_color);
  border-radius: 0.06rem;
  position: relative;
  transition: all 0.3s ease;
}

#wpforms-76 .wpforms-submit-container:hover {
  background: var(--i_color2);
}

#wpforms-76 .wpforms-field {
  position: relative;
}
#wpforms-76 .wpforms-field-label {
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0 !important;
}
#wpforms-76 .wpforms-field-label span {
  position: absolute;
  top: 0.19rem;
  left: 3px;
  font-size: 0.14rem;
  color: red;
}

#wpforms-76 .wpforms-error {
  margin-top: 0.01rem;
  font-size: 0.12rem !important;
}

#wpforms-76 .wpforms-field {
  width: 100%;
  padding-bottom: 0.1rem;
  background: transparent;
  overflow: hidden;
}
#wpforms-76 .wpforms-field:nth-child(1) {
  margin-right: 0.1rem;
}
#wpforms-76 .wpforms-field:nth-child(1),
#wpforms-76 .wpforms-field:nth-child(2) {
  width: calc(50% - 0.05rem);
}

#wpforms-76 input {
  height: var(--input_height);
}

#wpforms-76 input,
#wpforms-76 textarea {
  width: 100%;
  border: 0;
  max-width: 100% !important;
  font-size: var(--input_font_size);
  background-color: #232323;
  color: #fff;

  height: var(--input_height);
  padding: 0 10px;
  border-radius: 0.05rem;
  box-shadow: 0 0 0 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#wpforms-76 textarea {
  padding: 0.2rem 10px;
  height: 1.5rem;
}

#wpforms-76 input::-webkit-input-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}
#wpforms-76 input::-moz-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}
#wpforms-76 input::-moz-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}
#wpforms-76 input::-ms-input-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}
#wpforms-76 textarea::-webkit-input-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}
#wpforms-76 textarea::-moz-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}
#wpforms-76 textarea::-moz-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}
#wpforms-76 textarea::-ms-input-placeholder {
  color: rgba(153, 153, 153, 0.4);
  font-size: var(--input_font_size);
}

#wpforms-76 #wpforms-76-field_1-error,
#wpforms-76 #wpforms-76-field_2-error,
#wpforms-76 #wpforms-76-field_3-error,
#wpforms-76 #wpforms-76-field_4-error {
  position: absolute;
  font-size: 14px;
}

#wpforms-76 .wpforms-submit-container button {
  overflow: hidden;
  width: 100%;
  height: 0.42rem;
  font-size: 0.16rem;
  color: #fff;
  line-height: 0.42rem;
  cursor: pointer;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}
#wpforms-76 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .footer_1,
  .footer_2,
  .footer_3 {
    display: none;
  }
  .footer_4 {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .footer_max p {
    display: none;
  }
}
@media screen and (max-width: 425px) {
}

/* @media screen and (max-width:1440px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {

}
@media screen and (max-width:425px) {

} */

/* --------------------------------about------------------------------ */
.banner_about {
  position: relative;
  width: 100%;
}
.banner_about::after {
  content: "";
  display: block;
  padding-bottom: 32.15%;
}
.banner_about img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 560px) {
  .banner_about::after {
    padding-bottom: 45%;
  }
}
/* 当前位置 */
.in_position {
  padding: 0.14rem 0;
}
.in_position a {
  display: block;
  float: left;
  font-size: 14px;
  color: #4c4c4c;
  position: relative;
  line-height: 0.2rem;
  text-transform: capitalize;
}

.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 0.1rem;
  color: #4c4c4c;
}
.in_position a:last-child {
  color: var(--i_color) !important;
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 959px) {
  .in_position a {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 767px) {
  .in_position a {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .in_position a {
    font-size: 12px;
  }
}

.about_list {
  background-color: #f7f7f7;
}
.about_list_ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about_list_ul li {
  width: 25%;
}
.about_list_ul li a {
  font-size: 0.18rem;
  color: #333;
  text-align: center;
  display: block;
  padding: 0.2rem 0;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.about_list_ul li:hover a {
  color: #fff;
  background-color: var(--i_color);
}
.about_list_active a {
  color: #fff !important;
  background-color: var(--i_color) !important;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .about_list_ul li a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .about_list_ul li {
    width: 50%;
  }
  .about_list_ul li a {
    padding: 0.15rem 0;
  }
}
@media screen and (max-width: 560px) {
  .about_list_ul li a {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 425px) {
}

/* about_us */
.about_us_bac {
  padding: 0.6rem 0;
  overflow: hidden;
}
.about_us {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.about_us_left {
  width: 48.5%;
}
.about_us_right {
  width: 51.5%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;

  padding-top: 0.6rem;
}
.about_us_left h2 {
  font-size: 0.52rem;
  color: #333;
  font-weight: 900;
  text-transform: capitalize;
  line-height: 100%;
}
.about_us_left h2 span {
  color: var(--i_color);
}
.about_us_left h3 {
  font-size: 0.36rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 0.3rem;
  margin-top: 0.1rem;
}

.about_us_left article {
  font-size: 0.18rem;
  color: #666;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}

.about_us_left article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.about_us_left article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.about_us_left article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .about_us_left article {
    font-size: 0.18rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
}
@media screen and (max-width: 1024px) {
  .about_us_left article {
    font-size: 16px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
}@media screen and (max-width: 768px) {
  .about_us_left article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
}


.about_us_rightImg {
  position: relative;
}
.about_us_rightImg img {
  width: 3.52rem;
  height: 3.52rem;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.about_us_span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 115%;
  border-radius: 50%;
  border: 1px solid #f2f2f2;
  animation: quan 40s linear infinite;
}
.about_us_span span {
  position: absolute;
  background-color: #f2f2f2;
  border-radius: 50%;
}
.about_us_span span:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.28rem;
  height: 0.28rem;
}
.about_us_span span:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.15rem;
  height: 0.15rem;
}
.about_us_span span:nth-child(3) {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.2rem;
  height: 0.2rem;
}
.about_us_span span:nth-child(4) {
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 0.25rem;
  height: 0.25rem;
}

@keyframes quan {
  0% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
}

.about_us_watch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  border-radius: 50%;
  border: 1px solid var(--i_color);
  border-top: 0;
  border-left: 0;
}
.about_us_watch::after {
  content: "";
  width: 0.13rem;
  height: 0.13rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background-color: var(--i_color);
}
.about_us_watch::before {
  content: "";
  width: 0.13rem;
  height: 0.13rem;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--i_color);
}
.about_us_watch i {
  display: block;
  width: 1.26rem;
  height: 1.26rem;
  border-radius: 50%;
  font-size: 0.16rem;
  color: #fff;
  background-color: var(--i_color);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  position: absolute;
  top: 78%;
  left: 90%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.about_us_img {
  position: relative;
  margin-top: 0.8rem;
  -webkit-border-radius: 0.2rem 0.2rem 0 0;
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
}
.about_us_img::after {
  content: "";
  display: block;
  padding-bottom: 31.28%;
}
.about_us_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.about_us_text {
  font-size: 0.18rem;
  line-height: 0.26rem;
  color: #333;
  text-align: center;
  margin: 0.4rem auto 0.6rem auto;
}
.about_us_bac .home_four {
  margin-top: 0rem;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .about_us_img {
    -webkit-border-radius: 0.1rem 0.1rem 0 0;
    border-radius: 0.1rem 0.1rem 0 0;
  }
}
@media screen and (max-width: 960px) {
	.about_us_left h2 {
    font-size: 0.4rem;
  }
	.about_us_left h3{
	 font-size: 0.24rem;
	}
}
@media screen and (max-width: 768px) {
  .about_us_left {
    width: 100%;
  }
  .about_us_right {
    width: 100%;
    padding-top: 0.8rem;
  }
  .about_us_left h2 {
    font-size: 0.3rem;
  }
	.about_us_left h3{
	 font-size: 0.18rem;
	}
  .about_us_watch i {
    top: 50%;
    left: 50%;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* eject videos */
.vd_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}
.vd_box_area {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2014;
  width: 60%;
  max-height: 90%;
}
.vd_box_area::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.close_v {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--i_color);
  z-index: 2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.close_v::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.44rem;
  color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.vd_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .vd_box_area {
    width: 80%;
  }
  .close_v::before {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .vd_box_area {
    width: 88%;
  }
  .close_v {
    top: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}

/* company */
.company_bac {
  padding: 0.8rem 0;
  background: url("static/imgs/company_bac.webp") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.company {
}
.company_list {
  background-color: #fff;
  display: flex;
  display: -webkit-flex;
  margin: 0.6rem auto;
}
.company_list li {
  font-size: 0.18rem;
  color: #333;
  width: calc(100% / 3);

  padding: 0.18rem 2%;
  text-transform: capitalize;
  text-align: center;
  transition: all 0.3s ease;
}
.company_list .current {
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .company_list li {
    font-size: 0.16rem;
  }
  .company_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .company_list li {
    font-size: 0.14rem;
  }
  .company_list {
    margin: 0.4rem auto;
  }
  .company_bac {
    background-attachment: unset;
  }
}
@media screen and (max-width: 560px) {
  .company_list {
    margin: 0.2rem auto;
  }
}
@media screen and (max-width: 425px) {
}

/*  */
.com_partner_box {
}

.com_partner {
  position: relative;
}
.com_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.com_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.com_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.com_partner_list .img {
  width: 100%;

  position: relative;
  overflow: hidden;
}
.com_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 69%;
}
.com_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.com_partner_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* 指示器 */
.com_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.com_partner .pt-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  background: #bbb;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.com_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */
.com_partner .pt-button-prev,
.com_partner .pt-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
  outline: none;
}
.com_partner .pt-button-prev:before,
.com_partner .pt-button-next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  font-family: -apple-system, simsun, system-ui, sans-serif;
  letter-spacing: -2px;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.com_partner .pt-button-prev {
  left: 1px;
}
.com_partner .pt-button-prev:before {
  content: "<";
}
.com_partner .pt-button-next {
  right: 1px;
}
.com_partner .pt-button-next:before {
  content: ">";
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .com_partner .pt-button-prev,
  .com_partner .pt-button-next {
    display: none;
  }
  .com_partner .pt-pagination {
    display: block;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
  .com_partner .pt-pagination {
    margin: 14px auto 0;
  }
  .com_partner .pt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/*  */

.zs_bac {
  padding: 0.8rem 0;
}

.zs_partner_box {
  margin-top: 0.6rem;
}

.zs_partner {
  position: relative;
}
.zs_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.zs_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.zs_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.zs_partner_list .img {
  width: 100%;

  border: 1px solid rgba(51, 51, 51, 0.2);
  position: relative;
  overflow: hidden;
}
.zs_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 131%;
}
.zs_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;

  padding: 0.1rem;
}

.zs_partner_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* 指示器 */
.zs_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.zs_partner .pt-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  background: #bbb;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.zs_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */
.zs_partner .pt-button-prev,
.zs_partner .pt-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--i_color);
  z-index: 999;
  cursor: pointer;
  outline: none;
}
.zs_partner .pt-button-prev:before,
.zs_partner .pt-button-next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.3rem;
  line-height: 0.3rem;
  color: #fff;
  font-family: -apple-system, simsun, system-ui, sans-serif;
  letter-spacing: -2px;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.zs_partner .pt-button-prev {
  left: -6%;
}
.zs_partner .pt-button-prev:before {
  content: "<";
}
.zs_partner .pt-button-next {
  right: -6%;
}
.zs_partner .pt-button-next:before {
  content: ">";
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .zs_partner .pt-button-prev,
  .zs_partner .pt-button-next {
    display: none;
  }
  .zs_partner .pt-pagination {
    display: block;
  }
  .zs_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .zs_partner_box {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .zs_partner .pt-pagination {
    margin: 14px auto 0;
  }
  .zs_partner .pt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* contact_us */
.contact_us_bac {
  padding: 0.8rem 0 1rem 0;
  background-color: #f7f7f7;
}
.contact_us {
}
.contact_list {
  display: flex;
  display: -webkit-flex;
  gap: 0.8rem;
  margin-top: 0.6rem;
}
.contact_list li {
  width: calc((100% - 1.6rem) / 3);
}
.contact_list_text {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;

  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.contact_list_text h3 {
  font-size: 0.22rem;
  color: #333;
  font-weight: bold;
}
.contact_list_text iconify-icon {
  font-size: 0.2rem;
  color: var(--i_color);
}
.contact_list p {
  font-size: 0.16rem;
  color: #333;
}
.contact_list a {
  font-size: 0.36rem;
  color: #333;
  font-family: "bincond";
  transition: all 0.3s ease;
}
.contact_list a:hover {
  color: var(--i_color);
}

.contact_ul {
  display: flex;
  display: -webkit-flex;
  margin-top: 0.8rem;
  gap: 0.4rem;
  align-items: flex-start;
}
.contact_ul li {
  width: calc((100% - 1.6rem) / 5);
  background-color: #fff;

  padding: 0.4rem 0.12rem 0.6rem 0.12rem;
}
.contact_ul_div {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.contact_ul_div h2 {
  font-size: 0.22rem;
  color: var(--i_color);
  font-weight: bold;
}
.contact_ul_div h3 {
  font-size: 0.16rem;
  color: #999;
  margin-top: 0.05rem;
  text-transform: capitalize;
  text-align: center;
}
.contact_ul_dl {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.contact_ul_dl dt {
}
.contact_ul_dl dt p {
  font-size: 0.16rem;
  color: #999;
  text-align: center;
}
.contact_ul_dl dt a {
  font-size: 0.16rem;
  color: #333;
  display: block;
  text-align: center;
  margin-top: 0.05rem;
}

@media screen and (min-width: 561px) {
  .contact_ul li:nth-child(even) {
    margin-top: 0.55rem;
  }
}
.contact_ul li:nth-child(even) {
  background-color: var(--i_color);
}
.contact_ul li:nth-child(even) h2,
.contact_ul li:nth-child(even) a {
  color: #fff;
}
.contact_ul li:nth-child(even) h3,
.contact_ul li:nth-child(even) p {
  color: rgba(255, 255, 255, 0.5);
}
.contact_li_green .contact_ul_div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1440px) {
  .contact_ul {
    gap: 0.3rem;
  }
  .contact_ul li {
    width: calc((100% - 1.2rem) / 5);
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .contact_ul {
    gap: 0.2rem;
  }
  .contact_ul li {
    width: calc((100% - 0.8rem) / 5);
  }
  .contact_list a {
    font-size: 0.3rem;
  }
  .contact_us_bac {
    padding: 0.6rem 0 1rem 0;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .contact_ul li {
    width: calc((100% - 0.4rem) / 3);
  }
  .contact_ul {
    flex-wrap: wrap;
  }
  .contact_list {
    gap: 0.4rem;
    margin-top: 0.4rem;
  }
  .contact_list li {
    width: 100%;
  }
  .contact_list {
    flex-wrap: wrap;
  }
  .contact_list_text h3 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .contact_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
}
@media screen and (max-width: 425px) {
}

/* contact_form */
.contact_form_bac {
  padding: 0.8rem 0;
}
.contact_form {
}

.contact_form_area {
  margin-top: 0.6rem;
}

#wpforms-86 {
  --input_font_size: 0.16rem;
  --input_height: 0.44rem;
}
#wpforms-86 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-86 {
  width: 100%;
  overflow: hidden;
}

#wpforms-86 input,
#wpforms-86 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-86 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-86 .wpforms-error-container {
  line-height: 16px;
}
#wpforms-86 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-86 .wpforms-submit-container {
  padding: 0 !important;
  width: 4.6rem;
  max-width: 100%;
  height: 0.44rem;
  background: #222;
  position: relative;
  margin: 0.4rem auto 0;
  transition: all 0.3s ease;
}
#wpforms-86 .wpforms-submit-container:hover {
  background-color: var(--i_color);
}

#wpforms-86 .wpforms-field {
  position: relative;
}
#wpforms-86 .wpforms-field-label {
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0 !important;
}
#wpforms-86 .wpforms-field-label span {
  position: absolute;
  top: 12px;
  left: 3px;
  font-size: 0.14rem;
  color: red;
}

#wpforms-86 .wpforms-error {
  margin-top: 0.01rem;
  font-size: 0.12rem !important;
}

#wpforms-86 .wpforms-field {
  width: 100%;
  margin-bottom: 10px;
  background: transparent;
  overflow: hidden;
}
#wpforms-86 .wpforms-field:nth-child(1),
#wpforms-86 .wpforms-field:nth-child(2) {
  margin-right: 0.2rem;
}
#wpforms-86 .wpforms-field:nth-child(1),
#wpforms-86 .wpforms-field:nth-child(2),
#wpforms-86 .wpforms-field:nth-child(3) {
  width: calc((100% - 0.4rem) / 3);
}

#wpforms-86 input {
  height: var(--input_height);
}
#wpforms-86 textarea {
  height: 2.8rem;
}
#wpforms-86 input,
#wpforms-86 textarea {
  width: 100%;
  border: 0;
  max-width: 100% !important;
  font-size: var(--input_font_size);
  background-color: #f7f7f7;
  color: #222;

  line-height: var(--input_height);
  padding: 0 10px;
  border-radius: 0.04rem;
  box-shadow: 0 0 0 0 !important;
}

#wpforms-86 input::-webkit-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-86 input::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-86 input::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-86 input::-ms-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-86 textarea::-webkit-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-86 textarea::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-86 textarea::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-86 textarea::-ms-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}

#wpforms-86 .wpforms-submit-container button {
  overflow: hidden;
  width: 100%;
  height: 0.44rem;
  font-size: 0.16rem;
  color: #fff;
  line-height: 0.44rem;
  cursor: pointer;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}
#wpforms-86 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .contact_form_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  #wpforms-86 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  #wpforms-86 .wpforms-field:nth-child(1),
  #wpforms-86 .wpforms-field:nth-child(2) {
    margin-right: 0rem;
  }
  #wpforms-86 .wpforms-field:nth-child(1),
  #wpforms-86 .wpforms-field:nth-child(2),
  #wpforms-86 .wpforms-field:nth-child(3) {
    width: 100%;
  }
  #wpforms-86 {
    --input_height: 0.5rem;
  }
  .become_form {
    margin-top: 0.4rem;
  }
  .contact_form_area {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

.contact_map {
  width: 100%;
}
.map {
  position: relative;
  overflow: hidden;
}
.map::before {
  content: "";
  display: block;
  padding-bottom: 30%;
}
.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* applications */
.applications_bac {
  background-color: #f7f7f7;

  padding: 0.8rem 0;
  overflow: hidden;
}
.applications {
}
.applications_ul {
  margin-top: 0.6rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.5rem;
}
.applications_ul li {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.applications_left {
  width: 50%;
  position: relative;
}
.applications_left::after {
  content: "";
  display: block;
  padding-bottom: 63%;
}
.applications_left img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.applications_right {
  width: 50%;
}
.applications_text {
  min-height: 3.57rem;
  background-color: #fff;

  padding: 0.45rem 0.3rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
}
.applications_txt {
}
.applications_txt h2 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;

  padding-left: 0.12rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.applications_txt h2::after {
  content: "";
  width: 0.03rem;
  height: 0.2rem;
  background-color: var(--i_color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.applications_txt h3 {
  font-size: 0.16rem;
  line-height: 0.22rem;
  color: #666;
  margin-bottom: 0.2rem;
}
.applications_text h4 {
  font-size: 0.14rem;
  color: #333;
}
.applications_text h4 span {
  font-size: 0.24rem;
  color: var(--i_color);
}

.applications_ul li:nth-child(even) {
  display: flex;
  display: -webkit-flex;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .applications_left,
  .applications_right {
    width: 100%;
  }
  .applications_text {
    min-height: unset;
    padding: 0.4rem 0.25rem;
  }
  .applications_txt h2 {
    font-size: 0.22rem;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/*------------------------ news -------------------------- */
.news_bac {
  padding: 0.8rem 0;
}
.news {
}
.news_ul {
  margin-top: 0.6rem;
}
.news_ul li {
  padding: 0.6rem 0;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}
.news_ul li a {
  display: block;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_img {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.news_img::after {
  content: "";
  display: block;
  padding-bottom: 63%;
}
.news_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.news_text {
  width: 50%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.news_text_div {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: flex-start;
}
.news_div {
  padding: 0.14rem 0.2rem;
  border: 1px solid rgba(51, 51, 51, 0.2);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.news_div h2 {
  font-size: 0.36rem;
  color: #333;
}
.news_div h3 {
  font-size: 0.18rem;
  color: #333;
}
.news_text h4 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  margin: 0.3rem 0 0.1rem 0;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news_text h5 {
  font-size: 0.16rem;
  line-height: 0.22rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.news_text h6 {
  font-size: 0.18rem;
  color: #333;

  padding: 0.13rem 0.5rem;
  text-transform: capitalize;
  border: 1px solid rgba(51, 51, 51, 0.2);
  display: inline-block;
  transition: all 0.3s ease;
}
.news_ul li:hover h4 {
  color: var(--i_color);
}
.news_ul li:hover h6 {
  border-color: var(--i_color);
  color: #fff;
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .news_div h2 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .news_div h2 {
    font-size: 0.32rem;
  }
  .news_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .news_div h2 {
    font-size: 0.3rem;
  }
  .news_text h5 {
    -webkit-line-clamp: 2;
  }
  .news_text h4 {
    font-size: 0.2rem;
    margin: 0.2rem 0 0.1rem 0;
    -webkit-line-clamp: 1;
  }
  .news_ul li {
    padding: 0.4rem 0;
  }
  .news_text h6 {
    font-size: 0.16rem;
    padding: 0.12rem 0.4rem;
  }
}
@media screen and (max-width: 960px) {
  .news_div h2 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 768px) {
  .news_img {
    width: 100%;
  }
  .news_text_div {
    margin: 0.4rem 0;
  }
  .news_text {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .news_ul {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
}

/* Number of pages */
.in_page_box {
  text-align: center;
  overflow: hidden;
  margin-top: 0.4rem;
}
.in_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.in_page li {
  min-width: 0.32rem;
  margin: 0 0.04rem;
}
.in_page a,
.in_page span {
  display: block;
  padding: 0 0.12rem;
  line-height: 0.32rem;
  font-size: 0.14rem;
  color: #666;
  background: #fff;
  -webkit-border-radius: 0.05rem;
  border-radius: 0.05rem;
  border: 1px solid var(--border_color);
  overflow: hidden;
  transition: all 0.3s ease;
}
.in_page > i {
  margin-top: 0.14rem;
  width: 100%;
  font-size: 0.13rem;
  color: #888;
  display: none;
}

.in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
  border-color: var(--i_color) !important;
  background: var(--i_color);
  color: #fff !important;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .in_page li {
    min-width: 0.28rem;
  }
  .in_page a,
  .in_page span {
    line-height: 0.28rem;
    padding: 0 0.1rem;
  }
}
@media screen and (max-width: 560px) {
}

/*------------------------------- downlaod -----------------------------------*/
.download_bac {
  background-color: #f7f7f7;

  padding: 0.8rem 0;
}
.download {
}
.download_ul {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}
.download_ul li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  transition: all 0.3s ease;
  position: relative;
}
.download_ul li::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--i_color);
  transition: all 0.7s ease;
}
.download_ul li a {
  display: block;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.25rem;
}
.download_ul li a h2 {
  font-size: 0.18rem;
  color: #333;

  padding-right: 2%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  width: calc(100% - 1.26rem);
  transition: all 0.3s ease;
}
.download_icon {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.download_icon iconify-icon {
  font-size: 0.25rem;
  color: rgba(51, 51, 51, 0.2);
  margin-right: 0.2rem;
  transition: all 0.3s ease;
}
.download_icon h3 {
  font-size: 0.18rem;
  color: #333;
}

.download_ul li:hover {
  background-color: #fff;
}
.download_ul li:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.download_ul li:hover h2 {
  color: var(--i_color);
}
.download_ul li:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .download_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .download_icon h3 {
    display: none;
  }
  .download_icon iconify-icon {
    margin-right: 0rem;
  }
  .download_ul li a h2 {
    font-size: 0.16rem;
    width: calc(100% - 0.3rem);
  }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------products---------------------------- */
.products_bac {
  padding: 0.8rem 0;
  background-color: #f7f7f7;
}
.products {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.products_left {
  width: 3.5rem;
}

.p_nav_tit {
  margin-bottom: 0.3rem;
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
  position: relative;

  padding-bottom: 0.2rem;
}
.p_nav_tit::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.06rem;
  border-radius: 0.73rem;
  background-color: var(--i_color);
  bottom: 0;
  left: 0;
}

.p_nav_list {
}

.p_nav_list li {
  position: relative;
}

/* .p_nav_list li::after {
	content: '';
	position: absolute;
	left: -0.05rem;
	top: 0.18rem;
	width: 0.12rem;
	height: 0.12rem;
	background: url('static/imgs/about_icon.png') center no-repeat;
	background-size: contain;
	opacity: 0;
	transition: all 0.3s ease;

} */

/* .curr::after {
	left: 0 !important;
	opacity: 1 !important;
} */

.p_nav_list li:not(:last-child) {
  padding-bottom: 0.1rem;
  margin-bottom: 0.1rem;
}

.p_nav_list .cat_name {
  padding: 0.1rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  background-color: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_nav_list .cat_name:hover {
  background: var(--i_color2);
}
.p_nav_list .cat_name b {
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;

  position: relative;
}
.p_nav_list .cat_name > b::after {
  content: "";
  position: absolute;
  top: 46%;
  left: 0;
  transform: translate(0, -50%);
  width: 0.16rem;
  height: 0.16rem;
  background: url("static/imgs/products_is.png") center no-repeat;
  background-size: contain;
}
.p_nav_list .cat_name i {
  margin-left: auto;
  font-size: 0.22rem;
  color: #fff;
  flex-shrink: 0;
}

.p_nav_list .cat_name i::before {
  content: "\f107";
}

.p_nav_list .curr .cat_name b {
  color: #fff;
}

.p_nav_list .curr .cat_name i::before {
  content: "\f106";
}
.p_nav_list .curr .cat_name b::after {
  background: url("static/imgs/products_a.png") center no-repeat;
  background-size: contain;
}

.p_nav_list dl {
  display: none;
  background-color: #fff;

  padding-bottom: 0.16rem;
}

.p_nav_list .curr dl {
  display: block;
}

.p_nav_list dt {
  padding-top: 0.16rem;
  position: relative;
}

.p_nav_list dt a {
  display: block;
  padding-left: 0.3rem;
  font-size: 0.15rem;
  color: rgba(51, 51, 51, 0.5);
  position: relative;
}
.p_nav_list dt a::after {
  content: "";
  background: url("static/imgs/products_i.png") no-repeat center;
  background-size: contain;
  width: 0.12rem;
  height: 0.17rem;
  position: absolute;
  top: 60%;
  left: 0rem;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
  opacity: 0;
}

.p_nav_list dt:hover a::after {
  opacity: 1;
  left: 0.1rem;
}
.p_nav_list dt.on a::after {
  opacity: 1 !important;
  left: 0.1rem !important;
}

.p_nav_list dt:hover::before,
.p_nav_list dt.on::before {
  background: var(--i_color);
  border-color: var(--i_color);
}

.p_nav_list dt:hover a,
.p_nav_list dt.on a {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .p_nav {
    padding-bottom: 0;
    margin-bottom: 0.46rem;
    width: 100%;
  }
  .p_nav_tit {
    margin-bottom: 0;
    padding: 0.14rem 0.2rem;
    font-size: 0.2rem;
    background: var(--i_color);
  }
  .p_nav_tit::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0.2rem;
    width: 16px;
    height: 4px;
    background: #fff;
  }
  .p_nav_tit::after {
    content: "";
    position: absolute;
    right: calc(0.2rem + 6px);
    top: 50%;
    bottom: unset;
    left: unset;
    transform: translate(0, -50%);
    width: 4px;
    height: 16px;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .p_nav_tit.on::after {
    height: 0;
  }
  .p_nav_tit {
    color: #fff;
  }
  .p_nav_tit br {
    display: none;
  }
  .p_nav_list {
    display: none;
    margin-top: 0.3rem;
    padding: 0 0.2rem;
  }
  .p_nav_list li:not(:last-child) {
    border-width: 1px;
  }

  .p_nav_list li::after {
    top: 0.08rem;
  }
  .products_left {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p_nav_tit {
    font-size: 0.18rem;
  }
}

@media screen and (max-width: 560px) {
  .p_nav {
    margin-bottom: 0.3rem;
  }
  .p_nav_tit {
    padding: 0.12rem 0.2rem;
    font-size: 0.17rem;
  }
  .p_nav_tit::before {
    top: calc(50% - 1px);
    height: 2px;
  }
  .p_nav_tit::after {
    right: calc(0.2rem + 7px);
    width: 2px;
  }
  .p_nav_list {
    margin-top: 0.22rem;
    margin-bottom: 0.2rem;
  }
  .p_nav_list .cat_name b {
    font-size: 0.16rem;
  }
}

.products_right {
  width: calc(100% - 3.5rem);

  padding-left: 2%;
}
.products_right > h2 {
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #666;
  margin-bottom: 0.4rem;
}
.products_right_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.products_right_ul li {
  background-color: #fff;
}
.products_right_ul li a {
  display: block;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;

  padding: 0.2rem;
}
.products_img {
  width: 25%;
  position: relative;
}
.products_img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.products_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.products_text {
  width: 75%;

  padding-left: 3%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-around;
}
.products_text h2 {
  font-size: 0.24rem;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
}
.products_text h3 {
  font-size: 0.16rem;
  line-height: 0.22rem;
  color: #999;
  margin: 0.1rem 0 0.2rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.products_tags {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.15rem;
}

.products_tags h4 {
  font-size: 0.16rem;
  color: #333;
  line-height: 100%;
}
.products_tags p {
  font-size: 0.16rem;
  color: #333;
  line-height: 100%;
}
.products_text h5 {
  display: inline-block;
  text-transform: capitalize;
  font-size: 0.18rem;
  color: #333;

  padding: 0.1rem 0.3rem;
  border: 1px solid rgba(51, 51, 51, 0.2);
  margin-top: 0.2rem;
  transition: all 0.3s ease;
}

.products_right_ul li:hover h2 {
  color: var(--i_color);
}
.products_right_ul li:hover h5 {
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .products_text h5 {
    font-size: 0.16rem;
    padding: 0.08rem 0.3rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .products_text h2 {
    font-size: 0.22rem;
  }
  .products_text h3 {
    font-size: 0.14rem;
    line-height: 0.2rem;
    -webkit-line-clamp: 2;
  }
  .products_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .products_text h2 {
    font-size: 0.2rem;
  }
  .products_tags {
    display: none;
  }
  .products_text h5 {
    margin-top: 0rem;
  }
  .products_right {
    width: 100%;
    margin-top: 0.4rem;
    padding-left: 0%;
  }
  .products_text h3 {
    font-size: 0.16rem;
    line-height: 0.22rem;
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .products_text h3 {
    font-size: 0.14rem;
    line-height: 0.2rem;
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 560px) {
  .products_img {
    width: 30%;
  }
  .products_text {
    width: 70%;
  }
  .products_right_ul {
    gap: 0.3rem;
  }
}
@media screen and (max-width: 425px) {
  .products_img {
    width: 40%;
  }
  .products_text {
    width: 60%;
  }
}

/* -----------------------------single_grid--------------------------------- */
.single_grid_bac {
  background-color: #f7f7f7;

  padding: 0.5rem 0;
}
.single_grid {
  background-color: #fff;
  padding: 0.3rem 0.2rem;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
}
.single_grid_left {
  width: 34.5%;
}

/* 鍥剧墖鏌ョ湅鍖� */
.in_grid_cont {
  --sm_pic_width: 17%;
}
.in_grid_cont {
  position: relative;
  overflow: hidden;
}
.in_grid_cont:before {
  content: "";
  display: block;
  padding-bottom: 80.4%;
}

/* 缂╃暐鍥� */
.in_grid_list_box {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sm_pic_width);
  height: 100%;

  padding: 40px 0;
}
.in_grid_list {
  height: 100%;
  overflow: hidden;
}
.in_grid_list .swiper-slide {
  cursor: pointer;
}

.in_grid_list .img {
  width: 100%;
  height: 100%;

  border: 1px solid #d8d8d8;
  position: relative;
  overflow: hidden;
}
.in_grid_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_grid_list .swiper-slide-thumb-active .img {
  border: 2px solid var(--i_color);
}
.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
}
.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  height: 30px;
  z-index: 999;
  outline: none;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ingrid-button-prev {
  top: 4px;
  background: url(static/imgs/arrow_up_hollow_hei.svg) no-repeat center;
  background-size: contain;
}
.ingrid-button-next {
  bottom: 4px;
  background: url(static/imgs/arrow_down_hollow_hei.svg) no-repeat center;
  background-size: contain;
}
.ingrid-button-prev.swiper-button-disabled,
.ingrid-button-next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.1;
}

/* 澶у浘 */
.in_grid_show_box {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--sm_pic_width) - 20px);
  height: 100%;

  padding: 0 0;
  margin: 0 auto;
}
.in_grid_show {
  width: 100%;
  height: 100%;

  position: relative;
  overflow: hidden;
}
.in_grid_show .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.in_grid_show .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.in_grid_show .img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingrid-pagination {
  display: block;
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(1, 167, 255, 0.15);
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.18rem;
  color: var(--i_color);
}
.ingrid-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 4px;
  background: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.ingrid-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

.in_grid_cont:before {
  display: none;
}
.in_grid_show_box {
  position: initial;
  width: 100%;
  border-radius: 0.04rem;
  overflow: hidden;
  border: 1px solid #d8d8d8;
}
.in_grid_show .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_show .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_grid_list_box {
  margin-top: 0.3rem;
  padding: 0 0;
  position: relative;
  width: 100%;
  height: initial;
}
.in_grid_list {
  width: calc(100% - 60px);
  margin: 0 auto;
}
.in_grid_list_box .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.in_grid_list_box .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_grid_list .img {
  height: auto;
  border-radius: 0.04rem;
}
.in_grid_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.ingrid-button-prev,
.ingrid-button-next {
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 50px;
}
.ingrid-button-prev {
  left: 0;
  background: url(static/imgs/arrow_left_hollow_heiss.svg) no-repeat center;
  background-size: 18px;
}
.ingrid-button-next {
  left: initial;
  right: 0;
  background: url(static/imgs/arrow_right_hollow_heiss.svg) no-repeat center;
  background-size: 18px;
}

.ingrid-button-prev:hover {
  background: url(static/imgs/arrow_left_hollow_heiss.svg) no-repeat center;
  background-size: 18px;
}
.ingrid-button-next:hover {
  background: url(static/imgs/arrow_right_hollow_heiss.svg) no-repeat center;
  background-size: 18px;
}

.single_grid_right {
  width: 65.5%;

  padding-left: 3%;
}
.single_grid_right h1 {
  font-size: 0.32rem;
  color: #333;
  font-weight: bold;
}
.single_grid_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}
.single_grid_ul li {
  padding: 0.3rem 0 0.15rem 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.single_grid_ul li h2 {
  font-size: 0.22rem;
  color: var(--i_color);
  text-transform: capitalize;
}
.single_grid_ul li h3 {
  font-size: 0.16rem;
  color: #333;
  line-height: 0.22rem;
  margin-top: 0.1rem;
}
.single_grid_btn {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.25rem;
  margin: 0.5rem 0 0.2rem 0;
}
.single_grid_btn a {
  font-size: 0.18rem;
  color: #fff;

  padding: 0.15rem 0.9rem;
  border-radius: 0.04rem;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.single_grid_green {
  background-color: var(--i_color);
}
.single_grid_black {
  background-color: #333;
}
.single_grid_share {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.single_grid_share h4 {
  font-size: 0.16rem;
  color: #222;
  margin-right: 0.2rem;
}
.single_grid_dl {
  display: flex;
  display: -webkit-flex;
  gap: 0.2rem;
}
.single_grid_dl dt {
}
.single_grid_dl dt a {
  display: block;
  width: 100%;
}
.single_grid_dl dt a iconify-icon {
  font-size: 0.28rem;
  color: #e7e7e7;
  transition: all 0.3s ease;
}
.single_grid_dl dt a iconify-icon:hover {
  color: var(--i_color);
  transform: translateY(-0.05rem);
}

.single_grid_green:hover {
  background-color: #333;
}
.single_grid_black:hover {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .single_grid_btn {
    margin: 0.3rem 0 0.1rem 0;
  }
  .single_grid_ul li {
    padding: 0.2rem 0 0.1rem 0;
  }
  .single_grid_btn a {
    font-size: 0.16rem;
    padding: 0.15rem 0.8rem;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
  .single_grid_btn a {
    padding: 0.15rem 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .single_grid_left {
    width: 100%;
  }
  .single_grid_right {
    width: 100%;
    padding-left: 0%;
    margin-top: 0.4rem;
  }
  .single_grid_btn a {
    padding: 0.12rem 0.6rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* single_bjj */
.single_bjj_bac {
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.single_bjj {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.single_bjj_left {
  width: calc(98% - 3.5rem);
  margin-right: 2%;

  background-color: #fff;
  padding: 0.5rem 0.2rem;
}
.single_bjj_right {
  width: 3.5rem;
}
.single_bjj_h2 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;

  padding-left: 0.1rem;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 0.3rem;
}
.single_bjj_h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0.03rem;
  height: 0.2rem;
  background-color: var(--i_color);
}
.single_bjj_left article {
  margin-bottom: 0.3rem;
}
.single_bjj_h2Ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.25rem;
}
.single_bjj_h2Ul li {
}
.single_bjj_h2Ul li a {
  font-size: 0.16rem;
  color: #333;
  line-height: 100%;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.single_bjj_h2Ul li a:hover {
  color: var(--i_color);
  border-bottom: 1px solid var(--i_color);
}

.single_bjj_dl {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;

  padding-top: 0.17rem;
  margin-top: 0.17rem;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}
.single_bjj_dl dt {
}
.single_bjj_dl dt a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.single_bjj_dl dt a i {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background-color: var(--i_color);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.single_bjj_dl dt a i iconify-icon {
  font-size: 0.16rem;
  color: #fff;
}
.single_bjj_dl dt a p {
  font-size: 0.16rem;
  color: #333;
  margin: 0 0.13rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.single_bjj_dl dt:nth-child(even) a {
  display: flex;
  display: -webkit-flex;
  flex-direction: row-reverse;
}
.single_bjj_dl dt a:hover i {
  background-color: #333;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .single_bjj_right {
    display: none;
  }
  .single_bjj_left {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* @media screen and (max-width:1440px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:960px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {

}
@media screen and (max-width:425px) {

} */

/* hot_products */
.hot_products_bac {
  padding: 0.8rem 0;
}
.hot_products {
}

/*  */
.hot_partner_box {
  margin-top: 0.6rem;
}

.hot_partner {
  position: relative;
}
.hot_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hot_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.hot_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.hot_partner_list li a {
  display: block;
  width: 100%;
}
.hot_partner_list .img {
  width: 100%;

  border: 1px solid rgba(51, 51, 51, 0.2);
  position: relative;
  border-radius: 0.22rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hot_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.hot_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;

  padding: 0.15rem;
}

.hot_partner_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hot_partner_list p {
  font-size: 0.22rem;
  color: #333;
  text-align: center;
  text-transform: capitalize;

  padding: 0.2rem 2% 0 2%;
  transition: all 0.3s ease;
}
.hot_partner_list li:hover p {
  color: var(--i_color);
}
.hot_partner_list li:hover .img {
  border: 1px solid var(--i_color);
}

/* 指示器 */
.hot_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.hot_partner .pt-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  background: #bbb;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.hot_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */
.hot_partner .pt-button-prev,
.hot_partner .pt-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--i_color);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.hot_partner .pt-button-prev:before,
.hot_partner .pt-button-next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.3rem;
  line-height: 0.3rem;
  color: #fff;
  font-family: -apple-system, simsun, system-ui, sans-serif;
  letter-spacing: -2px;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hot_partner .pt-button-prev {
  left: -6%;
}
.hot_partner .pt-button-prev:before {
  content: "<";
}
.hot_partner .pt-button-next {
  right: -6%;
}
.hot_partner .pt-button-next:before {
  content: ">";
}

.hot_partner .pt-button-prev:hover,
.hot_partner .pt-button-next:hover {
  background-color: #333;
}

@media screen and (max-width: 1440px) {
  .hot_partner_list p {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .hot_partner .pt-button-prev,
  .hot_partner .pt-button-next {
    display: none;
  }
  .hot_partner .pt-pagination {
    display: block;
  }
  .hot_partner_list p {
    font-size: 0.18rem;
  }
  .hot_products_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .hot_partner_list p {
    font-size: 0.16rem;
  }
  .hot_partner_box {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .hot_partner .pt-pagination {
    margin: 14px auto 0;
  }
  .hot_partner .pt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.banner_top {
  margin-top: var(--header_height);
}

/* Article  */
.in_news_art {
  padding: 0.6rem 0;
}

.in_news_art_tit {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.3rem;
  text-align: center;
  position: relative;
}
.in_news_art_tit h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.34rem;
  font-weight: bold;
}
.n_tit_time {
  margin: 0.4rem 0 0.26rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.n_tit_time > p {
  font-size: 0.16rem;
  color: #363636;
  position: relative;
}

.n_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.n_share p {
  font-size: 0.16rem;
  color: #363636;
}
.n_share a {
  margin-left: 0.2rem;
}
.n_share a i {
  font-size: 0.2rem;
  transition: all 0.3s ease;
}
.n_share a:hover i {
  color: var(--i_color2);
  transform: translateY(-5px);
}

.n_article,
.n_article * {
  line-height: 150%;
  float: unset !important ;
}
.n_article img {
  display: block;
  margin: 0.2rem auto;
  max-width: 100% !important;
  height: initial !important;
}

@media screen and (max-width: 1440px) {
  .in_news_art_tit h1 {
    font-size: 0.28rem;
  }
  .n_tit_time {
    margin: 0.3rem 0 0.26rem;
  }
}
@media screen and (max-width: 1200px) {
  .in_news_art_tit h1 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_news_art_tit h1 {
    font-size: 0.22rem;
  }
  .n_tit_time {
    margin: 0.2rem 0 0.22rem;
  }
}
@media screen and (max-width: 768px) {
  .n_tit_time > p,
  .n_share p {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .n_tit_time > p {
    margin-right: 0.14rem;
    padding-right: 0.14rem;
  }
  .n_tit_time > p,
  .n_share p {
    font-size: 0.14rem;
  }
  .n_share a i {
    font-size: 0.18rem;
  }
}

.n_navigation {
  margin-top: 0.8rem;
  padding-top: 0.2rem;
  border-top: 1px solid var(--border_color);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.n_navigation ul {
  width: 80%;
}
.n_navigation li {
  margin: 0.12rem 0;
}
.n_navigation li a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.n_navigation li p {
  margin-right: 0.06rem;
  font-size: 0.16rem;
  color: #363636;
  font-weight: bold;
  transition: all 0.3s ease;
}
.n_navigation li a:hover p {
  color: var(--i_color);
}

.n_back {
  margin-left: auto;
  padding: 0.12rem 0.3rem;
  background: var(--i_color);
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}
.n_back i {
  font-size: 0.16rem;
  color: #fff;
}
.n_back b {
  margin-left: 0.06rem;
  font-size: 0.15rem;
  color: #fff;
  font-weight: bold;
}
.n_back:hover {
  background: #333;
}
@media screen and (max-width: 1024px) {
  .n_navigation ul {
    width: 76%;
  }
  .n_back b {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .n_navigation {
    margin-top: 0.6rem;
  }
  .n_navigation ul {
    width: 100%;
  }
  .n_navigation li p {
    font-size: 0.15rem;
  }
  .n_back {
    margin: 0.14rem 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  .n_navigation {
    margin-top: 0.4rem;
  }
  .n_navigation li p {
    font-size: 0.14rem;
  }
  .n_back {
    padding: 0.08rem 0.22rem;
    margin: 0.1rem 0 0 0;
  }
  .n_back i {
    font-size: 0.15rem;
  }
}

/* -------------------------------------- 侧边客服 -------------------------------------- */
.aside_right {
  position: fixed;
  right: -50px;
  bottom: 20%;
  z-index: 999999;
  transition: all 0.5s ease;
}
.aside_right.on {
  right: 10px;
}

.aside_right ul {
}
.aside_right li {
  position: relative;
  cursor: pointer;
}
.aside_right li > a {
  display: block;
  transition: all 0.3s ease;
  width: 0.48rem;
  margin-top: 5px;
  border-radius: 50%;
  height: 0.48rem;
  background: rgba(128, 128, 128, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.aside_right em {
  display: block;
  margin: 0 auto;
  width: 0.2rem;
  height: 0.2rem;
}
.aside_right li:nth-child(1) em {
  background: url(static/imgs/aside_ico_whatsapp.svg) no-repeat center;
  background-size: contain;
}
.aside_right li:nth-child(2) em {
  background: url(static/imgs/aside_ico_tel.svg) no-repeat center;
  background-size: contain;
}
/* .aside_right li:nth-child(3) em{background:url(static/imgs/wx.png) no-repeat center; background-size:contain} */
.aside_right li:nth-child(3) em {
  background: url(static/imgs/email.svg) no-repeat center;
  background-size: contain;
}
.aside_right li:nth-child(4) em {
  background: url(static/imgs/top1.svg) no-repeat center;
  background-size: contain;
}

/* .aside_right li:nth-child(3) .side_tel_box{width: 150px; }
.side_tel_box img{
	width: 100%;
	height: 100%;
	object-fit: contain;
} */
.aside_right li:nth-child(3) > a {
  background-color: var(--i_color);
}

.aside_right li > a:hover {
  background: var(--i_color);
}

.side_tel_box,
.side_qr_box {
  position: absolute;
  box-shadow: -1px 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}
.side_tel_box {
  top: 7px;
  right: -300px;
  width: 180px;
  background: #fff;
}
.side_qr_box {
  top: 50%;
  transform: translate(0, -50%);
  right: -180px;
  width: 120px;
  height: 120px;
  background: #fff;
}

.side_tel_box h6 {
  padding: 8px 0;
  font-size: 14px;
  color: #666;
}
.side_tel_box h6 a {
  line-height: 20px;
}
.side_tel_box a:hover {
  color: var(--i_color);
}
.side_qr_box img {
  width: 90%;
  height: 90%;
}

.aside_right li:hover .side_tel_box,
.aside_right li:hover .side_qr_box {
  right: 48px;
}

.side_tel_box,
.side_qr_box {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* 侧边客服 表单 */
#aside_mask_bg {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999999999998;
}
#aside_sc_from {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  padding: 0.6rem 0.4rem;
  border-radius: 0.2rem;
  background: #e2e2e2;
  z-index: 9999999999999;
  overflow: auto;
}
#aside_sc_from .tit {
  margin-bottom: 40px;
}
#aside_sc_from .tit h6 {
  font-size: 26px;
  color: #333;
  text-align: center;
  text-transform: capitalize;
  font-weight: bold;
  line-height: 30px;
}

#wpforms-80 {
  --input_font_size: 16px;
  --input_height: 42px;
}
#wpforms-80 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-80 {
  width: 100%;
  overflow: hidden;
}

#wpforms-80 input,
#wpforms-80 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-80 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-80 .wpforms-error-container {
  line-height: 16px;
}

#wpforms-80 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-80 .wpforms-submit-container {
  padding: 0 !important;
  width: 170px;
  height: var(--input_height);
  background: var(--i_color);
  border-radius: 0.2rem;
  position: relative;
  margin: 0 auto;
}

#wpforms-80 .wpforms-field {
  position: relative;
}
#wpforms-80 .wpforms-field-label {
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0 !important;
}
#wpforms-80 .wpforms-field-label span {
  position: absolute;
  top: 15px;
  left: 3px;
  font-size: 0.14rem;
  color: red;
}

#wpforms-80 .wpforms-error {
  margin-top: 0.01rem;
  font-size: 0.12rem !important;
}

#wpforms-80 .wpforms-field {
  width: 100%;
  padding-bottom: 20px;
  background: transparent;
  overflow: hidden;
}
#wpforms-80 .wpforms-field:nth-child(1) {
  margin-right: 20px;
}
#wpforms-80 .wpforms-field:nth-child(1),
#wpforms-80 .wpforms-field:nth-child(2) {
  width: calc(50% - 10px);
}

#wpforms-80 input {
  height: var(--input_height);
}
#wpforms-80 textarea {
  min-height: 100px;
}
#wpforms-80 input,
#wpforms-80 textarea {
  width: 100%;
  border: 0;
  max-width: 100% !important;
  font-size: var(--input_font_size);
  border-radius: 0.1rem;
  background-color: white;
  color: #222;

  line-height: var(--input_height);
  padding: 0 10px;
  box-shadow: 0 0 0 0 !important;
}

#wpforms-80 input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-80 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-80 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-80 input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-80 textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-80 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-80 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-80 textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}

#wpforms-80 #wpforms-80-field_1-error,
#wpforms-80 #wpforms-80-field_2-error,
#wpforms-80 #wpforms-80-field_3-error,
#wpforms-80 #wpforms-80-field_4-error {
  position: absolute;
  font-size: 14px;
}

#wpforms-80 .wpforms-submit-container button {
  overflow: hidden;
  border-radius: 0.2rem;
  width: 100%;
  height: var(--input_height);
  font-size: 16px;
  color: #fff;
  line-height: var(--input_height);
  cursor: pointer;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}
#wpforms-80 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  display: block;
  width: 50px;
  height: 50px;
  background: url(static/imgs/close_1_hei.svg) no-repeat center;
  background-size: contain;
}
.close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.close {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wpforms-80 .wpforms-submit-container:hover {
  background-color: var(--i_color2);
  animation: a 0.5s 1 linear;
  animation-delay: 0.01s;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 959px) {
  /* .aside_right{display:none} */
  #aside_sc_from {
    width: 80%;
  }
  .aside_right li:nth-child(1),
  .aside_right li:nth-child(2),
  .aside_right li:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
  #aside_sc_from {
    width: 87%;
  }
  #aside_sc_from .tit h1 {
    font-size: 24px;
  }
}

/* 移动端底部 */
.footer_phone_show {
  display: none;
}
.footer_phone {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 999;
}
.footer_phone {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
}
.footer_phone li {
  width: 32%;
  padding: 0.13rem;
  border-right: 1px solid rgba(211, 211, 211, 1);
  border-top: 1px solid rgba(211, 211, 211, 1);
}
.footer_phone li:nth-child(3) {
  border-right: 0px;
}
.footer_phone a {
  display: block;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.footer_phone iconify-icon {
  font-size: 0.23rem;
  color: var(--i_color);
}
.footer_phone p {
  font-size: 12px;
  color: #333333;
  font-family: Arial;
  margin-left: 0.1rem;
}

@media screen and (max-width: 959px) {
  .footer_phone_show {
    display: block;
  }
  footer {
    margin-bottom: 0.5rem;
  }
}

/* 感谢页面 */
.thanks {
  padding-top: 1rem;
  margin: 0px auto 1rem;
  text-align: center;
}
.thanks h2 {
  margin-bottom: 20px;
  font-size: 0.3rem;
  color: #222;
  font-weight: bold;
}
.thanks a {
  z-index: 2;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  position: relative;
  transition: all 1s ease;
}

.btns {
  height: 4em;
  width: 12em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0px solid black;
  cursor: pointer;
}
.btns:hover p {
  color: var(--i_color);
}
.wrapperss {
  height: 2em;
  width: 8em;
  position: relative;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thanks .text {
  font-size: 17px;
  z-index: 1;
  color: #000;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.5s ease;
}

.flower {
  display: grid;
  grid-template-columns: 1em 1em;
  position: absolute;
  transition: grid-template-columns 0.8s ease;
}

.flower1 {
  top: -12px;
  left: -13px;
  transform: rotate(5deg);
}

.flower2 {
  bottom: -5px;
  left: 8px;
  transform: rotate(35deg);
}

.flower3 {
  bottom: -15px;
  transform: rotate(0deg);
}

.flower4 {
  top: -14px;
  transform: rotate(15deg);
}

.flower5 {
  right: 11px;
  top: -3px;
  transform: rotate(25deg);
}

.flower6 {
  right: -15px;
  bottom: -15px;
  transform: rotate(30deg);
}

.petal {
  height: 1em;
  width: 1em;
  border-radius: 40% 70% / 7% 90%;
  background: linear-gradient(var(--i_color), #ebb3ff);
  border: 0.5px solid #ffffff;

  z-index: 0;
  transition: width 0.8s ease, height 0.8s ease;
}

.two {
  transform: rotate(90deg);
}

.three {
  transform: rotate(270deg);
}

.four {
  transform: rotate(180deg);
}

.btns:hover .petal {
  background: linear-gradient(#e870a5, #ffeff6);
  border: 0.5px solid #ffeff6;
}

.btns:hover .flower {
  grid-template-columns: 1.5em 1.5em;
}

.btns:hover .flower .petal {
  width: 1.5em;
  height: 1.5em;
}

.btns:hover .text {
  background: rgba(255, 255, 255, 0.4);
}

.btns:hover div.flower1 {
  animation: 15s linear 0s normal none infinite running flower1;
}

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

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

.btns:hover div.flower2 {
  animation: 13s linear 1s normal none infinite running flower2;
}

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

  100% {
    transform: rotate(-325deg);
  }
}

.btns:hover div.flower3 {
  animation: 16s linear 1s normal none infinite running flower3;
}

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

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

.btns:hover div.flower4 {
  animation: 17s linear 1s normal none infinite running flower4;
}

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

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

.btns:hover div.flower5 {
  animation: 20s linear 1s normal none infinite running flower5;
}

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

  100% {
    transform: rotate(-335deg);
  }
}

.btns:hover div.flower6 {
  animation: 15s linear 1s normal none infinite running flower6;
}

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

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

@media screen and (max-width: 1200px) {
  .thanks {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .thanks {
    padding-top: 40px;
    margin: 0px auto 70px;
  }
}
@media screen and (max-width: 560px) {
}

/* 搜索页 */
.search {
  background-color: white;
}
.in_search_tit {
  padding-bottom: 70px;
  text-align: center;
  background-color: white;
}
.in_search_tit h2 {
  font-size: 34px;
  color: var(--i_color);
  font-weight: bold;
  text-transform: capitalize;
  padding-top: 0.4rem;
}
.in_search_tit p {
  margin: 16px 0;
  font-size: 24px;
  color: #757575;
}
.in_search {
  width: 510px;
  margin: 0 auto;
  border: 1px solid var(--border_color);
  overflow: hidden;
}
.in_search .search_ipt {
  float: left;

  padding-left: 10px;
  width: calc(100% - 1.1rem);
  font-size: 15px;
  color: #333;
  line-height: 46px;
}
.in_search .search_btn {
  float: right;
  width: 1.1rem;
  height: 46px;
  line-height: 46px;
  background: var(--i_color);
  font-size: 0.18rem;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 1440px) {
  .in_search_tit {
  }
  .in_search_tit h2 {
    font-size: 32px;
  }
  .in_search_tit p {
    font-size: 22px;
  }
  .pd_other li {
    width: 23%;
    margin-bottom: 0.6rem;
  }
}
@media screen and (max-width: 1366px) {
  .in_search_tit h2 {
    font-size: 28px;
  }
  .in_search_tit p {
    font-size: 20px;
  }
  .in_search .search_btn {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1200px) {
  .in_search_tit {
    padding-bottom: 60px;
  }
  .in_search_tit h2 {
    font-size: 26px;
  }
  .in_search_tit p {
    margin: 10px auto 16px;
    font-size: 18px;
  }
  .pd_other li {
    width: 23%;
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 959px) {
  .in_search_list li {
    margin-bottom: 30px;
  }
  .in_search_tit h2 {
    font-size: 24px;
  }
  .in_search_tit p {
    font-size: 17px;
  }
  .pd_other li {
    width: 23%;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .in_search_tit {
    padding-bottom: 40px;
  }
  .in_search {
    width: 90%;
  }
  .in_search_tit h2 {
    font-size: 22px;
  }
  .in_search_tit p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .in_search_tit {
    padding-bottom: 34px;
  }
  .in_search {
    width: 94%;
  }
  .in_search_tit h2 {
    font-size: 20px;
  }
  .in_search_tit p {
    font-size: 14px;
  }
  .in_search .search_ipt {
    line-height: 38px;
  }
  .in_search .search_btn {
    height: 38px;
    line-height: 38px;
  }
}

/* search results list */
.in_search_list {
  padding-bottom: 0.6rem;
  overflow: hidden;
}
.in_search_list li {
  border: 1px solid var(--border_color);
  margin-bottom: 0.26rem;
}
.in_search_list a {
  display: block;
  padding: 0.2rem;
}
.in_search_list h2 {
  font-size: 0.18rem;
  color: #212121;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.in_search_list h6 {
  margin: 0.1rem 0;
  font-size: 0.14rem;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.in_search_list i {
  display: inline-block;
  padding: 0.06rem 0.1rem;
  font-size: 0.13rem;
  color: var(--i_color);
  background: #ededed;
  -webkit-border-radius: 0.04rem;
  border-radius: 0.04rem;
}

@media screen and (max-width: 1024px) {
  .in_search_list h2 {
    font-size: 0.15rem;
    white-space: initial;
  }
  .in_search_list h6 {
    font-size: 0.13rem;
  }
  .in_search_list i {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .in_search_list li {
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .in_search_list {
    padding-bottom: 0.3rem;
  }
}

/* 404 */
.in404 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.in404_text {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.in404_text h1 {
  font-size: 220px;
  color: #bbb;
}
.in404_text h6 {
  margin: 10px auto 30px;
  font-size: 18px;
  color: #999;
}
.in404_text a {
  display: inline-block;
  padding: 0 40px;
  line-height: 32px;
  font-size: 15px;
  color: #999;
  border: 2px solid #ddd;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

@media screen and (max-width: 959px) {
  .in404_text h1 {
    font-size: 180px;
  }
}
@media screen and (max-width: 767px) {
  .in404_text h1 {
    font-size: 140px;
  }
  .in404_text h6 {
    font-size: 16px;
  }
  .in404_text a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in404_text h1 {
    font-size: 70px;
  }
  .in404_text h6 {
    margin: 10px auto 18px;
    font-size: 14px;
    line-height: 20px;
  }
  .in404_text a {
    font-size: 13px;
  }
}

/* 隐私政策 */
.privacy {
  margin-bottom: 100px;
  padding-top: 70px;
}
#header {
  background-color: rgb(0 0 0 / 57%) !important;
}
.privacy_cont {
}
.privacy_cont .tit {
  margin-bottom: 30px;
}
.privacy_cont .tit h2 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
.privacy_cont article,
.privacy_cont article * {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.foot {
  top: 130px;
}
.privacy ol {
  padding: 0px;
}
@media screen and (max-width: 1200px) {
  .privacy {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 959px) {
  .privacy {
    margin-bottom: 30px;
  }
}

/* tags */

.tags {
  padding: 0.8rem 0;
  background-color: #f7f7f7;
}
.tags > h2 {
  font-size: 0.4rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #333;
  text-align: center;
}

.tags .products_all_right {
  width: 100%;
}
.tags > p {
  font-size: 0.2rem;
  color: #333;
  margin: 0.2rem 0 0.4rem 0;
  text-align: center;
}

.tags .products_eyes {
  display: none;
}
.tags .products_list {
  padding-top: 0.2rem;
}
.tags .products_list_right {
  width: 100%;
  padding-left: 0%;
}
.tags .products_ul {
  gap: 0.3rem;
  margin-top: 0;
}
.tags .products_ul li {
  width: calc((100% - 0.9rem) / 4);
}

.tags .in_page_box {
  margin-top: 0;
  width: 100%;
  padding: 0;
}

@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .tags .products_ul {
    gap: 0.2rem;
  }
  .tags .products_ul li {
    width: calc((100% - 0.6rem) / 4);
  }
  .tags > h2 {
    font-size: 0.35rem;
  }
  .tags {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
  .tags .products_list {
    padding-top: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .tags .products_list {
    padding-top: 0rem;
  }
  .tags .products_list_right {
    margin-top: 0rem;
  }
  .tags .products_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
  .tags > h2 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .tags > h2 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 425px) {
}

.link_hidden {
  display: none !important;
}

.abc {
}
.detail_box {
  font-size: 0.18rem;
  line-height: 170%;
  color: #222;
}
.detail_box h2 {
  font-size: 0.22rem;
  margin: 0.2rem 0 0.1rem;
}
.detail_box p {
  min-height: 20px;
}
@media screen and (max-width: 1366px) {
  .detail_box {
    font-size: 0.16rem;
  }
  .detail_box h6 {
    font-size: 0.26rem;
    margin-bottom: 0.26rem;
  }
}
@media screen and (max-width: 560px) {
  .detail_box h6 {
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .detail_box,
  .detail_box p {
    font-size: 14px;
  }
}

