/*
Theme Name: HuaAnTuliao
Version: 1.0
Description: 安徽领聚数字作为Google中国区核心合作伙伴,拥有安徽省唯一的一家Google出海体验中心,为安徽本土化外贸企业出海提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：安徽领聚
*/
@charset "utf-8";
@font-face {
  font-family: "Opensans";
  src: url("./static/font/OpenSans-Light.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Opensans";
  src: url("./static/font/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Opensans";
  src: url("./static/font/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: bold;
}
:root {
  --i_color: #ee1e23;
  --i_color2: #fdc110;
  --i_color3: #f58620;
  --header_height: 1rem;
  --border_color: #d8d8d8;
  --linear-gradien: -webkit-linear-gradient(
    left,
    var(--i_color2),
    var(--i_color)
  );
  --linear-gradien2: linear-gradient(to right, var(--i_color2), var(--i_color));
  --linear-gradien3: linear-gradient(
    to bottom,
    var(--i_color3) 70%,
    var(--i_color)
  );
}
@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);
  }
}
html {
  scroll-padding-top: 250px;
  scroll-behavior: smooth;
}
* {
  font-family: "Opensans", system-ui, Arial, tahoma, sans-serif;
  box-sizing: border-box;
  line-height: 150%;
}
.i_wrap {
  width: 83.33%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.i_wrap_left {
  padding-left: 8.335%;
}
.i_wrap_right {
  padding-right: 8.335%;
}
@media screen and (max-width: 1600px) {
  .i_wrap {
    width: 88%;
  }
  .i_wrap_left {
    padding-left: 6%;
  }
  .i_wrap_right {
    padding-right: 6%;
  }
}
@media screen and (max-width: 1440px) {
  .i_wrap {
    width: 90%;
  }
  .i_wrap_left {
    padding-left: 5%;
  }
  .i_wrap_right {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .i_wrap {
    width: 94%;
  }
  .i_wrap_left,
  .i_wrap_right {
    padding-left: 3%;
    padding-right: 3%;
  }
}
.wrap {
  width: 72.92%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.wrap_left {
  padding-left: 13.54%;
}
.wrap_right {
  padding-right: 13.54%;
}
@media screen and (max-width: 1600px) {
  .wrap {
    width: 88%;
  }
  .wrap_left {
    padding-left: 6%;
  }
  .wrap_right {
    padding-right: 6%;
  }
}
@media screen and (max-width: 1440px) {
  .wrap {
    width: 90%;
  }
  .wrap_left {
    padding-left: 5%;
  }
  .wrap_right {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    width: 94%;
  }
  .wrap_top {
    position: initial;
    width: 96%;
  }
  .wrap_left,
  .wrap_right {
    padding-left: 3%;
    padding-right: 3%;
  }
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2014;
  background-color: #fff;
}
header::after {
  content: "";
  width: 100%;
  height: 4px;
  background: var(--linear-gradien2);
  position: absolute;
  top: 0;
  left: 0;
}
.top {
  border-bottom: 1px solid var(--border_color);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
@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_search_ico::after {
    height: 0rem !important;
  }
}
/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 0 0.3rem;
}
.logo img {
  max-width: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .logo img {
    max-width: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .logo a {
    margin: 0 0.2rem;
  }
}
/* 导航 */
@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: 0 0.32rem;
  }
  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: #333;
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
  }
  .i_nav > li > a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--linear-gradien2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav > .current-menu-item > a::after,
  .i_nav > .current-category-ancestor > a::after,
  .i_nav > .current-post-ancestor > a::after,
  .i_nav > .current-menu-ancestor > a::after,
  .i_nav > .current-menu-parent > a::after,
  .i_nav > li:hover > a::after,
  .i_nav .curr > a {
    width: 100%;
  }
  .i_nav .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    /* width: 300%; */
    overflow: hidden;
  }
  .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.2rem;
    font-size: 0.15rem;
    color: #333;
    line-height: 0.44rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    left: 0;
  }
  .i_nav .sub-menu a::before {
    content: "\f324";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: -0.16rem;
    font-size: 0.14rem;
    color: var(--i_color);
  }
  .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;
  }
}
@media screen and (max-width: 1440px) {
  .i_nav > li {
    margin: 0 0.24rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav > li {
    margin: 0 0.2rem;
  }
  .i_nav > li > a {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav > li {
    margin: 0 0.14rem;
  }
}
@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 i {
    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' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='M12.707 15.707a1 1 0 0 1-1.414 0L5.636 10.05A1 1 0 1 1 7.05 8.636l4.95 4.95l4.95-4.95a1 1 0 0 1 1.414 1.414z'/%3E%3C/g%3E%3C/svg%3E")
      no-repeat center;
    background-size: 18px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav > .menu-item-has-children i.on {
    transform: rotate(180deg);
  }
  .i_nav > li > a {
    padding: 0 0.2rem;
    font-size: 0.15rem;
    color: #222;
    line-height: 0.44rem;
  }
  .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(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) 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) {
}
.top_r {
  --size: 0.24rem;
}
.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
}
.top_email {
  display: flex;
  align-items: center;
  margin-right: 0.2rem;
}
.top_email a {
  font-size: 14px;
  color: var(--i_color2);
  padding-right: 6px;
  text-decoration: underline;
}
.top_email iconify-icon {
  font-size: 24px;
  color: var(--i_color2);
}
@media screen and (max-width: 560px) {
  .top_email {
    display: none;
  }
}
.top_search_ico {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  position: relative;
}
.top_search_ico i {
  font-size: var(--size);
  color: #333;
  cursor: pointer;
}
.top_search_ico.on i {
  color: var(--i_color);
}
.top_language {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
}
.top_language::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
}
.top_language > i {
  font-size: var(--size);
  cursor: pointer;
  color: #333;
}
.top_language.on > i {
  color: var(--i_color3);
}
.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: 2px 2px 10px rgb(0 0 0 / 10%);
}

