/*
Theme Name: Zirconet
Version: 1.0
Description: Anhui Lingju Digital, as a core partner of Google China, owns the only Google Overseas Experience Center in Anhui Province, providing one-stop services for localized foreign trade enterprises in Anhui to go overseas - website construction, Google SEO optimization, Google bidding, Google SNS social media marketing, etc.
Author: Copyright: Anhui Lingju
*/
@charset "utf-8";

:root {
  /* Global Color */
  --i_color: #1d74c6;

  /* Head height */
  --header_height: 0.9rem;
  --header_top_height: 0.9rem;

  /* Default Border Color */
  --border_color: rgba(0, 0, 0, 0.1);
  /* txt color */
  --txt_color: #333;
}
@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.6rem;
    /* --header_top_height: 0.6rem; */
  }
}
@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

@media screen and (max-width: 560px) {
  :root {
    --header_top_height: 0.6rem;
  }
}

/* 通用 */
.title_Box h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  font-weight: 350;
}
.title_Box h2::after {
  content: "";
  display: block;
  width: 0.24rem;
  height: 3px;
  background-color: var(--i_color);
  margin-left: 8px;
}

.title_Box h2::before {
  content: "";
  display: block;
  width: 0.24rem;
  height: 3px;
  background-color: var(--i_color);
  margin-right: 8px;
}

.title_Box h4 {
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  .title_Box h2 {
    font-size: 0.28rem;
  }
}

@media screen and (max-width: 560px) {
  .title_Box h2 {
    font-size: 0.18rem;
  }
  .title_Box h4 {
    font-size: 0.14rem;
  }
}

/* --- --- */

.wrap {
  width: 94vw;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_header {
  width: 94vw;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_l {
  box-sizing: border-box;
  padding-left: 13.2vw;
}
.wrap_r {
  box-sizing: border-box;
  padding-right: 13.2vw;
}
@media screen and (max-width: 1440px) {
  .wrap_l {
    padding-left: 3vw;
  }
  .wrap_r {
    padding-right: 3vw;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 2014;
}

header.fixedHeader {
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}
header > .wrap_header {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  header {
    background: #fff;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  }
}

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo img {
  max-height: 100%;
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 20251027;
  }

  .i_nav > li {
    position: relative;
    flex: 1;
  }
  .i_nav > li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 38%;
    width: 0;
    height: 1px;
    background-color: var(--i_color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.2rem;
    font-weight: bold;
    color: #fff;
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
    text-align: center;
    transition: all 0.5s ease;
  }

  .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > li.active::before {
    width: 100%;
    opacity: 1;
  }

  .i_nav > li:hover > a {
    background-color: #95c80a;
    color: #fff;
  }

  .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.active > a {
    color: #fff;
    background-color: #95c80a;
  }

  .i_nav .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: var(--header_height);
    min-width: 2rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
    font-size: 0;
    text-align: center;
  }

  .i_nav .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    height: 1px;
    background: #eee;
  }
  .i_nav .sub-menu a {
    display: block;
    padding: 0 0.2rem;
    font-size: 0.18rem;
    color: #666;
    line-height: 0.4rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }

  .i_nav .sub-menu .current-menu-item::before,
  .i_nav .sub-menu .current-category-ancestor::before,
  .i_nav .sub-menu .current-post-ancestor::before,
  .i_nav .sub-menu .current-menu-ancestor::before,
  .i_nav .sub-menu .current-menu-parent::before,
  .i_nav .sub-menu li:hover::before {
    width: 100%;
  }

  .i_nav .sub-menu li:hover a {
    color: var(--i_color);
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.54rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav {
    gap: 0 0.5rem;
  }
  .i_nav > li > a {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.4rem;
  }
  .i_nav > li > a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;
    position: fixed;
    top: var(--header_top_height);
    left: 101%;
    width: 100%;
    width: 100vw;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-top: 1px solid rgb(83, 134, 211, 0.3);
    z-index: 9999;
  }
  .i_nav.active {
    opacity: 1;
    left: 0;
  }
  /*滚动条*/
  .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 #f8f8f8;
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 8px;
    right: 0.2rem;
    width: 0.3rem;
    height: 0.3rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }
  .i_nav > .menu-item-has-children span.on {
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }

  .i_nav > li > a {
    padding: 0 0.2rem;
    font-size: 0.14rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }
  .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 {
    color: var(--i_color) !important;
  }

  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 0.13rem;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border_color);
  }

  .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }

  .i_nav .sub-menu .sub-menu {
    display: none;
  }

  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 0.13rem;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }

  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* 移动端导航按钮 */
.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: var(--i_color);
  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 {
    width: 20px;
    height: 15px;
    display: block !important;
    margin-left: 0.15rem;
  }
  .nav_menu i {
    margin-top: -1px;
  }
}

.top_r {
  --size: 0.24rem;
}
.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
  background-color: var(--i_color);
  box-sizing: border-box;
  border-radius: 0.08rem;
  padding: 0.13rem 0.34rem;
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;
  }
}

