/*
Theme Name: Lang Teng
Version: 1.0
Description: 三鸟科技提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：三鸟科技
*/
@charset "utf-8";

@font-face {
  font-family: "roboto";
  src: url("./static/font/Raleway-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "roboto";
  src: url("./static/font/Raleway-Bold.ttf") format("truetype");
  font-weight: bold;
}

* {
  box-sizing: border-box;
  line-height: 170%;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
}

:root {
  --i_color: #003670;
  --i_color2: #d6a281;
  --font_color: #001831;
  --bc_color: #f2f5f5;
  --i_shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  --header_height: 1rem;
  --border_color: rgb(51, 51, 51, 0.2);
  --f_menu_height: 50px;
  --linear-gradien: linear-gradient(to right top, #1575b5, #116db1);
}
@media screen and (max-width: 1440px) {
  :root {
    --header_height: 0.8rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.6rem;
    --border_color: rgb(0 0 0 / 6%);
  }
}
.wrap {
  width: 68%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.wrap_l {
  padding-left: 16%;
}
.wrap_r {
  padding-right: 16%;
}
.top_wrap {
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .wrap {
    width: 70%;
    max-width: 1400px;
  }
  .wrap_l {
    padding-left: 15%;
  }
  .wrap_r {
    padding-right: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    width: 86%;
  }

  .wrap_l,
  .wrap_r {
    padding-left: 7%;
    padding-right: 7%;
  }
}
.language {
  position: relative;
  height: var(--header_height);
  display: flex;
  align-items: center;
}
.language p {
  font-size: 16px;
  color: #333;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .language p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .language p {
    font-size: 14px;
  }
}
.language p.on {
  color: var(--i_color);
}
.language p::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px; /* 这将创建一个朝下的三角形 */
  border-color: #333 transparent transparent transparent; /* 黑色在顶部，其余为透明 */
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: -14px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.language p.on::before {
  border-top-color: var(--i_color);
}
.language_list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 1.5rem;
  right: 0;
  background: #fff;
  z-index: 2016;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.16rem 0.2rem;
}
.language_list.on {
  opacity: 1;
  visibility: visible;
  top: var(--header_height);
}
.language_list dt > h6 {
  margin-bottom: 0.08rem;
  font-size: 0.17rem;
  font-weight: bold;
  white-space: nowrap;
}
.curr_lang {
  margin-bottom: 0.12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #eee;
}
.lang_list a {
  display: block;
  padding: 0.06rem 0;
}
.lang_list span img {
  display: none;
}
.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;
  font-size: 14px;
  position: relative;
}
.lang_list .trp-ls-language-name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.18rem;
  height: 0.18rem;
  box-sizing: border-box;
  border: 1px solid #aaa;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.lang_list .trp-ls-language-name::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.06rem;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--i_color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after {
  display: block;
}
.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name {
  color: var(--i_color);
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2014;
  background-color: #fff;
  box-shadow: 0px 0px 4px #ddd;
}
.TopHeader {
  --header_height: 0.8rem;
}
.top_cont {
  position: relative;
}
.top {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.full_header {
  margin-top: var(--header_height);
}
/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
  margin-right: 30px;
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 0.4rem;
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    z-index: 2015;
    gap: 0 0.4rem;
  }
  .i_nav > li {
    position: relative;
  }
  .i_nav > li > a {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    line-height: var(--header_height);
    position: relative;
  }
  .i_nav > li > a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--i_color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    -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 {
    width: 100%;
  }
  .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 {
    color: var(--i_color) !important;
  }
  .i_nav > li.menu-item-has-children > a {
    padding-right: 24px;
  }
  .i_nav > .menu-item-has-children > a::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: url("static/images/arrow_down_hollow_hei.svg") no-repeat center;
    background-size: 100%;
  }
  .i_nav .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    background-color: var(--bc_color);
    text-align: center;
    border-top: 2px solid var(--i_color);
  }
  .i_nav .drop_p .sub-menu {
    display: none !important;
  }
  .i_nav .sub-menu li {
    position: relative;
    padding: 0 0.3rem;
    border-bottom: 1px solid var(--border_color);
  }
  .i_nav .sub-menu a {
    color: #333;
    display: block;
    font-size: 0.15rem;
    line-height: 0.44rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }
  .i_nav .sub-menu > li:hover {
    background: var(--i_color);
  }
  .i_nav .sub-menu > li:hover > a {
    color: #fff;
  }
  /* 箭头 */
  .i_nav .sub-menu li.menu-item-has-children {
    position: relative;
  }
  .i_nav .sub-menu li.menu-item-has-children::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='m19 12l12 12l-12 12'/%3E%3C/svg%3E")
      no-repeat center;
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  /* 三级 */
  .i_nav .sub-menu ul {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 80%;
    background-color: var(--bc_color);
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav .sub-menu li:hover ul {
    opacity: 1;
    left: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.3rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav > li > a {
    font-size: 14px;
  }
}
@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;
  }
  /*滚动条*/
  .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;
    box-sizing: border-box;
    background: url(static/images/arrow_down_hollow_hei.svg) 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.16rem;
    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.15rem;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border_color);
  }
}
/* 移动端导航按钮 */
.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: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #333;
  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;
    margin-left: 0.2rem;
  }
}
.top_r {
  margin-left: 0.7rem;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}
.top_email {
  color: var(--i_color);
  margin-right: 15px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.top_email iconify-icon {
  font-size: 0.22rem;
}
.top_search_ico {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #ddd;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top_search_ico {
    width: 36px;
    height: 36px;
  }
}
.top_search_ico iconify-icon {
  font-size: 0.22rem;
  color: #333;
}
/* search main */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.16rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
}
.top_search.on {
  visibility: visible;
  opacity: 1;
  top: 100%;
  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;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  overflow: hidden;
}
.top_search_ipt {
  width: calc(100% - var(--search_height) * 2);
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0 0 0.12rem;
}
.top_search_btn {
  font-size: 0;
  color: #fff;
  width: calc(var(--search_height) * 2);
  height: var(--search_height);
  background: var(--i_color) url(static/images/search.svg) no-repeat center;
  background-size: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .top_search.on {
    top: var(--header_height);
  }
  .top_r {
    margin-left: auto;
  }
  .top_search_ico {
    margin-right: 0.2rem;
  }
  .top_search_ico::before {
    display: none;
  }
}
@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%;
  }
}
@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;
}

:root {
  --radius_size: 1rem;
}
@media screen and (max-width: 1440px) {
  :root {
    --radius_size: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --radius_size: 0.2rem;
  }
}

.com_path {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(
    5% 0,
    100% 0,
    100% 10%,
    100% 90%,
    95% 100%,
    0 100%,
    0 90%,
    0 5%
  );
  clip-path: polygon(
    5% 0,
    100% 0,
    100% 10%,
    100% 90%,
    95% 100%,
    0 100%,
    0 90%,
    0 5%
  );
}

