/*
Theme Name: Vbolt
Version: 1.0
Description: 三鸟科技提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：三鸟科技
*/
@charset "utf-8";
@font-face {
  font-family: "Montserrat";
  src: url("./static/font/Montserrat-Light.ttf") format("ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Montserrat";
  src: url("./static/font/Montserrat-Regular.ttf") format("ttf");
  font-weight: 400;
}
* {
  box-sizing: border-box;
  line-height: 150%;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 18px;
}
:root {
  --i_color: #102c4a;
  --i_color2: #0a8eda;
  --i_shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  --bc_color: #f7f7f7;
  --header_height: 0.68rem;
  --border_color: rgb(51, 51, 51, 0.2);
  --f_menu_height: 50px;
  --linear-gradien: linear-gradient(
    to bottom,
    transparent,
    rgba(1, 81, 151, 0.1)
  );
}
@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: 73%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.wrap_l {
  margin-left: 13.5%;
}
.wrap_r {
  margin-right: 13.5%;
}
@media screen and (max-width: 1600px) {
  .wrap {
    width: 83.33%;
    max-width: 1600px;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    width: 92%;
  }
}
@media screen and (max-width: 1600px) {
  .wrap_l {
    margin-left: 8.335%;
  }
  .wrap_r {
    margin-right: 8.335%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap_l,
  .wrap_r {
    margin-left: 4%;
    margin-right: 4%;
  }
}
.top_wrap {
  width: 88.54%;
  margin: 0 auto;
  max-width: 1700px;
}
@media screen and (max-width: 1440px) {
  .top_wrap {
    width: 92%;
  }
}
@media screen and (max-width: 1024px) {
  .top_wrap {
    width: 96%;
  }
}
.language {
  position: relative;
  height: var(--header_height);
  display: flex;
  align-items: center;
}
.language p {
  font-size: 18px;
  color: #333;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .language p {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.language p.on {
  color: var(--i_color);
}
.language p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.3rem;
  height: 0.3rem;
  background: url(static/images/language.svg) no-repeat center;
  background-size: contain;
}
.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: 50%;
  transform: translateY(-50%);
  right: -10px;
  -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: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2014;
  background: #fff;
  border-radius: 6px;
}

@media screen and (max-width: 1024px) {
  header {
    background: #fff;
  }
}

.top_cont {
  position: relative;
}
.top {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .full_header {
    height: var(--header_height);
  }
}

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 0.6rem;
}
@media screen and (max-width: 1440px) {
  .logo img {
    max-height: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .logo img {
    max-height: 0.44rem;
  }
}
/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    z-index: 2015;
    gap: 0 0.5rem;
  }
  .i_nav > li {
    position: relative;
  }
  .i_nav > li > a {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    display: block;
    font-size: 16px;
    color: #333;

    line-height: var(--header_height);
  }

  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav .curr > a {
    color: var(--i_color) !important;
  }
  .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 .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;
    text-transform: capitalize;
  }
  .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: 0%;
    background-color: var(--bc_color);
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
  }
  .i_nav .sub-menu li:hover ul {
    opacity: 1;
    left: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.32rem;
  }
  .i_nav > li > a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav > li > a {
    font-size: 14px;
  }
  .i_nav {
    gap: 0 0.2rem;
  }
}
@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 {
    display: block;
    padding: 0 0.2rem;
    font-size: 14px;
    color: #222;
    line-height: 0.4rem;
  }
  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    display: block;
    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_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,
.i_nav > li,
.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;
}
.bottom_radio {
  border-radius: 0 0 40px 40px;
}
@media screen and (max-width: 1440px) {
  .bottom_radio {
    border-radius: 0 0 30px 30px;
  }
}
/* 首页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: 95vh;
  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;
  }
}

.hero-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}

.explore-btn {
  background-color: #000;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 30px;
  border: 1px solid #fff;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #444;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .explore-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .explore-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .explore-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hero-section {
    padding: 60px 20px;
  }
}
/* -------------------底部-------------------------- */
.com_contact {
  background: url(static/images/bc_contact.webp) no-repeat center;
  background-size: cover;
  color: #fff;
}
@media screen and (min-width: 561px) {
  .com_contact {
    background-attachment: fixed;
  }
}
.com_contact .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.com_contact h6 {
  font-size: 0.34rem;
  font-weight: bold;
  line-height: 120%;
}
.com_contact p {
  font-size: 0.18rem;
  margin-top: 0.16rem;
}
@media screen and (max-width: 1440px) {
  .com_contact h6 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .com_contact h6 {
    font-size: 0.22rem;
  }
  .com_contact p {
    font-size: 0.14rem;
  }
}
footer {
  background: #262626;
}
.f_logo {
  display: block;
}
.f_logo img {
  max-width: 2.1rem;
  -webkit-filter: brightness(100);
  -moz-filter: brightness(100);
  -o-filter: brightness(100);
  -ms-filter: brightness(100);
  filter: brightness(100);
}
@media screen and (max-width: 1024px) {
  .f_logo img {
    max-width: 1.8rem;
  }
}
@media screen and (max-width: 560px) {
  .f_logo img {
    max-width: 1.5rem;
  }
}
.f_cont {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.f_contact {
  width: 16%;
}
.f_menu {
  /* width: 10%; */
}
.f_form {
  width: 27%;
}
.f_cont li {
  margin-bottom: 0.12rem;
  font-size: 0.18rem;
  color: #333;
}
.f_cont li ul {
  display: none;
}
.f_cont a,
.f_cont p {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.7);
}
.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.f_media a {
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.2rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.f_media iconify-icon {
  font-size: 0.26rem;
  color: rgba(255, 255, 255, 0.5);
}
.f_media iconify-icon:hover {
  color: #ffff;
}
a.f_tit,
.f_tit {
  font-size: 0.24rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 1440px) {
  a.f_tit,
  .f_tit {
    font-size: 0.22rem;
    margin-bottom: 0.2rem;
  }
  .f_contact {
    padding-right: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .f_form {
    width: 100%;
  }
  .f_cont {
    padding: 0.3rem 0;
  }
  a.f_tit,
  .f_tit {
    font-size: 0.2rem;
    margin-bottom: 0.18rem;
  }
  .f_menu {
    display: none;
  }
  .f_contact {
    width: 100%;
  }
}
.f_cr {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.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;
    border: none;
  }
  footer {
    margin-bottom: 40px;
  }
}
#wpforms-37 {
  --input_font_size: 14px;
  --input_height: 0.6rem;
  margin: 0.12rem 0;
}
@media screen and (max-width: 1024px) {
  #wpforms-37 {
    --input_font_size: 13px;
    --input_height: 0.5rem;
  }
}
#wpforms-form-37 {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#wpforms-form-37 .wpforms-field-container {
  width: 73%;
}
#wpforms-form-37 .wpforms-submit-container {
  width: 27%;
  margin-top: 0;
  padding: 0;
}
#wpforms-37 .wpforms-submit-container button {
  background: var(--i_color);
  display: block;
  width: 100%;
  border-radius: 0 !important;
  line-height: var(--input_height);
  padding: 0;
  border: none;
  margin: 0;
  font-size: 0.18rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-37 .wpforms-submit-container:hover button {
  background: var(--i_color);
}
#wpforms-37 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-37 .wpforms-field {
  padding: 0;
  margin: 0;
  position: relative;
}
#wpforms-37 .wpforms-field-label {
  font-size: 0;
  position: absolute;
  top: 15px;
  left: 3px;
}
#wpforms-37 .wpforms-field-label span {
  font-size: 0.14rem;
  color: red;
}
#wpforms-37 .wpforms-field-container input {
  width: 100%;
  font-size: var(--input_font_size);
  color: #fff;
  height: var(--input_height);
  border: none !important;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 0.1rem 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 0 !important;
}
#wpforms-37 input::-webkit-input-placeholder,
#wpforms-37 textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--input_font_size);
}
#wpforms-37 input::-moz-placeholder,
#wpforms-37 textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--input_font_size);
}
#wpforms-37 input::-ms-input-placeholder,
#wpforms-37 textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--input_font_size);
}
#wpforms-37-field_1-error,
#wpforms-37-field_2-error,
#wpforms-37-field_3-error,
#wpforms-37-field_4-error,
#wpforms-37-field_5-error,
#wpforms-37-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
@media screen and (max-width: 1024px) {
  #wpforms-37 .wpforms-submit-container button {
    font-size: 0.16rem;
  }
}
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 {
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}
.i_tit > h2 {
  font-size: 0.4rem;
  color: var(--i_color);
  position: relative;
  text-transform: capitalize;
}
.i_tit > p {
  font-size: 16px;
  color: #666;
  width: 70%;
  margin: 0.1rem auto 0;
}
.i_tit.left {
  text-align: left;
}
.i_tit.left > p {
  margin-left: 0;
}
.i_tit.white > h2 {
  color: #fff;
}
.i_tit.white > p {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .i_tit > h2 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_tit > h2 {
    font-size: 0.24rem;
  }
  .i_tit > p {
    width: 100%;
    font-size: 15px;
  }
}