.search_cont,
.top_language {
  /* height: var(--header_height); */
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.top_search_ico iconify-icon,
.top_language_btn iconify-icon {
  font-size: var(--size);
  color: #fff;
  cursor: pointer;
}

.top_search_ico iconify-icon:hover,
.top_search_ico.on iconify-icon,
.top_language_btn.on iconify-icon {
  /* color: var(--i_color); */
}

.top_language {
}

.top_language_btn {
  padding-right: 0.18rem;
  position: relative;
  cursor: pointer;
}
.top_language_btn::before {
  content: "";
  position: absolute;
  top: 44%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.top_language_btn.on::before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  /* border-top-color: var(--i_color); */
}
.top_language_btn.on p {
  color: var(--i_color);
}

.language_list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(var(--header_height) + 0.2rem);
  right: 0;
  background: #fff;
  min-width: 1.2rem;
  z-index: 2016;
  box-shadow: 0 8px 0.1rem rgb(0 0 0 / 10%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.16rem 0.2rem;
  text-align: left;
}
.language_list.on {
  opacity: 1;
  visibility: visible;
  top: var(--header_top_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);
}

/* @media screen and (max-width:1024px) {
	.language_list dt>h6{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.top_language_btn p{display: none;}
	.top_language_btn iconify-icon{display: block;}
	.language_list dt>h6{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.language_list dt>h6{font-size: 14px;}
	.language_list{-webkit-border-radius:6px; border-radius:6px;}
	.lang_list .trp-ls-language-name{font-size: 13px;}
} */
@media screen and (max-width: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

.top_up_right {
  height: var(--header_top_height);
  display: flex;
  align-items: center;
  position: relative;
}

/* search */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: calc(var(--header_height) + 0.3rem);
  right: 0;
  width: 100%;
  padding: 0.2rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9999999;
}
.top_search.on {
  visibility: visible;
  opacity: 1;
  top: var(--header_top_height);
  border-top: 1px solid var(--i_color);
}
.top_search form {
  width: 90%;
  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('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="white" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: 0.24rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 0.34rem;
  }
}

.full_header_height {
  height: calc(var(--header_height) + var(--header_top_height));
}

.header_top {
  height: var(--header_top_height);
  background-color: #fff;
}

.header_top .wrap_header {
  height: var(--header_top_height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_bottom {
  background-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .full_header_height {
    height: var(--header_top_height);
  }
  .logo img {
    max-height: 70%;
  }
}

@media screen and (max-width: 560px) {
  .logo img {
    max-height: 35%;
  }
  .top_r {
    padding: 0;
    background-color: transparent;
    gap: 0 0.15rem;
  }
  .top_search_ico iconify-icon,
  .top_language_btn iconify-icon {
    color: var(--i_color);
  }
  .top_language_btn {
    padding-right: 0;
  }
  .top_language_btn::before {
    display: none;
  }

  .nav_menu {
    margin-top: -6px;
  }
}

/* banner */

.banner {
  width: 100%;
}
.banner_list {
  position: relative;
  overflow: hidden;
}
.banner_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.banner_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.banner_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 26.15%;
}
.banner_list li > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------- */

.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  border: 0.01rem solid #fff;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.banner-prev {
  left: 1%;
}
.banner-next {
  right: 1%;
}
.banner-prev iconify-icon,
.banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
}
.banner_list .swiper-button-disabled {
  cursor: not-allowed;
}
.banner-prev:hover,
.banner-next:hover {
  background: var(--i_color);
  border: 0.01rem solid var(--i_color);
}

/* -------------------------- */

.banner-pagination {
  display: none;
  text-align: center;
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.banner-pagination .swiper-pagination-bullet {
  border-radius: 1000px;
  overflow: hidden;
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 0.05rem;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.18rem;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.banner01_txt01 {
  width: 34%;
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translate(0, -50%);
}

.banner01_txt01 h2 {
  color: #fff;
  font-size: 0.28rem;
  font-weight: 250;
}

.banner01_txt01 h3 {
  font-size: 0.2rem;
  color: #fff;
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  .banner-prev,
  .banner-next {
    display: none;
  }
  .banner-pagination {
    display: block;
  }
  .banner01_txt01 {
    width: 50%;
    right: 0;
  }
  .banner01_txt01 h2 {
    font-size: 0.2rem;
  }
  .banner01_txt01 h3 {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .banner01_txt01 {
    width: 70%;
  }
  .banner_list .swiper-slide::before {
    padding-bottom: 40%;
  }
  .banner01_txt01 h2 {
    display: none;
  }
  .banner01_txt01 h3 {
    font-size: 0.12rem;
    margin-top: 0.1rem;
  }
  .banner-pagination {
    bottom: 0.1rem;
  }
}

/* 产品中心 */

.Product_Center {
  position: relative;
}

.logo_txt {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.Product_Center_Options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.Product_Center_Options a {
  font-weight: 350;
  display: block;
  position: relative;
  padding-bottom: 0.2rem;
  transition: all 0.4s ease;
  color: var(--i_color);
  overflow: hidden;
}

.Product_Center_Options a::before {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background-color: var(--i_color);
  border-radius: 5rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
  opacity: 0;
}

.Product_Center_Options a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-bottom: 11px solid var(--i_color);
  position: absolute;
  left: 50%;
  bottom: 2px;
  transition: all 0.4s ease;
  opacity: 0;
}

.Product_Center_Options .active a {
  color: var(--i_color);
}
.Product_Center_Options a:hover::before,
.Product_Center_Options .active a::before {
  width: 100%;
  opacity: 1;
}
.Product_Center_Options a:hover::after,
.Product_Center_Options .active a::after {
  opacity: 1;
}

.Product_Center_Options a:hover {
  color: var(--i_color);
}

.Product_Center_exhibit {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.Product_Center_Carousel {
  width: 38%;
}

.Product_Center_list {
  position: relative;
  overflow: hidden;
}
.Product_Center_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Product_Center_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.Product_Center_pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.Product_Center_pic::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.Product_Center_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.Product_Center_pic p {
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  padding: 0.24rem 0.2rem;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.53) 100%
  );
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.Product_Center_list .swiper-slide:hover .Product_Center_pic img {
  transform: scale(1.1);
}
.Product_Center_list .swiper-slide:hover .Product_Center_pic p {
  background: rgba(149, 200, 10, 0.8);
}

/* -------------------------- */
.Product_Center-prev,
.Product_Center-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.48rem;
  height: 0.48rem;
  background: #ffffff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  z-index: 3;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.Product_Center-prev {
  left: 2%;
}
.Product_Center-next {
  right: 2%;
}
.Product_Center-prev iconify-icon,
.Product_Center-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #333;
  transition: all 0.4s ease;
}
.Product_Center_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Product_Center-prev:hover,
.Product_Center-next:hover {
  background: var(--i_color);
}
.Product_Center-prev:hover iconify-icon,
.Product_Center-next:hover iconify-icon {
  color: #fff;
}

.Product_Center_cp {
  width: 59%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 4%;
}

.Product_Center_cp li {
  width: 30.66%;
}

.Product_Center_cp a {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.Product_Center_cp a::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.Product_Center_cp a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.Product_Center_cp a p {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.53) 100%
  );
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.13rem 0.1rem;
  transition: all 0.4s ease;
}