/* -------------------底部-------------------------- */
footer {
  background: #002b48;
  position: relative;
  overflow: hidden;
}
.footer_img_top,
.footer_img_bottom {
  position: absolute;
  z-index: 1;
  max-width: 3rem;
  opacity: 0.1;
}
.footer_img_top img,
.footer_img_bottom img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer_img_top,
  .footer_img_bottom {
    max-width: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer_img_top,
  .footer_img_bottom {
    max-width: 2rem;
    opacity: 0.5;
  }
}
.footer_img_top {
  top: -5%;
  right: -10px;
}
.footer_img_bottom {
  left: 0;
  bottom: -5%;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.f_top h6 {
  font-size: 0.24rem;
  color: #fff;
  text-align: right;
}
.f_logo {
  width: 30%;
}
.f_logo img {
  max-width: 3rem;
}

.f_left,
.f_right {
  padding: 0.5rem 0;
}
.f_left {
  width: 30%;
}
.f_right {
  width: 70%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.f_cont,
.f_menu_cont {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.f_contact_list li {
  margin-bottom: 0.12rem;
  font-size: 0.18rem;
  color: #333;
}
.f_contact_list li:first-child a {
  color: #fff;
  font-weight: bold;
}
.f_contact_list a,
.f_contact_list p {
  display: inline;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.8);
}
.f_contact_list a:hover {
  color: var(--i_color);
}
.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.2rem;
}
.f_media a {
  width: 0.38rem;
  height: 0.38rem;
  background: rgb(255 255 255 / 10%);
  font-size: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.f_media a:hover {
  color: #fff;
  background: var(--i_color);
}
.f_menu_cont {
  padding-left: 5%;
}
.f_menu ul ul {
  display: none;
}
.f_menu a {
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.12rem;
}
.f_menu a:hover {
  color: #fff;
}
.f_tit {
  font-size: 0.24rem;
  color: #fff;
  margin-bottom: 0.2rem;
  text-transform: capitalize;
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .f_contact_list li:first-child a {
    font-size: 0.24rem;
  }
  .f_left,
  .f_right {
    padding: 0.4rem 0;
  }
  .f_menu_cont {
    padding-left: 4%;
  }
  .f_top h6 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .f_left {
    width: 100%;
    padding: 0.3rem 0;
  }
  .f_right {
    display: none;
  }
  .f_contact_list li:first-child a {
    font-size: 0.2rem;
  }
  .f_contact_list a,
  .f_contact_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .f_left {
    padding: 0.2rem 0;
  }
}
.f_cr {
  background: var(--font_color);
  border-radius: 0 0.5rem 0 0;
}
.f_cr .wrap {
  padding: 0.24rem 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.f_cr p,
.f_cr a {
  font-size: 0.16rem;
  color: #fff;
  opacity: 0.6;
  position: relative;
}
.f_cr a {
  padding-left: 0.1rem;
  margin-left: 0.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.f_cr a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .f_cr .wrap {
    padding: 0.16rem 0;
    gap: 6px 0;
  }
  .f_cr p,
  .f_cr a {
    width: 100%;
    font-size: 0.14rem;
    padding: 0;
    border: none;
  }
}
div.wpforms-container-full input[type="text"]:focus {
  box-shadow: none !important;
}
div.wpforms-container-full .wpforms-form label.wpforms-error,
div.wpforms-container-full .wpforms-form em.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 0;
}
.wpforms-hidden {
  display: none;
}
/* -----------------公用样式----------------- */

.i_tit {
  text-align: center;
  margin-bottom: 0.6rem;
}
.i_tit > span {
  display: block;
  font-size: 0.14rem;
  color: #f39c12;
  font-weight: 700;
}
.i_tit > h2 {
  font-size: 0.36rem;
  color: #0a2540;
  margin: 0.1rem 0;
}
.i_tit > p {
  font-size: 0.16rem;
  color: #666;
}
.i_tit.white > h4 {
  color: #fff;
}
.i_tit.color > h4 {
  color: var(--i_color2);
}
.i_tit.white > p {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .i_tit > h4 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_tit > h4 {
    font-size: 0.24rem;
    padding-bottom: 10px;
  }
  .i_tit > p {
    width: 100%;
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .i_tit > h4 {
    font-size: 0.2rem;
  }
}
.i_more {
  display: table;
  padding: 8px 0.24rem;
  background: none;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
  background: var(--i_color);
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.i_more b {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.16rem;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: 0.5s ease;
}
.i_more b iconify-icon {
  font-size: 0.2rem;
}
.i_more::before {
  content: "";
  width: 0;
  height: 1000%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #333;
  transition: 0.5s ease;
  display: block;
  z-index: 1;
}
.i_more:hover::before {
  width: 180%;
}
.i_more_line {
  background: none;
  border: 1px solid var(--i_color);
}
.i_more_line::before {
  background: var(--i_color);
}
.i_more_line b {
  color: var(--i_color);
}
.i_more_line:hover b {
  color: #fff;
}
.i_more_w {
  background: none;
  border: 1px solid #fff;
}
.i_more_w b {
  color: #fff;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.i_more_list {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.3rem;
}

@media screen and (max-width: 1440px) {
  .i_more {
    padding: 6px 0.3rem;
  }
  .i_more b {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .i_more b {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .i_more_list a:nth-child(1) {
    margin-bottom: 0.1rem;
  }
}
.more {
  width: 0.36rem;
  height: 0.36rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.more:hover {
  transform: translateY(-4px);
}
.bc {
  background: var(--bc_color);
}
.bc_deep {
  background: var(--font_color);
  color: #fff;
}
.gra_color {
  background: var(--linear-gradien);
}
.row_tit {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.bor {
  -webkit-border-radius: 0.6rem 0.6rem 0 0;
  border-radius: 0.6rem 0.6rem 0 0;
}
@media screen and (max-width: 1440px) {
  .bor {
    -webkit-border-radius: 0.4rem 0.4rem 0 0;
    border-radius: 0.4rem 0.4rem 0 0;
  }
}
.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%;
  overflow: hidden;
  position: relative;
}
.banner .swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 2;
}
.banner .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.banner .swiper-slide {
  height: 0;
  padding-bottom: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .banner .swiper-slide {
    padding-bottom: 50vh;
  }
}
@media screen and (max-width: 560px) {
  .banner .swiper-slide {
    padding-bottom: 40vh;
  }
}
.banner .swiper-slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-slide video {
  position: absolute;
  left: -50px;
  top: 0;
  width: calc(100% + 100px);
  height: 102% !important;
  object-fit: contain;
  z-index: 2;
}
.banner-button-prev,
.banner-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  background: rgb(0 0 0 / 30%);
  font-size: 24px;
  color: #fff;
  z-index: 999;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.banner-button-prev {
  left: -50px;
}
.banner-button-next {
  right: -50px;
}
.banner:hover .banner-button-prev {
  left: 0;
}
.banner:hover .banner-button-next {
  right: 0;
}
.banner-button-prev:hover,
.banner-button-next:hover {
  background-color: var(--i_color);
}
.banner-pagination {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0.2rem;
  text-align: center;
  z-index: 2;
}
.banner-pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  display: inline-block;
  margin: 0 6px;
  background: #999;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .banner-button-prev,
  .banner-button-next {
    width: 42px;
    height: 42px;
  }
  .banner-button-prev iconify-icon,
  .banner-button-next iconify-icon {
    font-size: 20px;
  }
  .banner-pagination {
    display: block;
  }
}

.banner .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15), transparent);
}
/* banner上文字 */
.b_t1 {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.b_t1 h3,
.b_t1 h1 {
  font-size: 0.6rem;
  color: #fff;
  font-weight: bold;
  line-height: 100%;
  text-shadow: 2px 2px 10px #777;
  position: relative;
}

.b_t1 p {
  font-size: 0.24rem;
  color: #fff;
  position: relative;
  background: var(--i_color);
  padding: 4px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 6px;
  margin: 0.3rem 0;
}
.b_t1 p img {
  max-width: 0.3rem;
}
.b_t1 span {
  display: block;
  font-size: 0.24rem;
  color: #fff;
  text-shadow: 0px 0px 3px #000;
  padding: 0.2rem;
  backdrop-filter: blur(5px);
}
@media screen and (max-width: 1440px) {
  .b_t1 h3,
  .b_t1 h1 {
    font-size: 0.4rem;
  }

  .b_t1 p {
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .b_t1 p img {
    max-width: 0.24rem;
  }
}
@media screen and (max-width: 1366px) {
  .b_t1 h3,
  .b_t1 h1 {
    font-size: 0.3rem;
  }

  .b_t1 span {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .b_t1 {
    width: 80%;
  }

  .b_t1 p {
    font-size: 0.18rem;
  }
  .b_t1 p img {
    max-width: 0.2rem;
  }
  .b_t1 span {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .b_t1 {
    width: 90%;
  }

  .b_t1 h3,
  .b_t1 h1 {
    font-size: 0.2rem;
  }
  .b_t1 .txt {
    width: 100%;
  }

  .b_t1 p {
    font-size: 0.16rem;
    padding: 2px 6px;
  }
  .b_t1 p img {
    display: none;
  }
  .b_t1 span {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .b_t1 p {
    font-size: 14px;
  }
  .b_t1 span {
    font-size: 14px;
  }
}

/* ---------------------------内页------------------------------- */
.in_banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_banner .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.in_banner .img::after {
  content: "";
  display: block;
  padding-bottom: 40vh;
}
.in_banner .img img {
  width: 101%;
  height: 101%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_banner .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  text-align: center;
}
.in_banner h4 {
  text-transform: capitalize;
  font-size: 0.4rem;
}
.in_banner p {
  font-size: 0.18rem;
  width: 60%;
  margin: 0.2rem auto 0;
}
@media screen and (max-width: 1200px) {
  .in_banner h4 {
    font-size: 0.34rem;
  }
  .in_banner p {
    font-size: 0.16rem;
    width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  .in_banner .wrap {
    top: 46%;
  }
  .in_banner h4 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .in_banner p {
    font-size: 14px;
    width: 100%;
    margin-top: 0.1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 560px) {
  .in_banner h4 {
    font-size: 0.2rem;
  }
}
.in_position {
  padding: 0.16rem 0;
}
.in_position .wrap {
  height: 20px;
}
.in_position a {
  display: block;
  float: left;
  font-size: 16px;
  color: #666;
  position: relative;
  line-height: 20px;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 6px;
  color: #666;
}
.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: 15px;
  }
  .in_position {
    bottom: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .in_position a {
    font-size: 14px;
  }
  .in_position {
    bottom: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .in_position a {
    font-size: 12px;
  }
  .in_position {
    bottom: 0rem;
  }
}
/* ------------products------------ */
.in_products {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p_nav {
  width: 28%;
  margin-right: auto;
  padding: 0.2rem;
  background-color: var(--bc_color);
}
.p_nav .tit h5 {
  font-size: 0.24rem;
}
.p_nav .tit {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid var(--border_color);
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 1440px) {
  .p_nav .tit h5 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .p_nav .tit h5 {
    font-size: 0.2rem;
  }
  .p_nav .tit {
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
}
/* 折叠面板 */
.p_menu_list {
  padding: 0;
  margin: 0;
  font-size: 1em;
  line-height: 0.5em;
  list-style: none;
}
.p_menu_list li {
  position: relative;
}
.p_menu_list li a {
  position: relative;
  line-height: 100%;
  font-size: 0.18rem;
  padding: 0.14rem 2%;
  display: block;
  box-sizing: border-box;
  text-transform: capitalize;
}
.p_menu_list ul {
  padding: 0;
  display: none;
  overflow: hidden;
}
.p_menu_list ul li {
  margin: 0;
  padding: 0;
  clear: both;
}
.p_menu_list ul li a {
  padding-left: 0.2rem;
  font-size: 0.16rem;
  outline: 0;
  color: #333;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.p_menu_list ul li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--i_color);
  position: absolute;
  left: -8px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_menu_list > li:hover > a,
.p_menu_list > li.active > a {
  color: var(--i_color);
}
.p_menu_list > li.active > a {
  font-weight: bold;
}
.p_menu_list ul li:hover a,
.p_menu_list ul li.active a {
  color: var(--i_color);
  margin-left: 0.1rem;
}
.p_menu_list ul li:hover a::after,
.p_menu_list ul li.active a::after {
  left: 0;
  opacity: 1;
}
.p_menu_list ul ul li a {
  color: #333;
  padding-left: 40px;
}
.p_menu_list ul ul li a:hover {
  color: var(--i_color);
}
.p_menu_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;
}
.p_menu_list > li:hover > span,
.p_menu_list > li.active > span {
  color: var(--i_color);
}
.p_menu_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_menu_list ul li:hover i,
.p_menu_list ul li.active i {
  left: 0;
}
.p_nav .img {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .p_nav {
    padding: 0.2rem 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .p_nav {
    width: 100%;
    margin-bottom: 0.4rem;
    padding: 0.12rem 0.2rem;
  }
}
.in_c_name h6 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
}

@media screen and (max-width: 1440px) {
  .in_c_name h6 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_c_name h6 {
    font-size: 0.22rem;
  }
}

.in_c_name article {
  margin: 0.1rem 0 0.2rem;
  color: #666;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-height: calc(0.24rem * 6);
  overflow-y: auto;
  padding-right: 2%;
}
.in_c_name article * {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.in_c_name article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.in_c_name article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.in_c_name article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .in_c_name article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .in_c_name article * {
    font-size: 14px;
    line-height: 20px;
  }
}

.in_p_r {
  margin-left: auto;
  width: 68%;
}
.in_p_r a {
  position: relative;
}
.in_p_list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.in_p_list li {
  width: calc(100% / 3 - 2%);
  margin-right: 3%;
  margin-bottom: 0.36rem;
  overflow: hidden;
}
.in_p_list li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .in_p_list {
    justify-content: space-between;
  }
  .in_p_list li {
    width: 49%;
    margin-right: 0;
    margin-bottom: 0.24rem;
  }
}
.in_p_list > a {
  display: block;
  width: 100%;
}
.in_p_list h6 {
  font-size: 0.18rem;
  color: #333;
  font-weight: normal;
  margin: 0.16rem 0.1rem;
  text-align: center;
}
.in_p_list .img {
  border: 1px solid var(--border_color);
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 80.84%;
}
.in_p_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_p_list li:hover .img {
  border-color: var(--i_color);
}
.in_p_list img,
.in_p_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_p_list li:hover h6 {
  color: var(--i_color);
}
.in_p_list li:hover img {
  width: 105%;
  height: 105%;
}
@media screen and (max-width: 1024px) {
  .in_p_r {
    width: 100%;
    margin: 0 0;
  }
}
@media screen and (max-width: 560px) {
  .in_p_list h6 {
    font-size: 15px;
  }
  .in_p_list p {
    font-size: 13px;
  }
}

.in_tit {
  font-size: 0.2rem;
  text-align: center;
  font-weight: bold;
}

.workshop_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.workshop_list li {
  width: calc((100% - 0.6rem) / 3);
  position: relative;
  overflow: hidden;
}

.workshop_list li::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.workshop_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
  .workshop_list li {
    width: calc((100% - 0.3rem) / 2);
  }
}
@media screen and (max-width: 560px) {
  .workshop_list li {
    width: 100%;
  }
}

.sp_list {
  position: relative;
  overflow: hidden;
}
.sp_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.sp_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.sp-prev,
.sp-next {
  position: absolute;
  top: 20%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.4rem;
  height: 0.4rem;
  font-size: 0.3rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
}
.sp-prev {
  left: 0;
}
.sp-next {
  right: 0;
}
.sp_list .swiper-button-disabled {
  cursor: not-allowed;
}
.sp-prev:hover,
.sp-next:hover {
  background: var(--font_color);
}
.sp-pagination {
  text-align: center;
}
.sp-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 8px;
  background: #999;
  outline: none;
  cursor: pointer;
  position: relative;
}
.sp-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.sp_list .img {
  position: relative;
  overflow: hidden;
}
.sp_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.sp_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sp_list h6 {
  font-size: 0.2rem;
  text-align: center;
  margin: 0.1rem 0;
}
.sp_list .img img,
.sp_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sp_list li:hover img {
  width: 105%;
  height: 105%;
}
.sp_list li:hover h6 {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .sp_list li {
    width: calc((100% - 0.3rem) / 2);
  }
  .sp_list h6 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .sp_list li {
    width: 100%;
  }
  .sp_list h6 {
    font-size: 0.16rem;
  }
}

/* ----------------about---------------- */
.in_about .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}
.in_about .img {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.in_about .img::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.in_about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_about .txt {
  width: 45%;
}
.in_about h6 {
  font-size: 0.3rem;
  color: var(--i_color);
}
.in_about p {
  font-size: 0.16rem;
  color: #333;
}
@media screen and (max-width: 768px) {
  .in_about .img,
  .in_about .txt {
    width: 100%;
  }
  .in_about h6 {
    font-size: 0.24rem;
  }
}
.idea_partner_list {
  position: relative;
  overflow: hidden;
}
.idea_partner_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.idea_partner_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.idea_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.idea_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 58%;
}
.idea_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idea_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;
}
.idea_partner_text {
  padding: 0.25rem 4%;
  text-align: center;
}
.idea_partner_text h3 {
  font-size: 0.24rem;
  color: var(--i_color);
  text-transform: capitalize;
}
.idea_partner_text h4 {
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: var(--font_color);
  min-height: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.05rem;
}
.idea_hover {
  width: 100%;
  height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  overflow: hidden;
}
.idea_hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: -1;
  opacity: 0;
  transition: all 0.8s ease;
}
.idea_partner_list li:hover .idea_hover img {
  opacity: 1;
}
.idea_hover span::after,
.idea_hover span::before {
  content: "";
  width: 100%;
  height: 10.001%;
  position: absolute;
  background-color: rgba(27, 117, 228, 0.7);
  transition: all 0.5s ease;
}
.idea1::after {
  top: 0;
  left: -100%;
}
.idea1::before {
  top: 10%;
  left: -100%;
}
.idea2::after {
  top: 20%;
  left: -100%;
}
.idea2::before {
  top: 30%;
  left: -100%;
}
.idea3::after {
  top: 40%;
  left: -100%;
}
.idea3::before {
  top: 50%;
  left: -100%;
}
.idea4::after {
  top: 60%;
  left: -100%;
}
.idea4::before {
  top: 70%;
  left: -100%;
}
.idea5::after {
  top: 80%;
  left: -100%;
}
.idea5::before {
  top: 90%;
  left: -100%;
}
.idea_partner_list li:hover .idea1::after {
  left: 0%;
  transition-delay: 0;
}
.idea_partner_list li:hover .idea1::before {
  left: 0%;
  transition-delay: 0.1s;
}
.idea_partner_list li:hover .idea2::after {
  left: 0%;
  transition-delay: 0.2s;
}
.idea_partner_list li:hover .idea2::before {
  left: 0%;
  transition-delay: 0.3s;
}
.idea_partner_list li:hover .idea3::after {
  left: 0%;
  transition-delay: 0.4s;
}
.idea_partner_list li:hover .idea3::before {
  left: 0%;
  transition-delay: 0.5s;
}
.idea_partner_list li:hover .idea4::after {
  left: 0%;
  transition-delay: 0.6s;
}
.idea_partner_list li:hover .idea4::before {
  left: 0%;
  transition-delay: 0.7s;
}
.idea_partner_list li:hover .idea5::after {
  left: 0%;
  transition-delay: 0.8s;
}
.idea_partner_list li:hover .idea5::before {
  left: 0%;
  transition-delay: 0.9s;
}
.idea_hover_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  box-sizing: border-box;
  padding: 0 4%;
  opacity: 0;
  transition: all 0.8s ease;
}
.idea_partner_list li:hover .idea_hover_text {
  opacity: 1;
}
.idea_hover_text h5 {
  font-size: 0.26rem;
  font-weight: bold;
  color: white;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  text-transform: capitalize;
}
.idea_hover_text h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.2rem;
  height: 0.02rem;
  background-color: white;
}
.idea_hover_text h6 {
  font-size: 0.18rem;
  color: white;
  line-height: 0.3rem;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .team_idea {
    padding: 0.8rem 0;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .team_idea {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .team_idea {
    padding: 0.6rem 0 0 0;
  }
}
@media screen and (max-width: 560px) {
}

.in_ad {
  background: url(static/images/bc_in_ad.webp) no-repeat center;

  background-size: cover;
}

.in_ad_list .advantage {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.2rem 0;
}

.in_ad_list .img {
  width: 50%;

  position: relative;

  overflow: hidden;

  border-radius: 0.2rem;
}

.in_ad_list .img::before {
  content: "";

  display: block;

  padding-bottom: 64.72%;
}

.in_ad_list .img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);
}

.in_ad_list .txt {
  width: 44%;
}

.in_ad_list span {
  color: #666;

  font-size: 0.2rem;
}

.in_ad_list span i {
  font-size: 0.32rem;

  color: var(--i_color);
}

.in_ad_list h6 {
  font-size: 0.24rem;

  color: var(--i_color);

  position: relative;

  padding-bottom: 0.1rem;

  margin: 0.12rem 0 0.2rem;
}

.in_ad_list h6::after {
  content: "";

  width: 0.55rem;

  height: 3px;

  background: var(--i_color);

  position: absolute;

  left: 0;

  bottom: 0;
}

@media screen and (max-width: 1440px) {
  .in_ad_list h6 {
    font-size: 0.2rem;
    margin: 0.14rem 0 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .in_ad_list .img,
  .in_ad_list .txt {
    width: 100%;
  }
  .in_ad_list h6 {
    font-size: 0.18rem;
    margin: 0.1rem 0 0.12rem;
  }
}

.in_ad_list article {
  color: #666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}
.in_ad_list article * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}
.in_ad_list article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.in_ad_list article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.in_ad_list article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .in_ad_list article {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
  .in_ad_list article * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_ad_list article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .in_ad_list article * {
    font-size: 14px;
    line-height: 20px;
  }
}

.in_ad_menu {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;
}

.in_ad_menu li {
  width: 33%;

  padding: 0.2rem 0;

  border-top: 2px solid var(--border_color);

  position: relative;
}

.in_ad_menu li::after {
  content: "";

  width: 0;

  height: 2px;

  background: var(--i_color);

  position: absolute;

  right: 0;

  top: -2px;
}

.in_ad_menu span {
  font-size: 0.18rem;

  color: #999;

  font-weight: bold;
}

.in_ad_menu h5 {
  color: #666;

  font-size: 0.2rem;
}

.in_ad_menu h5,
.in_ad_menu span,
.in_ad_menu li::after {
  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.in_ad_menu li:hover::after {
  width: 100%;

  right: initial;

  left: 0;
}

.in_ad_menu li:hover h5,
.in_ad_menu li:hover span {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .in_ad_menu h5 {
    font-size: 0.18rem;
  }
}

@media screen and (max-width: 768px) {
  .in_ad_menu li {
    width: 49%;

    padding: 0.14rem 0;
  }

  .in_ad_menu h5,
  .in_ad_menu span {
    font-size: 0.16rem;
  }
}

.in_env {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, transparent, var(--bc_color));
}
.env_list {
  position: relative;
  overflow: hidden;
}
.env_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.env_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_env-prev,
.in_env-next {
  position: absolute;
  top: 20%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.4rem;
  height: 0.4rem;
  font-size: 0.3rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
}
.in_env-prev {
  left: 0;
}
.in_env-next {
  right: 0;
}
.env_list .swiper-button-disabled {
  cursor: not-allowed;
}
.in_env-prev:hover,
.in_env-next:hover {
  background: var(--font_color);
}
.in_env-pagination {
  text-align: center;
}
.in_env-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 8px;
  background: #999;
  outline: none;
  cursor: pointer;
  position: relative;
}
.in_env-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.env_list .img {
  position: relative;
  overflow: hidden;
}
.env_list .img::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.env_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.env_list p {
  font-size: 0.18rem;
  text-align: center;
  color: #333;
  margin: 0.2rem 0;
}
.env_list .img,
.env_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.env_list li:hover img {
  width: 105%;
  height: 105%;
}
.env_list li:hover p {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .in_env-prev {
    left: 0;
  }
  .in_env-next {
    right: 0;
  }
  .env_list .swiper-slide {
    padding: 0.2rem;
  }
  .env_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .in_env-next,
  .in_env-prev {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .in_env-pagination {
    margin-top: 0.22rem;
  }
  .env_list .swiper-slide {
    padding: 0.1rem;
  }
  .env_list p {
    margin: 0.1rem 0;
  }
}

.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;
  flex-direction: column;
  transition: all 0.3s ease;
}

.zs_partner_list .img {
  width: 100%;

  border: 1px solid #dcdcdc;
  position: relative;
  overflow: hidden;
}
.zs_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 134%;
}
.zs_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;

  padding: 0.08rem;
  object-fit: contain;
}

.zs_partner_list .img img {
  transition: all 0.3s ease;
}

.zs_partner_list p {
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #333;
  text-align: center;
  margin-top: 0.15rem;
  transition: all 0.3s ease;
}
.zs_partner_list li:hover img {
  padding: 0;
}
.zs_partner_list li:hover p {
  color: var(--i_color);
}

/* 指示器 */
.zs-pagination {
  text-align: center;
  margin: 0.4rem auto 0;
}
.zs-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  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-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */
.zs-button-prev,
.zs-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 999;
  cursor: pointer;
  outline: none;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.3rem;
  color: var(--i_color);
  border-radius: 50%;
  border: 2px solid var(--i_color);
}
.zs-button-prev {
  left: 0;
}

