/*
Theme Name: Zhenmei
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: #4faa4b;

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

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

/* 通用 */
.btnBox {
  display: table;
}

.btn_ {
  width: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0.1rem 0;
  background-color: #fff;
  color: var(--i_color);
  transition: all 0.4s ease;
}

.btn_ iconify-icon {
  font-size: 0.22rem;
  margin-left: 0.12rem;
}

.baColor {
  background-color: transparent;
  color: var(--i_color);
  border: 1px solid var(--i_color);
}

.btnBox:hover .btn_ {
  background-color: var(--i_color);
  color: #fff;
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}
.btnBox:hover .baColor {
  background-color: var(--i_color);
  color: #fff;
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}

@media screen and (max-width: 1024px) {
  .btn_ {
    width: 1.4rem;
    padding: 0.05rem 0;
  }
  .btn_ span {
    font-size: 0.16rem;
  }
  .btn_ iconify-icon {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .btn_ {
    width: 1.2rem;
    padding: 0.02rem 0;
  }
  .btn_ span {
    font-size: 0.14rem;
  }
  .btn_ iconify-icon {
    font-size: 0.15rem;
    margin-left: 0.05rem;
  }
}

/* 标题 */

.title_box {
}

.title_box h2 {
  font-size: 0.42rem;
}

@media screen and (max-width: 1024px) {
  .title_box h2 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .title_box h2 {
    font-size: 0.18rem;
  }
}

/* --- --- */

.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.4vw;
}
.wrap_r {
  box-sizing: border-box;
  padding-right: 13.4vw;
}

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

/* header */

header .wrap {
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20251108;
  background-color: #fff;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(0 0 0 / 10%);
}
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;
  }
}

/* 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: 66%;
}
.logo img {
  max-height: 100%;
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 8.1%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 0.6rem;
    position: relative;
    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }
  .i_nav > li::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--i_color);
    border-radius: 5rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: #333;
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
  }

  .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 {
    right: initial;
    left: 0;
    width: 100%;
  }
  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > li.active > a {
    color: var(--i_color);
  }

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

  .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.16rem;
    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_height);
    left: 101%;
    width: 100%;
    width: 100vw;
    height: calc(100vh - var(--header_height));
    background: #fff;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    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 var(--border_color);
    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.16rem;
    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.15rem;
    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 {
    display: block !important;
    margin-left: 0.3rem;
  }
}

.top_r {
  --size: 0.24rem;
}
.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  gap: 0 0.22rem;
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;
  }
}

.ift_mail {
  color: #333;
  transition: all 0.4s ease;
}
.ift_mail iconify-icon {
  font-size: 0.3rem;
}
.ift_mail:hover {
  color: var(--i_color);
}

.search_cont,
.top_language {
  height: var(--header_height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  position: relative;
}
.top_search_ico iconify-icon,
.top_language_btn iconify-icon {
  font-size: var(--size);
  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 {
  position: relative;
}
.top_language_btn {
  padding: 0.1rem 0.18rem 0.1rem 0.22rem;
  position: relative;
  cursor: pointer;
}

.top_language_btn iconify-icon {
  display: none;
}

.top_language_btn::after {
  content: "";
  position: absolute;
  top: 23%;
  left: 0;
  width: 1px;
  height: 25px;
  background-color: #d6d6d6;
}

.top_language_btn::before {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #777;
  -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_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: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .top_language_btn {
    padding: 0;
  }
  .top_language_btn::after,
  .top_language_btn::before {
    display: none;
  }
  .top_language_btn iconify-icon {
    display: block;
    margin-bottom: 0.05rem;
  }
  .top_language_btn span {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .logo a {
    height: 50%;
  }
  .language_list dt > h6 {
    font-size: 15px;
  }
}

@media screen and (max-width: 560px) {
  .top_r {
    gap: 0 0.15rem;
  }
  .top_r iconify-icon {
    font-size: 0.2rem;
  }
  .ift_mail iconify-icon {
    font-size: 0.23rem;
  }
  .nav_menu {
    margin-bottom: 0.02rem;
    margin-left: 0.2rem;
  }
}

/* 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: 99;
}
.top_search.on {
  visibility: visible;
  opacity: 1;
  top: var(--header_height);
  box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
}
.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 {
  display: block;
  height: var(--header_height);
}
/* @media screen and (max-width: 1024px) {
  .full_header_height {
    display: block;
  }
} */

/* footer */
.footer_top {
  position: relative;
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/footerTop.webp)
    no-repeat center;
  background-size: cover;
}

.footer_top .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem 0;
  overflow: hidden;
}

.ft_introduce {
  width: 51.572%;
}

.footer_top .btn_ {
  color: #333;
}

@media screen and (max-width: 560px) {
  .ft_introduce {
    width: 100%;
  }
}

/* footer_bottom */

.footer_bottom {
  overflow: hidden;
}

.footer_bottom .wrap {
  position: relative;
}

.big_logo {
  width: 29.786%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.fCont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.fLeft {
  flex-shrink: 0;
  width: 28.072%;
  position: relative;
}

.fMedia {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.28rem;
}
.fMedia li {
  transition: all 0.5s ease;
}
.fMedia a {
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  box-sizing: border-box;
  background-color: #d1d1d1;
  border-radius: 50%;
  position: relative;
}
.fMedia iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #fff;
}
.fMedia li:hover {
  transform: translate(0, -6px);
}
.fMedia li:hover a {
  background: var(--i_color);
}

.fMedia li:hover a iconify-icon {
}

.fTit {
  margin-bottom: 0.3rem;
  font-size: 0.24rem;
  font-weight: bold;
}

.fNav ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
}
.fNav li {
}
.fNav li a {
  display: block;
  font-size: 0.18rem;
  transition: all 0.4s ease;
  position: relative;
}

.fNav li a::before {
  content: "▶";
  height: 100%;
  display: block;
  font-size: 0.1rem;
  color: var(--i_color);
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.fNav li a:hover {
  color: var(--i_color);
}
.fNav li a:hover::before {
  opacity: 1;
  left: -13px;
}

.f_contact {
  width: 21.572%;
}
.f_contact dl {
}
.f_contact dt {
  margin-bottom: 0.16rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.1rem;
}
.f_contact dt:last-child {
  margin-bottom: 0;
}
.f_contact a,
.f_contact p {
  font-size: 0.18rem;
  line-height: 1.5;
}
.f_contact iconify-icon {
  font-size: 0.24rem;
  color: var(--i_color);
}
.f_contact a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .fMedia a {
    width: 0.4rem;
    height: 0.4rem;
  }
  .fMedia iconify-icon {
    font-size: 0.2rem;
  }
}

.f_cr {
  position: relative;
}