.Product_Center_cp a:hover img {
  transform: scale(1.1);
}
.Product_Center_cp a:hover p {
  background: rgba(149, 200, 10, 0.8);
}

@media screen and (max-width: 1024px) {
  .Product_Center_Carousel,
  .Product_Center_cp {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Product_Center_Options a {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 560px) {
  .Product_Center_Options {
    gap: 0.1rem 0;
  }
  .Product_Center_Options a {
    font-size: 0.13rem;
  }
}

/* 宣传 */
.i_publicity {
  position: relative;
}
.i_publicity::before {
  content: "";
  display: block;
  padding-bottom: 15.65%;
}

.i_publicity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.i_publicity .title_Box {
  width: 90%;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.i_publicity .title_Box h2::before,
.i_publicity .title_Box h2::after {
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .i_publicity::before {
    padding-bottom: 30%;
  }
}

@media screen and (max-width: 560px) {
  .i_publicity::before {
    padding-bottom: 50%;
  }
}

/* 公司介绍 */
.i_Introduction {
  margin-top: -6%;
}

.i_Introduction .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
}

.serviceSCM_three {
  position: relative;
  box-sizing: border-box;
  padding-top: 0.84rem;
  z-index: 2;
  display: flex;
}
.serviceSCM_three_left {
  width: 50%;
  height: 4.4rem;
  border-radius: 0.16rem;
  background-color: #f7fbff;
  box-sizing: border-box;
  padding: 0 2.2%;
  overflow-y: auto;
  margin-left: auto;
}
.serviceSCM_three_left h3 {
  font-size: 0.19rem;
  line-height: 1.5;
  box-sizing: border-box;
  padding: 0.7rem 0 0.3rem 0;
}

/* ===== 滚动条整体 ===== */
.serviceSCM_three_left::-webkit-scrollbar {
  width: 2px;
}

/* ===== 滑轨背景 ===== */
.serviceSCM_three_left::-webkit-scrollbar-track {
  background: #e5f0fa;
  border-radius: 2px;
}

/* ===== 滑块 ===== */
.serviceSCM_three_left::-webkit-scrollbar-thumb {
  background: #99c2f0;
  border-radius: 3px;
  transition: background 0.2s;
}
.serviceSCM_three_left::-webkit-scrollbar-thumb:hover {
  background: #66a3e6;
}

/* ===== Firefox ===== */
.serviceSCM_three_left {
  scrollbar-width: thin;
  scrollbar-color: #99c2f0 #e5f0fa;
}

.serviceSCM_three_left h4 {
  font-size: 0.32rem;
  color: #333;
  line-height: 131.25%;
  font-weight: bold;
  margin: 0.15rem 0 0.3rem 0;
}
.serviceSCM_three_right {
  width: 56%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.16rem;
  overflow: hidden;
  z-index: -1;
}
.serviceSCM_three_right::after {
  content: "";
  display: block;
  padding-bottom: 61.3%;
}
.serviceSCM_three_right img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1440px) {
  .serviceSCM_three {
    padding-top: 1rem;
  }
  .serviceSCM_three_left h3 {
    min-height: 2.2rem;
  }
  .serviceSCM_three_left h4 {
    font-size: 0.28rem;
    margin: 0.15rem 0 0.2rem 0;
  }
}
@media screen and (max-width: 1200px) {
  .serviceSCM_three_left h3 {
    font-size: 0.16rem;
  }
  .serviceSCM_three {
    padding-top: 0.8rem;
  }
  .serviceSCM_three_bac {
    padding: 0.6rem 0;
  }
  .serviceSCM_three_left h3 {
    min-height: 2rem;
  }
  .serviceSCM_three_left h4 {
    font-size: 0.24rem;
    margin: 0.1rem 0 0.15rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .i_Introduction {
    margin-top: 0.4rem;
  }
  .serviceSCM_three {
    padding-top: 0.6rem;
  }
  .serviceSCM_three_left {
    height: 3rem;
  }
  .serviceSCM_three_left h3 {
    padding: 0.3rem 0;
  }
  .serviceSCM_three_left h4 {
    font-size: 0.22rem;
    margin: 0.15rem 0;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .serviceSCM_three_right {
    width: 100%;
    position: relative;
    top: unset;
    right: unset;
    border-radius: 0.1rem;
    z-index: 1;
  }
  .serviceSCM_three_left {
    width: 100%;
    border-radius: 0.1rem;
    margin-bottom: 0.2rem;
  }
  .serviceSCM_three {
    flex-direction: column-reverse;
  }
  .serviceSCM_three {
    padding-top: 0rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

.wrap > .serviceSCM_three:nth-of-type(even) {
}

.wrap > .serviceSCM_three:nth-of-type(even) .serviceSCM_three_left {
  margin-left: 0;
}

.wrap > .serviceSCM_three:nth-of-type(even) .serviceSCM_three_right {
  left: auto;
  right: 0;
}

/* 环境展示 */
.Environmental_Display {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(228, 244, 255, 0.95) 55%
  );
}

.Environmental_list {
  position: relative;
  overflow: hidden;
}
.Environmental_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Environmental_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.Environmental_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 61%;
}
.Environmental_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

/* -------------------------- */
.Environmental-prev,
.Environmental-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background-color: rgb(0, 0, 0, 0.7);
  z-index: 3;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.Environmental-prev {
  left: 3%;
}
.Environmental-next {
  right: 3%;
}
.Environmental-prev iconify-icon,
.Environmental-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.Environmental_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Environmental-prev:hover,
.Environmental-next:hover {
  background: var(--i_color);
}

/* -------------------------- */
.Environmental-pagination {
  margin-top: 0.3rem;
  text-align: center;
}
.Environmental-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.Environmental-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .Environmental-pagination {
    display: block;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

/* 主页新闻 */
.i_news {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f8f8f9 31%);
}

.i_news_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn_a {
  display: table;
  cursor: pointer;
}

.btn_a a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.13rem 0.15rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem 0 0.2rem 0;
}

.btn_a a::before {
  content: "";
  display: block;
  width: 32%;
  height: 100%;
  background-color: #d1e2f3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.4s ease;
}

.btn_a a iconify-icon {
  font-size: 0.22rem;
  margin-left: 0.16rem;
}

.btn_a:hover a::before {
  width: 100%;
}

.i_news_list {
  position: relative;
  overflow: hidden;
}
.i_news_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.i_news_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

/* -------------------------- */
.i_news-pagination {
  display: none;
  margin-top: 0.3rem;
  text-align: center;
}
.i_news-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.i_news-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.i_news_item {
  box-sizing: border-box;
  background-color: #fff;
  padding: 0.3rem;
  border-radius: 8px;
}

.i_news_item_img {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.i_news_item_img::before {
  content: "";
  display: block;
  padding-bottom: 54.8%;
}
.i_news_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.i_news_item h4 {
  font-weight: 250;
  transition: all 0.4s ease;
}

.i_news_item h6 {
  font-weight: normal;
  transition: all 0.4s ease;
}

.i_news_list .swiper-slide:hover .i_news_item_img img {
  transform: scale(1.1);
}
.i_news_list .swiper-slide:hover .i_news_item h4 {
  color: var(--i_color);
}
.i_news_list .swiper-slide:hover .i_news_item h6 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .i_news-pagination {
    display: block;
  }
  .i_news .wrap_l {
    padding-right: 3vw;
  }
  .btn_a a {
    padding: 0.1rem 0.15rem;
  }
}

@media screen and (max-width: 560px) {
  .btn_a a {
    padding: 0.04rem 0.15rem;
  }
  .btn_a a i {
    font-size: 0.14rem;
  }
}

/* footer */
footer {
  background-color: #2c2c2c;
}

.footer_box .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.footer_box .wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #565656;
  position: absolute;
  left: 0;
  top: 18%;
}

.footer_left {
  width: 35.8%;
  box-sizing: border-box;
  border-right: 1px solid #565656;
}

.footer_logo {
  display: block;
  width: 64%;
  padding-top: 0.55rem;
  padding-bottom: 0.33rem;
}

.footer_logo img {
  width: 100%;
}

.footer_mail {
  display: block;
  font-size: 0.36rem;
}

.footer_contact {
  margin-top: 0.15rem;
  display: flex;
  display: -webkit-flex;
  gap: 0.13rem 0;
  flex-direction: column;
}
.footer_contact li {
  font-size: 0.18rem;
  color: #d5d5d5;
  font-weight: normal;
}
.footer_contact li a {
  font-size: 0.18rem;
  color: #d5d5d5;
  font-weight: normal;
  transition: all 0.3s ease;
}
.footer_contact li a:hover {
  color: var(--i_color);
}
.footer_share {
  display: flex;
  display: -webkit-flex;
  gap: 0.28rem;
  margin-top: 0.46rem;
}
.footer_share dt {
}
.footer_share dt a {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 0.44rem;
  height: 0.44rem;
  background-color: #424242;
  transition: all 0.4s ease;
}
.footer_share dt a iconify-icon {
  font-size: 0.22rem;
  color: #999999;
  transition: all 0.3s ease;
}
.footer_share dt a:hover {
  background-color: var(--i_color);
  transform: translateY(-0.05rem);
}
.footer_share dt a:hover iconify-icon {
  color: #fff;
}

.footer_right {
  width: 60%;
}

.footer_right_txt {
  width: 75%;
  font-weight: 350;
  padding-top: 0.55rem;
  padding-bottom: 0.33rem;
}

.footer_right_menu {
}

.f_nav {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  /* gap: 0 0.2rem; */
}
.f_nav dt {
}

.f_nav h5 {
  margin-bottom: 0.32rem;
  font-weight: bold;
  font-size: 0.24rem;
  color: #d5d5d5;
}

.f_nav ul {
}
.f_nav li {
}
.f_nav li a {
  display: block;
  padding: 6px 0;
  font-size: 0.18rem;
  color: #d5d5d5;
  font-weight: normal;
}

.f_nav a:hover {
  color: var(--i_color);
}

.footer_we {
  width: 26%;
}

.footer_we p {
  color: #d5d5d5;
}

.footer_3_chat {
}
.footer_3_chat a {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.15rem 0.2rem;
  border: 1px solid #fff;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}
.footer_3_text {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.footer_3_text h3 {
  font-size: 0.2rem;
  color: #fff;
  font-weight: bold;
  margin-right: 0.08rem;
  transition: all 0.3s ease;
}
.footer_3_text img {
  width: 0.38rem;
}

.footer_3_chat a:hover {
  background-color: #fff;
}
.footer_3_chat a:hover h3 {
  color: var(--i_color);
}

.footer_bottom_all {
  background-color: #2c2c2c;
}
.footer_bottom_bac {
  box-sizing: border-box;
  padding: 0.2rem 0;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #232323;
}
.footer_bottom {
}
.footer_bottom p {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer_bottom p a {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.footer_bottom p a:hover {
  color: #fff;
}

#a_left {
  /* margin-left: 12%; */
}

@media screen and (max-width: 1024px) {
  .footer_left {
    width: 100%;
    border: none;
  }
  .footer_right {
    display: none;
  }
  .footer_box .wrap::before {
    display: none;
  }
  .footer_logo {
    width: 25%;
    padding: 0.2rem 0;
  }
  .footer_mail {
    font-size: 0.24rem;
  }
  #a_left {
    margin-left: 0;
  }
  .footer_contact li,
  .footer_contact li a {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_bottom_bac {
    border-radius: 0rem 0rem 0 0;
  }
}
@media screen and (max-width: 560px) {
  .footer_logo {
    width: 45%;
  }
}

/* 内页banner */

.in_banner {
  width: 100%;
  font-size: 0;
  overflow: hidden;
  position: relative;
}
.in_banner img {
  width: 100%;
  width: 100vw;
}
.in_banner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #032a4f -4%, rgba(29, 116, 198, 0) 59%);
  position: absolute;
  left: 0;
  top: 0;
}

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #f4f4f4;
  position: relative;
}
.in_position .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #333;
  position: relative;
  line-height: 20px;
}
.in_position a:first-child {
  padding-left: 0.26rem;
}
.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 18px;
  height: 18px;
  background: url(static/imgs/home.webp) no-repeat center;
  background-size: contain;
}
.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;
  }
}