.row_tit {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.i_more {
  position: relative;
  background: var(--i_color);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.i_more.center {
  margin-left: auto;
  margin-right: auto;
}
.i_more span {
  font-size: 15px;
  text-transform: capitalize;
}
.i_more span.tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.i_more .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}
.i_more:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.i_more .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.i_more:hover,
.i_more:hover .tooltip {
  background: linear-gradient(320deg, rgb(3, 77, 146), var(--i_color2));
  color: #ffffff;
}
.i_more:hover .tooltip::before {
  background: #055fa6;
}
.i_more_list {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.3rem;
}
@media screen and (max-width: 1024px) {
  .i_more {
    height: 40px;
  }
}
@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.24rem;
  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;
}
.bc {
  background: var(--bc_color);
}
.bc_color {
  background: var(--linear-gradien);
}

/* --------------------内页-------------------------------- */
.in_banner {
  width: 100%;
  position: relative;
}
.in_banner .img {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.in_banner .img::after {
  content: "";
  display: block;
  padding-bottom: 31.25%;
}
.in_banner .img img {
  width: 101%;
  height: 101%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 959px) {
  .in_banner .img::after {
    padding-bottom: 30vh;
  }
}
/* Breadcrumb */
.in_position {
  position: relative;
}
.in_position .wrap {
  padding: 0.2rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #333;
  position: relative;
  line-height: 20px;
}
.in_position a:first-child {
  padding-left: 0.34rem;
}
.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--i_color)
    url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="white" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: 14px;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}
.in_position a:last-child {
  color: var(--i_color) !important;
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}
.in_tit {
  padding-top: 0.2rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  border-bottom: 1px solid var(--border_color);
}
.in_tit h6 {
  font-size: 0.36rem;
  font-weight: 400;
  color: var(--i_color);
  text-transform: capitalize;
}
@media screen and (max-width: 1440px) {
  .in_tit h6 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_tit h6 {
    font-size: 0.24rem;
  }
}

.p_decription {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.p_decription .img {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
}
.p_decription .img::before {
  content: "";
  display: block;
  padding-bottom: 62.625%;
}
.p_decription .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p_decription .txt {
  width: 47%;
}
.p_decription .text {
  color: #333;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}
.p_decription .text * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}
.p_decription .text::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.p_decription .text::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.p_decription .text::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .p_decription .text {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
  .p_decription .text * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .p_decription .text {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .p_decription .text * {
    font-size: 14px;
    line-height: 20px;
  }
}

.p_decription h6 {
  font-weight: 400;
  color: var(--i_color);
  padding-bottom: 0.1rem;
  font-size: 0.36rem;
  position: relative;
}
.p_decription h6::after {
  content: "";
  width: 60px;
  height: 5px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 1440px) {
  .p_decription h6 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .p_decription h6 {
    font-size: 0.22rem;
  }
  .p_decription .txt,
  .p_decription .img {
    width: 100%;
  }
}
.c_name {
  font-size: 0.28rem;
  color: #333;
  font-weight: 400;
}

.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;
  }
}
@media screen and (max-width: 768px) {
  .p_menu_list li a {
    padding: 0.1rem;
    font-size: 14px;
  }
  .p_menu_list ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  .p_nav {
    max-height: 300px;
    overflow-y: auto;
  }
  .p_nav .tit {
    display: none;
  }
}
.in_c_name h1 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
}

@media screen and (max-width: 1440px) {
  .in_c_name h1 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_c_name h1 {
    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 * 6);
  }
  .in_c_name article * {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 560px) {
  .in_c_name article {
    line-height: 20px;
    max-height: calc(20px * 8);
  }
}
.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-border-radius: 0.1rem;
  border-radius: 0.1rem;
  -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: contain;
}
.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;
  }
}