.f_cr::before {
  content: "";
  display: block;
  width: 500%;
  height: 1px;
  background-color: #dedede;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.f_cr p,
.f_cr a {
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.4s ease;
}
.f_cr a {
  margin-left: 0.1rem;
}
.f_cr a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .fLeft {
    width: 20%;
  }
  .f_contact a,
  .f_contact p {
    font-size: 0.16rem;
  }
  .fLeft > p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .fMedia {
    margin-top: 0.3rem;
  }

  .f_contact dl {
    flex-wrap: wrap;
    gap: 24px 4%;
  }
  .f_contact dt {
    width: 100%;
  }
  .f_contact i {
    width: 44px;
    height: 44px;
  }
  .f_contact iconify-icon {
    font-size: 22px;
  }

  .fLeft,
  .f_contact {
    width: 100%;
  }
  .fLogo img {
    height: 70px;
  }
  .fNav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .f_contact a,
  .f_contact p {
    font-size: 15px;
  }

  .fMedia a {
    width: 40px;
    height: 40px;
  }
  .fMedia iconify-icon {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .fTit {
    font-size: 0.22rem;
  }
  .f_contact dl {
    gap: 20px 0;
  }
  .f_contact dt {
    width: 100%;
  }
  .f_contact i {
    width: 20px;
    height: 20px;
    border: none;
  }
  .f_contact iconify-icon {
    font-size: 20px;
  }
  .f_contact h6 {
    font-size: 13px;
  }

  .fLogo img {
    height: 50px;
  }
  .fLeft > p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0.1rem;
  }
  .fMedia {
    gap: 0 20px;
    margin-top: 0.1rem;
  }
  .fMedia a {
    width: 34px;
    height: 34px;
  }
  .fMedia iconify-icon {
    font-size: 16px;
  }

  .f_cr p,
  .f_cr a {
    font-size: 14px;
  }
}

/* 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: 39.185%;
}
.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 {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner01_txt01 h2 {
  font-size: 0.68rem;
}

@media screen and (max-width: 1024px) {
  .banner-prev,
  .banner-next {
    display: none;
  }
  .banner-pagination {
    display: block;
  }

  .banner01_txt01 {
    top: 50%;
  }

  .banner01_txt01 h2 {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .banner-pagination {
    bottom: 0.1rem;
  }

  .banner01_txt01 h2 {
    display: none;
  }
  .banner01_txt01 h3 {
    font-size: 0.16rem;
  }
}

/* 产品类别 */

.Pca_cont {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.4rem 0;
}

.Pca_cont_left {
  flex-shrink: 0;
  width: 18.712%;
}

.Pca_cont_list {
  display: flex;
  flex-direction: column;
  gap: 0.16rem 0;
}

.Pca_cont_list li {
  overflow: hidden;
  position: relative;
  background-color: #f6f6f6;
  border-radius: 0.08rem;
  transition: all 0.4s ease;
}

.Pca_cont_list a {
  display: block;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0.23rem 0.36rem;
  transition: all 0.4s ease;
}

.Pca_cont_list li::before {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background-color: var(--i_color);
  transition: all 0.4s ease;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.Pca_cont_list li::after {
  content: "";
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  position: absolute;
  right: -10%;
  bottom: -5px;
  background: url(static/imgs/Small_logo.webp) no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
  opacity: 0;
}

.Pca_cont_list li:hover::before {
  width: 100%;
}
.Pca_cont_list li:hover::after {
  opacity: 1;
  right: -13px;
}
.Pca_cont_list li:hover {
  border-radius: 0 0 0.08rem 0.08rem;
  background-color: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.Pca_cont_list .active {
  background-color: #fff;
  border-radius: 0 0 0.08rem 0.08rem;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.Pca_cont_list .active::before {
  width: 100%;
}
.Pca_cont_list .active::after {
  opacity: 1;
  right: -13px;
}

.Pca_cont_right {
  flex-shrink: 0;
  width: 78.589%;
  margin-left: 2.898%;
  display: none;
}

.Pca_cont_right_list {
  position: relative;
  overflow: hidden;
}
.Pca_cont_right_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Pca_cont_right_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  border-radius: 0.04rem;
  overflow: hidden;
}

.pl_item {
  display: block;
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/back.webp)
    no-repeat center;
  background-size: cover;
  position: relative;
  box-sizing: border-box;
  padding: 0.16rem;
  position: relative;
}

.pl_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(2, 2, 2, 0.6);
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 1;
}

.pl_item_img {
  width: 96.2%;
  position: relative;
  overflow: hidden;
}
.pl_item_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.pl_item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.pl_item_txt {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 4px;
  padding: 0.2rem 0.26rem;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.pl_item_txt p {
  width: max-content;
  position: relative;
  margin-left: 4px;
}
.pl_item_txt p::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #222;
  position: absolute;
  left: 0;
  bottom: 0;
}

.pl_item_icon {
  width: 0.28rem;
  height: 0.28rem;
  box-sizing: border-box;
  border-radius: 50%;
  margin-top: 0.16rem;
  background-color: #fff;
}

.pl_item_icon iconify-icon {
  font-size: 0.18rem;
  color: var(--i_color);
}

.pl_item_txt_n {
  width: 92%;
  position: absolute;
  left: 50%;
  bottom: 0.16rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.Pca_cont_right.active {
  display: block;
}

.Pca_cont_right_list .swiper-slide:hover .pl_item::before {
  opacity: 1;
}
.Pca_cont_right_list .swiper-slide:hover .pl_item_img img {
  transform: scale(1.1);
}
.Pca_cont_right_list .swiper-slide:hover .pl_item_txt {
  background-color: var(--i_color);
  color: #fff;
}
.Pca_cont_right_list .swiper-slide:hover .pl_item_txt span {
  color: #fff;
}
.Pca_cont_right_list .swiper-slide:hover .pl_item_txt p::before {
  background-color: #fff;
}
.Pca_cont_right_list .swiper-slide:hover .pl_item_txt {
  opacity: 0;
}
.Pca_cont_right_list .swiper-slide:hover .pl_item_txt_n {
  opacity: 1;
}

/* -------------------------- */
.Pca_cont_right-pagination {
  display: none;
  margin-top: 0.3rem;
}

.Pca_cont_right-pagination.active {
  display: block;
}

.Pca_cont_right-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;
}
.Pca_cont_right-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .Product_Category .wrap_l {
    padding-right: 3vw;
  }
  .Pca_cont {
    flex-wrap: wrap;
  }
  .Pca_cont_left,
  .Pca_cont_right {
    width: 100%;
  }
  .Pca_cont_right {
    margin-left: 0;
  }

  .Pca_cont_list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .Pca_cont_list li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .Pca_cont_list a {
    padding: 0.1rem 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Pca_cont_list li {
    width: 100%;
  }
  .Pca_cont_list a {
    padding: 0.08rem 0.2rem;
    font-size: 0.14rem;
  }
}

/* 热门产品 */
.Popular_Products {
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/Popular_ProductsBa.webp)
    no-repeat center;
  background-size: cover;
}

.Popular_Products_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.Popular_Products_top .title_box {
  width: 47.5%;
}

.Popular_ProductsBtns {
  display: flex;
  align-items: center;
  gap: 0 15%;
}

.Popular_Products_cont {
}

.Popular_Products_list {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0;
}
.Popular_Products_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.Popular_Products_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