.top_language_list ul {
  overflow: hidden;
  min-width: 120px;
}
.top_language_list li {
  background: #fff;
}
.top_language_list a > span {
  display: flex;
  align-items: center;
  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_color3);
}
.top_language_list li:hover .trp-ls-language-name {
  color: #fff;
}
.top_language,
.top_language > i {
  -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;
  }
}
header,
.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;
}
/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  height: var(--header_height);
  width: 0.86rem;
  cursor: pointer;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--border_color);
}
.nav_menu i {
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  background: #333;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu i::before,
.nav_menu i::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu i::before {
  top: -10px;
}
.nav_menu i::after {
  top: 10px;
}
@media screen and (max-width: 1440px) {
  .nav_menu {
    width: 0.66rem;
  }
}
@media screen and (max-width: 1024px) {
  .nav_menu i::before {
    top: -7px;
  }
  .nav_menu i::after {
    top: 7px;
  }
}
@media screen and (max-width: 560px) {
}
.nav_menu.on i {
  background: #fff;
}
.nav_menu.on i::before,
.nav_menu.on i::after {
  opacity: 1;
  top: 0;
}
.nav_menu.on i::before {
  transform: translateX(-50%) rotate(45deg);
}
.nav_menu.on i::after {
  transform: translateX(-50%) rotate(-45deg);
}
/* 右侧导航 */
@media screen and (max-width: 1024px) {
  .right_nav {
    display: none !important;
  }
}
.right_nav {
  display: none;
  position: fixed;
  top: var(--header_height);
  right: 0;
  width: 4rem;
  max-height: calc(100vh - var(--header_height));
  background: #fff;
  overflow-y: auto;
  z-index: 2;
  box-shadow: 0px 0px 6px #ddd;
}
/*滚动条*/
.right_nav::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.right_nav::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
  background: #555;
}
.right_nav::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: #f1f1f1;
}
.right_nav > li {
  margin: 0 0 !important;
  border-bottom: 1px solid var(--border_color);
  position: relative;
}
.right_nav > .menu-item-has-children i {
  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' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='M12.707 15.707a1 1 0 0 1-1.414 0L5.636 10.05A1 1 0 1 1 7.05 8.636l4.95 4.95l4.95-4.95a1 1 0 0 1 1.414 1.414z'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat center;
  background-size: 18px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: rotate(180deg);
}
.right_nav > .menu-item-has-children i.on {
  transform: rotate(360deg);
}
.right_nav > li > a {
  padding: 0 0.2rem;
  font-size: 0.15rem;
  color: #222;
  line-height: 0.44rem;
}
.right_nav > li > .sub-menu {
  /* display: none */
}
.right_nav > li > .sub-menu li {
  position: relative;
}
.right_nav .sub-menu a {
  padding: 0 0.4rem;
  font-size: 0.14rem;
  color: #555;
  line-height: 0.4rem;
  position: relative;
}
.right_nav .sub-menu li:not(:last-child) {
  border-bottom: 1px solid var(--border_color);
}
.right_nav > li > .sub-menu b {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.4rem;
  height: 0.4rem;
  background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
    center;
  background-size: 0.16rem;
}
.right_nav > li > .sub-menu b.on {
  background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
  background-size: 0.16rem;
}
.right_nav .sub-menu .sub-menu {
  display: none;
}
.right_nav .sub-menu .sub-menu a {
  padding: 0 0.6rem;
  font-size: 0.13rem;
  color: #888;
  line-height: 0.36rem;
  position: relative;
}
.right_nav a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* search main */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  position: fixed;
  top: 1.2rem;
  left: 0;
  width: 100%;
  padding: 0.16rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
}
.top_search.on {
  top: var(--header_height);
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
  opacity: 1;
  visibility: visible;
}
.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/images/search.svg) no-repeat center;
  background-size: 0.2rem;
  cursor: pointer;
}
@media screen and (max-width: 1366px) {
  .top_r {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;
  }
  .top_search_ico {
    margin-right: 0;
  }
}
@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 {
  }
}
.full_header {
  height: var(--header_height);
}
@media screen and (max-width: 1024px) {
  .full_header {
    height: var(--header_height);
  }
}
.i_more {
  display: table;
  text-align: center;
  min-width: 1.6rem;
  background: var(--linear-gradien);
  background: var(--linear-gradien2);
  position: relative;
  -webkit-border-radius: 0.24rem 0 0 0;
  border-radius: 0.24rem 0 0 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80%;
  width: 0.5rem;
  height: 1.4rem;
  background: rgb(255 255 255 / 30%);
  -webkit-transform: translate(0, -50%) rotate(130deg);
  transform: translate(0, -50%) rotate(130deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_more_c {
  margin-left: auto;
  margin-right: auto;
}
.i_more b {
  display: block;
  padding: 0.1rem 0.2rem;
  font-size: 0.18rem;
  color: #fff;
  z-index: 3;
  position: relative;
}
.i_more:hover::before {
  left: 150%;
}
.i_more2 {
  background: none;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
.i_more2 b {
  color: #333;
}
.i_more2:hover {
  background: var(--linear-gradien);
  background: var(--linear-gradien2);
  border: none;
}
.i_more2:hover b {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .i_more {
    min-width: 1.4rem;
    -webkit-border-radius: 0.2rem 0 0 0;
    border-radius: 0.2rem 0 0 0;
  }
  .i_more b {
    font-size: 0.16rem;
    padding: 0.08rem 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .i_more b {
    font-size: 14px;
  }
}
.text_linear_color {
  display: table;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(left, var(--i_color2), var(--i_color));
  background: linear-gradient(to right, var(--i_color2), var(--i_color));
  background-clip: text;
  -webkit-background-clip: text;
}
/* -=---------------------banner--------------------------- */
.banner {
  width: 100%;
  position: relative;
  background-color: #000;
}
.banner .swiper-slide {
  height: 0;
  overflow: hidden;
  padding-bottom: calc(100vh - var(--header_height));
  position: relative;
}
.banner .swiper-slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-slide video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  z-index: 2;
}
.banner .swiper-slide {
  width: 100%;
  display: block;
  transition: all 0.3s ease;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 60px;
  height: 60px;
  z-index: 999;
  outline: none;
  cursor: pointer;
  -moz-user-select: none;
  /*火狐*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  -ms-user-select: none;
  /*IE10*/
  -khtml-user-select: none;
  /*早期浏览器*/
  user-select: none;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  border-radius: 200px;
  -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;
}
.banner .swiper-button-prev {
  left: -60px;
  background: rgba(0, 0, 0, 0.3) url(static/images/arrow_left_kx_bai.svg)
    no-repeat center;
  background-size: 26px;
}
.banner .swiper-button-next {
  right: -60px;
  background: rgba(0, 0, 0, 0.3) url(static/images/arrow_right_kx_bai.svg)
    no-repeat center;
  background-size: 26px;
}
.banner:hover .swiper-button-prev {
  left: 0%;
}
.banner:hover .swiper-button-next {
  right: 0%;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  background-color: var(--i_color3);
}
.banner .pagination-all {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
}
.banner .swiper-pagination {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  text-align: left;
}
.banner .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.02rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  outline: none;
  cursor: pointer;
  position: relative;
}
.banner .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 4s ease;
  transition: all 4s ease;
}
.banner .swiper-pagination-bullet-active::before {
  background: var(--linear-gradien2);
  -webkit-animation: w100 5800ms 1;
  animation: w100 5800ms 1;
}
@keyframes w100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    width: 50px;
    height: 50px;
  }
  .banner .swiper-button-prev {
    background-size: 20px;
  }
  .banner .pagination-all {
    bottom: 0.6rem;
  }
}
@media screen and (max-width: 1366px) {
  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    display: none;
  }
  .banner .pagination-all {
    bottom: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .banner .swiper-slide {
    padding-bottom: 60vh;
  }
  .banner .pagination-all {
    bottom: 0.2rem;
  }
}
@media screen and (max-width: 959px) {
  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    display: none !important;
  }
  .banner .swiper-slide {
    padding-bottom: 40vh;
  }
}
@media screen and (max-width: 560px) {
  .banner .pagination-all {
    bottom: 26px;
  }
  .banner .swiper-slide {
    padding-bottom: 30vh;
  }
}
@media screen and (max-width: 425px) {
}
/* --------------------banner文字------------------- */
.b_txt1 {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.b_txt1 h3 {
  font-size: 0.6rem;
  color: var(--i_color3);
}
.b_txt1 p {
  font-size: 0.24rem;
  color: #fff;
  margin: 0.5rem 0;
}
.b_txt1 p.hei {
  color: #333;
}
@media screen and (max-width: 1440px) {
  .b_txt1 h3 {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 1366px) {
  .b_txt1 h3 {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .b_txt1 h3 {
    font-size: 0.3rem;
  }
  .b_txt1 p {
    font-size: 0.2rem;
    margin: 0.3rem 0;
  }
}
/* Footer */
footer {
  position: relative;
  z-index: 5;
}
footer.index {
  background: #f1f1f1;
}
.f_top {
  padding: 0.4rem 0;
  border-bottom: 1px solid #ddd;
}
.f_top .i_wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.f_top h6 {
  font-size: 0.24rem;
  font-weight: bold;
}
.f_logo {
  flex-shrink: 0;
  width: 18.2%;
  margin-right: 0.6rem;
}
.f_logo img {
  max-width: 100%;
}
.f_cont {
}
.f_cont .i_wrap {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.f_nav {
  width: 68%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 10%;
}
.f_nav dt {
  max-width: 30%;
}
.f_tit {
  margin-bottom: 0.2rem;
  font-size: 0.22rem;
  font-weight: bold;
}
.f_nav ul ul {
  display: none;
}
.f_nav li {
  margin: 0.2rem 0;
  position: relative;
}
.f_nav li a {
  font-size: 0.18rem;
  color: #333;
}
.f_nav dt:not(:first-child) li::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--linear-gradien);
  border-radius: 10px;
  left: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.f_nav dt:not(:first-child) li,
.f_nav dt:not(:first-child) li::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_nav dt:not(:first-child) li:hover::after {
  left: 0;
  opacity: 1;
}
.f_nav dt:not(:first-child) li:hover {
  padding-left: 14px;
}
.f_nav dt:not(:first-child) li a {
  font-size: 0.18rem;
  color: #2c2c2c;
}
.f_contact_list li {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.f_contact_list iconify-icon {
  font-size: 0.2rem;
  color: var(--i_color3);
  margin-right: 0.1rem;
}
.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.2rem;
}
.f_media li {
  margin: 0 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_media i {
  font-size: 0.26rem;
  color: #aaa;
}
.f_media li:hover {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
}
.f_media li:nth-child(1) i:hover {
  color: #3c5a99;
}
.f_media li:nth-child(2) i:hover {
  color: #00aced;
}
.f_media li:nth-child(3) i:hover {
  color: #156da0;
}
.f_media li:nth-child(4) i:hover {
  color: #ff0000;
}
.f_media li:nth-child(5) i:hover {
  color: #bb368e;
}
.f_form {
  flex-shrink: 0;
  margin-left: auto;
  width: 32%;
}
#wpforms-58 {
  --input_font_size: 15px;
  --input_height: 0.48rem;
}
#wpforms-form-58 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-58 input,
#wpforms-58 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-58 .wpforms-field {
  padding: 0;
  margin-bottom: 0.2rem;
}
#wpforms-58 .wpforms-field-label {
  font-size: 0;
  position: absolute;
  top: 12px;
  left: 3px;
}
#wpforms-58 .wpforms-field-label span {
  font-size: 0.14rem;
  color: red;
}
#wpforms-58 .wpforms-field-container input,
#wpforms-58 textarea {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  box-sizing: border-box;
  border: 1px solid transparent;
  background: #f7f7f7;
  padding: 0 0.16rem;
  overflow: hidden;
}
#wpforms-58-field_1-container input {
  -webkit-border-radius: 0.2rem 0 0 0;
  border-radius: 0.2rem 0 0 0;
}
#wpforms-58 .wpforms-field-container input:hover,
#wpforms-58 textarea:hover {
  border-color: var(--i_color2);
}
#wpforms-58 input {
  line-height: var(--input_height);
}
#wpforms-58 textarea {
  line-height: 0.22rem;
  min-height: 1.4rem;
  padding: 0.06rem 0.16rem;
}
/* #wpforms-58 input::-webkit-input-placeholder,
#wpforms-58 textarea::-webkit-input-placeholder {
	color: #333;
	font-size: var(--input_font_size)
}
#wpforms-58 input::-mosz-placeholder,
#wpforms-58 textarea::-moz-placeholder {
	color: #333;
	font-size: var(--input_font_size)
}
#wpforms-58 input::-ms-input-placeholder,
#wpforms-58 textarea::-ms-input-placeholder {
	color: #333;
	font-size: var(--input_font_size)
} */
#wpforms-58 input::-webkit-input-placeholder,
#wpforms-58 textarea::-webkit-input-placeholder {
  color: #333 !important;
  font-size: var(--input_font_size);
}
#wpforms-58 input::-moz-placeholder,
#wpforms-58 textarea::-moz-placeholder {
  color: #333 !important;
  font-size: var(--input_font_size);
}
#wpforms-58 input::-ms-input-placeholder,
#wpforms-58 textarea::-ms-input-placeholder {
  color: #333 !important;
  font-size: var(--input_font_size);
}
#wpforms-58-field_1-error,
#wpforms-58-field_2-error,
#wpforms-58-field_3-error,
#wpforms-58-field_4-error,
#wpforms-58-field_5-error,
#wpforms-58-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-58 .wpforms-submit-container {
  text-align: center;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: var(--linear-gradien);
  background: var(--linear-gradien2);
  -webkit-border-radius: 0.26rem 0 0 0;
  border-radius: 0.26rem 0 0 0;
  width: 2rem;
}
#wpforms-58 .wpforms-submit-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80%;
  width: 0.5rem;
  height: 1.4rem;
  background: rgb(255 255 255 / 30%);
  -webkit-transform: translate(0, -50%) rotate(130deg);
  transform: translate(0, -50%) rotate(130deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-58 .wpforms-submit-container button {
  width: 100%;
  height: 0.5rem;
  font-size: 0.2rem;
  color: #fff;
  line-height: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
#wpforms-58 .wpforms-submit-container:hover::before {
  left: 150%;
}
#wpforms-58 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
.f_copy {
  padding: 0.26rem 0;
  background: var(--linear-gradien);
  background: var(--linear-gradien2);
  -webkit-border-radius: 0.3rem 0 0 0;
  border-radius: 0.3rem 0 0 0;
}
.f_copy .i_wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.f_link {
  display: table;
  position: relative;
}
.f_link_tit {
  padding: 0.06rem 0.16rem;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  box-sizing: border-box;
  border: 1px solid #fff;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  cursor: pointer;
}
.f_link_tit b {
  font-size: 0.15rem;
  color: #fff;
}
.f_link_tit i {
  margin-left: 0.6rem;
  font-size: 0.12rem;
  color: #fff;
}
.f_link_list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: calc(100% + 0.4rem);
  width: 100%;
  box-sizing: border-box;
  padding: 0.1rem 0.2rem;
  background: #fff;
  -webkit-border-radius: 0.08rem;
  border-radius: 0.08rem;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
  z-index: 4;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_link_list::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}