/* ---------------------详情页---------------- */
.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: 100%;
}
.pd_gallery_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.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;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}
.pd_gallery-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;
}
.pd_gallery-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.pd_gallery-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: 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;
  }
}
.pd_technology_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.2rem;
}
.pd_technology_list li {
  width: calc((100% - 0.4rem) / 3);
  box-shadow: var(--i_shadow);
}
@media screen and (max-width: 1024px) {
  .pd_technology_list {
    gap: 0.3rem 0.14rem;
  }
  .pd_technology_list li {
    width: calc((100% - 0.28rem) / 3);
  }
}
@media screen and (max-width: 959px) {
  .pd_technology_list {
    gap: 0.3rem 2%;
  }
  .pd_technology_list li {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .pd_technology_list li {
    width: 100%;
  }
}
.pd_technology_list .img {
  position: relative;
  overflow: hidden;
  background: var(--bc_color);
}
.pd_technology_list .img::before {
  content: "";
  display: block;
  padding-bottom: 57.69%;
}
.pd_technology_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pd_technology_list span {
  display: block;
  width: 0.5rem;
  line-height: 0.5rem;
  font-size: 0.24rem;
  text-align: center;
  font-weight: 400;
  color: #fff;
  background: var(--i_color);
  margin: -22.5px auto 0;
  position: relative;
  z-index: 2;
}
.pd_technology_list h6,
.pd_technology_list p {
  width: 80%;
  text-align: center;
  margin: 0.16rem auto;
}
.pd_technology_list h6 {
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 400;
}
.pd_technology_list p {
  font-size: 0.16rem;
  color: #666;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 1440px) {
  .pd_technology_list span {
    width: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.2rem;
  }
  .pd_technology_list h6 {
    font-size: 0.18rem;
  }
  .pd_technology_list p {
    font-size: 0.15rem;
  }
}
.pd_project_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}
.pd_project_list li {
  width: 49%;
}
.pd_project_list .img {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}
.pd_project_list .img::before {
  content: "";
  display: block;
  padding-bottom: 50.63%;
}
.pd_project_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pd_project_list p {
  font-size: 0.2rem;
  color: #333;
  padding: 0.14rem 0.1rem;
  background: var(--bc_color);
  text-align: center;
  position: relative;
}
.pd_project_list p::after {
  content: "";
  width: 0%;
  height: 100%;
  background: none;
  border-bottom: 2px solid var(--i_color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.pd_project_list .img img,
.pd_project_list p::after {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.pd_project_list li:hover img {
  width: 110%;
  height: 110%;
}
.pd_project_list li:hover p {
  color: var(--i_color);
}
.pd_project_list li:hover p::after {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .pd_project_list p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .pd_project_list p {
    font-size: 0.16rem;
  }
}
.pd_process_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.22rem;
}
.pd_process_list li {
  width: calc((100% - 0.44rem) / 3);
}
@media screen and (max-width: 1024px) {
  .pd_process_list {
    gap: 0.2rem 0.12rem;
  }
}
@media screen and (max-width: 959px) {
  .pd_process_list {
    gap: 0.2rem 2%;
  }
  .pd_process_list li {
    width: 49%;
  }
}
.pd_process_list .img {
  position: relative;
  overflow: hidden;
}
.pd_process_list .img::before {
  content: "";
  display: block;
  padding-bottom: 78.95%;
}
.pd_process_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pd_process_list .txt {
  padding: 0.18rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
.pd_process_list span {
  width: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  font-size: 0.28rem;
  font-weight: 400;
  color: var(--i_color);
  background: var(--bc_color);
}
.pd_process_list p {
  font-size: 0.22rem;
  color: #333;
  width: calc(100% - 0.6rem);
}
.pd_process_list li,
.pd_process_list span,
.pd_process_list p {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pd_process_list li:hover {
  box-shadow: var(--i_shadow);
}
.pd_process_list li:hover span {
  color: #fff;
  background: var(--i_color);
}
.pd_process_list li:hover p {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .pd_process_list .txt {
    padding: 0.12rem;
  }
  .pd_process_list span {
    font-size: 0.22rem;
  }
  .pd_process_list p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .pd_process_list span {
    width: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.18rem;
  }
  .pd_process_list p {
    font-size: 0.16rem;
  }
  .pd_process_list .txt {
    padding: 6px;
  }
}
@media screen and (max-width: 560px) {
  .pd_process_list p {
    font-size: 0.14rem;
  }
}
.pd_packing {
  background: url(static/images/bc_packing.webp) no-repeat center;
  background-size: cover;
}
.packing_list {
  position: relative;
  overflow: hidden;
}
.packing_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.packing_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.packing_list .img {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}
.packing_list .img::before {
  content: "";
  display: block;
  padding-bottom: 61.73%;
}
.packing_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.packing_list p {
  font-size: 0.2rem;
  color: #333;
  padding: 0.14rem 0.1rem;
  background: var(--bc_color);
  text-align: center;
  position: relative;
}
.packing_list p::after {
  content: "";
  width: 0%;
  height: 100%;
  background: none;
  border-bottom: 2px solid var(--i_color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.packing_list .img img,
.packing_list p::after {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  transition-delay: 0.3s;
}
.packing_list li.swiper-slide-active img {
  width: 110%;
  height: 110%;
}
.packing_list li.swiper-slide-active p {
  color: var(--i_color);
}
.packing_list li.swiper-slide-active p::after {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .packing_list p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .packing_list p {
    font-size: 0.16rem;
  }
}
.packing_but {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.packing-prev,
.packing-next {
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.6rem;
  height: 0.6rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
}
.packing-prev {
  transform: translateX(-0.6rem);
}
.packing-next {
  transform: translateX(0.6rem);
}
.packing_list .swiper-button-disabled {
  cursor: not-allowed;
}
.packing-prev:hover,
.packing-next:hover {
  opacity: 1;
}
.packing-pagination {
  text-align: center;
}
.packing-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}
.packing-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;
}
.packing-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.packing-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}

.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 {
  width: 100%;
  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;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}

.rp-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

/* about */
.in_about {
  position: relative;
  overflow: hidden;
}
.in_about .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 0.3rem 0;
}
.in_about .img {
  width: 46%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.in_about .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.in_about .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_about .txt {
  width: 50%;
  font-size: 0.18rem;
}

.in_about article {
  margin: 0.2rem 0 0.3rem;
  color: #666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}
.in_about article * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}
.in_about article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.in_about article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.in_about article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .in_about article {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
  .in_about article * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_about article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .in_about article * {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .in_about .img,
  .in_about .txt {
    width: 100%;
  }
}
.in_about .move_logo {
  left: 50%;
  top: 60%;
  transform: translateY(0);
}
.num_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.num_list li {
  width: 18%;
}
.num_list h6 {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border_color);
}
.num_list span {
  font-size: 0.5rem;
  line-height: 120%;
  color: #333;
  font-weight: 400;
}
.num_list b {
  font-size: 0.18rem;
  color: #666;
}
.num_list p {
  margin-top: 0.1rem;
  font-size: 0.18rem;
  color: #333;
}
.num_list span,
.num_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.num_list li:hover span {
  color: var(--i_color);
}
.num_list li:hover h6 {
  border-color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .num_list span {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .num_list li {
    width: 45%;
    margin-bottom: 0.3rem;
  }
  .num_list span {
    font-size: 0.3rem;
  }
  .num_list b,
  .num_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .num_list b,
  .num_list p {
    font-size: 0.14rem;
  }
}
/* Mission */
.mission {
  position: relative;
  overflow: hidden;
}
.mission_list {
  height: 0;
  padding-bottom: 32%;
  background: url(./static/images/bc_cul.webp) no-repeat center;
  background-size: cover;
  position: relative;
}
.mission_list dl {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.mission_list dt {
  flex-grow: 1;
  width: 21%;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.mission_list dt.curr {
  background: rgb(0 0 0 / 40%);
}
.mission_list dt:not(:last-child) {
  border-right: 1px solid rgb(255 255 255 / 50%);
}
.mission_list .mission_ico1 {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mission_ico1 span {
  position: relative;
}
.mission_ico2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 32%;
  box-sizing: border-box;
  padding-left: 3%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.mission_list .ico {
  width: 1.14rem;
  height: 1.14rem;
  background: rgb(255 255 255 / 80%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.mission_list .ico img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.54rem;
}
.mission_ico1 h5 {
  margin-top: 0.1rem;
  font-size: 0.24rem;
  color: #fff;
  text-transform: capitalize;
  text-shadow: 0px 0px 2px #333;
  padding: 0 0.2rem;
}
.mission_list p {
  margin: 0.2rem 0;
  font-size: 0.24rem;
  font-weight: 400;
  color: #fff;
  position: relative;
  text-transform: capitalize;
  padding-bottom: 6px;
}
.mission_list p::after {
  content: "";
  width: 0.6rem;
  height: 4px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.mission_ico1 .ico {
  margin-left: auto;
  margin-right: auto;
}
.mission_ico2 h6 {
  font-size: 0.18rem;
  color: #fff;
  line-height: 120%;
}
.mission_list dt.curr .mission_ico1 {
  opacity: 0;
  visibility: hidden;
}
.mission_list dt.curr .mission_ico2 {
  opacity: 1;
  visibility: visible;
  animation: InRight 0.7s forwards;
}
@keyframes InRight {
  0% {
    transform: translate(0, -50%) translateX(30%);
  }
  100% {
    transform: translate(0, -50%) translateX(0);
  }
}
@media screen and (max-width: 1440px) {
  .mission_list .ico {
    width: 0.9rem;
    height: 0.9rem;
  }
  .mission_list .ico img {
    height: 0.4rem;
  }
  .mission_list p {
    font-size: 0.2rem;
  }
  .mission_ico2 h6 {
    font-size: 0.16rem;
  }
  .mission_ico1 h5 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1366px) {
  .mission_list .ico {
    width: 0.8rem;
    height: 0.8rem;
  }
  .mission_list .ico img {
    height: 0.34rem;
  }
}
@media screen and (max-width: 1024px) {
  .mission_list {
    height: auto;
    padding-bottom: initial;
  }
  .mission_list dl {
    height: auto;
    background: rgb(255 255 255 / 80%);
    position: relative;
    flex-wrap: wrap;
    border-top: 1px solid var(--border_color);
  }
  .mission_list dt {
    width: 50%;
    align-items: flex-start;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border_color);
    background: rgba(0, 0, 0, 0.4);
  }
  .mission_list dt:nth-child(odd) {
    border-right: 1px solid var(--border_color);
  }
  .mission_ico1 {
    display: none !important;
  }
  .mission_ico2 {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    top: initial;
    transform: none;
    width: 100%;
    padding: 0.4rem 0.3rem;
  }
  .mission_ico2 span {
    margin-bottom: 0.2rem;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .mission_list .ico {
    width: 0.7rem;
    height: 0.7rem;
    background: rgb(253 241 230);
  }
  .mission_list .ico img {
    height: 0.3rem;
  }
  .mission_list p {
    margin: 0 0 0 0.18rem;
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .mission_list {
    background-position-x: 60%;
  }
  .mission_list dl {
    background: rgb(255 255 255 / 90%);
  }
  .mission_ico2 {
    padding: 0.3rem 0.2rem;
  }
  .mission_list .ico {
    width: 0.5rem;
    height: 0.5rem;
    background: rgb(253 241 230);
  }
  .mission_list .ico img {
    height: 0.24rem;
  }
  .mission_list p {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 560px) {
  .mission_list dt {
    width: 100%;
    border-right: none !important;
  }
  .mission_ico2 {
    padding: 0.2rem 0.2rem;
  }
  .mission_ico2 span {
    margin-bottom: 0.14rem;
  }
  .mission_list p {
    font-size: 0.16rem;
  }
}
.certy {
  background: url(static/images/bc_certy.webp) no-repeat center;
  background-size: cover;
  position: relative;
}
.certy_list {
  position: relative;
  overflow: hidden;
}
.certy_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.certy_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.certy_list .img {
  position: relative;
  overflow: hidden;
  background: var(--bc_color);
}
.certy_list .img::before {
  content: "";
  display: block;
  padding-bottom: 142.97%;
}
.certy_list .img img {
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.certy_list .img,
.certy_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.certy_list li:hover .img {
  box-shadow: var(--i_shadow);
}
.certy_list li:hover img {
  width: 100%;
  height: 100%;
}
.certy_list li {
  transform: scale(80%);
}
.certy_list li.swiper-slide-next,
.certy_list li.swiper-slide-prev {
  transform: scale(90%);
}
.certy_list li.swiper-slide-active {
  transform: scale(100%);
}
.certy-prev,
.certy-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
}
.certy-prev {
  left: -0.6rem;
}
.certy-next {
  right: -0.6rem;
}
.i_project_list .swiper-button-disabled {
  cursor: not-allowed;
}
.certy-prev:hover,
.certy-next:hover {
  opacity: 1;
}
.certy-pagination {
  text-align: center;
}
.certy-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}
.certy-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;
}
.certy-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.certy-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .certy-prev,
  .certy-next {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.24rem;
  }
  .certy-prev {
    left: 0;
  }
  .certy-next {
    right: 0;
  }
}
@media screen and (max-width: 560px) {
  .certy-pagination {
    margin-top: 0.22rem;
  }
}
.service_scope {
  position: relative;
}
.service_scope::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: url(static/images/bc_service_scope.webp) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 561px) {
  .service_scope::after {
    background-attachment: fixed;
  }
}
.service_scope .wrap_l {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  background: #fff;
  position: relative;
  z-index: 2;
}
.service_scope .txt {
  width: 46%;
  padding: 0 0.3rem;
}
.service_scope .gallery {
  width: 52%;
}
.service_scope h6 {
  font-size: 0.32rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.service_scope p {
  font-size: 0.18rem;
  color: #333;
}
@media screen and (max-width: 1440px) {
  .service_scope h6 {
    font-size: 0.24rem;
  }
  .service_scope p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .service_scope h6 {
    font-size: 0.2rem;
  }
  .service_scope p {
    font-size: 0.15rem;
  }
  .service_scope .txt {
    width: 100%;
    padding: 0.2rem;
  }
  .service_scope .gallery {
    display: none;
  }
}
.p_atlas_show {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.p_atlas_show .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_atlas_show .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.p_atlas_show .swiper-slide .img {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.p_atlas_show .swiper-slide .img::before {
  content: "";
  display: block;
  padding-bottom: 63.15%;
}
.p_atlas_show .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_atlas_list {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_atlas_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 63.15%;
}
.p_atlas_list .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p_atlas_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_atlas_list .swiper-slide-thumb-active .img {
  border: 1px solid var(--i_color);
}
.atlas-prev,
.atlas-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
}
.atlas-prev {
  left: 0;
}
.atlas-next {
  right: 0;
}
.i_project_list .swiper-button-disabled {
  cursor: not-allowed;
}
.atlas-prev:hover,
.atlas-next:hover {
  opacity: 1;
}
.atlas-pagination {
  text-align: center;
  display: none;
}
.atlas-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}
.atlas-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;
}
.atlas-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.atlas-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}
.env_list {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.1rem;
}
.env_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.env_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.env_list .img {
  width: 100%;
  background: var(--bc_color);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.env_list .img::before {
  content: "";
  display: block;
  padding-bottom: 83.96%;
}
.env_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.env_list .img,
.env_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.env_list li:hover .img {
  background: #fff;
  border-color: var(--i_color);
}
.env_list li:hover img {
  width: 105%;
  height: 105%;
}
.env_but {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.env-prev,
.env-next {
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.6rem;
  height: 0.6rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
}
.env-prev {
  transform: translateX(-0.6rem);
}
.env-next {
  transform: translateX(0.6rem);
}
.i_project_list .swiper-button-disabled {
  cursor: not-allowed;
}
.env-prev:hover,
.env-next:hover {
  opacity: 1;
}
.env-pagination {
  text-align: center;
}
.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: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}
.env-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  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;
}
.env-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.env-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}
/* ------------------case------------------- */
.hot_case {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background: linear-gradient(to right, #fff, var(--bc_color));
  overflow: hidden;
  gap: 0.2rem 0;
}
.hot_case > img {
  position: absolute;
  right: -0.2rem;
  bottom: -0.2rem;
  max-width: 30%;
  opacity: 0.1;
}
.hot_case .img {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.hot_case .img::before {
  content: "";
  display: block;
  padding-bottom: 62.1%;
}
.hot_case .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hot_case .txt {
  width: 50%;
  padding: 0 0.6rem;
}
.hot_case h6 {
  font-size: 0.26rem;
  font-weight: 400;
  color: var(--i_color);
  margin-bottom: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot_case .date {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}
.hot_case .date span {
  font-size: 0.16rem;
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .hot_case .txt {
    padding: 0 0.4rem;
  }
  .hot_case h6 {
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .hot_case .img,
  .hot_case .txt {
    width: 100%;
  }
  .hot_case .txt {
    padding: 0.2rem;
    background: var(--bc_color);
  }
}
.in_case_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.15rem;
}
.in_case_list li {
  width: calc((100% - 0.3rem) / 3);
}
@media screen and (max-width: 768px) {
  .in_case_list {
    gap: 0.3rem 0;
  }
  .in_case_list li {
    width: 100%;
  }
}

.hot_case article {
  color: #666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}
.hot_case article * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}
.in_about article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.in_about article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.in_about article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .hot_case article {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
  .hot_case article * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .hot_case article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .hot_case article * {
    font-size: 14px;
    line-height: 20px;
  }
}

.in_case_list a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  width: 100%;
  height: 100%;
}
.in_case_list a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  bottom: -2px;
}
.in_case_list .img {
  position: relative;
  overflow: hidden;
}
.in_case_list .img::before {
  content: "";
  display: block;
  padding-bottom: 61.92%;
}
.in_case_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_case_list .txt {
  padding: 0.2rem;
  overflow: hidden;
}
.in_case_list h6 {
  font-size: 0.2rem;
  color: #333;
  font-weight: 400;
  line-height: 150%;
}
.in_case_list p {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.in_case_list .date {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}
.in_case_list .date span {
  font-size: 0.16rem;
}
.in_case_list .more {
  transform: translateX(0.36rem);
  opacity: 0;
}
.in_case_list li,
.in_case_list a::after,
.in_case_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_case_list li:hover {
  box-shadow: var(--i_shadow);
}
.in_case_list li:hover .more {
  transform: translateX(0);
  opacity: 1;
}
.in_case_list li:hover h6 {
  color: var(--i_color);
}
.in_case_list li:hover span {
  color: var(--i_color);
}
.in_case_list li:hover a::after {
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .in_case_list h6 {
    font-size: 0.18rem;
  }
  .in_case_list p {
    font-size: 14px;
  }
}
/* contact */
.contact {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.c_info {
  width: 42%;
}
.c_form {
  width: 54%;
  background: url(static/images/bc_contact_form.webp) no-repeat center;
  background-size: cover;
  padding: 0.4rem 0.6rem;
}
.c_info h4 {
  font-size: 0.28rem;
  color: var(--i_color);
  font-weight: 400;
}
.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.58rem;
  height: 0.58rem;
  border-radius: 2px;
  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.78rem);
}
.c_list .info h6 {
  color: #666;
  font-size: 0.16rem;
}
.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);
}
.c_form .i_tit > h2 {
  font-size: 0.3rem;
}
@media screen and (max-width: 1440px) {
  .c_info h4 {
    font-size: 0.2rem;
  }
  .c_form {
    padding: 0.2rem 0.3rem;
  }
  .c_form .i_tit > h2 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 1024px) {
  .c_info,
  .c_form {
    width: 100%;
  }
  .c_list .info a,
  .c_list .info p {
    font-size: 0.16rem;
  }
  .c_form {
    padding: 0.1rem;
  }
}
#wpforms-32 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}
#wpforms-32 {
  margin: 0;
  padding: 0;
}
#wpforms-form-32 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-32 .wpforms-field {
  padding: 0;
  margin-bottom: 20px;
}
#wpforms-32 .wpforms-field-label {
  font-size: 0;
  position: absolute;
  top: 12px;
  left: 3px;
}
#wpforms-32 .wpforms-field-label span {
  font-size: 0.14rem;
  color: red;
}
#wpforms-32 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-32 .wpforms-field-container > div {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #wpforms-32 .wpforms-field-container > div:first-child,
  #wpforms-32 .wpforms-field-container > div:nth-child(2) {
    width: 49%;
  }
}
#wpforms-32 .wpforms-field-container input,
#wpforms-32 textarea,
#wpforms-32 select {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  border: 1px solid var(--border_color);
  padding: 0 0.1rem 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
}
#wpforms-32 input {
  line-height: var(--input_height);
}
#wpforms-32 textarea {
  line-height: 0.22rem;
  min-height: 1.4rem;
  padding: 0.06rem 0.16rem;
}
#wpforms-32-field_1-container {
  border-top-left-radius: 20px;
}
#wpforms-32 input::-webkit-input-placeholder,
#wpforms-32 textarea::-webkit-input-placeholder {
  color: #333;
  font-size: var(--input_font_size);
}
#wpforms-32 input::-moz-placeholder,
#wpforms-32 textarea::-moz-placeholder {
  color: #333;
  font-size: var(--input_font_size);
}
#wpforms-32 input::-ms-input-placeholder,
#wpforms-32 textarea::-ms-input-placeholder {
  color: #333;
  font-size: var(--input_font_size);
}
#wpforms-32-field_1-error,
#wpforms-32-field_2-error,
#wpforms-32-field_3-error,
#wpforms-32-field_4-error,
#wpforms-32-field_5-error,
#wpforms-32-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-32 .wpforms-submit-container {
  width: 80%;
  margin: 0 auto;
}
#wpforms-32 .wpforms-submit-container button {
  padding: 6px 0.5rem;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: block;
  margin: 20px auto 0;
  font-size: 0.2rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  background: var(--i_color);
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-32 .wpforms-submit-container:hover button {
  background: var(--i_color2);
}
#wpforms-32 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #wpforms-32 .wpforms-submit-container button {
    padding: 6px 40px;
  }
}
.map {
  position: relative;
  overflow: hidden;
}
.map::before {
  content: "";
  display: block;
  padding-bottom: 38.125%;
}
.map iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* -----------------news------------------------ */
.new_menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.new_menu a {
  display: table;
  padding: 0.1rem 0.3rem;
  font-size: 0.18rem;
  border: 1px solid var(--i_color);
  border-radius: 0.3rem;
  color: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.new_menu .curr a,
.new_menu a:hover {
  background: var(--i_color);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .new_menu a {
    padding: 8px 0.2rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .new_menu a {
    font-size: 0.14rem;
  }
}
.in_n_list li {
  background: url(static/images/bc_logo.png) no-repeat right;
  background-size: 50%;
  margin-bottom: 0.5rem;
}
.in_n_list a {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bc_color);
  overflow: hidden;
  border-radius: 0.2rem;
  padding: 0.3rem;
}
.in_n_list .img {
  width: 28%;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
  border: 1px solid var(--border_color);
  background: #fff;
}
.in_n_list .img::before {
  content: "";
  display: block;
  padding-bottom: 64.1%;
}
.in_n_list .img img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_n_list .txt {
  width: 70%;
}
.in_n_list h6 {
  font-size: 0.24rem;
}
.in_n_list p {
  font-size: 0.16rem;
  margin: 0.1rem 0 0.2rem;
}
.in_n_list span {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  color: #666;
}
.in_n_list span i {
  font-size: 0.16rem;
}
.in_n_list a,
.in_n_list h6,
.in_n_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_n_list a:hover img {
  width: 100%;
  height: 100%;
}
.in_n_list a:hover {
  background: none;
  box-shadow: var(--i_shadow);
}
.in_n_list a:hover h6 {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .in_n_list h6 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_n_list h6 {
    font-size: 0.18rem;
  }
  .in_n_list p {
    font-size: 0.14rem;
    margin: 0.1rem 0;
  }
  .in_n_list .img,
  .in_n_list .txt {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .in_n_list .img,
  .in_n_list .txt {
    width: 100%;
  }
}

/* ---------------application------------------- */

.application_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.4rem;
}
.application_list li {
  width: calc((100% - 0.8rem) / 3);
  position: relative;
  background: #fff;
}
@media screen and (max-width: 1440px) {
  .application_list {
    gap: 0.8rem 0.3rem;
  }
  .application_list li {
    width: calc((100% - 0.6rem) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .application_list {
    gap: 0.8rem 0.2rem;
  }
  .application_list li {
    width: calc((100% - 0.2rem) / 2);
  }
}
@media screen and (max-width: 560px) {
  .application_list li {
    width: 100%;
  }
}
.application_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.application_list .img::before {
  content: "";
  display: block;
  padding-bottom: 73.27%;
}
.application_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.application_list .date {
  display: table;
  padding: 6px 0.2rem;
  font-size: 14px;
  color: #fff;
  border-radius: 6px;
  background: var(--i_color);
  z-index: 2;
  position: absolute;
  right: 0.3rem;
  transform: translateY(-50%);
}
.application_list h6 {
  width: 100%;
  font-size: 0.2rem;
  color: #333;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0.3rem 0;
  padding: 0 0.2rem;
}
.application_list .more {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0.1rem;
  transform: translateY(-0.2rem);
  background: var(--i_color);
  opacity: 0;
  border-radius: 0px 0px 8px 8px;
}
.application_list .more,
.application_list img {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.application_list li:hover img {
  width: 110%;
  height: 110%;
}
.application_list li:hover .more {
  transform: translateY(-8px);
  opacity: 1;
}
.application_list li:hover a {
  border-color: transparent;
  box-shadow: var(--i_shadow);
}
@media screen and (max-width: 1440px) {
  .application_list h6 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .application_list h6 {
    font-size: 0.18rem;
  }
}

.case_control {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.2rem;
}
.case-pagination {
  font-size: 0;
}
.case-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 2px;
  display: inline-block;
  margin: 0 0;
  background: #d6d6d6;
  outline: none;
  cursor: pointer;
  position: relative;
}
.case-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.case-pagination .swiper-pagination-bullet-active::before {
  right: initial;
  left: 0;
  width: 100%;
}
.case_list {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.case_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.case_list .swiper-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.case_list .swiper-button-disabled {
  cursor: not-allowed;
}
.case_list a {
  display: block;
  width: 100%;
}
.case_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.1rem;
  border: 1px solid var(--border_color);
}
.case_list .img::before {
  content: "";
  display: block;
  padding-bottom: 62.29%;
}
.case_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.case_list p {
  font-size: 0.18rem;
  color: #333;
  margin: 0.16rem 0;
  text-align: center;
}
.case_list img,
.case_list p {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.case_list li:hover img {
  width: 105%;
  height: 105%;
}
.case_list li:hover p {
  color: var(--i_color);
}
@media screen and (max-width: 768px) {
  .case_list .img {
    border-radius: 0.1rem;
  }
  .case_list p {
    font-size: 0.16rem;
    margin: 0.1rem 0;
  }
}

/* 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;
  color: #666;
  background: #fff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border_color);
  overflow: hidden;
}
.in_page > i {
  margin-top: 0.14rem;
  width: 100%;
  font-size: 0.13rem;
  color: #888;
}
.in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
  border-color: 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;
  }
}

div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
div.wpforms-container-full
  .wpforms-form
  .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}

.tec_list {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tec_list li {
  width: calc(50% - 0.2rem);
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.tec_list a {
  display: block;
  width: 100%;
  height: 100%;
}
.tec_list .img {
  position: relative;
  padding-bottom: 58.39%;
  overflow: hidden;
}
.tec_list .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--i_color);
  opacity: 0;
}
.tec_list img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tec_list .txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.24rem 0.1rem;
}
.tec_list .txt p {
  width: 70%;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tec_list .txt,
.tec_list img,
.tec_list .img::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tec_list li:hover .txt {
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.1);
}
.tec_list li:hover .img::after {
  opacity: 0.3;
}
.tec_list li:hover img {
  width: 105%;
  height: 105%;
}
.tec_list li:hover .i_btn {
  border-color: transparent;
  color: #fff;
  background: var(--i_color);
}
@media screen and (max-width: 768px) {
  .tec_list li {
    width: 100%;
  }
}

/* -------------------------------------- 侧边客服 -------------------------------------- */
.aside_right {
  position: fixed;
  right: 10px;
  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(1) .side_tel_box {
  width: 150px;
  display: block;
  padding: 10px;
  text-align: center;
}
.side_tel_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aside_right li:nth-child(1) > a {
  background-color: #25d367;
}
.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-83 {
  --input_font_size: 16px;
  --input_height: 42px;
}
#wpforms-83 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-83 {
  width: 100%;
  overflow: hidden;
}
#wpforms-83 input,
#wpforms-83 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-83 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-83 .wpforms-error-container {
  line-height: 16px;
}
#wpforms-83 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-83 .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-83 .wpforms-field {
  position: relative;
}
#wpforms-83 .wpforms-field-label {
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0 !important;
}
#wpforms-83 .wpforms-field-label span {
  position: absolute;
  top: 15px;
  left: 3px;
  font-size: 14px;
  color: red;
}
#wpforms-83 .wpforms-error {
  margin-top: 0.01rem;
  font-size: 12px !important;
}
#wpforms-83 .wpforms-field {
  width: 100%;
  padding-bottom: 20px;
  background: transparent;
  overflow: hidden;
}