/* -------------------------- */
.Popular_Products-prev,
.Popular_Products-next {
  flex-shrink: 0;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.Popular_Products-prev {
}
.Popular_Products-next {
}
.Popular_Products-prev iconify-icon,
.Popular_Products-next iconify-icon {
  font-size: 0.26rem;
  color: #333;
  transition: all 0.4s ease;
}
.Popular_Products_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Popular_Products-prev:hover,
.Popular_Products-next:hover {
  border-color: var(--i_color);
}
.Popular_Products-prev:hover iconify-icon,
.Popular_Products-next:hover iconify-icon {
  color: var(--i_color);
}

.Popular_Products_item {
  display: block;
  box-sizing: border-box;
  padding: 0.24rem 0.33rem;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background-color: #fcfcfc;
  transition: all 0.4s ease;
}

.Popular_Products_img {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/back.webp)
    no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  margin-bottom: 0.16rem;
}
.Popular_Products_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.4s ease;
}
.Popular_Products_img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.Popular_Products_item:hover p {
  color: var(--i_color);
}
.Popular_Products_item:hover {
  border-color: var(--i_color);
}

.Popular_Products_list .swiper-slide-active .Popular_Products_item {
  border-color: var(--i_color);
}

.Popular_Products_list
  .swiper-slide-active
  .Popular_Products_item
  .Popular_Products_img::before {
  padding-bottom: 110%;
}

.Popular_Products_list .swiper-slide-active .Popular_Products_item p {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .Popular_Products_top .title_box {
    width: 100%;
  }

  .Popular_ProductsBtns {
    display: none;
  }
}

/* 关于公司 */
.About_Company {
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/About_Company_Ba.webp)
    no-repeat center;
  background-size: contain;
}

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

.Promotional_data li {
  position: relative;
  flex-shrink: 0;
}

.Promotional_data h2 {
  display: flex;
}

.data_num {
  font-size: 1.2rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #222;
  text-stroke: 1px #222;
}

.Promotional_data i {
  font-size: 0.72rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #222;
  text-stroke: 1px #222;
}

.data_txt {
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
  padding: 0.03rem 0.2rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  .data_num {
    font-size: 1rem;
  }
  .Promotional_data i {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .data_num {
    font-size: 0.8rem;
  }
  .Promotional_data i {
    font-size: 0.5rem;
  }
  .data_txt {
    position: relative;
    top: none;
    right: none;
    padding: 0;
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .data_num {
    font-size: 0.4rem;
    color: var(--i_color);
    -webkit-text-stroke: transparent;
    text-stroke: transparent;
  }
  .Promotional_data i {
    font-size: 0.2rem;
    color: var(--i_color);
    -webkit-text-stroke: transparent;
    text-stroke: transparent;
  }
}
@media screen and (max-width: 560px) {
  .data_num {
    font-size: 0.2rem;
  }
  .Promotional_data i {
    font-size: 0.2rem;
  }
  .data_txt {
    font-size: 0.12rem;
  }
}

/* 选择我们 */

.Choose_us {
  overflow: hidden;
  background-color: #f6f6f6;
  position: relative;
}

.Choose_us::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22.2%;
  aspect-ratio: 1 / 1;
  background: url("https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/big_logo.webp")
    no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.Choose_us .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.Choose_us_left {
  width: 49%;
  position: relative;
}

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

.videoBox {
  width: 63.412%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.v_btn {
  display: table;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
}
.v_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgb(255 255 255 / 70%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.v_btn i {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.v_btn iconify-icon {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-size: 0.36rem;
  color: var(--i_color);
}

.v_btn::before {
  -webkit-animation: diffuse 1.6s infinite linear;
  animation: diffuse 1.6s infinite linear;
}
@keyframes diffuse {
  0% {
    opacity: 1;
    width: 80%;
    height: 80%;
  }
  100% {
    opacity: 0;
    width: 150%;
    height: 150%;
  }
}
.v_btn:hover i {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

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

.Choose_us_right {
  width: 47.858%;
}

.Choose_us_cont {
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0.2rem;
  max-height: 3.94rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.32rem 0;
}

/* ========= 滚动条整体轨道 ========= */
.Choose_us_cont::-webkit-scrollbar {
  width: 6px; /* 纵向滚动条宽度 */
  height: 6px; /* 横向滚动条高度（备用） */
}

/* ========= 滑块（拖动条） ========= */
.Choose_us_cont::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  transition: background 0.3s;
}
.Choose_us_cont::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

/* ========= 轨道背景（可选） ========= */
.Choose_us_cont::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

/* ========= Firefox 支持 ========= */
.Choose_us_cont {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.Choose_us_cont h6 {
  margin-bottom: 0.12rem;
  display: flex;
  align-items: center;
}

.Choose_us_cont h6::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background: url(static/imgs/Hook.webp) no-repeat center;
  margin-right: 6px;
}

.Choose_us_cont p {
  margin-left: calc(0.3rem + 6px);
}

@media screen and (max-width: 1024px) {
  .Choose_us_left,
  .Choose_us_right {
    width: 100%;
  }
  .Choose_us_right {
    order: -1;
  }

  .Choose_us_cont h6::before {
    display: none;
  }
  .Choose_us_cont p {
    margin-left: 0;
  }

  .Choose_us_cont {
    max-height: 3rem;
  }
}

/* 应用领域 */

.About_Company {
}

.Application_box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.3rem 0;
  overflow: hidden;
}

.Application_left {
  width: 45%;
  box-sizing: border-box;
  border-radius: 0.08rem;
  overflow: hidden;
  background-color: #f7f9f7;
  padding: 0.32rem 0.2rem 0.18rem 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Application_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem 0;
}

.Application_list li {
  cursor: pointer;
  transition: all 0.4s ease;
}

.Application_list li.active {
  color: #222;
}

.Application_right {
  width: 52.715%;
  box-sizing: border-box;
  border-radius: 0.08rem;
  overflow: hidden;
}

.Application_item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: none;
  transition: all 0.4s ease;
}

.Application_item.active {
  display: block;
  transform: translateX(0);
}

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

.Application_item_txt {
  width: 53.796%;
  box-sizing: border-box;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.32rem 0.21rem;
  position: absolute;
  right: 5%;
  bottom: 5%;
}

.Application_item_txt img {
  width: 0.48rem;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .Application_left {
    display: none;
  }

  .Application_right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
  }
  .Application_item {
    display: block;
  }
  .Application_item::before {
    padding-bottom: 60%;
  }

  .Application_item_txt {
    width: 90%;
    padding: 0.1rem;
    right: 3%;
    bottom: 3%;
  }
  .Application_item_txt img {
    width: 0.3rem;
  }
  .Application_item_txt p {
    margin-top: 0rem;
  }
}

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

@media screen and (max-width: 560px) {
  .Application_item_txt p {
    font-size: 0.14rem;
  }
}

/* 主页新闻 */

.i_news {
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/i_new_Ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.i_news_top .title_box {
  width: 47.5%;
}

.i_news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.i_news_list li {
  width: 32%;
}

.i_news_list a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

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

.i_news_pic p {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--i_color);
  box-sizing: border-box;
  border-radius: 0px 20px 0px 8px;
  padding: 0.085rem 0.225rem;
}

.i_news_txt {
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  padding: 0.26rem 0.22rem 0.38rem 0.22rem;
}

.i_news_txt h6 {
  margin-top: 0.16rem;
}

.i_news_list li:hover .i_news_pic img {
  transform: scale(1.1);
}
.i_news_list li:hover .i_news_txt p {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .i_news_top .title_box {
    width: 100%;
  }
  .i_news_list li {
    width: 49%;
  }
}

@media screen and (max-width: 560px) {
  .i_news_list li {
    width: 100%;
  }
  .i_news_txt {
    padding: 0.2rem;
  }
}

/* ===================================================== */

.banner__ {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner__::before {
  content: "";
  display: block;
  width: 90.23%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(79, 170, 75, 0.7) -19%,
    rgba(216, 216, 216, 0) 45%
  );
}

.banner__ img {
  width: 100vw;
  display: block;
}
.banner__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
  z-index: 10;
}
.banner__text h2 {
  font-weight: bold;
}

/* Breadcrumb */
.in_position {
  position: relative;
}
.in_position .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #fff;
  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: #fff;
}
.in_position a:last-child {
  color: var(--i_color) !important;
  font-weight: bold;
}
.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;
  }
  .banner__text h2 {
    font-size: 0.16rem;
  }
  .in_position a {
    font-size: 13px;
  }
}