/* -----------------------  产品列表页 */
.category_page {
}

.categoryBox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.cat_nav {
  flex-shrink: 0;
  width: 25%;
  box-sizing: border-box;
  position: relative;
}
.catList_show {
  width: 71.75%;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .cat_nav {
    width: 28%;
  }
}
@media screen and (max-width: 1024px) {
  .categoryBox {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .catList_show {
    width: 100%;
    padding: 0 0;
    margin: 0 0;
  }
}
@media screen and (max-width: 560px) {
  .categoryBox {
    margin-bottom: 60px;
  }
}

.cat_nav_tit {
  margin-bottom: 0.2rem;
  position: relative;
  display: none;
}
.cat_nav_tit h4 {
  font-size: 0.28rem;
  color: #333;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  position: relative;
}
.cat_nav_list li {
  margin-bottom: 0.16rem;
  position: relative;
  border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid #d6d6d6;
}

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  border-radius: 8px 8px 0px 0px;
}
.cat_fold_tit a {
  padding: 0.18rem 0;
  width: 100%;
  font-size: 0.18rem;
  font-weight: 250;
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.24rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_tit a:hover,
.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: var(--i_color);
}
.active .cat_fold_tit {
  background: var(--i_color);
}
.active .cat_fold_tit a {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  color: #fff;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cat_fold_sub {
  display: none;
  padding: 0.17rem 0;
  background-color: #f8f8f9;
}
.cat_fold_sub dt {
  box-sizing: border-box;
  position: relative;
}
.cat_fold_sub a {
  display: block;
  padding: 0.09rem 0.18rem;
  font-size: 0.18rem;
  box-sizing: border-box;
  color: #666;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cat_fold_sub dt:hover a,
.cat_fold_sub dt.active a {
  color: #fff;
  background-color: #95c80a;
}

.cat_nav_list .active {
  border-bottom: none;
}

@media screen and (max-width: 1440px) {
  .cat_nav_tit h4 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .cat_nav_tit h4 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 1024px) {
  .cat_nav {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background: none;
  }
  .cat_nav_tit {
    padding: 14px 28px;
    margin: 0 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--i_color);
    border-radius: 8px;
  }
  .cat_nav_tit h4 {
    font-size: 20px;
    color: #fff;
  }
  .cat_nav_tit iconify-icon {
    display: block;
    margin-left: auto;
    font-size: 26px;
    color: #fff;
  }

  .cat_nav_list {
    display: none;
    margin-top: -10px;
    box-sizing: border-box;
    padding: 40px 30px 24px;
    background: #fff;
    border-radius: 0 0 10px 10px;
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub a {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .cat_nav_tit {
    padding: 12px 20px;
  }
  .cat_nav_tit h4 {
    font-size: 18px;
  }
  .cat_nav_tit iconify-icon {
    font-size: 22px;
  }

  .cat_fold_tit a {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .cat_nav_tit h4 {
    font-size: 16px;
  }

  .cat_nav_list {
    padding: 30px 20px 10px;
  }

  .cat_fold_tit a {
    font-size: 15px;
  }
  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }
  .cat_fold_sub a {
    font-size: 14px;
  }
}

.pList {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem 2%;
}

.pList li {
  width: 32%;
}

.pList a {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.pList a::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pList a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.pList a p {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.53) 100%
  );
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.13rem 0.1rem;
  transition: all 0.4s ease;
}

.pList a:hover img {
  transform: scale(1.1);
}
.pList a:hover p {
  background: rgba(149, 200, 10, 0.8);
}

@media screen and (max-width: 768px) {
  .pList li {
    width: 49%;
  }
}

/* 产品详情页面 */
.Product_DesBox .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.Product_Des_info {
  width: 71.5%;
}

.p_data {
}
.p_data_box {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  overflow: hidden;
}

.pGallery {
  flex-shrink: 0;
  width: 38%;
  height: max-content;
  position: relative;
}

.pGallery_list {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pGallery_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.pGallery_list .swiper-slide {
  flex-shrink: 0;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
}
.pGallery_list .swiper-slide span {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pGallery_list .swiper-slide span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pGallery_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pGallery-pagination {
  position: absolute;
  right: 0.24rem;
  bottom: 0.2rem;
  font-weight: bold;
}
.pGallery-pagination .swiper-pagination-current {
  font-size: 0.26rem;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .p_data .p_data_box {
    flex-wrap: wrap;
    gap: 0 0;
  }
  .pGallery,
  .Product_Des_info {
    width: 100%;
  }
}

.pTit {
  margin-bottom: 0.2rem;
  color: var(--i_color);
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .pTit {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  .pTit {
    margin-bottom: 14px;
    font-size: 17px;
  }
}

.p_info {
  width: 100%;
  box-sizing: border-box;
}

.pName {
  position: relative;
  font-weight: 350;
}

.pDes {
  position: relative;
}
.pDes article {
}

@media screen and (max-width: 1024px) {
  .p_info {
    width: 100%;
    margin-top: 0.2rem;
  }
}

.pMenu {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.i_more p {
  padding: 0.12rem 0.3rem;
  background-color: var(--i_color);
  border-radius: 0.08rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  transition: all 0.4s ease;
}
.i_more:hover p {
  background-color: transparent;
  color: var(--i_color);
}

.pMenu > .i_more:nth-of-type(2) {
  margin-left: 0.24rem;
}

.pShare {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.13rem;
}
.pShare dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.pShare dt a {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  position: relative;
}
.pShare dt iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #999;
}

.pShare dt a:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 768px) {
  .pShare {
    margin: 20px 0 0;
    width: 100%;
  }
  .pShare dt a {
    width: 30px;
    height: 30px;
  }
  .pShare dt iconify-icon {
    font-size: 18px;
  }
}

@media screen and (max-width: 560px) {
  .i_more p {
    padding: 0.04rem 0.2rem;
  }
}

/* 功能选项 */
.Function_options {
  background-color: #f8f8f9;
}

.p_tags {
  padding-bottom: 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16rem 0;
}
.p_tags > p {
  margin-right: 0.14rem;
  font-size: 0.18rem;
  font-weight: 350;
}
.p_tags a {
  margin-right: 0.3rem;
  font-size: 18px;
}
.p_tags a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 768px) {
  .p_tags {
    gap: 12px 0;
  }
  .p_tags > p {
    font-size: 17px;
  }
  .p_tags a {
    margin-right: 16px;
    font-size: 13px;
  }
}

.p_view_other {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 4%;
}
.p_view_other li {
  max-width: 46%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.14rem;
  align-items: center;
}
.p_view_other a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_view_other span {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 15%);
  position: relative;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
}
.p_view_other p {
  font-size: 0.16rem;
}
.p_view_other p b {
  font-size: 0.18rem;
  font-weight: bold;
}

.p_view_other li:hover span {
  background: var(--i_color);
}
.p_view_other li:hover span iconify-icon {
  color: #fff;
}
.p_view_other a:hover p {
  color: var(--i_color);
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .p_view_other span {
    width: 30px;
    height: 30px;
  }
  .p_view_other span iconify-icon {
    font-size: 20px;
  }
  .p_view_other p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p_view_other {
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .p_view_other li {
    max-width: 100%;
  }
  .p_view_other span {
    order: -1;
  }
  .p_view_other p {
    font-size: 14px;
  }
  .p_view_other p b {
    font-size: 17px;
  }
}

/* 相关产品 */
.Related_products .pList li {
  width: 23.5%;
}

@media screen and (max-width: 1024px) {
  .Related_products .pList li {
    width: 49%;
  }
}

/* -----------------------------  news页面 */
.news_box {
  background: linear-gradient(180deg, #ffffff -9%, #f8f8f9 26%);
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2%;
}

.news_list li {
  width: 32%;
}

.news_list li:hover .i_news_item_img img {
  transform: scale(1.1);
}
.news_list li:hover .i_news_item h4 {
  color: var(--i_color);
}
.news_list li:hover .i_news_item h6 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .news_list li {
    width: 49%;
  }
}

/* -----------------------------  联系我们页面 */
.contact_box .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  align-items: center;
  justify-content: space-between;
}

.contact_left {
  width: 59.93%;
  box-sizing: border-box;
  padding: 0.4rem 0.3rem;
  border-radius: 8px;
  background-color: #f8f8f9;
}

.contact_left_tie {
  font-size: 0.36rem;
  font-weight: 350;
}

#wpforms-89 {
  --wpforms-field-size-input-height: 50px;
  --wpforms-field-border-size: 0;
  --wpforms-button-background-color: var(--i_color);
  --wpforms-button-border-color: var(--i_color);
  --wpforms-page-break-color: var(--i_color);
  --wpforms-label-error-color: #d63637;
}
#wpforms-89 {
  margin: 0;
  padding: 0;
}
#wpforms-form-89 {
  width: 100%;
  position: relative;
}