#wpforms-83 .wpforms-field:nth-child(1),
#wpforms-83 .wpforms-field:nth-child(2) {
  width: calc(50% - 10px);
}
#wpforms-83 input {
  height: var(--input_height);
}
#wpforms-83 textarea {
  min-height: 100px;
}
#wpforms-83 input,
#wpforms-83 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-83 input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-83 #wpforms-30-field_1-error,
#wpforms-83 #wpforms-30-field_2-error,
#wpforms-83 #wpforms-30-field_3-error,
#wpforms-83 #wpforms-30-field_4-error {
  position: absolute;
  font-size: 14px;
}
#wpforms-83 .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-83 .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-83 .wpforms-submit-container:hover {
  background-color: var(--i_color2);
  animation: a 0.5s 1 linear;
  animation-delay: 0.01s;
}

@media screen and (max-width: 959px) {
  /* .aside_right{display:none} */
  .close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
  #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) {
  #aside_sc_from {
    padding: 0.3rem 0.2rem;
  }
  #wpforms-83 .wpforms-field:nth-child(1),
  #wpforms-83 .wpforms-field:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  #aside_sc_from {
    width: 87%;
  }
  #aside_sc_from .tit h6 {
    font-size: 20px;
  }
  .aside_right li > a {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.f_bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .f_bottom {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
  }
  .f_bottom a {
    display: block;
    width: 25%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 0.1rem;
    font-size: 18px;
    color: #333;
  }
  .f_bottom a:nth-child(odd) {
    background: #eee;
  }
  .f_bottom a:nth-child(even) {
    background: #ddd;
  }
  .f_bottom p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .f_bottom a {
    font-size: 17px;
    gap: 0 6px;
  }
  .f_bottom p {
    font-size: 13px;
  }
}