/* --------------------- 产品列表页面 */

.categoryBox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.cat_nav {
  flex-shrink: 0;
  width: 26.572%;
  box-sizing: border-box;
  position: relative;
  background-color: #f7f9f7;
  border-radius: 8px;
  position: sticky;
  top: 1.2rem;
}

.catList_show {
  width: 69.215%;
}

@media screen and (max-width: 1440px) {
  /* .cat_nav{width: 24%;} */
}
@media screen and (max-width: 1024px) {
  .category_des {
    margin-bottom: 0.2rem;
  }
  .categoryBox {
    margin-top: 0;
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .cat_nav {
    width: 100%;
    padding: 0 0;
    background: none;
    border: none;
    position: relative;
    top: 0;
  }
  .catList_show {
    width: 100%;
    padding: 0 0;
    margin: 0 0;
  }
}

@media screen and (max-width: 560px) {
  .categoryBox {
    margin-bottom: 50px;
  }
}

.cat_nav_tit {
  padding: 0.2rem 0.26rem 0.32rem 0.26rem;
  position: relative;
}
.cat_nav_tit h4 {
  font-size: 0.24rem;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  position: relative;
}
.cat_nav_list li {
  position: relative;
  border: 1px solid transparent;
  border-bottom-color: #d0d1d0;
}

.cat_nav_list li:last-child {
  border-bottom: none;
}

.cat_nav_list li.active {
  border: none;
}

.cat_fold_tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 0.1rem 0 0.14rem;
  border-radius: 0.08rem;
  gap: 0 0.2rem;
}
.cat_fold_tit a {
  padding: 0.16rem 0;
  width: 100%;
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 1.5;
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.24rem;
  cursor: pointer;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -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(0deg);
  transform: rotate(0deg);
}

.cat_fold_sub {
  display: none;
  padding: 0.18rem 0 0.18rem 0.14rem;
}
.cat_fold_sub dt {
  box-sizing: border-box;
  border-radius: 4px;
}
.cat_fold_sub a {
  display: block;
  padding: 0.11rem 0.1rem;
  font-size: 0.18rem;
  position: relative;
  border-radius: 8px;
  transition: all 0.5s ease;
}

.cat_fold_sub a:hover,
.cat_fold_sub dt.active a {
  background: #ffffff;
}

@media screen and (max-width: 1024px) {
  .cat_nav_tit {
    border: none;
    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);
  }
  .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;
    box-sizing: border-box;
    padding: 18px 30px 30px;
    background: #f6f6f6;
  }
  .cat_nav_list li {
    border-top: none;
    border-bottom: 1px solid rgb(0 0 0 / 8%);
  }
  .cat_nav_list li.active {
  }
  .cat_fold_tit a {
    padding: 14px 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: 20px 20px;
  }

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

.category_des {
}
.category_name {
  margin-bottom: 0.2rem;
  position: relative;
}
.category_name h2 {
  font-size: 0.42rem;
  font-weight: bold;
  position: relative;
  line-height: 1.4;
}
.category_des span {
  color: #555;
}

@media screen and (max-width: 1024px) {
  .category_name {
    margin-bottom: 18px;
  }
}

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

.pList li {
  width: 32%;
}

.pItem {
  display: block;
}

.pItem .coverpic {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.pItem .coverpic::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.pItem .coverpic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}
.pItem .text {
  margin-top: 0.2rem;
  text-align: center;
}
.pItem .text p {
  font-size: 0.18rem;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.5s ease;
}

.pItem:hover .coverpic img {
  transform: scale(1.1);
}
.pItem:hover p {
  font-weight: bold;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .category_name h2 {
    font-size: 0.3rem;
  }
  .pItem .text p {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .category_name h2 {
    font-size: 0.2rem;
  }
  .pItem .text {
    margin-top: 12px;
  }
  .pItem .text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .pList {
    gap: 40px 4%;
  }
  .pList li {
    width: 48%;
  }
}

/* ------------------- 产品详情页面 */

/* single_grid */
.single_grid_bac {
  box-sizing: border-box;
  border-bottom: 0.6rem solid #f1f1f1;
}
.single_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 0;
}
.single_grid_left {
  width: 48.572%;
}

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

/* 缂╃暐鍥� */
.in_grid_list_box {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sm_pic_width);
  height: 100%;
  box-sizing: border-box;
  padding: 40px 0;
}
.in_grid_list {
  height: 100%;
  overflow: hidden;
}
.in_grid_list .swiper-slide {
  cursor: pointer;
}

.in_grid_list .img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.in_grid_list .img img {
  width: 95%;
  height: 95%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.in_grid_list .swiper-slide-thumb-active .img {
  border: 2px solid var(--i_color);
}
.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
}

.ingrid-button-prev.swiper-button-disabled,
.ingrid-button-next.swiper-button-disabled {
  /* cursor: not-allowed;
  opacity: 0.1; */
}