#wpforms-89 .wpforms-field-container {
}
#wpforms-89 .wpforms-field-container > .wpforms-field {
  width: 100%;
  padding: 0 1px 20px;
  margin: 0 0 10px;
  overflow-x: initial !important;
}

#wpforms-89 .wpforms-field-container .wpforms-field-label {
  height: 0;
  font-size: 0;
  margin: 0 0;
}
#wpforms-89 .wpforms-field-container .wpforms-required-label {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 15px;
  color: #f00;
  font-weight: bold;
}

#wpforms-89 .wpforms-field-container .wpforms-field > input,
#wpforms-89 .wpforms-field-container textarea {
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#wpforms-89 .wpforms-form label.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
}

#wpforms-89 .wpforms-field-container .wpforms-field > input,
#wpforms-89 .wpforms-field-container textarea,
#wpforms-89 .wpforms-field-container select,
#wpforms-89 .wpforms-field-container .choices {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0;
}
#wpforms-89 .wpforms-field-container .wpforms-field > input,
#wpforms-89 .wpforms-field-container textarea,
#wpforms-89 .wpforms-field-container select {
  padding-left: 14px;
  padding-right: 14px;
}
#wpforms-89 .wpforms-field-container textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}
#wpforms-89 .wpforms-field-container fieldset ul {
  padding: 0 2px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