.certs_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 四列平铺 */
  gap: 0.3rem;
}

.cert_item {
  background: #fff;
  transition: all 0.4s ease;
}

.cert_img {
  width: 100%;
  aspect-ratio: 1 / 1.414;
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 0.15rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.cert_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 118, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.cert_mask iconify-icon {
  font-size: 0.4rem;
  color: var(--i_color);
  background: #fff;
  border-radius: 50%;
  padding: 0.1rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
}

.cert_info {
  padding-top: 0.2rem;
  text-align: center;
}

.cert_info h5 {
  font-size: 0.18rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.05rem;
}

.cert_info p {
  font-size: 0.14rem;
  color: #999;
}

.cert_item:hover .cert_img {
  border-color: var(--i_color);
  box-shadow: 0 0.15rem 0.3rem rgba(0, 0, 0, 0.05);
}

.cert_item:hover .cert_mask {
  opacity: 1;
}

.cert_item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .certs_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .certs_grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------新闻详情页------------------ */
.in_news_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.3rem 0;
}
.post_recommend {
  flex-shrink: 0;
  width: 4rem;
  margin-left: auto;
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid #ddd;
}
.post_content {
  width: calc(100% - 4.5rem);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.post_recommend h3 {
  font-size: 0.22rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .post_recommend,
  .post_content {
    width: 100%;
  }
  .post_recommend {
    padding: 20px 10px;
  }
}
.post_recommend_list {
}
.post_recommend_list li {
}
.post_recommend_list li:not(:last-child) {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd;
}
.post_recommend_list a {
  display: block;
  width: 100%;
}
.post_recommend_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.post_recommend_list .img::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.post_recommend_list .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.post_recommend_list {
  margin: 14px 0 10px;
}
.post_recommend_list p {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post_recommend_list li:hover img {
  -webkit-transform: scale(1.08, 1.08);
  transform: scale(1.08, 1.08);
}
.post_recommend_list li:hover p {
  color: var(--i_color);
}
.new_form_cont {
  background: #f7f7f7;
  margin-top: 0.3rem;
  padding: 0.2rem;
  position: relative;
}
.new_form_cont::after {
  content: "";
  width: 1.5px;
  height: 100%;
  background: linear-gradient(to top, var(--i_color), var(--i_color2));
  position: absolute;
  right: 0;
  top: 0;
}
.new_form_cont p {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}
#wpforms-1014 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}
#wpforms-1014 {
  margin: 0;
  padding: 0;
}
#wpforms-form-1014 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-1014 input,
#wpforms-1014 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-1014 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-1014 .wpforms-field-label {
  font-size: 0;
}
#wpforms-1014 .wpforms-required-label {
  position: absolute;
  top: 0.06rem;
  left: 4px;
  font-size: 0.16rem;
  color: #f00;
}
#wpforms-1014 .wpforms-field {
  width: 100%;
  background: transparent;
  padding-bottom: 0.2rem;
  position: relative;
  overflow: hidden;
}
#wpforms-1014 .wpforms-field-container input,
#wpforms-1014 textarea,
#wpforms-1014 select {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  border: 1px solid transparent;
  background: #fff;
  padding: 0 0.1rem 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-1014 .wpforms-field-container input:hover,