/* 澶у浘 */
.in_grid_show_box {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--sm_pic_width) - 20px);
  height: 100%;
  box-sizing: border-box;
  padding: 0 0;
  margin: 0 auto;
}
.in_grid_show {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.in_grid_show .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.in_grid_show .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.in_grid_show .img {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 8px;
  overflow: hidden;
}
.in_grid_show .img img {
  width: 95%;
  height: 95%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

.in_grid_cont:before {
  display: none;
}
.in_grid_show_box {
  position: initial;
  width: 100%;
  border-radius: 0.04rem;
  overflow: hidden;
}
.in_grid_show .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_show .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_grid_list_box {
  margin-top: 0.3rem;
  padding: 0 0;
  position: relative;
  width: 100%;
  height: initial;
}
.in_grid_list {
  width: calc(100% - 1.5rem);
  margin: 0 auto;
}
.in_grid_list_box .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.in_grid_list_box .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_grid_list .img {
  height: auto;
  border-radius: 0.04rem;
}
.in_grid_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.in_grid_list .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.swiper-slide-thumb-active .img::after {
  background: rgba(58, 58, 58, 0);
}

/* 左右箭头 */

.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.56rem;
  height: 0.56rem;
  border: 1px solid #dedede;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.ingrid-button-prev iconify-icon,
.ingrid-button-next iconify-icon {
  font-size: 0.3rem;
  color: #333;
  transition: all 0.3s ease;
}
.ingrid-button-prev {
  left: 0%;
}

.ingrid-button-next {
  right: 0%;
}

.ingrid-button-prev:hover,
.ingrid-button-next:hover {
  border-color: var(--i_color);
}
.ingrid-button-prev:hover iconify-icon,
.ingrid-button-next:hover iconify-icon {
  color: var(--i_color);
}

.single_grid_right {
  width: 47.215%;
  box-sizing: border-box;
}

.Category_Name {
  position: relative;
  padding-bottom: 0.12rem;
}
.Category_Name::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.single_grid_right h1 {
  font-size: 0.28rem;
  font-weight: bold;
  box-sizing: border-box;
  margin-bottom: 0.2rem;
}
.single_grid_right h1::after {
  content: "";
  position: absolute;
}

.single_grid_right article {
  font-size: 0.18rem;
  color: #666;
  line-height: 166%;
  margin-bottom: 0.26rem;
}

.pShare {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
  padding-bottom: 0.26rem;
  border-bottom: 1px solid #d6d6d6;
}
.pShare dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.pShare dt a {
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  background: #999999;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.pShare dt iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #fff;
}
.pShare dt a:hover {
  background: var(--i_color);
}
.pShare dt a:hover iconify-icon {
  color: #fff;
}

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

.pd_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 4%;
}

@media screen and (max-width: 1024px) {
  .single_grid_bac {
    border-bottom: none;
  }
  .ingrid-pagination {
    display: flex;
  }
  .single_grid_left,
  .single_grid_right {
    width: 100%;
  }
  .single_grid_right h1 {
    font-size: 0.2rem;
  }
  .in_grid_list {
    width: 100%;
  }
  .ingrid-button-prev,
  .ingrid-button-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .in_grid_show .img img,
  .in_grid_list .img img {
    width: 100%;
    height: 100%;
  }
  .ingrid-pagination {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 0.14rem;
  }
  .single_grid_right h1 {
    font-size: 0.18rem;
  }
}

/* 产品详情 */

.pc_left {
}

.pc_left .xxk {
  margin: 0 auto;
}

.pc_left .tab-list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border_color);
  justify-content: start;
  gap: 0 40px;
}

.pc_left .tab {
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  color: #666;
}

.pc_left .tab.active {
  background-color: var(--i_color);
  color: #fff;
}

.pc_left .tab-content {
}

.pc_left .content {
  display: none;
}

.pc_left .content.active {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc_left .tab-list {
    gap: 20px 4%;
  }
  .pc_left .tab {
    width: 48%;
    box-sizing: border-box;
  }

  .pc_left .tab-list {
    margin-bottom: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .pc_left .tab-list {
    gap: 14px 4%;
  }
  .pc_left .tab {
    padding: 10px 16px;
    font-size: 15px;
  }
}

/* 信息展示 */
.Information_Display {
  background-color: #f7f7f7;
}

/* tags */
.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ddd;
  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.2rem;
  font-weight: bold;
}
.p_tags a {
  margin-right: 0.3rem;
  padding: 0.08rem 0.1rem;
  font-size: 14px;
  background: #fff;
  -webkit-border-radius: 0.06rem;
  border-radius: 0.06rem;
  transition: all 0.3s ease;
}
.p_tags a:hover {
  background: rgba(79, 170, 75, 0.1);
  backdrop-filter: blur(10px);
  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%;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #999999;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #666;
}
.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 {
  border-color: var(--i_color);
}
.p_view_other li:hover span iconify-icon {
  color: var(--i_color);
}
.p_view_other a:hover p {
  color: var(--i_color);
}

@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 {
}

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

.Related_products_list a {
  display: block;
}

.Related_products_list .coverpic {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.Related_products_list .coverpic:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.Related_products_list .coverpic img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: all 0.4s ease;
}

.Related_products_list .swiper-slide:hover .coverpic img {
  transform: translate(-50%, -50%) scale(1.1);
}
.Related_products_list .swiper-slide:hover p {
  color: var(--i_color);
}

/* -------------------------- */
.Related_products_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2%;
}

.Related_products-prev,
.Related_products-next {
  width: 0.56rem;
  height: 0.56rem;
  border: 1px solid #dedede;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.Related_products-prev {
}
.Related_products-next {
}
.Related_products-prev iconify-icon,
.Related_products-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #333;
}
.Related_products_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Related_products-prev:hover,
.Related_products-next:hover {
  background: var(--i_color);
}
.Related_products-prev:hover iconify-icon,
.Related_products-next:hover iconify-icon {
  color: #fff;
}

/* -------------------------- */
.Related_products-pagination {
  display: none;
  margin-top: 0.3rem;
  text-align: center;
}
.Related_products-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;
}
.Related_products-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

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