#wpforms-89 .wpforms-field-container select {
  cursor: pointer;
}
#wpforms-89 .wpforms-field-container .wpforms-datepicker-wrap {
  width: 310px;
}
#wpforms-89 .wpforms-field-container .wpforms-datepicker-wrap input {
  width: 100%;
  max-width: 100%;
}
#wpforms-89 .wpforms-field-container .wpforms-datepicker-clear {
  right: 10px;
}
#wpforms-89 .wpforms-field-container em.wpforms-error,
#wpforms-89 .wpforms-field-container .mailcheck-error {
  position: absolute;
  margin: 0 0;
  bottom: -2px;
}

/* #wpforms-89 input::placeholder, #wpforms-89 textarea::placeholder{color:#333;font-size:16px} */

#wpforms-89 .wpforms-field-container {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#wpforms-89-field_1-container,
#wpforms-89-field_2-container,
#wpforms-89-field_3-container,
#wpforms-89-field_4-container {
  width: 48% !important;
}

#wpforms-89 .wpforms-submit-container {
  width: 190px;
  padding: 0 0;
}
#wpforms-89 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: var(--i_color);
  border-radius: 5rem;
}
#wpforms-89 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-89 .wpforms-submit-container button:hover {
  background: #000;
}

.contact_right {
  box-sizing: border-box;
  width: 35.8%;
}