#wpforms-1014 textarea:hover {
  border-color: var(--i_color);
}
#wpforms-1014 input {
  line-height: var(--input_height);
}
#wpforms-1014 textarea {
  line-height: 0.22rem;
  min-height: 1rem;
  padding: 0.06rem 0.16rem;
}
#wpforms-1014-field_1-container,
#wpforms-1014-field_2-container {
  width: 49% !important;
}
#wpforms-1014 input::-webkit-input-placeholder,
#wpforms-1014 textarea::-webkit-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-1014 input::-moz-placeholder,
#wpforms-1014 textarea::-moz-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-1014 input::-ms-input-placeholder,
#wpforms-1014 textarea::-ms-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-1014-field_1-error,
#wpforms-1014-field_2-error,
#wpforms-1014-field_3-error,
#wpforms-1014-field_4-error,
#wpforms-1014-field_5-error,
#wpforms-1014-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-1014 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-1014 .wpforms-submit-container {
  text-align: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}
#wpforms-1014 .wpforms-submit-container button {
  display: block;
  width: 100%;
  font-size: 0.16rem;
  padding: 10px 0;
  color: #fff;
  background: var(--i_color);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
#wpforms-1014 .wpforms-submit-container button:hover {
  background: var(--i_color2);
}
#wpforms-1014 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}