/* ------------------------- 关于我们页面 */
.home_about_bac {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  padding: 1.6rem 0 1.4rem 0;
}
.home_about_bacImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
  z-index: -1;
}
.home_about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_about_left {
  width: 49.375%;
}
.home_about_left > img {
  width: 100%;
  height: auto;
}
.home_about_right {
  width: 50.625%;
  box-sizing: border-box;
  padding-left: 4%;
}
.home_about_right h3 {
  font-size: 0.18rem;
  color: var(--i_color);
  position: relative;
  box-sizing: border-box;
  padding-top: 0.15rem;
  margin-bottom: 0.1rem;
}
.home_about_right h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.55rem;
  height: 0.05rem;
  background-color: var(--i_color);
}
.home_about_right h4 {
  font-size: 0.4rem;
  color: #333;
  font-weight: bold;
}
.home_about_right h5 {
  font-size: 0.24rem;
  color: var(--i_color);
  font-weight: bold;
  margin: 0.3rem 0;
}
.home_about_right article {
  font-size: 0.18rem;
  line-height: 150%;
  color: #666;
  margin-bottom: 0.4rem;
}
.home_about_dl {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.home_about_dl dt {
  background: #fff6f6;
  box-sizing: border-box;
  padding: 0.2rem;
  position: relative;
  width: calc((100% - 1rem) / 3);
}
.home_about_dl dt::after {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0.12rem;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background-color: var(--i_color);
}
.home_about_dl dt img {
  width: 1.2rem;
  margin: 0 auto;
  display: block;
}
.home_about_dl dt p {
  font-size: 0.16rem;
  color: var(--i_color);
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 1440px) {
  .home_about_right h4 {
    font-size: 0.36rem;
  }
  .home_about_right h5 {
    font-size: 0.22rem;
    margin: 0.25rem 0;
  }
  .home_about_right article {
    font-size: 0.16rem;
    margin-bottom: 0.3rem;
  }
  .home_about_dl dt img {
    width: 1rem;
  }
  .home_about_dl {
    gap: 0.3rem;
  }
  .home_about_dl dt {
    width: calc((100% - 0.6rem) / 3);
  }
  .home_about_dl dt p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 1200px) {
  .home_about_right h4 {
    font-size: 0.32rem;
  }
  .home_about_right h5 {
    font-size: 0.2rem;
    margin: 0.2rem 0;
  }
  .home_about_bac {
    padding: 1rem 0 0.8rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .home_about_bac {
    padding: 0.4rem 0;
  }
  .home_about_right h4 {
    font-size: 0.28rem;
  }
  .home_about_right h5 {
    font-size: 0.18rem;
    margin: 0.15rem 0;
  }
  .home_about_right {
    width: 100%;
    margin-top: 0.4rem;
    padding-left: 0%;
    order: -1;
  }
}
@media screen and (max-width: 960px) {
  .home_about_right h4 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 767px) {
  .home_about_right h4 {
    font-size: 0.22rem;
  }
  .home_about_right h5 {
    font-size: 0.16rem;
    margin: 0.1rem 0;
  }
  .home_about_dl dt img {
    width: 0.8rem;
  }
  .home_about_dl {
    gap: 0.2rem;
  }
  .home_about_dl dt {
    width: calc((100% - 0.4rem) / 3);
  }
}
@media screen and (max-width: 560px) {
  .home_about_right {
    margin-top: 0;
  }
  .home_about_left {
    width: 100%;
  }
  .home_about_dl dt img {
    width: 0.6rem;
  }
  .home_about_dl dt {
    width: calc((100% - 0.2rem) / 2);
  }
}
@media screen and (max-width: 425px) {
}

/* 公司优势 */
.Company_Advantages {
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/Popular_ProductsBa.webp)
    no-repeat center;
  background-size: cover;
}

.homeAdv_nav {
  --size: 1.38rem;
}
.homeAdv_nav {
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.homeAdv_nav li {
  width: var(--size);
  height: var(--size);
  position: relative;
  cursor: pointer;
}
.homeAdv_nav li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 25.4vw;
  height: 0;
  border-top: 1px dashed #000000;
}
.homeAdv_nav li:last-child::before {
  display: none;
}

.homeAdv_nav i {
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/homeAdv_round.webp)
    no-repeat center;
  background-size: contain;
}
.homeAdv_nav li > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.6rem;
  -webkit-filter: grayscale(100%) brightness(0.4);
  filter: grayscale(100%) brightness(0.4);
}