.contact_right_list {
  display: flex;
  flex-direction: column;
  gap: 0.32rem 0;
}

.contact_right_list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact_right_list img {
  width: 0.4rem;
  height: 0.4rem;
}

.contact_right_list div {
  width: 88.5%;
}

.contact_right_list p {
  font-size: 0.16rem;
  font-weight: 350;
  line-height: 1.5;
}

.contact_right_list h6 {
  font-weight: normal;
  font-size: 0.16rem;
  color: #666;
}
.contact_right_list a {
  font-size: 0.18rem;
  font-weight: 350;
  line-height: 1.5;
  transition: all 0.4s;
}
.contact_right_list a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .contact_left,
  .contact_right {
    width: 100%;
  }

  .contact_right {
    order: -1;
  }

  .contact_left_tie {
    font-size: 0.24rem;
  }
  .contact_right_list img {
    width: 0.3rem;
    height: 0.3rem;
  }
  .contact_right_list div {
    width: 93%;
  }
}
@media screen and (max-width: 768px) {
  .contact_right_list a {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .contact_left_tie {
    font-size: 0.2rem;
  }
  .contact_right_list img {
    width: 0.25rem;
    height: 0.25rem;
  }
  .contact_right_list {
    gap: 0.2rem 0;
  }
}

.contact__map {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contact__map::before {
  content: "";
  display: block;
  padding-bottom: 41.5%;
}
.contact__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .contact__map::before {
    padding-bottom: 50%;
  }
}
@media screen and (max-width: 560px) {
  .contact__map::before {
    padding-bottom: 100%;
  }
}

/* -----------------------------  关于我们页面 */

.about__ {
  background: url(https://lingjuimg.com/wp-content/uploads/ZeKeNai/2025/10/about__bg.webp)
    no-repeat;
  background-size: cover;
}
.about__ .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.about__ .t {
  width: 50%;
}

.about__ .t .title_Box h2 {
  justify-content: flex-start;
}

.about__ .t h3 {
  padding-top: 0.16rem;
  font-size: 0.34rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.about__ .t h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.5rem;
  height: 5px;
  background: var(--i_color);
}
.about__ .t span {
  font-size: 0.18rem;
  line-height: 1.8;
  font-weight: normal;
}

.ai_data {
  width: 40%;
  display: flex;
  justify-content: space-between;
}

.ai_data li span,
.ai_data li i {
  color: var(--i_color);
  font-size: 0.84rem;
  font-weight: bold;
}

.ai_data li i {
  margin-left: 0.15rem;
}

.ai_data li div {
  display: flex;
  align-items: center;
  margin-top: 0.15rem;
  position: relative;
}

.ai_data li div::before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 10%;
}

.ai_data li div::before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ai_data li div::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background-color: rgb(34, 34, 34, 0.5);
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
}

.ai_data li div text {
  font-size: 0.24rem;
  color: #222222;
  margin-left: 0.3rem;
}

.about__ .ai_data {
  margin-left: auto;
}

@media screen and (max-width: 1440px) {
  .about__ .t h3 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .about__ .t {
    width: 100%;
  }
  .about__ .t h3 {
    font-size: 20px;
  }
  .about__ .ai_data {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 0 4%;
    margin-top: 0.2rem;
  }
  .ai_data li span,
  .ai_data li i {
    font-size: 0.4rem;
  }
  .ai_data li div text {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .about__ .t span {
    font-size: 14px;
  }
  .ai_data li div {
    margin-top: 0;
  }
  .ai_data li span,
  .ai_data li i {
    font-size: 0.22rem;
  }
  .ai_data li div img {
    width: 0.35rem;
  }
  .ai_data li div text {
    font-size: 0.14rem;
    margin-left: 0.12rem;
  }
  .ai_data li div::after {
    display: none;
  }
}

.about__video {
  position: relative;
  overflow: hidden;
}
.about__video::before {
  content: "";
  display: block;
  padding-bottom: 28%;
}
.about__video > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: none;
}
.vBtn span {
  position: relative;
}
.vBtn span::before,
.vBtn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  border: 1px solid rgb(255 255 255 / 60%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.vBtn span::before {
  width: 82%;
  height: 82%;
  -webkit-animation: diffuse 2s infinite linear;
  animation: diffuse 2s infinite linear;
}
.vBtn span::after {
  width: 100%;
  height: 100%;
  -webkit-animation: diffuse 2s infinite linear;
  animation: diffuse 2s infinite linear;
}
@keyframes diffuse {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
    -ms-transform: translate(-50%, -50%) scale(1.8);
    -o-transform: translate(-50%, -50%) scale(1.8);
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    -moz-transform: translate(-50%, -50%) scale(1.8);
  }
}
.vBtn i {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: rgb(225, 225, 225, 60);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.vBtn iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.4rem;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .vBtn i {
    width: 60px;
    height: 60px;
  }
  .vBtn iconify-icon {
    font-size: 34px;
  }
}
@media screen and (max-width: 560px) {
  .vBtn i {
    width: 50px;
    height: 50px;
  }
  .vBtn iconify-icon {
    font-size: 30px;
  }
}

/* 分类大纲 */

.Classification_outline .pList li {
  width: 23.5%;
}

.Classification_outline .pList a::after {
  padding-bottom: 67.2%;
}

.Classification_outline .pList a p {
  opacity: 0;
}

.Classification_outline .pList li:hover p {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .Classification_outline .pList li {
    width: 49%;
  }
  .Classification_outline .pList a p {
    opacity: 1;
  }
}

@media screen and (max-width: 560px) {
  .Classification_outline .pList a::after {
    padding-bottom: 100%;
  }
}

/* 科研 */
.homeAdv {
}

.homeAdv_tit {
  padding-bottom: 1.2rem;
  background: var(--i_color);
  position: relative;
}

.homeAdv_tit .tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 0.2rem;
}