.i_product_list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 40px 20px;
  list-style: none;
  scroll-snap-type: x mandatory;
}

.product-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  width: 340px;
  min-width: 340px;
  scroll-snap-align: start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-10px);
}

.product-item .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product-item .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.product-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-item:hover .img img {
  width: 100%;
  height: 100%;
}

.product-item .txt {
  padding: 20px;
}
.product-item .txt h6 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.product-item .txt p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #444;
}

/* 自定义滚动条 */
.i_product_list::-webkit-scrollbar {
  height: 8px; /* 滚动条高度 */
}

.i_product_list::-webkit-scrollbar-thumb {
  background-color: #888; /* 滚动条滑块的颜色 */
  border-radius: 4px; /* 滚动条滑块的圆角 */
}

.i_product_list::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* 滚动条滑块的悬停颜色 */
}

.i_product_list::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* 滚动条轨道的颜色 */
  border-radius: 4px; /* 滚动条轨道的圆角 */
}

/* 响应式调整 */
@media (max-width: 1024px) {
  .product-item .txt h6 {
    font-size: 16px;
  }

  .product-item .txt p {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 8px 18px;
  }
}

@media (max-width: 768px) {
  .product-item .txt h6 {
    font-size: 14px;
  }

  .product-item .txt p {
    font-size: 12px;
  }

  .btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

.i_service_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
}
.i_service_list li {
  width: calc((100% - 0.3rem) / 2);
  padding: 0.3rem;
  border-radius: 10px;
  background: #f0f0f0;
}
.i_service_list h6 {
  font-size: 0.32rem;
  margin: 0.1rem 0;
}
.i_service_list p {
  font-size: 0.16rem;
  margin: 0.1rem 0;
}
.i_service_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.i_service_list .img::before {
  content: "";
  display: block;
  padding-bottom: 43%;
}
.i_service_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 560px) {
  .i_service_list li {
    width: 100%;
  }
  .i_service_list h6 {
    font-size: 0.24rem;
  }
  .i_service_list p {
    font-size: 0.15rem;
  }
}

.i_sol_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
}
.i_sol_list li {
  width: calc((100% - 0.6rem) / 3);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.i_sol_list h3 {
  font-size: 0.15rem;
  margin: 0.1rem 0;
  padding: 0.3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  color: #fff;
}
.i_sol_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.i_sol_list .img::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.i_sol_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 560px) {
  .i_sol_list li {
    width: 100%;
  }
}

.i_about .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.i_about .txt {
  width: 46%;
}

.i_about .img {
  width: 50%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.i_about .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.i_about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.i_about article {
  margin: 0.3rem 0;
  color: #333;
  font-size: 0.16rem;
  line-height: 0.26rem;
  max-height: calc(0.26rem * 12);
  overflow-y: auto;
  padding-right: 2%;
}
.i_about article * {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.26rem;
}
.i_about article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.i_about article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.i_about article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .i_about article {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
  .i_about article * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_about article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .i_about article * {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .i_about .txt {
    width: 100%;
  }

  .i_about .img {
    width: 100%;
  }
}

.get-in-touch-section {
  background-color: #ffffff;
  border-top: 1px solid #ddd;
}

.get-in-touch-flex {
  display: flex;
  min-height: 8rem;
}

/* 左侧深色区域 */
.get-in-touch-left {
  flex: 1;
  color: #333;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
}

.get-in-touch-left h2 {
  font-size: 0.4rem;
  margin-bottom: 0.3rem;
}

.get-in-touch-info label {
  display: block;
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 0.05rem;
}

.get-in-touch-info a,
.get-in-touch-info p {
  display: block;
  font-size: 0.16rem;
  color: #222;
  opacity: 0.7;
  text-decoration: none;
}
.get-in-touch-info .info-item {
  margin: 0.2rem 0;
}
.get-in-touch-info a:hover {
  text-decoration: underline;
  color: #000;
}
/* 右侧表单区域 */
.get-in-touch-right {
  flex: 1;
  padding: 0.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-sub {
  font-size: 0.2rem;
  color: #444;
  margin: 0.2rem 0;
}

.submit-btn {
  align-self: flex-end;
  margin-top: auto;
  background-color: #231f20;
  color: #fff;
  border: none;
  padding: 0.15rem 0.6rem;
  font-size: 0.24rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #444;
}

@media screen and (max-width: 1440px) {
  .get-in-touch-left h2 {
    font-size: 0.3rem;
  }
}
@media (max-width: 1024px) {
  .get-in-touch-flex {
    flex-direction: column;
  }
  .get-in-touch-left h2 {
    font-size: 0.24rem;
  }

  .form-sub {
    font-size: 0.18rem;
  }
  .get-in-touch-left,
  .get-in-touch-right {
    padding: 0.6rem 0.4rem;
  }

  .submit-btn {
    width: 100%;
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .get-in-touch-left,
  .get-in-touch-right {
    padding: 0.4rem 0.3rem;
  }
}
#wpforms-1037 {
  --input_font_size: 0.16rem;
  --input_height: 0.46rem;
}
#wpforms-1037 {
  margin: 0;
  padding: 0;
}
#wpforms-form-1037 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-1037 .wpforms-field {
  padding: 0;
  margin-bottom: 20px;
}
#wpforms-1037 .wpforms-field-label {
  font-size: 13px;
  color: #333;
}

#wpforms-1037 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-1037 .wpforms-field-container > div {
  width: 49%;
  position: relative;
}
@media screen and (min-width: 769px) {
  #wpforms-1037 .wpforms-field-container > div:nth-child(7),
  #wpforms-1037 .wpforms-field-container > div:nth-child(8) {
    width: 100%;
  }
}
#wpforms-1037 .wpforms-field-container input,
#wpforms-1037 textarea,
#wpforms-1037 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 !important;
  overflow: hidden;
  border-radius: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #f6f6f6;
}
#wpforms-1037 input {
  line-height: var(--input_height);
}
#wpforms-1037 textarea {
  line-height: 0.22rem;
  min-height: 1.4rem;
  padding: 0.06rem 0.16rem;
}
#wpforms-1037-field_1-container {
  border-top-left-radius: 20px;
}
#wpforms-1037 input::-webkit-input-placeholder,
#wpforms-1037 textarea::-webkit-input-placeholder {
  color: #666;
  font-size: var(--input_font_size);
}
#wpforms-1037 input::-moz-placeholder,
#wpforms-1037 textarea::-moz-placeholder {
  color: #666;
  font-size: var(--input_font_size);
}
#wpforms-1037 input::-ms-input-placeholder,
#wpforms-1037 textarea::-ms-input-placeholder {
  color: #666;
  font-size: var(--input_font_size);
}
#wpforms-1037-field_1-error,
#wpforms-1037-field_2-error,
#wpforms-1037-field_3-error,
#wpforms-1037-field_4-error,
#wpforms-1037-field_5-error,
#wpforms-1037-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-1037 .wpforms-submit-container {
  width: 80%;
  margin: 0 auto;
}
#wpforms-1037 .wpforms-submit-container button {
  padding: 6px 0.5rem;
  display: block;
  margin: 20px auto 0;
  font-size: 0.18rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  background: var(--i_color2);
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-1037 .wpforms-submit-container:hover button {
  background: var(--i_color);
}
#wpforms-1037 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #wpforms-1037 .wpforms-submit-container button {
    padding: 6px 40px;
  }
}