.homeAdv_nav li.active i {
  opacity: 1;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.homeAdv_nav li.active > img {
  -webkit-filter: none;
  filter: none;
}

.homeAdv_cont {
}
.homeAdv_cont dt {
  display: none;
}
.homeAdv_cont dt.active {
  display: block;
}

.homeAdv_cont .item {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 5%;
}
.homeAdv_cont .txt {
  width: 100%;
}
.homeAdv_cont .txt h3 {
  padding-left: 0.46rem;
  font-size: 0.3rem;
  font-weight: bold;
  position: relative;
}
.homeAdv_cont .txt h3::before,
.homeAdv_cont .txt h3::after {
  content: "";
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
}
.homeAdv_cont .txt h3::before {
  top: 4px;
  left: 0;
  background: var(--i_color);
  -webkit-border-radius: 0.1rem 0 0 0;
  border-radius: 0.1rem 0 0 0;
}
.homeAdv_cont .txt h3::after {
  top: 14px;
  left: 10px;
  background: #222;
}

.homeAdv_cont .txt > span {
  display: block;
  margin: 0.34rem 0 0.6rem;
  color: #666;
}

.homeAdv_cont .pic {
  flex-shrink: 0;
  width: 46%;
  border-radius: 8px;
  overflow: hidden;
}
.homeAdv_cont .pic img {
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .homeAdv_nav li::before {
    width: 33.5vw;
  }
}
@media screen and (max-width: 1366px) {
  .homeAdv_nav li::before {
    width: 32.6vw;
  }
  .homeAdv_nav li > img {
    height: 0.54rem;
  }

  .homeAdv_cont .txt h3 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 1200px) {
  .homeAdv_nav li::before {
    width: 31vw;
  }
}
@media screen and (max-width: 1024px) {
  .homeAdv_nav {
    width: 100%;
  }

  .homeAdv_nav {
    --size: 100px;
  }
  .homeAdv_nav {
    position: relative;
  }
  .homeAdv_nav li::before {
    display: none;
  }
  .homeAdv_nav li > img {
    height: 40px;
  }

  .homeAdv_cont .txt h3 {
    font-size: 20px;
  }
  .homeAdv_cont .txt h3::before,
  .homeAdv_cont .txt h3::after {
    width: 14px;
    height: 14px;
  }
  .homeAdv_cont .txt > span {
    margin: 30px 0 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .homeAdv_nav {
    --size: 70px;
  }
  .homeAdv_nav li > img {
    height: 30px;
  }

  .homeAdv_cont .item {
    flex-wrap: wrap;
    gap: 26px 0;
  }
  .homeAdv_cont .txt h3 {
    font-size: 18px;
  }
  .homeAdv_cont .txt > span {
    font-size: 15px;
  }

  .homeAdv_cont .pic {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .homeAdv_nav {
    --size: 54px;
  }
  .homeAdv_nav li > img {
    height: 26px;
  }

  .homeAdv_cont .txt h3::before {
    top: 0;
  }
  .homeAdv_cont .txt h3::after {
    top: 8px;
  }
  .homeAdv_cont .txt > span {
    margin: 20px 0 30px;
    font-size: 14px;
  }
}

/* 环境展示 */
.environment_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.32rem;
}

/* =================================================================== */
.environment_list_big {
  flex-shrink: 0;
  width: 44%;
  overflow: hidden;
}
.environment_list_big .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.environment_list_big .swiper-slide {
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
.environment_list_big .swiper-slide-active {
  z-index: 3;
}

.e_pic {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.e_pic::before {
  content: "";
  display: block;
  padding-bottom: 66%;
}
.e_pic::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #000);
  display: none;
}
.e_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;
}

.environment_list_big figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.environment_list_big p {
  padding: 0.3rem 0.4rem;
  font-size: 0.24rem;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.environment_list_big .swiper-slide:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

/* =================================================================== */
.environment_list_thumbnail {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.environment_list_thumbnail .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.environment_list_thumbnail .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.environment_list_thumbnail .e_pic::before {
  padding-bottom: 60%;
}
.environment_list_thumbnail .e_pic::after {
  display: none;
}
.environment_list_thumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment_list_thumbnail figcaption {
  display: none;
}

.environment_list_thumbnail .swiper-slide:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.environment_control {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.3rem;
}
.environment_control > i {
  width: 5rem;
  height: 1px;
  background: #ccc;
}

.environment-pagination {
  font-size: 0.2rem;
  color: #999;
}
.environment-pagination .swiper-pagination-current {
  font-size: 0.28rem;
  color: var(--i_color);
}

.environment-navigation {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.22rem;
}
.environment-navigation > div {
  width: 0.44rem;
  height: 0.44rem;
  border: 1px solid #cbcbcb;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.environment-navigation > div iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.26rem;
  color: var(--txt_color2);
}

.environment-navigation > div:hover {
  background: var(--i_color);
  border-color: var(--i_color);
}

.environment-navigation > div:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .environment_control > i {
    width: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .environment_list_big p {
    padding: 20px;
    font-size: 16px;
  }

  .environment-pagination {
    font-size: 15px;
  }
  .environment-pagination .swiper-pagination-current {
    font-size: 20px;
  }
  .environment-navigation > div {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .environment_cont {
    flex-wrap: wrap;
    gap: 0 0;
  }
  .environment_list_big {
    display: none !important;
  }

  .environment_list_thumbnail {
    width: 97%;
  }
  .environment_list_thumbnail .e_pic::before {
    padding-bottom: 66%;
  }
  .environment_list_thumbnail .e_pic::after {
    display: block;
  }
  .environment_list_thumbnail figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
  }
  .environment_list_thumbnail p {
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .environment_control {
    position: relative;
    margin-top: 20px;
  }
  .environment_control > i {
    width: 20%;
  }
}
@media screen and (max-width: 560px) {
  .environment_control {
    gap: 0 20px;
  }
  .environment-navigation {
    gap: 0 10px;
  }
  .environment-navigation > div {
    width: 32px;
    height: 32px;
  }
}

/* 证书 */
.Certificates_content {
}

.Certificate_list {
  position: relative;
  overflow: hidden;
}
.Certificate_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Certificate_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  border-radius: 0.16rem;
  box-sizing: border-box;
  padding: 0.5rem 0.2rem;
}

.Certificate_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, #f7f7f7 2%, rgba(247, 247, 247, 0) 100%);
  border-radius: 0.16rem 0.16rem 0 0;
  position: absolute;
  left: 0;
  top: 0;
}
.Certificate_list .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 30%;
  background-color: #f7f7f7;
  border-radius: 0 0 0.16rem 0.16rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

.Certificate_img {
  width: 84%;
  position: relative;
  z-index: 10;
  border: 3px solid #333333;
  box-sizing: border-box;
}
.Certificate_img::before {
  content: "";
  display: block;
  padding-bottom: 142%;
}
.Certificate_img img {
  width: 99%;
  height: 99%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 560px) {
  .Certificate_list .swiper-slide {
    padding: 0.3rem 0.1rem;
  }
}

/* 品牌合作 */
.Brand_collaboration {
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/Brand_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.Brand_list {
  position: relative;
  overflow: hidden;
  padding: 0.1rem 0;
}
.Brand_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Brand_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.Brand_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 23.215%;
}
.Brand_list .swiper-slide img {
  width: 40%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* -------------------------- */
.Brand-pagination {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
}
.Brand-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Brand-pagination .swiper-pagination-bullet-active {
  width: 0.4rem;
  border-radius: 5rem;
  background: var(--i_color);
}

/* ------------------------- Serve 服务页面 */

.Our_Services_list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  border-radius: 8px;
  overflow: hidden;
}
.Our_Services_item {
  flex: 1;
  padding: 0.17rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.5%;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease-in;
}

.Our_Services_item icon {
  font-size: 0.38rem;
  color: var(--i_color);
  transition: all 0.3s ease-in;
}

.Our_Services_item.active {
  background-color: var(--i_color);
}
.Our_Services_item.active icon {
  color: #fff;
}
.Our_Services_item.active p {
  color: #fff;
}

.Our_Box {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.Our_Box.active {
  display: flex;
}

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

.Our_Box_txt {
  width: 49.929%;
}

.Our_Box_txt .Our_Services_item {
  justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
  .Our_Services_item icon {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .Our_Box_pic,
  .Our_Box_txt {
    width: 100%;
  }
  .Our_Box_txt {
    order: -1;
  }
  .Our_Services_item {
    padding: 0.06rem 0;
  }
  .Our_Services_item icon {
    display: none;
  }
  .Our_Services_item p {
    font-size: 0.14rem;
  }
  .Our_Box_txt .Our_Services_item {
    padding: 0;
  }
  .Our_Box_txt .Our_Services_item icon {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .Our_Services_item {
    flex: auto;
    width: 100%;
  }
}

/* service_process */
.service_process_bac {
  background: url(https://lingjuimg.com/wp-content/uploads/Zhenmei/2025/11/Popular_ProductsBa.webp)
    no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  padding: 1rem 0;
}
.service_process {
}
.service_process_title h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9.4rem;
  transform: translate(0%, -50%);
  width: 9rem;
  height: 1px;
  background-color: #e5e5e5;
}

/*  */
.procsee_partner_box {
  margin-top: 0.4rem;
}

.procsee_partner {
  position: relative;
}
.procsee_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.procsee_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.procsee_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0.4rem;
  border-radius: 0.08rem;
  overflow: hidden;
  z-index: 2;
}
.procsee_partner_list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all 0.5s ease;
}
.procsee_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.procsee_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 52.94%;
}
.procsee_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.procsee_partner_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service_process_text {
  box-sizing: border-box;
  padding-top: 0.5rem;
}
.service_process_text h3 {
  font-size: 0.3rem;
  color: #333;
  position: relative;
  line-height: 100%;
  font-weight: bold;
  display: inline-block;
}
.service_process_text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -0.42rem;
  width: 0.4rem;
  height: 0.04rem;
  background-color: #333;
}
.service_process_text h4 {
  font-size: 0.24rem;
  color: #222;
  font-weight: bold;
  margin: 0.2rem 0;
}
.service_process_text h5 {
  font-size: 0.18rem;
  color: #666;
  margin-bottom: 0.2rem;
  line-height: 0.22rem;
  min-height: 0.44rem;
}

.procsee_partner_list li:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.procsee_partner_list li:hover .service_process_text h3 {
  color: var(--i_color);
}
.procsee_partner_list li:hover .service_process_text h3::after {
  background-color: var(--i_color);
}
.procsee_partner_list li:hover .service_process_text h4 {
  color: var(--i_color);
}

/* 指示器 */
.procsee_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.procsee_partner .pt-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  cursor: pointer;
  display: inline-block;
  margin: 0 0.05rem;
  background: var(--i_color);
  border-radius: 50%;
  opacity: 1;
  outline: none;
}
.procsee_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: transparent;
}