.zs-button-next {
  right: 0;
}

@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .zs-button-prev,
  .zs-button-next {
    display: none;
  }
  .zs-pagination {
    display: block;
  }
}

/* ---------------------------------news-------------------- */
.mao_box {
  width: 100%;
  position: relative;
  z-index: 20;
}
.in_nav .wrap {
  border-bottom: 1px solid #89939e;
}
.menu_list {
  display: flex;
  display: -webkit-flex;
  position: relative;
  justify-content: space-between;
  gap: 0.1rem 0.4rem;
}
@media screen and (max-width: 959px) {
  .in_nav .i_tit {
    display: none;
  }
  .menu_list {
    width: 100%;
  }
  .in_nav .wrap {
    display: block;
  }
}
.menu_list > li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.35rem;
}
.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.16rem;
  color: #fff;
  transition: all 0.5s ease;
  padding: 0.2rem 0;
  font-weight: bold;
}
.menu_list > li > a::after {
  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: 2px;
  background-color: var(--i_color2);
  bottom: -1px;
}
/* 锚点激活样式 */
.menu_list > li:hover a,
.menu_list .list.active a {
  color: var(--i_color2);
}
.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: 0.8rem;
  z-index: 2014;
  width: 100%;
  background-color: var(--i_color);
}
.mao_box .in_nav_tit {
  width: 100%;
  background-color: var(--i_color);
}
.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 a {
    font-size: 0.14rem;
  }
  .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: 0.6rem;
  }
  .in_nav {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
  }
  .menu_list li {
    width: 100%;
  }
  .menu_list > li a {
    padding: 0.14rem 0;
  }
  .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;
  }
}
.in_n_list a {
  display: block;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border_color);
}
.in_n_list .img {
  width: 25%;
  position: relative;
  overflow: hidden;
}
.in_n_list .txt {
  width: 72%;
}
.in_n_list .img::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.in_n_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_n_list .tit {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #ddd;
}
.in_n_list h6 {
  font-size: 0.24rem;
  color: #333;
  margin-bottom: 0.1rem;
}
.in_n_list p {
  font-size: 0.18rem;
  color: #666;
}
.in_n_list .date {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}
.in_n_list h6,
.in_n_list li {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_n_list li:hover {
  background: var(--bc_color);
}
.in_n_list li:hover h6 {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .in_n_list h6 {
    font-size: 0.2rem;
  }
  .in_n_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .in_n_list .img {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .in_n_list .txt {
    width: 100%;
  }
}
/* Number of pages */
.in_page_box {
  margin: 0.3rem 0;
  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;
  background: var(--bc_color);
  color: #666;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  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: var(--i_color) !important;
  background: var(--i_color);
  color: #fff !important;
}
@media screen and (max-width: 1024px) {
  .in_page_box {
    margin-top: 0.4rem;
  }
}
@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) {
  .in_page_box {
    margin-top: 0.3rem;
  }
}
/* contact */
.contact .wrap_l {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}
.c_info {
  width: 40%;
}
.map {
  width: 54%;
  position: relative;
  overflow: hidden;
}
.map::before {
  content: "";
  display: block;
  padding-bottom: 38.125%;
}
.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c_info h4 {
  font-size: 0.3rem;
  color: var(--i_color);
}
.c_list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border_color);
}
.c_list .ico {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--bc_color);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.2rem;
}
.c_list .ico iconify-icon {
  font-size: 0.4rem;
  color: var(--i_color);
}
.c_list .info {
  width: calc(100% - 0.85rem);
}
.c_list .info h6 {
  color: #666;
  font-size: 0.16rem;
  font-weight: normal;
}
.c_list .info a,
.c_list .info p {
  font-size: 0.18rem;
  font-weight: 400;
  color: #333;
}
.c_list a:hover {
  color: var(--i_color);
  text-decoration: underline;
}
.c_list li,
.c_list .ico {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c_list li:hover {
  border-color: var(--i_color);
}
.c_list li:hover .ico {
  background: var(--i_color);
}
.c_list li:hover .ico iconify-icon {
  color: #fff;
}
.c_info .f_media iconify-icon {
  color: #d1d1d1;
}
.c_info .f_media a:hover iconify-icon {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .c_info h4 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 1024px) {
  .c_info h4 {
    font-size: 0.18rem;
  }
  .c_info,
  .map {
    width: 100%;
  }
  .c_list .info a,
  .c_list .info p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .map::before {
    padding-bottom: 78.125%;
  }
}
.c_form {
  position: relative;
  overflow: hidden;
}
.c_form::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(static/images/bc_value.webp) no-repeat center;
  background-size: cover;
  opacity: 0.2;
}
.c_form .wrap {
  position: relative;
  z-index: 2;
}