.i_ser_list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 40px 20px;
  list-style: none;
  scroll-snap-type: x mandatory;
}

.i_ser_list li {
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  width: 340px;
  min-width: 340px;
  scroll-snap-align: start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.i_ser_list li:hover {
  transform: translateY(-10px);
}

.i_ser_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.i_ser_list .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.i_ser_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_ser_list span {
  display: table;
  padding: 6px 20px;
  background: var(--i_color);
  color: #fff;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.i_ser_list li:hover .img img {
  width: 110%;
  height: 110%;
}

.i_ser_list .txt {
  padding: 0.2rem;
}
.i_ser_list .txt h6 {
  font-size: 0.18rem;
  font-weight: normal;
  color: #333;
}

@media screen and (max-width: 1024px) {
  .i_ser_list li {
    width: calc((100% - 0.3rem) / 2);
  }
  .i_ser_list .txt h6 {
    font-size: 0.16rem;
  }
}

/* solution */
.s_overview {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

.s_overview .txt {
  width: 48%;
}
.s_overview .swiper_cont {
  width: 48%;
}

.s_overview article {
  color: #666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 14);
  overflow-y: auto;
  padding-right: 2%;
}
.s_overview article * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}
.s_overview article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.s_overview article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.s_overview article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .s_overview article {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }
  .s_overview article * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .s_overview .txt,
  .s_overview .swiper_cont {
    width: 100%;
  }
  .s_overview article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .s_overview article * {
    font-size: 14px;
    line-height: 20px;
  }
}

.swiper_sol_list {
  position: relative;
  overflow: hidden;
}
.swiper_sol_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.swiper_sol_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.swiper_sol-prev,
.swiper_sol-next {
  display: none;
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  width: 0.3rem;
  height: 0.3rem;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0.5;
}
.swiper_sol-prev {
  left: 0;
  background: url(static/images/public/arrow_left_hollow_hei2.svg) no-repeat
    center;
  background-size: contain;
}
.swiper_sol-next {
  right: 0;
  background: url(static/images/public/arrow_right_hollow_hei2.svg) no-repeat
    center;
  background-size: contain;
}

.swiper_sol_list .swiper-button-disabled {
  cursor: not-allowed;
}
.swiper_sol-prev:hover,
.swiper_sol-next:hover {
  opacity: 0.6;
}
.swiper_sol-pagination {
  margin-top: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.swiper_sol-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: block;
  margin: 0 6px;
  background: #d5defa;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.swiper_sol-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.swiper_sol_list li {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  border: 6px solid #dfdfdf;
}
.swiper_sol_list li::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.swiper_sol_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper_sol_list li:hover {
  border-color: #d5defa;
}

@media screen and (max-width: 1024px) {
  .swiper_sol-prev,
  .swiper_sol-next {
    display: none;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

/* 图标外层白块容器 */
.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Iconify 图标样式 */
.feature-icon iconify-icon {
  font-size: 28px; /* 图标大小 */
}

.feature-text h3 {
  margin: 0 0 10px 0;
  font-size: 0.22rem;
  font-weight: 700;
}

.feature-text p {
  margin: 0;
  font-size: 0.18rem;
  line-height: 1.6;
  color: #666;
  text-align: left;
}

@media (max-width: 1024px) {
  .feature-text h3 {
    font-size: 0.2rem;
  }
  .feature-text p {
    font-size: 0.16rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-section {
    padding: 50px 20px;
  }
}
.s_value .cont {
  background: #fff;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

.s_value .img {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.s_value .img::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.s_value .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.s_value article {
  width: 50%;
  padding: 0 10%;
  color: #666;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-height: calc(0.24rem * 10);
  overflow-y: auto;
}
.s_value article * {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.s_value article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.s_value article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.s_value article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .s_value .img,
  .s_value article {
    width: 100%;
  }
  .s_value article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }
  .s_value article * {
    font-size: 14px;
    line-height: 20px;
  }
}
.solution-container {
  display: flex;
  padding: 80px 20px;
  gap: 50px;
}
/* --- 左侧悬浮导航 --- */
.sidebar-nav {
  flex: 0 0 300px;
}

.sticky-menu {
  position: sticky;
  top: 100px; /* 距离顶部固定的距离 */
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-blue);
  padding-left: 15px;
}

#scrollspy-menu {
  list-style: none;
  padding: 0;
}

#scrollspy-menu li {
  margin-bottom: 15px;
}

#scrollspy-menu a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

#scrollspy-menu li span {
  margin-right: 15px;
  font-size: 14px;
  opacity: 0.5;
}

/* 激活状态样式 */
#scrollspy-menu li.active a {
  color: var(--primary-blue);
  font-weight: 700;
  transform: translateX(10px);
}

/* --- 右侧内容区 --- */
.content-area {
  flex: 1;
}

.content-block {
  margin-bottom: 100px; /* 增加间距以触发滚动监听 */
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.block-header iconify-icon {
  font-size: 32px;
  color: var(--primary-blue);
}

.block-header h3 {
  font-size: 22px;
  margin: 0;
}

.content-block p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.demo-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 响应式 */
@media (max-width: 992px) {
  .solution-container {
    flex-direction: column;
  }
  .sidebar-nav {
    display: none; /* 移动端通常隐藏此类悬浮导航 */
  }
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 20px 0;
  justify-content: center;
}

.category_list li {
  position: relative;
}

.category_list li a {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  color: #444;
  font-size: 15px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px; /* 圆角胶囊形状 */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap; /* 防止文字换行 */
}

.category_list li a:hover {
  color: #fff;
  background-color: #0056b3; /* 品牌蓝 */
  border-color: #0056b3;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
  transform: translateY(-2px); /* 向上轻微浮动 */
}

.category_list li.active a {
  color: #fff;
  background-color: #0056b3;
  border-color: #0056b3;
  font-weight: 600;
}

.category_list li.active a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #0056b3;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .category_list {
    flex-wrap: nowrap;
    overflow-x: auto; /* 开启横向滚动 */
    justify-content: flex-start;
    padding: 15px 10px;
    -webkit-overflow-scrolling: touch; /* 滚动更顺滑 */
  }

  .category_list::-webkit-scrollbar {
    display: none;
  }

  .category_list li a {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.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%;
  position: relative;
  overflow: hidden;
}
.product-img::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.product-item:hover .product-img img {
  transform: translate(-50%, -50%) scale(1.1);
}
.product-info {
  padding: 0.25rem;
}
.product-info h3 {
  font-size: 0.2rem;
  color: #0a2540;
  margin-bottom: 0.2rem;
  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);
  }
}
.view_more {
  display: inline-flex;
  align-items: center;
  padding: 6px 0.3rem;
  background-color: var(--i_color2);
  color: #fff;
  font-size: 0.16rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 0.02rem solid var(--i_color2);
}
.view_more:hover {
  background-color: transparent;
  color: var(--i_color2);
}
.view_more.line {
  background: #fff;
  color: var(--i_color2);
}
.view_more.line:hover {
  background: var(--i_color);
  color: #fff;
}
.view_more .btn-arrow {
  margin-left: 0.1rem;
  transition: transform 0.3s ease;
}
.view_more:hover .btn-arrow {
  transform: translateX(0.05rem);
}