/* 左右箭头 */
.procsee_partner .pt-button-prev,
.procsee_partner .pt-button-next {
  position: absolute;
  top: -0.99rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid var(--i_color);
  box-sizing: border-box;
  z-index: 999;
  cursor: pointer;
  outline: none;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.procsee_partner .pt-button-prev iconify-icon,
.procsee_partner .pt-button-next iconify-icon {
  font-size: 0.3rem;
  color: var(--i_color);
  transition: all 0.3s ease;
}
.procsee_partner .pt-button-prev {
  right: calc(11.5% + 0.7rem);
}
.procsee_partner .pt-button-next {
  right: 11.5%;
}

.procsee_partner .pt-button-prev:hover,
.procsee_partner .pt-button-next:hover {
  background-color: var(--i_color);
}
.procsee_partner .pt-button-prev:hover iconify-icon,
.procsee_partner .pt-button-next:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1600px) {
  .service_process_text h4 {
    font-size: 0.22rem;
  }
  .service_process_title {
    display: flex;
  }
  .service_process_title h3::after {
    width: 0;
  }
  .service_process_text {
    padding-top: 0.2rem;
  }
  .service_process_bac {
    padding: 0.8rem 0;
  }
}
@media screen and (max-width: 1200px) {
  .service_process_text h3 {
    font-size: 0.25rem;
  }
  .service_process_text h5 {
    font-size: 0.16rem;
    line-height: 0.2rem;
    min-height: 0.4rem;
  }
  .service_process_text h4 {
    font-size: 0.2rem;
    margin: 0.15rem 0;
  }
  .procsee_partner_list li {
    padding: 0.25rem;
  }
  .service_process_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .procsee_partner .pt-button-prev,
  .procsee_partner .pt-button-next {
    display: none;
  }
  .procsee_partner .pt-pagination {
    display: block;
  }

  .service_process_text h5 {
    font-size: 0.14rem;
    line-height: 0.2rem;
    min-height: 0.4rem;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
  .service_process_bac .wrap_l {
    padding-right: 3vw;
  }
  .procsee_partner_box {
    margin-top: 0;
  }
  .procsee_partner_list li {
    padding: 0;
  }
  .service_process_text h3 {
    font-size: 0.18rem;
  }
  .service_process_text h4 {
    font-size: 0.17rem;
  }
}

/* service_adv */
.service_adv_bac {
  box-sizing: border-box;
  padding: 0.8rem 0;
  overflow: hidden;
}
.service_adv {
}
.service_advTitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}
.service_advTitle::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 200%;
  height: 0.08rem;
  background-color: var(--i_color);
  z-index: -1;
}
.service_advTitle_left {
  width: 46.67%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.service_advTitle_left::after {
  content: "";
  display: block;
  padding-bottom: 57.14%;
}
.service_advTitle_left img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.service_advTitle_right {
  width: 53.33%;
  box-sizing: border-box;
  padding-left: 1rem;
  margin-top: 0.4rem;
}
.service_adv_ul {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.service_adv_ul li {
  width: calc((100% - 0.8rem) / 3);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0.3rem;
  z-index: 2;
}
.service_adv_ul li img {
  width: 0.54rem;
  height: 0.54rem;
  object-fit: contain;
}
.service_adv_ul li h3 {
  font-size: 0.24rem;
  color: #333;
  margin: 0.15rem 0;
}
.service_adv_ul li h4 {
  font-size: 0.18rem;
  color: #666;
}
.service_adv_ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #edf6ed;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
.service_adv_ul li.on::after {
  opacity: 1 !important;
}

@media screen and (max-width: 1440px) {
  .service_advTitle::after {
    top: 0.7rem;
  }
  .service_adv_ul li img {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .service_advTitle::after {
    top: 0.6rem;
  }
  .service_adv_ul li img {
    width: 0.45rem;
    height: 0.45rem;
  }
  .service_adv_ul {
    gap: 0.2rem;
  }
  .service_adv_ul li {
    width: calc((100% - 0.4rem) / 3);
    padding: 0.25rem;
  }
  .service_adv_ul li h3 {
    font-size: 0.22rem;
  }
  .service_adv_ul li h4 {
    font-size: 0.16rem;
  }
  .service_adv_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .service_advTitle::after {
    top: 0.4rem;
  }
  .service_adv_ul li img {
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 960px) {
  .service_advTitle::after {
    top: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .service_adv_ul li {
    width: 100%;
  }
  .service_advTitle_left {
    display: none;
  }
  .service_advTitle_right {
    width: 100%;
    padding-left: 0rem;
    margin-top: 0.4rem;
  }
  .service_advTitle::after {
    top: 0rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* ---------------------------  News页面 */

.new_cont {
  background: linear-gradient(
    180deg,
    #d8d8d8 0%,
    #ffffff 0%,
    #f6f6f6 29%,
    #f6f6f6 63%
  );
}

/* -------------------------  联系我们页面 */

.Contact_online {
  background-color: #f7f7f7;
}

#wpforms-103 {
  --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-103 {
  margin: 0;
  padding: 0;
}
#wpforms-form-103 {
  width: 100%;
  position: relative;
}

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

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

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

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

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

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

#wpforms-103 .wpforms-submit-container {
  width: 246px;
  padding: 0 0;
  margin-left: auto;
  margin-right: auto;
}

#wpforms-103 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: var(--i_color);
  border-radius: 5rem;
}
#wpforms-103 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-103 .wpforms-submit-container button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-0.05rem);
}

@media screen and (max-width: 768px) {
  #wpforms-103-field_1-container,
  #wpforms-103-field_2-container,
  #wpforms-103-field_3-container,
  #wpforms-103-field_4-container {
    width: 100% !important;
  }
}

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

/* 联系方式 */

.ContactBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 0;
}

.ContactBox li {
  width: 48%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 4%;
  padding-bottom: 0.25rem;
}

.ContactBox li::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d6d6d6;
  position: absolute;
  left: 0;
  bottom: 0;
}

.ContactBox li::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.ContactBox img {
  width: 0.48rem;
  height: 0.48rem;
}

.Contact_info {
  width: 87%;
}

.Contact_info a,
.Contact_info h6 {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.24rem;
  transition: all 0.4s ease;
}

.ContactBox a:hover {
  color: var(--i_color);
}
.ContactBox li:hover::after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .ContactBox {
    gap: 0.3rem 0;
  }
  .ContactBox li {
    padding-bottom: 0.1rem;
  }
  .ContactBox img {
    width: 0.3rem;
    height: 0.3rem;
  }
  .Contact_info a,
  .Contact_info h6 {
    font-size: 0.18rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .ContactBox li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .ContactBox img {
    width: 0.2rem;
    height: 0.2rem;
  }
  .Contact_info p {
    font-size: 0.12rem;
  }
  .Contact_info a,
  .Contact_info h6 {
    font-size: 0.14rem;
  }
}

/* map */

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

@media screen and (max-width: 1024px) {
  .map::before {
    padding-bottom: 44%;
  }
}
@media screen and (max-width: 560px) {
  .map::before {
    padding-bottom: 80%;
  }
}