/* -----------------------solution--------------------- */
.dot {
  position: relative;
  height: 60px;
  width: 100%;
}
.dot:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    /* 小黑点 */
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px); /* 小黑点 */
  background-size: 20px 20px; /* 设置点的间距 */
  background-position:
    0 0,
    10px 10px; /* 设置点的交错位置 */
  z-index: 2;
}
.s_about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.s_about .tit {
  width: 30%;
}
.s_about .txt {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .s_about .tit,
  .s_about .txt {
    width: 100%;
  }
}
.s_about .txt .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.s_about .txt .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.s_about .txt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_v_btn {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 0.66rem;
  height: 0.66rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: var(--i_color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_v_btn iconify-icon {
  font-size: 38px;
  color: #fff;
}
.i_v_btn::before,
.i_v_btn::after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  background: var(--i_color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: dot 2s infinite;
}
.i_v_btn::after {
  animation-delay: 0.3s;
}
@keyframes dot {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
@media screen and (max-width: 1024px) {
  .i_v_btn {
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.2rem;
  }
  .i_v_btn iconify-icon {
    font-size: 26px;
  }
}
/* eject videos */
.vd_box {
  display: none;
  position: fixed;
  top: 50%;
  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;
  }
}
@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;
  }
}
.img_cont {
  position: relative;
}
/* .img_cont::after {
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.3) 1px,
      transparent 1px
    ),
      radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px); 
  background-size: 20px 20px; 
  background-position: 0 0, 10px 10px; 
  z-index: 2;
} */
.img_cont .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.img_cont .img {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.img_cont .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.img_cont .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img_cont .txt {
  width: 50%;
}

.img_cont .text {
  padding: 0.2rem 0;
  border-bottom: 1px solid #ddd;
  margin: 0.2rem 0;
}
.img_cont .text h6 {
  font-size: 0.2rem;
}
.img_cont .text span {
  font-size: 0.16rem;
  display: block;
  position: relative;
  padding-left: 0.2rem;
}
.img_cont .text span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .img_cont .img,
  .img_cont .txt {
    width: 100%;
  }
}
.rz_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.rz_list li {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .rz_list li {
    width: 30%;
  }
}
.rz_list .img {
  width: 100%;
  margin: 0.1rem auto;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.rz_list .img span {
  display: block;
  font-size: 0.3rem;
  color: var(--i_color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rz_list .img::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.rz_list .img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rz_list p {
  font-size: 14px;
  text-align: center;
}
.com_cont {
  background: #fff;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.com_cont.reverse {
  flex-direction: row-reverse;
}
.com_cont .img {
  width: 35%;
  position: relative;
  overflow: hidden;
}
.com_cont .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.com_cont .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.com_cont .txt {
  width: 65%;
  color: var(--font_color);
  padding: 0.3rem;
}
.com_cont h6 {
  font-weight: normal;
  font-size: 0.24rem;
  margin-bottom: 0.1rem;
}
.com_cont p {
  font-size: 0.16rem;
}
.com_cont dd {
  font-size: 0.14rem;
  padding-left: 0.2rem;
  position: relative;
}
.com_cont dd::after {
  content: "";
  width: 6px;
  height: 6px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  background: var(--i_color);
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .com_cont .txt,
  .com_cont .img {
    width: 100%;
  }
}
.ss_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ss_list li {
  width: 48%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
  overflow: hidden;
  padding: 0.3rem 0.2rem;
  border-bottom: 1px solid #ddd;
}
.ss_list .ico {
}
.ss_list img {
  max-width: 0.4rem;
  object-fit: contain;
}
.ss_list .txt {
  width: calc(100% - 0.84rem);
}
.ss_list h3 {
  padding: 6px 0.7rem 6px 0;
  font-size: 0.24rem;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  line-height: 150%;
}
.ss_list h3 i {
  display: block;
  width: 20px;
  height: 20px;
  background: url(static/images/arrow_down_hollow_bai.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ss_list .curr i {
  transform: translateY(-50%) rotate(180deg);
}
.ss_list p {
  display: none;
  margin: 0.1rem 0;
  font-size: 0.16rem;
  line-height: 160%;
}
@media screen and (max-width: 1024px) {
  .ss_list {
    width: 100%;
  }
  .ss_list h3 {
    font-size: 0.2rem;
  }
  .ss_list li {
    padding: 0.2rem 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .ss_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .ss_list h3 {
    font-size: 0.18rem;
  }
  .ss_list p {
    font-size: 14px;
  }
}
.in_form .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}
.in_form .img {
  width: 100%;
}
.in_form .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.in_form .title {
  width: 45%;
}
.in_form .form {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .in_form .title,
  .in_form .form {
    width: 100%;
  }
}
#wpforms-68 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}
#wpforms-68 {
  margin: 0;
  padding: 0;
}
#wpforms-form-68 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-68 .wpforms-field {
  padding: 0;
  margin-bottom: 20px;
  position: relative;
}
#wpforms-68 .wpforms-field-label {
  font-size: 0;
  position: absolute;
  top: 12px;
  left: 3px;
}
#wpforms-68 .wpforms-field-label span {
  font-size: 0.14rem;
  color: red;
}
#wpforms-68 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-68 .wpforms-field-container > div {
  width: 49%;
}
#wpforms-68 .wpforms-field-container > div:nth-child(5) {
  width: 100%;
}
@media screen and (max-width: 560px) {
  #wpforms-68 .wpforms-field-container > div {
    width: 100%;
  }
}
#wpforms-68 .wpforms-field-container input,
#wpforms-68 textarea,
#wpforms-68 select {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  padding: 0 0.1rem 0 0.16rem;
  border: none;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ebf0f4;
}
#wpforms-68 input {
  line-height: var(--input_height);
}
#wpforms-68 textarea {
  line-height: 0.22rem;
  min-height: 1.4rem;
  padding: 0.06rem 0.16rem;
}
#wpforms-68-field_1-container {
  border-top-left-radius: 20px;
}
#wpforms-68 input::-webkit-input-placeholder,
#wpforms-68 textarea::-webkit-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-68 input::-moz-placeholder,
#wpforms-68 textarea::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-68 input::-ms-input-placeholder,
#wpforms-68 textarea::-ms-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-68-field_1-error,
#wpforms-68-field_2-error,
#wpforms-68-field_3-error,
#wpforms-68-field_4-error,
#wpforms-68-field_5-error,
#wpforms-68-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-68 .wpforms-submit-container {
  width: 100%;
  margin: 0 auto;
}
#wpforms-68 .wpforms-submit-container button {
  width: 100%;
  padding: 10px 0;
  margin: 20px auto 0;
  font-size: 0.18rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  background: var(--i_color);
  z-index: 2;
  border: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-68 .wpforms-submit-container:hover button {
  background: var(--i_color2) !important;
}
#wpforms-68 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #wpforms-68 .wpforms-submit-container button {
    padding: 6px 40px;
  }
}