.homeAdv_tit h3,
.homeAdv_tit p {
  text-align: center;
  color: #fff;
}
.homeAdv_tit h3 {
  font-weight: 350;
}
.homeAdv_tit p {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: rgb(255 255 255 / 70%);
}
@media screen and (max-width: 1024px) {
  .homeAdv_tit {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .homeAdv_tit {
    padding-bottom: 40px;
  }
  .homeAdv_tit .tit {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 560px) {
  .homeAdv_tit .tit {
    width: 100%;
  }
  .homeAdv_tit h3 {
    font-size: 16px;
  }
}

.homeAdv_cont {
  background: url(https://lingjuimg.com/wp-content/uploads/ZeKeNai/2025/10/homeAdv_bg.webp)
    no-repeat center;
  background-size: cover;
}
.homeAdv_cont .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.4rem 0;
  margin-top: -2%;
}

.homeAdv_contTit {
  flex-shrink: 0;
  width: 28.58%;
  display: flex;
  flex-direction: column;
  gap: 0.28rem 0;
}
.homeAdv_contTit li {
  padding: 0.22rem 0.3rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  background: #fff;
  box-shadow: var(--boxShadow);
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.homeAdv_contTit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--i_color);
}
.homeAdv_contTit img {
  width: 0.36rem;
  height: 0.36rem;
}
.homeAdv_contTit p {
  font-size: 0.2rem;
  font-weight: bold;
  position: relative;
}

.homeAdv_contTit li.active::before {
  width: 100%;
}

.homeAdv_contTit li.active img {
  -webkit-filter: contrast(0) brightness(2);
  filter: contrast(0) brightness(2);
}

.homeAdv_contTit li.active p {
  color: #fff;
}

.homeAdv_contTit li::before,
.homeAdv_contTit img,
.homeAdv_contTit p {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.homeAdv_contShow {
  width: 65.75%;
}
.homeAdv_contShow dt {
  position: relative;
  left: 0.5rem;
  height: 0;
  background: #fff;
  -webkit-border-radius: 0.2rem;
  border-radius: 0.2rem;
  box-shadow: var(--boxShadow);
  overflow: hidden;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.homeAdv_contShow dt.active {
  height: auto;
  left: 0;
}

.homeAdv_pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s 1s;
  transition: all 0.5s 1s;
}
.homeAdv_pic::before {
  content: "";
  display: block;
  padding-bottom: 51.3%;
}
.homeAdv_pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.homeAdv_contShow span {
  display: block;
  padding: 0.3rem;
  color: #666;
}

@media screen and (max-width: 1440px) {
  .homeAdv_contTit {
    margin-top: 0.2rem;
    width: 27%;
  }
  .homeAdv_contTit li {
    padding: 0.22rem 0.3rem;
  }
  .homeAdv_contTit p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1200px) {
  .homeAdv_contTit {
    margin-top: 0.1rem;
    width: 30%;
  }
  .homeAdv_contTit li {
    padding: 0.16rem 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .homeAdv_cont {
    padding-top: 40px;
  }
  .homeAdv_cont .wrap {
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .homeAdv_contShow {
    width: 100%;
    margin-top: 0;
  }

  .homeAdv_contTit {
    margin: 0 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 18px 3%;
  }
  .homeAdv_contTit li {
    margin: 0 0;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 16px;
  }
  .homeAdv_contTit iconify-icon {
    font-size: 30px;
  }
  .homeAdv_contTit p {
    font-size: 16px;
  }

  .homeAdv_contShow dt {
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .homeAdv_contTit li {
    padding: 12px 16px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }

  .homeAdv_contShow span {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 560px) {
  .homeAdv_contTit li {
    padding: 10px 14px;
    gap: 0 10px;
  }
  .homeAdv_contTit iconify-icon {
    font-size: 24px;
  }
  .homeAdv_contTit p {
    font-size: 13px;
  }
}

/* -----------------------------  定制页面 */

.IntroductionBox {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.Introduction_pic {
  width: 52.9%;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.Introduction_pic img {
  width: 100%;
}

.Introduction_txt {
  width: 54.3%;
  box-sizing: border-box;
  background: #f8f8f9;
  border-radius: 8px;
  padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  overflow: hidden;
  position: relative;
}

.Introduction_txt .title_Box h2 {
  justify-content: flex-start;
}

.Introduction_txt .title_Box img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .IntroductionBox {
    padding-top: 0;
  }
  .Introduction_pic,
  .Introduction_txt {
    width: 100%;
  }
  .Introduction_pic {
    position: relative;
    margin-top: 0.3rem;
  }
  .Introduction_txt {
    order: -1;
    padding: 0.2rem;
  }
  .Introduction_txt .title_Box img {
    display: none;
  }
}

/* 研发定制产品 */
.R_D {
  background: url(https://lingjuimg.com/wp-content/uploads/ZeKeNai/2025/10/R_DBa.webp)
    no-repeat center;
  background-size: cover;
}

.R_D .pList a::after {
  padding-bottom: 58.1%;
}

.R_D .pList a p {
  opacity: 0;
}

.R_D .pList li:hover p {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .R_D .pList a::after {
    padding-bottom: 100%;
  }
  .R_D .pList a p {
    opacity: 1;
  }
}

/* 开始使用 */

.step {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
  gap: 0.3rem 0;
  margin-top: 0.4rem;
  padding: 0 0.1rem;
  padding-bottom: 0.45rem;
}

.step li {
  width: 28.75%;
  box-sizing: border-box;
  position: relative;
}

.step h3 {
  width: 65%;
  font-size: 0.32rem;
  font-weight: 350;
}

.step h2 {
  position: absolute;
  right: -5%;
  top: -15%;
  font-size: 1rem;
  font-weight: 350;
  color: transparent;
  -webkit-text-stroke: 1px #dbdfe4;
  text-stroke: 1px #dbdfe4;
  z-index: -1;
}

.step::before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background: #f8f8f9;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 8px;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .step {
    margin-top: 0.4rem;
    padding: 0;
  }
  .step li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.1rem;
  }
  .step h2,
  .step::before {
    display: none;
  }

  .step h3 {
    font-size: 0.24rem;
  }
  .step p {
    margin-top: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .step h3 {
    font-size: 0.16rem;
  }
}