.f_link_list.on {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 0.18rem);
}
.f_link_list li {
  margin: 0.1rem 0;
}
.f_link_list a {
  font-size: 14px;
  color: #777;
}
.f_link_list a:hover {
  color: var(--i_color);
}
.f_copy_t {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.f_copy_t p,
.f_copy_t a {
  font-size: 0.16rem;
  color: #fff;
}
.f_copy_t p {
  margin-right: 0.36rem;
}
.f_copy_t a:hover {
  color: var(--i_color2);
}
@media screen and (max-width: 1440px) {
  .f_tit {
    font-size: 0.2rem;
  }
  #wpforms-58 .wpforms-submit-container button {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .f_nav {
    width: 100%;
  }
  .f_form {
    width: 100%;
    margin: 0.3rem 0 0 0;
  }
  .f_copy .i_wrap {
    display: block;
  }
  .f_copy_t {
    margin: 0.16rem 0 0 0;
  }
  .f_copy_t p,
  .f_copy_t a {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 768px) {
  .f_logo {
    width: 1.8rem;
  }
  .f_nav {
    display: block;
    padding: 0 0;
    margin: 0 0;
    gap: 0 0;
  }
  .f_nav_cont {
    display: none;
  }
  .f_media_list {
    display: block;
  }
  .f_form {
    order: -1;
    margin: 0 0 0 0;
  }
  #wpforms-58 {
    --input_font_size: 14px;
    --input_height: 0.44rem;
  }
  #wpforms-58 .wpforms-submit-container {
    width: 1.7rem;
  }
  #wpforms-58 .wpforms-submit-container button {
    height: 0.44rem;
    line-height: 0.44rem;
  }
  .f_copy_t {
    display: block;
  }
  .f_copy_t p,
  .f_copy_t a {
    font-size: 14px;
  }
  .f_copy_t a:hover {
    color: var(--i_color);
  }
}
@media screen and (max-width: 560px) {
  .f_logo {
    width: 1.5rem;
  }
  .f_media i {
    font-size: 0.24rem;
  }
  .f_copy_t p,
  .f_copy_t a {
    font-size: 13px;
  }
}
.i_tit > h3 {
  font-size: 0.42rem;
  color: #333;
  font-weight: bold;
}
.i_tit > p {
  font-size: 0.18rem;
  color: #333;
  margin-top: 0.1rem;
  line-height: 170%;
}
.i_tit.center {
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .i_tit > h3 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 768px) {
  .i_tit > h3 {
    font-size: 0.26rem;
  }
}
.i_solution {
  background-color: #f8f8f8;
}
.is_tit {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.is_tit .i_more {
  margin-top: 20px;
}
.is_tit .i_tit {
  width: 50%;
}
@media screen and (max-width: 560px) {
  .is_tit .i_tit {
    width: 100%;
  }
}
.i_solution .i_wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 560px) {
  .i_solution .i_wrap {
    flex-wrap: wrap;
  }
  .i_solution .i_wrap .i_tit {
    margin-bottom: 0.2rem;
  }
}
.i_s {
  overflow: hidden;
  position: relative;
}
.i_s .swiper-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.i_s .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.i_s .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.i_s_but {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.i_s-button-prev,
.i_s-button-next {
  position: relative;
  margin-inline-end: 0.2rem;
  width: 0.44rem;
  height: 0.44rem;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 2px solid #fff;
  cursor: pointer;
  border: 2px solid #e4e4e4;
}
.i_s-button-prev::after,
.i_s-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_s-button-prev::after {
  background: url(static/images/ico_left_hui.png) no-repeat center;
  background-size: 10px;
}
.i_s-button-next::after {
  background: url(static/images/ico_right_hui.png) no-repeat center;
  background-size: 10px;
}
.i_s-button-prev:hover::after {
  background: url(static/images/ico_left_bai.png) no-repeat center;
  background-size: 10px;
}
.i_s-button-next:hover::after {
  background: url(static/images/ico_right_bai.png) no-repeat center;
  background-size: 10px;
}
.i_s-button-prev:hover,
.i_s-button-next:hover {
  border: none;
  background: var(--linear-gradien2);
}
.i_s-pagination {
  margin-top: 30px;
  text-align: center;
}
.i_s-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.i_s-pagination .swiper-pagination-bullet-active {
  background: var(--i_color3);
}
.i_s a {
  display: block;
  width: 100%;
  height: 100%;
}
.i_s .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  background-color: #fff;
}
.i_s .img::before {
  content: "";
  display: block;
  padding-bottom: 66.67%;
}
.i_s .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_s .img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_s li:hover img {
  width: 105%;
  height: 105%;
}
.i_s .txt {
  position: relative;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  border-radius: 0px 0px 0.2rem 0px;
  background: #fff;
  min-height: 170px;
}
.i_s h6 {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.i_s p {
  font-size: 0.16rem;
  color: #999;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 10px 0;
  line-height: 150%;
}
.i_s span {
  font-size: 14px;
  color: #333;
}
.bc_gradient {
  background: linear-gradient(to top, #ffe1c565, transparent);
}
.i_s li:hover h6 {
  color: var(--i_color3);
}
@media screen and (max-width: 1024px) {
  .i_s .txt article {
    padding: 10px;
  }
}
.i_about {
  position: relative;
  background: url(static/images/bc_ia.webp) no-repeat right;
  background-size: 100% 100%;
}
.i_about .i_wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ia_txt {
  width: 52%;
}
.ia_txt .txt * {
  font-size: 0.18rem;
  color: #333;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .ia_txt {
    width: 100%;
    padding: 0.5rem 0;
  }
  .i_about .i_wrap {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
  }
}
.i_num_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.i_num_list h6 {
  font-size: 0.18rem;
  color: #333;
}
.i_num_list span {
  font-size: 0.48rem;
  color: #333;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_num_list li:hover span {
  color: var(--i_color3);
}
.i_num_list p {
  font-size: 0.18rem;
  color: #333;
}
@media screen and (max-width: 1440px) {
  .i_num_list span {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_num_list span {
    font-size: 0.4rem;
  }
  .i_num_list p {
    font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  .i_num_list h6 {
    font-size: 16px;
  }
  .i_num_list span {
    font-size: 0.3rem;
  }
  .i_num_list p {
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  .i_num_list {
    flex-wrap: wrap;
  }
  .i_num_list li {
    width: 50%;
    margin-bottom: 0.2rem;
  }
}
.i_ad_cont {
  position: relative;
  overflow: hidden;
}
.i_ad_cont::after {
  content: "";
  display: block;
  padding-bottom: 28.9%;
}
@media screen and (max-width: 768px) {
  .i_ad_cont::after {
    padding-bottom: 38.9%;
  }
}

.i_ad_img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.i_ad_img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.i_ad_list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.i_ad_list li {
  width: 18%;
  border-left: 1px solid var(--border_color);
  padding: 0 3% 0.9rem;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_ad_list li a {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.i_ad_list li::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: url(static/images/bc_ia.png) no-repeat center;
  background-size: cover;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_ad_list li.curr {
  width: 64%;
  padding: 0 8.5%;
}
.i_ad_list h6 {
  font-size: 0.24rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.3rem;
  text-align: center;
}
.i_ad_list p {
  font-size: 0.16rem;
  color: #fff;
  line-height: 150%;
  display: none;
  margin-bottom: 0.6rem;
}
.i_ad_list li.curr h6 {
  text-align: left;
}
.i_ad_list li.curr p {
  display: block;
}
.i_ad_list li.curr::after {
  opacity: 0.9;
  height: 100%;
}

@media screen and (max-width: 1440px) {
  .i_ad_list li.curr {
    padding: 0 6.5%;
  }
  .i_ad_list h6 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_ad_list li.curr {
    padding: 0 4.5%;
  }
  .i_ad_list h6 {
    font-size: 0.18rem;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 959px) {
  .i_ad_list li {
    width: 25%;
    justify-content: center;
    padding: 0 2%;
  }
  .i_ad_list li.curr {
    width: 50%;
  }
  .i_ad_list h6 {
    font-size: 16px;
  }
  .i_ad_list li.curr p {
    display: none;
  }
  .i_ad_list li.curr::after {
    opacity: 0.5;
  }
  .i_ad_list li.curr h6 {
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .i_ad_list h6 {
    font-size: 13px;
  }
}
.i_category_tit {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.i_category_tit .i_tit {
  width: 49%;
}
.i_category_but {
  width: 49%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.i_category_but h6 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  width: 70%;
}
.ic_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ic_list li {
  width: 49%;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border_color);
  position: relative;
}
.ic_list li:first-child,
.ic_list li:nth-child(2) {
  border-top: 1px solid var(--border_color);
}
.ic_list a {
  font-size: 0.24rem;
  color: #333;
}
.ic_list li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--linear-gradien);
  right: 0;
  position: absolute;
  bottom: -1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ic_list li:hover::after {
  width: 100%;
  left: 0;
  right: initial;
}
@media screen and (max-width: 1024px) {
  .i_category_tit .i_tit {
    width: 100%;
  }
  .i_category_but {
    width: 100%;
    margin-top: 0.3rem;
  }
  .ic_list a {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .i_category_but h6 {
    width: 100%;
    margin-bottom: 0.1rem;
    font-size: 0.2rem;
  }
  .ic_list a {
    font-size: 0.18rem;
  }
  .ic_list li {
    padding: 0.2rem 0;
  }
}
/* about */
.in_banner {
  width: 100%;
  position: relative;
}
.in_banner::after {
  content: "";
  display: block;
  padding-bottom: 22.91%;
}
.in_banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_banner .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_banner .wrap p {
  font-size: 0.36rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.in_banner h6 {
  width: 80%;
  text-align: center;
  font-size: 0.18rem;
  line-height: 200%;
  color: #fff;
  font-weight: bold;
  margin: 0.1rem auto;
}
@media screen and (max-width: 767px) {
  .in_banner::after {
    padding-bottom: 50%;
  }
}
.in_about_banner {
  width: 100%;
  position: relative;
  height: auto;
}
.in_about_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ------------------------about----------------------------- */
/* --锚点跳转 -- */
.mao_box {
  --four_height: 0.8rem;
}
@media screen and (max-width: 959px) {
  .mao_box {
    --four_height: 0.4rem;
  }
}
.mao_box {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  background: #f7f7f7;
  position: relative;
  z-index: 20;
}
.in_nav {
  width: 100%;
  display: flex;
  display: -webkit-flex;
}
.menu_list {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  box-sizing: border-box;
  justify-content: space-between;
  position: relative;
}
.menu_list > li {
  margin: 0 0%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  height: var(--four_height);
  width: 100%;
}
.menu_list {
  position: relative;
}
.menu_list::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  left: 50%;
  transform: translateX(-50%);
}
.menu_list > li a {
  position: relative;
  height: 100%;
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  line-height: 120%;
  font-size: 0.18rem;
  color: #333;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  width: 100%;
}
.menu_list > li {
  width: 25%;
}
.menu_list > li > a::after {
  width: 170%;
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.menu_list > li > a::after {
  width: 0;
  height: 3px;
  background: var(--linear-gradien2);
  bottom: -1px;
}
/* 锚点激活样式 */
.menu_list > li:hover a,
.menu_list .list.active a {
  /* color: var(--i_color); */
  /* font-weight: bold; */
}
.menu_list .list.active a {
  font-weight: bold;
}
.menu_list li.active > a::after,
.menu_list > li:hover > a::after {
  width: 100%;
}
.mao_box .in_nav_tit {
  display: none;
}
.mao_box .navFix {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto 0;
  top: var(--header_height);
  z-index: 2014;
  width: 100%;
  background-color: #f7f7f7;
}
.mao_box .in_nav_tit {
  width: 100%;
  background-color: var(--i_color3);
}
.mao_box .in_nav_tit h6 {
  font-size: 0.24rem;
  line-height: 0.5rem;
  color: white;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .menu_list > li {
    margin: 0 1%;
  }
}
@media screen and (max-width: 960px) {
  .mao_box .in_nav_tit h6 {
    font-size: 0.18rem;
  }
  .mao_box .in_nav_tit {
    display: block;
  }
  .menu_list {
    display: none;
  }
  .menu_list > li {
    width: 100%;
  }
  .mao_box .navFix {
    /* top: .8rem; */
  }
  .in_nav {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
  }
  .menu_list li {
    width: 100%;
  }
  .menu_list li:hover {
    background-color: var(--i_color);
    box-shadow: 0 0 0.2rem rgba(1, 158, 230, 0.3);
  }
  .menu_list li:hover a {
    color: white;
  }
  .menu_list > li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .menu_list {
    padding: 0.2rem 0;
  }
}
@media screen and (max-width: 425px) {
}
.company_profile {
  width: 1600px;
  margin: 0 auto;
}
.company_profile article {
  font-size: 0.2rem;
  color: #666666;
  /* line-height: 170%; */
  /* height: 4.5rem; */
  text-align: center;
  overflow-y: auto;
  /* padding-right: 2%; */
}
.company_profile article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}
.company_profile article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #dedede;
}
.company_profile article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}
.company_profile .i_more {
  width: 2.6rem;
  margin: 0.6rem auto;
}
.a_num_list {
  width: 100%;
}
.a_num_list li {
  width: 25%;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .company_profile {
    width: 88%;
  }
  .company_profile article {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .a_num_list li {
    width: 50%;
  }
  .a_num_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .company_profile article {
    font-size: 0.14rem;
  }
  .a_num_list p {
    font-size: 0.14rem;
  }
}
.lead {
  background-color: var(--bc_color);
}
.lead .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.lead .img {
  width: 30%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.lead .img::before {
  content: "";
  display: block;
  padding-bottom: 98%;
}
.lead .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lead article {
  width: 65%;
  font-size: 0.26rem;
  color: #666;
  line-height: 150%;
}
@media screen and (max-width: 1440px) {
  .lead article {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .lead article {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 959px) {
  .lead .img {
    width: 100%;
  }
  .lead article {
    width: 100%;
    margin-top: 0.3rem;
  }
}
/* about us */
.ab_us {
  background: #f7f7f7;
}
.ab_us .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ab_us .box .txt {
  width: 55%;
}
.ab_us .box .icon {
  width: 40%;
}
.ab_us .box article {
  font-size: 0.16rem;
  line-height: 170%;
  color: #333;
  border-top: 1px solid var(--border_color);
  border-bottom: 1px solid var(--border_color);
  padding: 0.3rem 0;
}
.ab_us .box article strong {
  display: block;
  font-size: 0.2rem;
  font-weight: bold;
  margin: 0.12rem 0;
}
.ab_us .box .icon {
}
.ab_us .icon .xbox {
  display: flex;
  justify-content: space-around;
}
.ab_us .icon {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  justify-content: center;
}
.ab_us .icon .xbox li {
  font-size: 18px;
  color: #333;
}
.ab_us .icon .xbox span {
  font-size: 52px;
  color: #333;
}
.ab_us .icon .xbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 0.1rem 30px 0.22rem;
  border-top-left-radius: 20px;
}
.ab_us .icon .xbox ul {
  text-align: left;
}
.ab_us .icon .xbox .l {
}
.ab_us .icon .xbox .r {
}
.ab_us .icon .xbox img {
  max-width: 0.52rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ab_us .icon .xbox:hover img {
  transform: rotateY(360deg);
}
.ab_us .icon .xbox:hover span {
  color: var(--i_color3);
}
.i_ab_pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(static/img/video.webp) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .i_ab_pic {
    background-attachment: fixed;
  }
}
.i_ab_pic::before {
  content: "";
  display: block;
  padding-bottom: 25.26%;
}
@media screen and (max-width: 560px) {
  .i_ab_pic::before {
    padding-bottom: 35.26%;
  }
}
.i_v_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 50%);
  z-index: 6;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.i_v_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(255 255 255 / 50%);
  z-index: 1;
  -webkit-animation: sunshines 1.8s infinite;
  animation: sunshines 1.8s infinite;
}
@keyframes sunshines {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(135%);
    opacity: 0;
  }
}
.i_v_btn i {
  font-size: 0.6rem;
  color: var(--i_color3);
  margin-left: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .ab_us .icon .xbox span {
    font-size: 20px;
  }
  .ab_us .icon .xbox li {
    font-size: 14px;
  }
  .ab_us .box {
    flex-wrap: wrap;
  }
  .ab_us .box .txt {
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .ab_us .box .icon {
    width: 100%;
  }
  .in_about article {
    font-size: 0.16rem;
  }
  .i_v_btn {
    width: 0.8rem;
    height: 0.8rem;
  }
  .i_v_btn i {
    font-size: 0.7rem;
    margin-left: 8px;
  }
  .i_ab_pic p {
    font-size: 0.2rem;
    top: 30%;
  }
  .ab_us .box .txt p {
    font-size: 0.42rem;
  }
  .ab_us .box .txt .u1 li:first-child {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .i_v_btn {
    width: 0.6rem;
    height: 0.6rem;
  }
  .i_v_btn i {
    font-size: 0.5rem;
  }
  .i_ab_pic p {
    font-size: 0.16rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* eject videos */
.vd_box {
  display: none;
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2014;
  width: 60%;
  max-height: 90%;
}
.vd_box::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 {
    width: 80%;
  }
  .close_v::before {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .vd_box {
    width: 88%;
  }
  .close_v {
    top: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}
.a_adv {
  background: #f7f7f7;
}
.a_adv_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.a_adv_list li {
  width: 32%;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.a_adv_list img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.a_adv_list .txt {
  padding: 0.45rem 0.35rem;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
.a_adv_list .txt p {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  padding-bottom: 20px;
}
.a_adv_list .txt h6 {
  font-size: 16px;
  color: #333;
  line-height: 170%;
}
.a_adv_list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--linear-gradien3);
  z-index: 1;
  transition: all 0.5s ease;
}
.a_adv_list li::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6)
  );
  z-index: 2;
}
.a_adv_list li:hover:after {
  height: 100%;
}
.a_adv_list li:hover::before {
  animation: gradient-rectangle 1.4s forwards;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.18, 0.96);
}
.a_adv_list li:hover h6 {
  color: #fff;
}
.a_adv_list li:hover p {
  color: #fff;
}
.a_adv_list li:hover .i_more {
  background: #fff;
}
.a_adv_list li:hover b {
  color: var(--i_color3);
}
@keyframes gradient-rectangle {
  0% {
    top: 0%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@media screen and (max-width: 1440px) {
  .a_adv_list .txt {
    padding: 0.35rem 0.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .a_adv_list li:nth-child(2),
  .a_adv_list li {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .a_adv_list .txt p {
    font-size: 0.2rem;
  }
  .a_adv_list .txt h6 {
    font-size: 14px;
  }
  .a_adv_list .txt {
    position: relative;
  }
}
.manager {
  position: relative;
}
.manager::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--linear-gradien2);
  position: absolute;
  bottom: 0;
  left: 0;
}
.manager .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.manager .ico {
  width: 1.8rem;
}
.manager .ico img {
  width: 100%;
  object-fit: contain;
}
.manager .ico.bottom {
  margin-top: auto;
  transform: rotate(180deg);
}
.manager article {
  margin: 0.3rem;
  font-size: 0.18rem;
  color: #333;
}
.manager article p {
  line-height: 170%;
}
@media screen and (max-width: 1440px) {
  .manager .ico {
    width: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .manager .ico {
    width: 1.4rem;
  }
}
@media screen and (max-width: 959px) {
  .manager .ico {
    width: 1rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  .manager .ico.bottom {
    top: initial;
    left: initial;
    right: 0;
    bottom: 0;
  }
}
.certy {
  background: linear-gradient(to top, #ffe1c565, #f7f7f7);
}
.c_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.certy_list {
  position: relative;
  overflow: hidden;
}
.certy_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.certy_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.certy_list .img {
  position: relative;
  overflow: hidden;
  border: 10px solid #fff;
}
.certy_list .img::before {
  content: "";
  display: block;
  padding-bottom: 142.59%;
}
.certy_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.certy_list li:hover img {
  width: 105%;
  height: 105%;
}
.certy_prev,
.certy_next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgb(0 0 0 / 20%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
}
.certy_prev {
  left: -0.4rem;
}
.certy_next {
  right: -0.4rem;
}
.certy_list .swiper-button-disabled {
  cursor: not-allowed;
}
.certy_list:hover .certy_prev {
  left: 0;
  opacity: 1;
}
.certy_list:hover .certy_next {
  right: 0;
  opacity: 1;
}
.certy_prev:hover,
.certy_next:hover {
  background: var(--linear-gradien);
}
.certy_pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
}
.certy_pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 0.02rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.certy_pagination .swiper-pagination-bullet-active {
  background: var(--linear-gradien2);
}
/* ras */
.ras {
  background: #f7f7f7;
}
.ras .i_tit {
  text-align: center;
}
.ras .box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2%;
}
.ras .box .xbox:hover p {
  color: var(--i_color3);
}
.ras .box .xbox:hover img {
  transform: scale(1.1);
}
.ras .box .xbox {
  width: 32%;
  background-color: #fff;
  border-bottom-right-radius: 20px;
}
.ras .box .xbox .img {
  position: relative;
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
}
.ras .box .xbox img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.ras .box .xbox p {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.ras .box .xbox h6 {
  font-size: 16px;
  color: #999;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.ras .box .xbox h5 {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.ras .box .xbox .txt {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
/* Number of pages */
.in_page_box {
  text-align: center;
  overflow: hidden;
}
.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;
}
.in_page > i {
  margin-top: 0.14rem;
  width: 100%;
  font-size: 0.13rem;
  color: #888;
}
.in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
  border-color: none !important;
  background: var(--linear-gradien2);
  color: #fff !important;
}
@media screen and (max-width: 1200px) {
  .ras .box {
    gap: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .ras .box {
    gap: 0.3rem 2%;
  }
  .ras .box .xbox {
    width: 49%;
  }
  .certy_pagination {
    display: none;
  }
  .manager article {
    width: 100%;
  }
  .manager article li:first-child {
    width: 100%;
    font-size: 20px;
  }
  .in_page_box {
    margin-top: 0.4rem;
  }
  .manager article li:not(:first-child) {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .ras .box .xbox p {
    font-size: 16px;
  }
  .ras .box .xbox h6 {
    font-size: 14px;
  }
  .ras .box .xbox h5 {
    font-size: 12px;
  }
  .ras .box .xbox {
    width: 100%;
  }
  .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) {
  .in_page_box {
    margin-top: 0.3rem;
  }
}
/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #fff;
  position: relative;
}
.in_position .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #999;
  position: relative;
  line-height: 20px;
}
/* .in_position a:first-child{padding-left: 0.26rem;} */
.in_position a:first-child::before {
  /* content: ''; */
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #999;
}
/* .in_position a:last-child {color:var(--i_color) !important} */
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}
/* -----------contact-------------------- */
.c_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c_list li {
  width: 24%;
  text-align: center;
}
.c_list .img {
  margin: 0 auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 5px;
  background-color: #fdf0e4;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.c_list img {
  max-width: 0.33rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c_list h6 {
  font-weight: bold;
  font-size: 0.2rem;
  margin: 0.2rem 0 0.1rem;
}
.c_list a,
.c_list p {
  display: block;
  font-size: 0.16rem;
  line-height: 180%;
}
.c_list li,
.c_list img,
.c_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c_list li:nth-child(odd):hover img {
  transform: rotateX(180deg);
}
.c_list li:nth-child(even):hover img {
  transform: rotateY(180deg);
}
.c_list li:hover h6 {
  color: var(--i_color);
}
.c_list {
  --sc_width: calc(100% / 4);
  position: relative;
}
.c_list::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--border_color);
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: 1;
}
.c_Process {
  width: 0;
  height: 2px;
  background: var(--linear-gradien2);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.8s;
  z-index: 3;
}
.c_list li:first-child:hover ~ .c_Process {
  width: var(--sc_width);
}
.c_list li:nth-child(2):hover ~ .c_Process {
  width: calc(var(--sc_width) * 2);
}
.c_list li:nth-child(3):hover ~ .c_Process {
  width: calc(var(--sc_width) * 3);
}
.c_list li:nth-child(4):hover ~ .c_Process {
  width: calc(var(--sc_width) * 4);
}
@media screen and (max-width: 959px) {
  .c_list li {
    width: 50%;
    margin-bottom: 0.3rem;
  }
  .c_list .img {
    width: 0.4rem;
    height: 0.4rem;
    padding: 10px;
  }
}
.map {
  position: relative;
  overflow: hidden;
  background-color: #eee;
  height: 5rem;
  z-index: 10;
}
.map::before {
  content: "";
  display: block;
  padding-bottom: 26.04%;
}
.map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c_form .wrap {
  max-width: 1233px;
}
#wpforms-63 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}
#wpforms-63 {
  margin: 0;
  padding: 0;
}
#wpforms-form-63 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-63 .wpforms-field {
  padding: 0;
  margin-bottom: 0.1rem;
}
#wpforms-63 .wpforms-field-label {
  font-size: 0;
  position: absolute;
  top: 12px;
  left: 3px;
}
#wpforms-63 .wpforms-field-label span {
  font-size: 0.14rem;
  color: red;
}
#wpforms-63 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-63 .wpforms-field-container > div {
  width: 49%;
}
#wpforms-63 .wpforms-field-container > div:nth-child(5) {
  width: 100%;
}
#wpforms-63 .wpforms-field-container input,
#wpforms-63 textarea,
#wpforms-63 select {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  box-sizing: border-box;
  border: none !important;
  background: #f7f7f7;
  padding: 0 0.1rem 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-63-field_1-container input {
  border-top-left-radius: 20px !important;
}
#wpforms-63 input {
  line-height: var(--input_height);
}
#wpforms-63 textarea {
  line-height: 0.22rem;
  min-height: 1.4rem;
  padding: 0.06rem 0.16rem;
  border: none;
}
#wpforms-63-field_1-container {
  border-top-left-radius: 20px;
}
#wpforms-63 input::-webkit-input-placeholder,
#wpforms-63 textarea::-webkit-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-63 input::-moz-placeholder,
#wpforms-63 textarea::-moz-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-63 input::-ms-input-placeholder,
#wpforms-63 textarea::-ms-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-63-field_1-error,
#wpforms-63-field_2-error,
#wpforms-63-field_3-error,
#wpforms-63-field_4-error,
#wpforms-63-field_5-error,
#wpforms-63-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-63 .wpforms-submit-container button {
  display: block;
  width: 3rem;
  margin: 0 auto;
  border-radius: 0.2rem 0 0 0;
  height: 0.5rem;
  font-size: 0.2rem;
  color: #fff;
  line-height: 0.5rem;
  cursor: pointer;
  position: relative;
  background: var(--linear-gradien2);
  z-index: 2;
}
#wpforms-63 .wpforms-submit-container:hover button {
  background: var(--i_color3);
}
#wpforms-63 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
.c_form {
  background: url(static/img/formbanner.webp) no-repeat center;
  background-size: 100% 100%;
}
@media screen and (max-width: 560px) {
  #wpforms-63 .wpforms-field-container > div {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
}
/* ----------------------产品列表页---------------------------------- */
.in_products {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p_nav {
  width: 25%;
  margin-right: auto;
}
.p_nav h6 {
  padding: 0.18rem 0.2rem;
  font-size: 0.24rem;
  color: #fff;
  background: var(--linear-gradien2);
  border-radius: 0.24rem 0 0 0;
  font-weight: bold;
}
.p_menu_tit {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  font-size: 0.24rem;
  color: var(--font_color);
  font-weight: bold;
}
.p_menu_tit img {
  width: 0.5rem;
  margin-right: 0.2rem;
}
.p_menu_tit p {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* 折叠面板 */
.p_men_list {
  padding: 0;
  margin: 0;
  font-size: 1em;
  line-height: 0.5em;
  list-style: none;
}
.p_men_list li {
  position: relative;
}
.p_men_list > li {
  border-bottom: 1px solid rgba(216, 216, 216, 0.8);
}
.p_men_list li a {
  position: relative;
  line-height: 150%;
  font-size: 0.18rem;
  color: #333;
  padding: 0.16rem 0.2rem;
  display: block;
  box-sizing: border-box;
}
.p_men_list ul li a {
  padding-left: 0.4rem;
  font-size: 0.16rem;
  outline: 0;
  color: var(--font_color);
  text-transform: capitalize;
}
.p_men_list > li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--linear-gradien);
  position: absolute;
  bottom: -1px;
  right: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_men_list > li:hover::after,
.p_men_list > li.active::after {
  width: 100%;
  right: initial;
  left: 0;
}
.p_men_list ul li::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--linear-gradien2);
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  left: 0.1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_men_list ul li:hover::after,
.p_men_list ul li.active::after {
  opacity: 1;
  left: 0.2rem;
}
.p_men_list ul li.active a {
  font-weight: bold;
}
.p_men_list span {
  cursor: pointer;
  position: absolute;
  top: 0.16rem;
  right: 3%;
  z-index: 3;
  width: 20px;
  height: 20px;
  font-size: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.p_men_list ul li i {
  position: absolute;
  left: -0.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3rem;
  height: 0.3rem;
  background: url(static/images/ico_satr_p.png) no-repeat center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_men_list ul li:hover i,
.p_men_list ul li.active i {
  left: 0;
}
.p_nav .img {
  width: 70%;
  margin: 0 auto;
}
.p_nav img {
  width: 3rem;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .p_nav {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.in_p_r {
  margin-left: auto;
  width: 70%;
}
.category_des h6 {
  font-size: 0.24rem;
  color: #222;
  font-weight: bold;
  margin: 0.2rem 0 0.16rem;
}

.category_des .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0.2rem 0;
  background-color: #fff;
}
.category_des .img::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.category_des .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.in_p_list li {
  padding: 0.2rem 0.24rem;
  background-color: #fff;
  margin-bottom: 0.24rem;
  position: relative;
}
.in_p_list h6 {
  font-size: 24px;
  color: var(--i_color3);
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.in_p_list .img {
  width: 30%;
}
.in_p_list .img img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1440px) {
  .in_p_list .img {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .in_p_list .img {
    width: 50%;
  }
}
@media screen and (max-width: 560px) {
  .in_p_list .img {
    width: 100%;
  }
}
.in_p_list p {
  font-size: 14px;
  color: #333;
  margin: 0.12rem 0;
  line-height: 150%;
}
.in_p_list h6,
.in_p_list p {
  width: 80%;
}
.params {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.16rem 0 0.1rem;
}
.params .type,
.params .type > div {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.params i {
  display: table;
  padding: 2px 4px;
  background-color: #f1f1f1;
  border-radius: 2px;
  margin-right: 6px;
}
.params span {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  display: block;
  margin-right: 0.36rem;
}
.in_p_list button {
  padding: 6px 0.2rem;
  font-size: 14px;
  color: #333;
  background: #f1f1f1;
  border-radius: 0.24rem 0 0 0;
}
.in_p_list li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--linear-gradien);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.in_p_list li::after,
.in_p_list button,
.params i {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_p_list li:hover button {
  background: var(--linear-gradien2);
  color: #fff;
}
.in_p_list li:hover i {
  background: var(--i_color3);
  color: #fff;
}
.in_p_list li:hover::after {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .in_p_r {
    width: 100%;
    margin: 0 0;
  }
}
@media screen and (max-width: 560px) {
  .params .type,
  .params .type > div {
    flex-wrap: wrap;
    margin: 0.1rem 0;
  }
  .in_p_list button {
    background: var(--linear-gradien2);
    color: #fff;
  }
}
.pd_banner {
  background: #fffcf9;
  position: relative;
}
.pd_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pd_banner .wrap {
  position: relative;
  z-index: 2;
}
.pd_banner h1 {
  font-size: 0.42rem;
  color: #333;
  font-weight: bold;
}
.pd_banner h4 {
  font-size: 0.16rem;
  color: #999;
}
.pd_banner i {
  display: table;
  padding: 2px 4px;
  color: #fff;
  background-color: var(--i_color3);
  border-radius: 2px;
}
.pd_banner .txt {
  width: 100%;
}
.description {
  margin: 0.3rem 0;
}
.description article {
  margin-top: 0.12rem;
  font-size: 0.16rem;
  color: #333;
  line-height: 150%;
}
.pd_banner .type {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.pd_banner .type > div {
  width: 24%;
  margin-right: 1.3%;
  background: #fff;
  padding: 0.24rem 0.2rem;
  position: relative;
}
.structure img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 40%;
  object-fit: contain;
}
.pd_banner span {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  display: block;
  margin-top: 6px;
}
@media screen and (max-width: 1440px) {
  .pd_banner h1 {
    font-size: 0.32rem;
  }
  .description {
    margin: 0.2rem 0;
  }
  .pd_banner .type > div {
    padding: 0.2rem 0.12rem;
  }
}
@media screen and (max-width: 1024px) {
  .pd_banner h1 {
    font-size: 0.24rem;
  }
  .pd_banner::after {
    display: none;
  }
  .pd_banner .type {
    justify-content: space-between;
  }
  .pd_banner .type > div {
    width: 49%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .pd_banner .txt {
    width: 100%;
  }
  .pd_banner .type > div {
    width: 100%;
    margin-bottom: 0.1rem;
  }
}
.detail_cont {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pd_tit {
  margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--border_color);
}
.pd_tit span {
  position: relative;
  display: table;
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  padding: 0.2rem 0;
}
.pd_tit span::after {
  content: "";
  width: 100%;
  height: 1.5px;
  background: var(--linear-gradien2);
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width: 1024px) {
  .pd_tit {
    margin-bottom: 0.2rem;
  }
  .pd_tit span {
    font-size: 0.2rem;
    padding: 0.14rem 0;
  }
}
.detail {
  width: 69%;
  margin-right: auto;
}
.s_gallery {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.s_gallery li {
  width: 33%;
  margin-right: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.s_gallery li::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.s_gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pd_form {
  width: 27.5%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .detail,
  .pd_form {
    width: 100%;
    margin: 0.3rem 0;
  }
}
.pd_form_cont {
  background: #f7f7f7;
  padding: 0.3rem 0.2rem;
  position: relative;
}
.pd_form_cont::after {
  content: "";
  width: 1.5px;
  height: 100%;
  background: linear-gradient(to top, var(--i_color), var(--i_color2));
  position: absolute;
  right: 0;
  top: 0;
}
.pd_form p {
  font-size: 14px;
  color: #333;
  line-height: 150%;
}
.tag {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
}
.tag p {
  font-weight: bold;
  margin-right: 0.1rem;
}
.tag a {
  font-size: 14px;
  display: table;
  padding: 3px 6px;
  background: #ffecdf;
  margin-right: 0.1rem;
}
.share {
  margin: 0.24rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.share p {
  font-weight: bold;
  margin-right: 0.1rem;
}
.share a {
  margin-right: 0.1rem;
  background-color: #d9d9d9;
  width: 20px;
  height: 20px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.share a iconify-icon {
  font-size: 0.18rem;
  color: #fff;
}
.share a:hover {
  background: var(--i_color3);
}
#wpforms-66 {
  margin: 0.3rem 0;
  --input_font_size: 14px;
  --input_height: 48px;
}
#wpforms-66 .wpforms-field {
  padding: 0;
  margin-bottom: 0.1rem;
}
#wpforms-66 .wpforms-field-label {
  font-size: 0;
  position: absolute;
  top: 12px;
  left: 3px;
}
#wpforms-66 .wpforms-field-label span {
  font-size: 0.14rem;
  color: red;
}
#wpforms-66 input,
#wpforms-66 textarea {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  border: none !important;
  font-size: var(--input_font_size);
  color: #333;
  max-height: var(--input_height);
  box-sizing: border-box;
  background: #fff;
  padding: 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-66-field_1-container input {
  border-radius: 0.2rem 0 0 0;
}
#wpforms-66 textarea {
  min-height: 1.2rem;
  padding: 0.06rem 0.16rem;
}
#wpforms-66 input::-webkit-input-placeholder,
#wpforms-66 textarea::-webkit-input-placeholder {
  color: #333;
  font-size: var(--input_font_size);
}
#wpforms-66 input::-moz-placeholder,
#wpforms-66 textarea::-moz-placeholder {
  color: #333;
  font-size: var(--input_font_size);
}
#wpforms-66 input::-ms-input-placeholder,
#wpforms-66 textarea::-ms-input-placeholder {
  color: #333;
  font-size: var(--input_font_size);
}
#wpforms-66-field_1-error,
#wpforms-66-field_2-error,
#wpforms-66-field_3-error,
#wpforms-66-field_4-error,
#wpforms-66-field_5-error,
#wpforms-66-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-66 .wpforms-field-container {
  width: 100%;
}
#wpforms-66 .wpforms-submit-container button {
  display: table;
  padding: 0 0.4rem;
  margin-top: 0.3rem;
  -webkit-border-radius: 0.3rem 0 0 0;
  border-radius: 0.3rem 0 0 0;
  font-size: 0.16rem;
  color: #fff;
  font-weight: bold;
  background: var(--linear-gradien2);
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: 0.5s ease;
  overflow: hidden;
}
#wpforms-66 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-66 .wpforms-submit-container button::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 100%;
  left: 50%;
  border-radius: 40%;
  transform: translateX(-50%);
  background: var(--i_color3);
  transition: 0.5s ease;
  z-index: -1;
}
#wpforms-66 .wpforms-submit-container button:hover {
  color: #fff;
}
#wpforms-66 .wpforms-submit-container button:hover::before {
  top: -10%;
}
@media screen and (max-width: 1024px) {
  #wpforms-form-54 {
    flex-wrap: wrap;
  }
  #wpforms-66 .wpforms-field {
    width: 100%;
    position: relative;
  }
  #wpforms-66 .wpforms-field-container {
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #wpforms-66-field_1-container,
  #wpforms-66-field_3-container {
    width: 100% !important;
  }
  #wpforms-66 .wpforms-submit-container {
    margin: 0 auto;
  }
  #wpforms-66 .wpforms-submit-container button {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  #wpforms-66 {
    --input_font_size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #wpforms-66-field_1-container,
  #wpforms-66-field_2-container,
  #wpforms-66-field_3-container {
    width: 100% !important;
  }
  #wpforms-66 .wpforms-submit-container button {
    height: 0.42rem;
    line-height: 0.42rem;
  }
}
.cus_txt article {
  font-size: 0.18rem;
  color: #fff;
  line-height: 170%;
  margin: 0.3rem 0;
}
.down_list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
  padding: 0.18rem 0;
  border-bottom: 1px solid var(--border_color);
}
.down_list .txt {
  width: 100%;
}
.down_list h3 {
  font-size: 0.16rem;
  color: #333;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  line-height: 150%;
}
.down_list h3 i {
  width: 22px;
  height: 22px;
  border-radius: 2px;
  font-size: 16px;
  background: var(--i_color3);
  color: #fff;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* .down_list .list{display: none;} */
.down_list dl {
  padding: 0.18rem 0.4rem;
  background: #f7f7f7;
  margin-top: 0.2rem;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.down_list a {
  font-size: 12px;
  color: var(--i_color3);
  text-decoration: underline;
}
.down_list .curr i {
  background: var(--linear-gradien2);
}
.rp_cont {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.16rem 0;
  border-bottom: 1px solid var(--border_color);
}
.rp_cont h5 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
}
.rp_list {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.rp_list a {
  display: table;
  padding: 6px 0.1rem;
  border-radius: 3px;
  font-size: 0.16rem;
  color: #333;
  margin-left: 10px;
  background: #feebe2;
}
@media screen and (max-width: 768px) {
  .rp_cont h5 {
    width: 100%;
    margin-bottom: 0.1rem;
  }
  .rp_list {
    width: 100%;
    justify-content: flex-start;
  }
  .rp_list li {
    margin-bottom: 0.1rem;
  }
}
.pd_navigation {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.2rem 0;
}
.pd_navigation li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.pd_navigation h6 {
  font-size: 14px;
  color: #222;
  font-weight: bold;
}
.pd_navigation p {
  font-size: 14px;
  color: #333;
}
.pd_faq {
  background: #f7f7f7;
}
.pd_faq .pd_tit,
.faq_list {
  width: 69%;
}
.faq_list li {
  overflow: hidden;
  padding: 0.1rem 0;
  margin-bottom: 0.1rem;
  border-bottom: 1px solid var(--border_color);
  padding: 12px 0;
}
.faq_list h3 {
  font-size: 0.16rem;
  color: #333;
  cursor: pointer;
  position: relative;
  line-height: 150%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.faq_list h3 i {
  width: 22px;
  height: 22px;
  border-radius: 2px;
  margin-right: 0.24rem;
  background: var(--i_color3);
  color: #fff;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.faq_list .curr i {
  background: var(--linear-gradien2);
}
.faq_list li.curr {
  border: none;
}
.faq_list p {
  display: none;
  padding-left: calc(22px + 0.24rem);
  margin: 0.2rem 0 0.1rem;
  font-size: 0.16rem;
  color: #333;
  line-height: 160%;
}
@media screen and (max-width: 1024px) {
  .pd_faq .pd_tit,
  .faq_list {
    width: 100%;
  }
}
.team_cont {
  background: #f7f7f7;
  padding-bottom: 0.2rem;
}
.team_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.team_list > li {
  width: calc(100% / 3 - 2%);
  margin-right: 3%;
  margin-bottom: 0.4rem;
  overflow: hidden;
  position: relative;
}
.team_list > li:nth-child(3n) {
  margin-right: 0;
}
.team_list > li::before {
  content: "";
  display: block;
  padding-bottom: 95.52%;
}
.team_list > li .cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .team_list {
    justify-content: space-between;
  }
  .team_list > li {
    width: 49%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .team_list > li {
    width: 100%;
  }
}
.team_list .img {
  position: relative;
  overflow: hidden;
}
.team_list .img::before {
  content: "";
  display: block;
  padding-bottom: 73.41%;
}
.team_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team_list .txt {
  padding: 0 0.4rem;
  background: #fff;
  position: absolute;
  width: 100%;
  height: 26%;
  bottom: 0;
  left: 0;
}
.team_list .txt::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--linear-gradien2);
}
.team_list .in_name {
  padding: 0.3rem 0;
}
.team_list h6 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
}
.team_list p {
  font-size: 0.18rem;
  margin-top: 6px;
  color: #999;
}
.team_list .txt ul {
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 0.4rem;
  opacity: 0;
}
.team_list .txt li {
  display: flex;
  align-items: center;
  margin-top: 0.1rem;
}
.team_list iconify-icon {
  font-size: 0.18rem;
  color: #333;
  padding-right: 6px;
}
.team_list a {
  font-size: 0.18rem;
  color: #333;
}
.team_list li,
.team_list .txt ul,
.team_list .txt {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team_list > li:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.team_list > li:hover .txt {
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.team_list > li:hover ul {
  opacity: 1;
  bottom: 0.4rem;
}
.team_list > li:hover .in_name {
  padding: 0.5rem 0;
}
.team_list a:hover {
  color: var(--i_color);
  text-decoration: underline;
}
@media screen and (max-width: 560px) {
  .team_list h6 {
    font-size: 0.2rem;
  }
  .team_list p,
  .team_list a {
    font-size: 0.16rem;
  }
}
.detail article {
  font-size: 0.16rem;
  color: #333;
}
.detail article p {
  text-align: justify;
}
.detail article * {
  line-height: 150%;
}
.detail article h2 {
  padding: 8px 0;
  display: inline-block;
  font-size: 24px;
}
.detail article table {
  margin-top: 0.12rem !important;
}
.detail article table * {
  line-height: 100%;
}
.n_article {
  font-size: 0.16rem;
  color: #333;
}
.n_article p {
  font-size: 0.16rem;
  text-align: justify;
}
.n_article * {
  line-height: 150%;
}
.n_article h2 {
  padding: 8px 0;
  display: inline-block;
  font-size: 24px;
}
.n_article table {
  margin-top: 0.12rem !important;
}
.n_article table * {
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .detail article h2,
  .n_article h2 {
    font-size: 20px;
  }
}
.detail article h3,
.n_article h3 {
  font-size: 23px;
}
.detail article h4,
.n_article h4 {
  font-size: 22px;
}
.detail article h5,
.n_article h5 {
  font-size: 21px;
}
.detail article h6,
.n_article h6 {
  font-size: 20px;
}
.bc {
  background: #f7f7f7;
}
.in_news_art {
  background-color: #fff;
  padding: 20px 10px;
  width: 60%;
  margin: 0 auto;
  border: 1px solid var(--border_color);
}
@media screen and (max-width: 1440px) {
  .in_news_art {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .in_news_art {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .in_news_art {
    width: 100%;
  }
}