/* ---------------------详情页---------------- */
.pd_gallery_list {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.1rem;
}
.pd_gallery_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.pd_gallery_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pd_gallery_list .img {
  width: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.pd_gallery_list .img::before {
  content: "";
  display: block;
  padding-bottom: 80%;
}
.pd_gallery_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd_gallery_list .img,
.pd_gallery_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pd_gallery_list li:hover img {
  width: 105%;
  height: 105%;
}
.pd_gallery-prev,
.pd_gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.46rem;
  height: 0.46rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
  display: none;
}
.pd_gallery-prev {
  left: 0;
}
.pd_gallery-next {
  right: 0;
}
.pd_gallery_list .swiper-button-disabled {
  cursor: not-allowed;
}
.pd_gallery-prev:hover,
.pd_gallery-next:hover {
  opacity: 1;
}
.pd_gallery-pagination {
  text-align: center;
}
.pd_gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}

.pd_gallery-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .pd_gallery-prev,
  .pd_gallery-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .pd_gallery-pagination {
    margin-top: 0.22rem;
  }
}
.pd_det_cont .in_position {
  background: none;
}
.pd_det_cont {
  background: url(static/images/bc_pd_cont.webp) no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.pd_det_cont > img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 26%;
  object-fit: contain;
}
.pd_det_cont .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.pd_gallery_list {
  width: 44%;
}
.pd_det {
  width: 49%;
  position: relative;
  z-index: 10;
}
.pd_det > h1 {
  font-size: 0.28rem;
  font-weight: 400;
  color: var(--i_color);
}
.pd_det > h6 {
  display: table;
  font-size: 0.2rem;
  color: #333;
  padding: 0.16rem 0;
  border-bottom: 1px solid var(--i_color);
}
.p_brief {
  font-size: 0.18rem;
  padding: 0.16rem 0;
  border-top: 1px solid var(--border_color);
  border-bottom: 1px solid var(--border_color);
}
.p_brief p {
  margin: 8px 0;
}
.pd_det .min {
  font-size: 0.16rem;
  color: #333;
  margin: 0.16rem 0;
}
.pd_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
}
.pd_share p {
  font-size: 0.16rem;
  color: #333;
  font-weight: 400;
}
.pd_share a {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  color: #c2c6c9;
}
.pd_share iconify-icon {
  font-size: 0.24rem;
}
.pd_share a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 959px) {
  .pd_gallery_list {
    width: 100%;
  }
  .pd_det {
    width: 100%;
    margin-top: 0.3rem;
  }
  .p_brief {
    font-size: 0.16rem;
  }
}
.pd_menu {
  display: flex;
  display: -webkit-flex;
  gap: 0 0.4rem;
  margin-top: 0.2rem;
  border-bottom: 1px solid var(--border_color);
}
.pd_menu li {
  text-align: center;
  padding: 0.2rem;
  font-size: 0.24rem;
  color: #666;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}
.pd_menu li::after {
  content: "";
  width: 0;
  right: 0;
  height: 2px;
  background: var(--i_color);
  position: absolute;
  bottom: -1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pd_menu li.current,
.pd_menu li:hover {
  color: var(--i_color);
}
.pd_menu li:hover::after,
.pd_menu li.current::after {
  width: 100%;
  right: initial;
  left: 0;
}
@media screen and (max-width: 1440px) {
  .pd_menu li {
    padding: 0.12rem;
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .pd_menu li {
    padding: 0.1rem;
    font-size: 0.18rem;
  }
}
.pd_content {
  padding: 0.2rem 0;
}
.pd_content article {
  color: #333;
  font-size: 0.18rem;
  line-height: 150%;
}
.pd_content article h2,
.pd_content article h2 * {
  font-size: 0.24rem;
  font-weight: 400;
  margin: 0.2rem 0 0.1rem;
}
.pd_content article img,
.pd_content article iframe {
  max-width: 100%;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .pd_content article h2,
  .pd_content article h2 * {
    font-size: 0.2rem;
  }
}

.faq_list li {
  padding: 0.3rem;
  list-style: none;
}
.faq_list .txt {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
.faq_list .faq_txt {
  display: none;
  margin-top: 0.2rem;
}
.faq_list span {
  display: block;
  width: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 0.2rem;
  color: #fff;
  font-weight: 400;
}
.faq_list li > div:first-child span {
  background: #666;
}
.faq_list li > div:last-child span {
  background: var(--i_color);
}
.faq_list h6,
.faq_list p {
  width: calc(100% - 52px);
  font-weight: 300;
  color: #333;
}
.faq_list h6 {
  font-size: 0.2rem;
}
.faq_list p {
  font-size: 0.18rem;
}
.faq_list li.curr h6 {
  font-weight: 400;
}
.faq_list li.curr {
  border-top: 1px solid var(--i_color);
  background: var(--bc_color);
}
@media screen and (max-width: 1440px) {
  .faq_list li {
    padding: 0.2rem;
  }
  .faq_list h6 {
    font-size: 0.18rem;
  }
  .faq_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .faq_list li {
    padding: 0.2rem 0.1rem;
  }
}

.tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.2rem;
}
.tag h6 {
  font-size: 0.18rem;
  color: #333;
  font-weight: 400;
}
.tag a {
  font-size: 16px;
  color: #666;
  padding: 6px 0.1rem;
  border-radius: 4px;
}
.tag a:hover {
  background: var(--i_color);
  color: #fff;
}
.pd_navigation {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border_color);
}
.pd_navigation a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.pd_navigation h6 {
  font-size: 14px;
  color: #222;
  font-weight: 400;
  margin: 0 10px;
}
.pd_navigation p {
  font-size: 14px;
  color: #333;
}
.pd_n_btn {
  width: 0.36rem;
  height: 0.36rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.r_product {
  background: url(static/images/bc_factory.webp) no-repeat center;
  background-size: cover;
}
.rp {
  overflow: hidden;
  position: relative;
}
.rp .swiper-container {
  margin: 0 auto;
  z-index: 1;
}
.rp .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.rp .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.rp-button-prev,
.rp-button-next {
  border: 1px solid #666;
  font-size: 20px;
  color: #666;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rp-button-prev:hover,
.rp-button-next:hover {
  background: var(--linear-gradien);
  color: #fff;
  border-color: transparent;
}
.rp-button-prev {
  left: -8%;
}
.rp-button-next {
  right: -8%;
}
.rp-pagination {
  text-align: center;
}
.rp-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}
.rp-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 100%;
  background: none;
  border: 2px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.rp-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.rp-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}
/* -------------------------------------- 侧边客服 -------------------------------------- */
.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/images/aside_ico_whatsapp.svg) no-repeat center;
  background-size: contain;
}
.aside_right li:nth-child(2) em {
  background: url(static/images/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/images/email.svg) no-repeat center;
  background-size: contain;
}
.aside_right li:nth-child(4) em {
  background: url(static/images/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(1) > a {
  background-color: var(--i_color2);
}
.aside_right li:nth-child(2) > a {
  background-color: var(--i_color);
}
.aside_right li:nth-child(3) > a {
  background-color: #666;
}
.aside_right li:nth-child(4) > a {
  background-color: #333;
}
.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-121 {
  --input_font_size: 16px;
  --input_height: 42px;
}
#wpforms-121 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-121 {
  width: 100%;
  overflow: hidden;
}
#wpforms-121 input,
#wpforms-121 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-121 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-121 .wpforms-error-container {
  line-height: 16px;
}
#wpforms-121 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-121 .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-121 .wpforms-field {
  position: relative;
}
#wpforms-121 .wpforms-field-label {
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0 !important;
}
#wpforms-121 .wpforms-field-label span {
  position: absolute;
  top: 15px;
  left: 3px;
  font-size: 14px;
  color: red;
}
#wpforms-121 .wpforms-error {
  margin-top: 0.01rem;
  font-size: 12px !important;
}
#wpforms-121 .wpforms-field {
  width: 100%;
  padding-bottom: 20px;
  background: transparent;
  overflow: hidden;
}
#wpforms-121 .wpforms-field:nth-child(1) {
  margin-right: 20px;
}
#wpforms-121 .wpforms-field:nth-child(1),
#wpforms-121 .wpforms-field:nth-child(2) {
  width: calc(50% - 10px);
}
#wpforms-121 input {
  height: var(--input_height);
}
#wpforms-121 textarea {
  min-height: 100px;
}
#wpforms-121 input,
#wpforms-121 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-121 input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-121 #wpforms-121-field_1-error,
#wpforms-121 #wpforms-121-field_2-error,
#wpforms-121 #wpforms-121-field_3-error,
#wpforms-121 #wpforms-121-field_4-error {
  position: absolute;
  font-size: 14px;
}
#wpforms-121 .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: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
#wpforms-121 .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/images/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-121 .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 h6 {
    font-size: 24px;
  }
}
.por_txt {
  width: 50%;
  margin: 0.2rem auto;
}
@media screen and (max-width: 1440px) {
  .por_txt {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .por_txt {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .por_txt {
    width: 95%;
  }
}
.b_por {
  font-size: 0.18rem;
  color: #666;
}
.s_por {
  font-size: 0.16rem;
  color: #666;
}
@media screen and (max-width: 1024px) {
  .b_por {
    font-size: 0.16rem;
  }
  .s_por {
    font-size: 0.14rem;
  }
}

.por_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.por_list li {
  width: calc((100% - 0.9rem) / 4);
  background: #fff;
}
.por_list a {
  display: block;
  width: 100%;
  text-align: center;
  height: 100%;
  padding: 0.2rem;
}
.por_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.por_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.por_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.por_list h6 {
  font-size: 0.16rem;
  margin: 0.1rem 0;
  color: var(--i_color);
}

.por_list .img img,
.por_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.por_list li:hover img {
  width: 105%;
  height: 105%;
}
.por_list li:hover h6 {
  color: var(--i_color);
}
@media screen and (max-width: 1366px) {
  .por_list li {
    width: calc((100% - 0.6rem) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .por_list li {
    width: calc((100% - 0.3rem) / 2);
  }
  .por_list h6 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .por_list li {
    width: 100%;
  }
  .por_list h6 {
    font-size: 0.16rem;
  }
}

.portf_list {
  position: relative;
  overflow: hidden;
}
.portf_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.portf_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.portf-prev,
.portf-next {
  position: absolute;
  top: 20%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.4rem;
  height: 0.4rem;
  font-size: 0.3rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
}
.portf-prev {
  left: 0;
}
.portf-next {
  right: 0;
}
.portf_list .swiper-button-disabled {
  cursor: not-allowed;
}
.portf-prev:hover,
.portf-next:hover {
  background: var(--font_color);
}
.portf-pagination {
  display: none;
  text-align: center;
}
.portf-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 8px;
  background: #999;
  outline: none;
  cursor: pointer;
  position: relative;
}
.portf-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.portf_list .img {
  position: relative;
  overflow: hidden;
}
.portf_list .img::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.portf_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.portf_list p {
  font-size: 0.18rem;
  text-align: center;
  color: #333;
  margin: 0.2rem 0;
}
.portf_list .img,
.portf_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.portf_list li:hover img {
  width: 105%;
  height: 105%;
}
.portf_list li:hover p {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .portf-prev {
    left: 0;
  }
  .portf-next {
    right: 0;
  }
  .portf_list .swiper-slide {
    padding: 0.2rem;
  }
  .portf_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .portf-next,
  .portf-prev {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .portf-pagination {
    margin-top: 0.22rem;
  }
  .portf_list .swiper-slide {
    padding: 0.1rem;
  }
  .portf_list p {
    margin: 0.1rem 0;
  }
}

.pro_content {
  font-size: 0.16rem;
}

.team-section {
  padding: 0.8rem 0;
  background-color: #fff;
}
.team-banner {
  padding: 1rem 0;
  background: #0a2540; /* 工业深蓝 */
  color: #ffffff;
  overflow: hidden;
}

.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

/* 左侧文案 */
.banner-content {
  flex: 2;
}

.banner-tag {
  display: block;
  font-size: 0.14rem;
  color: #f39c12; /* 橙色强调 */
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.banner-title {
  font-size: 0.32rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.banner-desc {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 6.5rem;
}

/* 右侧按钮 */
.banner-action {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.4rem;
  background-color: #f39c12;
  color: #fff;
  font-size: 0.16rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 0.02rem solid #f39c12;
}

.btn-contact:hover {
  background-color: transparent;
  color: #f39c12;
}

.btn-arrow {
  margin-left: 0.1rem;
  transition: transform 0.3s ease;
}

.btn-contact:hover .btn-arrow {
  transform: translateX(0.05rem);
}

/* 响应式适配 */
@media (max-width: 992px) {
  .banner-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .banner-action {
    justify-content: flex-start;
  }

  .banner-title {
    font-size: 0.28rem;
  }
}

.product-section {
  padding: 0.8rem 0;
  background-color: #ffffff;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.product-item {
  flex: 0 0 calc((100% - 0.6rem) / 3);
  box-sizing: border-box;
  border: 0.01rem solid #eee;
  transition: all 0.3s ease;
  background: #fff;
}

.product-item:hover {
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  transform: translateY(-0.05rem);
}

.product-img {
  width: 100%;
  height: 2.2rem;
  overflow: hidden;
  background-color: #f0f0f0;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-img img {
  transform: scale(1.1);
}

.product-info {
  padding: 0.25rem;
}

.product-info h3 {
  font-size: 0.2rem;
  color: #0a2540;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.product-info p {
  font-size: 0.14rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .product-item {
    flex: 0 0 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-item {
    flex: 0 0 calc((100% - 0.3rem) / 2);
  }
}

.cap-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.i_cat {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.i_cat.rev {
  flex-direction: row-reverse;
}

.i_cat .img {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.i_cat .img::before {
  content: "";
  display: block;
  padding-bottom: 72.93%;
}

.i_cat .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease;
}

.i_cat:hover .img img {
  transform: translate(-50%, -50%) scale(1.05);
}

.i_cat .txt {
  width: 45%;
}

.i_cat .txt h3 {
  font-size: 0.26rem;
  color: #0a2540;
  margin-bottom: 0.2rem;
}

.i_cat .txt p {
  font-size: 0.16rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.cat-btn {
  display: inline-block;
  padding: 0.15rem 0.35rem;
  background: #0a2540;
  color: #fff;
  text-decoration: none;
  font-size: 0.15rem;
  font-weight: 600;
  transition: background 0.3s;
}

.cat-btn:hover {
  background: #f39c12;
}

@media (max-width: 768px) {
  .i_cat,
  .i_cat.rev {
    flex-direction: column;
  }
  .i_cat .img,
  .i_cat .txt {
    width: 100%;
  }
  .cap-container {
    gap: 0.5rem;
  }
}

/* solution */
.sol_list {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.4rem 0.2rem;
  margin-bottom: 0.6rem;
}

.sol_item {
  flex: 0 0 calc((100% - 0.6rem) / 4);
  box-sizing: border-box;
}

.sol_item .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.sol_item .img::before {
  content: "";
  display: block;
  padding-bottom: 72.93%;
}

.sol_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}

.sol_item:hover .img img {
  transform: translate(-50%, -50%) scale(1.1);
}

.sol_item .txt {
  padding: 0.2rem 0;
}

.sol_item .txt h3 {
  font-size: 0.2rem;
  color: #0a2540;
  margin-bottom: 0.1rem;
}

.sol_item .txt p {
  font-size: 0.14rem;
  color: #666;
  line-height: 1.6;
}

.sol-action {
  text-align: center;
  margin-top: 0.2rem;
}

@media (max-width: 1024px) {
  .sol_item {
    flex: 0 0 calc((100% - 0.2rem) / 2);
  }
}

@media (max-width: 640px) {
  .sol_item {
    flex: 0 0 100%;
  }
  .sol_list {
    gap: 0.3rem 0;
  }
}

.solution-detail {
  padding: 0.8rem 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0;
}

.detail-list li {
  font-size: 0.16rem;
  color: #333;
  padding-left: 0.25rem;
  position: relative;
  margin-bottom: 0.1rem;
}

.detail-list li::before {
  content: "l";
  position: absolute;
  left: 0;
  color: #333;
}

.features-wrap {
  margin-top: 0.8rem;
  padding: 0.4rem;
  background: #f9f9f9;
}

.f_list {
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.f_item {
  flex: 1;
  min-width: 2rem;
  padding: 0.2rem;
  background: #fff;
  border-top: 0.03rem solid #f39c12;
}

.f_item h4 {
  font-size: 0.16rem;
  color: #0a2540;
  line-height: 1.4;
}

.detail-action {
  text-align: center;
  margin-top: 0.6rem;
}

.s_cont {
  font-size: 0.18rem;
}
.s_cont h2 {
  font-size: 0.24rem;
  margin: 10px 0 20px;
}
.features-wrap {
  margin-top: 0.8rem;
  padding: 0.4rem;
  background: #f9f9f9;
}

.f_list {
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.f_item {
  flex: 1;
  min-width: 2rem;
  padding: 0.2rem;
  background: #fff;
  border-top: 0.03rem solid #f39c12;
}

.f_item h4 {
  font-size: 0.16rem;
  color: #0a2540;
  line-height: 1.4;
}

.detail-action {
  text-align: center;
  margin-top: 0.6rem;
}

/* certification */

.qms_intro_section {
  padding: 0.8rem 0;
  background: #ffffff;
}

/* 标题上方的标签 */
.q_label {
  display: block;
  font-size: 0.14rem;
  color: #f39c12;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.qms_content h3 {
  font-size: 0.28rem;
  color: #0a2540;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.q_desc {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

/* 列表项布局 */
.q_features_list {
  margin: 0.3rem 0;
}

.q_feature_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.15rem;
}

.q_feature_item span {
  font-size: 0.15rem;
  color: #555;
  line-height: 1.4;
}

/* 底部强调 */
.qms_footer_note {
  font-size: 0.16rem;
  color: #0a2540;
  font-weight: 700;
  padding-top: 0.2rem;
  border-top: 0.01rem solid #eee;
}

/* 移动端自适应由 i_cat 基础样式处理，此处做细节微调 */
@media (max-width: 768px) {
  .qms_content {
    padding-top: 0.3rem;
  }
  .qms_content h3 {
    font-size: 0.24rem;
  }
}
.qa_clean {
  padding: 0.6rem 0;
  background: #fff;
}

.qa_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.qa_item {
  flex: 0 0 calc(50% - 0.3rem);
}

.qa_item .img {
  width: 100%;
  margin-bottom: 0.25rem;
}

.qa_item .img img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%); /* 保持极致冷淡风，可选 */
}

.qa_item h3 {
  font-size: 0.22rem;
  color: #000;
  margin-bottom: 0.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.qa_item p {
  font-size: 0.15rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.1rem;
}

.list_title {
  font-weight: 700;
  margin-top: 0.2rem;
  font-size: 0.14rem;
  font-weight: bold;
}

.clean_list {
  list-style: none;
  padding: 0;
  margin: 0.15rem 0;
}

.clean_list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.14rem;
  color: #333;
  margin-bottom: 0.08rem;
}

.foot_text {
  margin-top: 0.2rem;
  padding-top: 0.15rem;
  border-top: 1px solid #ddd;
  font-weight: 700;
}

@media (max-width: 768px) {
  .qa_item {
    flex: 0 0 100%;
  }
}

.why_choose_clean {
  padding: 0.8rem 0;
  background: var(--bc_color);
}

.why_grid_clean {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.why_item_clean {
  flex: 1;
  min-width: 1.8rem;
  text-align: center;
  padding: 0.2rem 0.1rem;
}

/* 模拟图片中的圆形图标区域，但保持无色彩 */
.icon_box {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto 0.2rem;
  border: 1px solid #000; /* 纯黑线条边框 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_box iconify-icon {
  font-size: 0.35rem;
  color: #000;
}

.why_item_clean h3 {
  font-size: 0.16rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  min-height: 0.4rem; /* 保持标题对齐 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.why_item_clean p {
  font-size: 0.13rem;
  color: #666;
  line-height: 1.4;
  padding: 0 0.1rem;
}

/* 移动端适配 */
@media (max-width: 1024px) {
  .why_item_clean {
    flex: 0 0 calc(33.33% - 0.2rem);
  }
}

@media (max-width: 640px) {
  .why_item_clean {
    flex: 0 0 calc(50% - 0.15rem);
  }
}
.qa_contact_clean {
  padding: 1rem 0;
  background: #fff;
  text-align: center;
  border-top: 1px solid #ddd;
}

.contact_box_clean h3 {
  font-size: 0.28rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact_box_clean p {
  font-size: 0.16rem;
  color: #333;
  max-width: 6rem;
  margin: 0 auto 0.4rem;
  line-height: 1.6;
}

.contact_action {
  display: flex;
  justify-content: center;
}

.btn-arrow {
  margin-left: 0.15rem;
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  .qa_contact_clean {
    padding: 0.6rem 0.2rem;
  }
  .contact_box_clean h3 {
    font-size: 0.24rem;
  }
}

.compliance_pure {
  padding: 0.8rem 0;
  background: #fff;
}

.compliance_grid {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

/* 内容区样式 */
.comp_text {
  flex: 1;
}

.comp_text h3 {
  font-size: 0.24rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.clean_list {
  list-style: none;
  padding: 0;
  margin-bottom: 0.4rem;
}

.clean_list li {
  display: flex;
  align-items: center;
  font-size: 0.16rem;
  color: #000;
}

.clean_list iconify-icon {
  font-size: 0.18rem;
  margin-right: 0.1rem;
  transform: rotate(180deg);
}

.cert_icons {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.cert_icons img {
  height: 0.4rem;
  width: auto;
}

.comp_images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
}

.img_placeholder {
  width: 100%;
  background: #f0f0f0;
  aspect-ratio: 3 / 4;
}

.img_placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .compliance_grid {
    flex-direction: column;
  }
  .comp_images {
    grid-template-columns: 1fr 1fr;
  }
}

.material_minimal {
  padding: 1rem 0;
  background: #fff;
}

.material_content h3 {
  font-size: 0.24rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.material_list {
  margin-bottom: 0.4rem;
}

.m_item {
  margin-bottom: 0.25rem;
}

.m_item strong {
  display: block;
  font-size: 0.16rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0.05rem;
}

.m_item p {
  font-size: 0.15rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.corrosion_statement {
  font-size: 0.14rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* 移动端自适应 */
@media (max-width: 768px) {
  .i_cat {
    flex-direction: column;
  }
  .i_cat .img,
  .i_cat .txt {
    width: 100%;
  }
  .i_cat .txt {
    margin-top: 0.4rem;
  }
}

.fab_quality_pure {
  padding: 0.8rem 0;
  background: #fff;
}

/* 文字平铺排版 */
.fab_text_flat {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.fab_info {
  flex: 1;
}

.fab_info strong {
  display: block;
  font-size: 0.16rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.fab_info p {
  font-size: 0.14rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* 图片并列排版 */
.fab_image_row {
  display: flex;
  gap: 0.2rem;
}

.img_item {
  flex: 1;
}

.img_item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .fab_text_flat {
    flex-direction: column;
    gap: 0.3rem;
  }
  .fab_image_row {
    flex-direction: column;
  }
}

.doc_minimal_cards {
  padding: 0.8rem 0;
  background: url(static/images/bc.webp) no-repeat center;
  background-size: cover;
}

/* 标题居中，保持纯净 */
.doc_minimal_cards .i_tit {
  text-align: center;
  margin-bottom: 0.6rem;
}

.doc_minimal_cards .i_tit h2 {
  font-size: 0.28rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

/* 参考图片2的并列布局 */
.doc_card_grid {
  display: flex;
  justify-content: space-between;
  gap: 0.3rem;
}

.doc_pure_card {
  flex: 1;
  background: #fff;
  /* 模拟图片中的轻微卡片感，但不使用阴影，仅靠对齐 */
  display: flex;
  flex-direction: column;
}

.doc_card_inner {
  padding: 0.4rem;
  text-align: center; /* 模仿参考图1和图2的居中对齐 */
}

.doc_card_inner h3 {
  font-size: 0.2rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.doc_card_inner p {
  font-size: 0.15rem;
  color: #444;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 4.5rem;
}

/* 移动端自适应 */
@media (max-width: 768px) {
  .doc_card_grid {
    flex-direction: column;
    gap: 0.4rem;
  }
  .doc_card_inner {
    padding: 0.3rem 0.2rem;
  }
}

.capacity_minimal {
  padding: 0.8rem 0;
  background: var(--bc_color);
}

/* 标题样式 */
.capacity_minimal .i_tit {
  text-align: center;
  margin-bottom: 0.6rem;
}

.capacity_minimal .i_tit h2 {
  font-size: 0.28rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

/* 平铺网格布局 */
.cap_row {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.cap_item {
  flex: 1;
  text-align: left; /* 保持严谨的左对齐 */
}

.cap_item strong {
  display: block;
  font-size: 0.14rem;
  color: #666; /* 标签颜色略浅 */
  text-transform: uppercase;
  margin-bottom: 0.1rem;
  font-weight: 700;
}

.cap_item p {
  font-size: 0.18rem; /* 突出核心数值或产品名 */
  color: #000;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .cap_row {
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
  }
  .cap_item p {
    font-size: 0.16rem;
  }
}

.credibility_stack_pure {
  padding: 0.8rem 0;
}

.credibility_stack_pure .i_tit {
  text-align: center;
  margin-bottom: 0.4rem;
}

.credibility_stack_pure .i_tit h2 {
  font-size: 0.28rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

.cred_img_full {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cred_img_full::before {
  content: "";
  display: block;
  padding-bottom: 30%;
}
.cred_img_full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cred_content_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.6rem;
  margin: 0.3rem auto;
}

.cred_item {
  text-align: left;
}

.cred_item strong {
  display: block;
  font-size: 0.14rem;
  color: #777;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.08rem;
}

.cred_item p {
  font-size: 0.16rem;
  color: #000;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cred_content_grid {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0 0.2rem;
  }
}
