/*
Theme Name: JinHui
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: #e60012;

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

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

/* 通用 */
.f550 {
  font-weight: 550;
}

/* title */
.title_box {
}

.title_box h6 {
  display: flex;
  align-items: center;
}
.title_box h6::before {
  content: "";
  display: block;
  width: 0.26rem;
  height: 1px;
  background-color: var(--i_color);
  margin-right: 0.1rem;
}

/* Button */
.btn_box {
  display: table;
}

.btn_aaa {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  border-radius: 5rem;
  padding: 0.12rem 0.23rem;
  color: var(--i_color);
  transition: all 0.4s ease;
}
.btn_aaa iconify-icon {
  font-size: 0.2rem;
}
.btn_aaa:hover {
  background-color: var(--i_color);
  color: #fff;
}

.btn_ba {
  background-color: var(--i_color);
  color: #fff;
  box-shadow: 0 0 20px rgba(175, 175, 175, 0.3);
}
.btn_ba:hover {
  border-color: #fff;
  background-color: #fff;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .btn_aaa {
    padding: 0.06rem 0.1rem;
    gap: 0 0.1rem;
  }
  .btn_aaa span {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .btn_aaa span {
    font-size: 0.12rem;
  }
  .btn_aaa iconify-icon {
    font-size: 0.16rem;
  }
}

/* --- --- */

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

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

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

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

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

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

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

  .i_nav > li {
    position: relative;
  }
  .i_nav > li::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translate(-50%, 0);
    width: 10px;
    height: 6px;
    background: url(static/imgs/a_before.webp) no-repeat center;
    background-size: contain;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: #fff;
    font-weight: 550;
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
    transition: all 0.4s ease;
  }

  .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > li.active::before {
    opacity: 1;
    bottom: 25%;
  }
  .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) !important;
  }

  .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;
  }

  .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: #333;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #333;
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}

@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
    margin-left: 0.3rem;
  }
}

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

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

.top_search_ico iconify-icon:hover,
.top_search_ico.on iconify-icon {
}

.top_r_line {
  width: 1px;
  height: 22px;
  display: block;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 0.24rem;
}

.top_language {
  position: relative;
}
.top_language_btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.language_span {
  display: flex;
  align-items: center;
  margin-left: 0.1rem;
}
.language_span::after {
  content: "";
  display: block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.top_language_btn.on p {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .language_span {
    display: none;
  }
  .top_r_line {
    margin: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

.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: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

/* 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: none;
  height: var(--header_height);
}
.pages_height {
  height: var(--header_height);
}
@media screen and (max-width: 1024px) {
  .full_header_height {
    display: block;
  }
  .pages_height {
    display: none;
  }
}

.fixedHeader .i_nav > li > a {
  color: #333;
}
.fixedHeader .top_search_ico iconify-icon,
.fixedHeader .top_language_btn iconify-icon {
  color: #666;
}

.fixedHeader .top_r_line {
  background-color: rgba(51, 51, 51, 0.15);
}
.fixedHeader .top_language_btn span {
  color: #333;
}
.fixedHeader .language_span::after {
  border-top: 6px solid #666;
}

.topHeader .i_nav > li > a {
  color: #333;
}
.topHeader .top_search_ico iconify-icon,
.topHeader .top_language_btn iconify-icon {
  color: #666;
}

.topHeader .top_r_line {
  background-color: rgba(51, 51, 51, 0.15);
}
.topHeader .top_language_btn span {
  color: #333;
}
.topHeader .language_span::after {
  border-top: 6px solid #666;
}

@media screen and (max-width: 1024px) {
  .top_search_ico iconify-icon,
  .top_language_btn iconify-icon {
    color: #333;
  }
  .top_r_line {
    background-color: rgba(51, 51, 51, 0.15);
  }
}

/* banner */
.home_banner {
  position: relative;
}

.banner_active {
  width: 20%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

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

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

/* -------------------------- */
.home_banner-pagination {
  display: block;
  text-align: center;
  position: absolute;
  left: 10.5vw;
  bottom: 6.8%;
}
.home_banner-pagination .swiper-pagination-bullet {
  width: 0.55rem;
  height: 2px;
  display: inline-block;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.4);
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.home_banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

/* -------------------------- */
.hb_a,
.hb_b,
.hb_c,
.hb_d {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hb_a_box {
  width: 46%;
  box-sizing: border-box;
}

.hb_a_box h2 {
  line-height: 1.2;
}

.hb_line {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #ffdf85 0%, #ffdf8500 100%);
}

.hb_a_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.15rem;
}

.hb_a_item {
  box-sizing: border-box;
  padding-right: 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hb_a_item::before {
  content: "";
  display: block;
  width: 1px;
  height: 92%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(216, 216, 216, 0.3);
}

.hb_a_item img {
  width: 0.54rem;
  transition: all 0.5s ease;
}

.hb_a_item:last-child {
  padding-right: 0;
}
.hb_a_item:last-child::before {
  display: none;
}
.hb_a_item:hover img {
  transform: scaleX(-1);
}

#LCP_img {
  will-change: transform; /* 强制启用GPU加速合成层 */
}

.hb_b_box {
  width: 56.4%;
  box-sizing: border-box;
}

.banner_line {
  display: block;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #e60012 0%, #e6001200 100%);
}

.hb_c {
  top: 67%;
}

.hb_c_box {
}

.hb_c_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16rem;
}

.hb_c_item {
  display: flex;
  align-items: center;
  gap: 0 6px;
}

.hb_c_item img {
  width: 0.28rem;
}

.hb_c_list .hb_c_item:nth-last-child(-n + 2) {
  margin-right: 0.14rem;
}

/* --------------- */
.hb_d_box {
  width: 37.7%;
}
.hb_d_box i {
  width: 100%;
}

.homeBs_more {
  display: flex;
  gap: 0 0.2rem;
}

@media screen and (max-width: 1650px) {
  .hb_a_box h2 {
    font-size: 0.42rem;
  }
}
@media screen and (max-width: 1440px) {
  .hb_a_box {
    width: 50%;
  }
  .hb_a_box h4 {
    font-size: 0.3rem;
  }
  .hb_a_box h2 {
    font-size: 0.4rem;
  }
  .hb_a_box h5 {
    font-size: 0.2rem;
  }
  .hb_a_list {
    margin-top: 0.4rem;
  }
  .hb_a_item img {
    width: 0.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .hb_a_box {
    width: 60%;
  }
  .hb_a_box h4 {
    font-size: 0.2rem;
  }
  .hb_a_box h2 {
    font-size: 0.26rem;
  }
  .hb_a_box h5 {
    font-size: 0.16rem;
  }
  .hb_line {
    margin: 0.2rem 0;
  }
  .hb_a_item p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .home_banner-prev,
  .home_banner-next {
    display: none;
  }
  .hb_a_box {
    width: 100%;
  }
  .hb_line {
    width: 50%;
  }
  .hb_a_item img {
    width: 0.3rem;
  }
  .hb_a_box .homeBs_more {
    display: none;
  }

  /* --------------- */
  .hb_b_box {
    width: 100%;
  }

  /* --------------- */
  .hb_c {
    top: 50%;
  }

  /* --------------- */
  .hb_d_box {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hb_a_box h4 {
    font-size: 0.16rem;
  }
  .hb_a_box h2 {
    font-size: 0.18rem;
  }
  .hb_a_item p {
    font-size: 0.14rem;
  }
  .banner_active {
    display: none;
  }

  /* --------------- */
  .banner_line {
    margin: 0.1rem 0;
  }
  .hb_b_box h2 {
    font-size: 0.18rem;
  }
  .hb_b_box h3 {
    font-size: 0.16rem;
  }
  .hb_b_box .btn_box {
    margin-top: 0.2rem;
  }

  /* --------------- */
  .hb_c_list {
    display: none;
  }

  /* ************** */
  .hb_a .hb_line,
  .hb_a_list,
  .hb_b .banner_line,
  .hb_b h3,
  .hb_b .homeBs_more,
  .hb_c .btn_box,
  .hb_d .banner_line,
  .hb_d h3 {
    display: none;
  }
  .hb_a h5 {
    font-size: 0.12rem;
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .home_banner_list .swiper-slide::before {
    padding-bottom: 55%;
  }
  .hb_c h2 {
    font-size: 0.18rem;
  }
  .hb_c h3 {
    font-size: 0.16rem;
    margin-bottom: 0;
  }
  .hb_d h2 {
    font-size: 0.18rem;
  }
  .hb_d .btn_box {
    margin-top: 0.1rem;
  }
}

/* 产品类目 */
.Product_Category {
}

.Product_Category_box {
  position: relative;
}

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

/* -------------------------- */
.Product_Category-prev,
.Product_Category-next {
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  box-sizing: border-box;
  border: 1.04px solid #ebebeb;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  color: #333;
  transition: all 0.4s ease;
}
.Product_Category-prev {
  left: -4vw;
}
.Product_Category-next {
  right: -4vw;
}
.Product_Category-prev iconify-icon,
.Product_Category-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
}
.Product_Category_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Product_Category-prev:hover,
.Product_Category-next:hover {
  background: var(--i_color);
  border-color: var(--i_color);
  color: #fff;
}

/* -------------------------- */
.Product_Category-pagination {
  display: block;
  text-align: center;
}
.Product_Category-pagination .swiper-pagination-bullet {
  width: 0.55rem;
  height: 2px;
  display: inline-block;
  margin: 0 6px;
  background: #d8d8d8;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Product_Category-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

/* -------------------------- */
.category_item a {
  display: block;
  box-sizing: border-box;
  padding: 0.36rem 0.3rem 0.28rem 0.3rem;
  border-radius: 16px;
  background: #f6f6f6;
}

.category_img {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.category_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.category_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.category_item:hover h3 {
  color: var(--i_color);
}
.category_item:hover .category_img img {
  transform: translate(-50%, -50%) scale(1.05);
}

@media screen and (max-width: 1600px) {
  .Product_Category-prev,
  .Product_Category-next {
    background-color: rgb(0, 0, 0, 0.5);
    border-color: transparent;
    color: #fff;
  }
  .Product_Category-prev {
    left: 1%;
  }
  .Product_Category-next {
    right: 1%;
  }
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1024px) {
  .Product_Category-prev,
  .Product_Category-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .category_item a {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Product_Category-pagination .swiper-pagination-bullet {
    width: 0.2rem;
  }
  .category_img {
    margin: 0.2rem 0;
  }
}

/* 公司介绍 */
.Company_Introduction {
  background-color: #f3f3f3;
  position: relative;
  overflow: hidden;
}

.logo_txt {
  width: 32.82%;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

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

.Company_info {
  width: 45.6%;
}

.Company_text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Company_video {
  width: 51.34%;
  box-sizing: border-box;
  position: relative;
}
.Company_video::before {
  content: "";
  display: block;
  width: 80%;
  height: 0.66rem;
  background-color: var(--i_color);
  position: absolute;
  right: 0;
  bottom: -6.5%;
  border-radius: 0px 0px 0.4rem 0px;
}

.Company_video_box {
  width: 96.36%;
  position: relative;
  border-radius: 0px 0.8rem 0px 0px;
  box-shadow: 0px 20px 40px 0px rgba(56, 0, 5, 0.19);
  overflow: hidden;
}
.Company_video_box::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 69%;
}
.Company_video_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
}
.video_btn .icon {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.68rem;
  height: 0.68rem;
  background: rgb(255 255 255 / 80%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.video_btn iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: var(--i_color);
}

.o_line::before,
.o_line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 100%);
  border-radius: 50%;
  opacity: 0;
  animation: serv_one_border 1.6s 0s ease infinite;
}
.o_line:before {
  width: 50%;
  height: 50%;
}
.o_line:after {
  width: 60%;
  height: 60%;
}
@keyframes serv_one_border {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
    -ms-transform: translate(-50%, -50%) scale(1.5);
    -o-transform: translate(-50%, -50%) scale(1.5);
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    -moz-transform: translate(-50%, -50%) scale(1.5);
  }
}

@media screen and (max-width: 1024px) {
  .Company_info,
  .Company_video {
    width: 100%;
  }
  .video_btn {
    width: 120px;
    height: 120px;
  }
  .video_btn .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .Company_video::before {
    height: 0.4rem;
    bottom: -4%;
    border-radius: 0px 0px 0.25rem 0px;
  }
}
@media screen and (max-width: 560px) {
  .video_btn {
    width: 80px;
    height: 80px;
  }
  .video_btn .icon {
    width: 50px;
    height: 50px;
  }
  .video_btn iconify-icon {
    font-size: 30px;
  }
}

.Promotional_data {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.data_item {
  width: 23.5%;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.22rem 0.3rem;
  transition: all 0.4s ease;
}

.data_item img {
  width: 0.5rem;
}

.data_num {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.data_num p {
  text-align: center;
}

.data_num_box {
  display: flex;
  align-items: baseline;
  color: #333;
  transition: all 0.4s ease;
}

.data_item:hover {
  transform: translateY(-0.25rem);
}
.data_item:hover .data_num_box {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .Company_Introduction {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .Company_Introduction {
    padding-bottom: 0.4rem;
  }
  .Company_top {
    margin-bottom: 0.8rem;
  }
  .data_item {
    padding: 0.2rem;
  }
  .data_num {
    position: static;
    right: auto;
    bottom: auto;
    align-items: flex-start;
    transform: none;
  }
  .data_num p {
    font-size: 0.16rem;
  }
  .data_item:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .data_item {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .Company_top {
    margin-bottom: 0.4rem;
  }
  .Promotional_data {
    gap: 0.1rem 2%;
  }
  .data_item img {
    width: 0.35rem;
  }
  .data_num p {
    font-size: 0.12rem;
  }
}

/* 公司优势 */
.Company_Advantages {
}

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

.oac_imgs {
  width: 44%;
  position: relative;
  border-radius: 1rem 0.2rem 1rem 0.2rem;
  overflow: hidden;
}
.oac_imgs::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 107.58%;
}
.oac_imgs::after {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: linear-gradient(17deg, #e60012 0%, #e6001200 60%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.oac_imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 2%;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
.oac_imgs img.active {
  opacity: 1;
  top: 0;
}

.oac_imgs p {
  width: 44%;
  position: absolute;
  left: 6.1%;
  bottom: 8.4%;
  z-index: 2;
  transition: all 0.4s ease;
  opacity: 0;
}
.oac_imgs p.active {
  opacity: 1;
}

.oac_texts {
  width: 47.27%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.oact_item {
  box-sizing: border-box;
  border-bottom: 1px solid #ebebeb;
  transition: all 0.4s ease;
}

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

.tit h3 {
  position: relative;
  color: #666;
  transition: all 0.4s ease;
}
.tit h3::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: var(--i_color);
  position: absolute;
  left: -4%;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.tit iconify-icon {
  font-size: 0.26rem;
  color: #666666;
  transition: all 0.4s ease;
}

.tit.active h3 {
  font-size: 0.32rem;
  color: #333;
  font-weight: bold;
}
.tit.active h3::before {
  opacity: 1;
}
.tit.active iconify-icon {
  transform: rotate(90deg);
}

.oact_item h6 p {
}

.oac_texts .txt {
  display: none;
}

.oact_item.active {
  border-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .oac_texts {
    gap: 0.2rem 0;
  }
  .oact_item {
    padding-bottom: 0.2rem;
  }
  .tit.active h3 {
    font-size: 0.2rem;
    font-weight: 550;
  }
  .tit h3::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .oac_imgs,
  .oac_texts {
    width: 100%;
  }
  .oac_texts {
    order: -1;
  }

  .round {
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 560px) {
  .oac_texts {
    gap: 0.1rem 0;
  }
  .oact_item {
    padding-bottom: 0.1rem;
  }
  .oact_item h3,
  .tit.active h3 {
    font-size: 0.15rem;
  }
  .txt h6 {
    margin-top: 0.1rem;
  }
}

/* 荣誉证书 */
.Certificate_Honor {
  padding-top: 1.66rem;
  padding-bottom: 2.21rem;
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/Honors_Ba_.webp)
    no-repeat center;
  background-size: cover;
  position: relative;
}

.Honor_box {
  width: 42%;
  box-sizing: border-box;
}

.Honor_list {
  width: 96%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.1rem 0.28rem;
  flex-wrap: wrap;
}
.Honor_list::before {
  content: "";
  display: block;
  width: 0.42rem;
  height: 80%;
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/wheat_ears_left.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.Honor_list::after {
  content: "";
  display: block;
  width: 0.42rem;
  height: 80%;
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/wheat_ears_right.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.Honor_item {
  width: 21%;
  box-sizing: border-box;
  padding-right: 0.28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.Honor_item::before {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background-color: #dfdfdf;
  position: absolute;
  right: 0;
  bottom: 0;
}

.Honor_item:last-child {
  padding-right: 0;
}
.Honor_item:last-child::before {
  display: none;
}

.Certificate_pic {
  width: 100%;
  display: none;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
  .Honor_item p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1200px) {
  .Certificate_Honor {
    padding-top: 0.8rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .Certificate_Honor {
    padding: 0.6rem 0;
  }
  .Honor_box {
    width: 50%;
  }
  .Honor_list {
    width: 100%;
  }
  .Honor_item p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .Certificate_Honor::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(255, 255, 255, 0.6);
  }
  .Honor_box {
    width: 100%;
  }
  .Honor_list {
    width: 100%;
    justify-content: flex-start;
    gap: 0.1rem 2%;
  }
  .Honor_item {
    width: 20%;
  }
  .Honor_list::before,
  .Honor_list::after {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .Certificate_Honor {
    padding: 0.3rem 0;
  }
  .Certificate_Honor {
    background: none;
  }
  .Certificate_Honor::before {
    display: none;
  }
  .Honor_list {
    width: 100%;
  }
  .Honor_item {
    width: 49%;
    padding-right: 0;
  }
  .Honor_item::before {
    display: none;
  }
  .Certificate_pic {
    display: block;
  }
}

/* 合作伙伴 */
.Partners {
}

.Brands_list {
  position: relative;
  overflow: hidden;
}

.Brands_list_box {
  display: flex;
  will-change: transform;
  gap: 0 1.5%;
}

.Brands_img {
  width: 13.2%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.Brands_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 52%;
}

.Brands_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.Brands_img:hover {
  border-color: var(--i_color);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.Brands_img:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (max-width: 1024px) {
  .Brands_img {
    width: 20%;
  }
}
@media screen and (max-width: 560px) {
  .Brands_img {
    width: 30%;
  }
}

/* 客户评论 */
.Customer_Reviews {
  position: relative;
}
.Customer_Reviews::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fdf6f6 0%, #fdf6f600 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.Customer_Reviews::after {
  content: "";
  display: block;
  width: 100%;
  height: 26%;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.Reviews_top {
  gap: 0.2rem 0;
}

.Reviews_gam {
  display: flex;
  gap: 0.15rem 0.28rem;
  flex-wrap: wrap;
}

.Rg_item {
  box-sizing: border-box;
  padding: 7px 0.2rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.Rg_item iconify-icon {
  font-size: 0.24rem;
}

.Reviews_Google {
  background-color: #e9f0fe;
}
.Reviews_Google span {
  color: #0c73fa;
}

.Reviews_Facebook {
  background-color: #e5effc;
}
.Reviews_Facebook span {
  color: #0c73fa;
}

.Reviews_YouTube {
  background-color: #ffe6ea;
}
.Reviews_YouTube span {
  color: #fa0832;
}

.Reviews_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.Reviews_item {
  width: 32%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0.12rem;
  padding: 0.5rem 0.36rem;
  position: relative;
  overflow: hidden;
}

.star {
  width: 31%;
}

.quotation_marks {
  display: block;
  margin: 0.5rem 0;
}

.author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.16rem;
}

.author_img {
  width: 0.8rem;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.author_text .Rg_item {
  width: max-content;
}

.logo_Reviews {
  width: 69%;
  position: absolute;
  right: -6.4%;
  bottom: 0;
  pointer-events: none;
}

.Reviews_img {
  width: 100%;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  z-index: 10;
}
.Reviews_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 63.24%;
}
.Reviews_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.Reviews_img .video_btn {
  width: 0.8rem;
  height: 0.8rem;
}

.Reviews_img .video_btn .icon {
  width: 0.45rem;
  height: 0.45rem;
}

.Reviews_img .video_btn iconify-icon {
  font-size: 0.22rem;
}

@media screen and (max-width: 1024px) {
  .Reviews_item {
    width: 49%;
    box-shadow: 0 0 20px rgba(175, 175, 175, 0.3);
  }
  .quotation_marks {
    display: none;
  }
  .Reviews_item h6 {
    margin: 0.2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .Reviews_item {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Rg_item iconify-icon {
    font-size: 0.18rem;
  }
  .Rg_item span {
    font-size: 0.14rem;
  }
  .Reviews_item {
    width: 100%;
  }
}

/* 主页新闻 */
.Homepage_News {
}

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

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

.hnb_list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.hnb_item a {
  display: flex;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  transition: all 0.4s ease;
}

.hnb_time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hnb_text {
  width: 86%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.1rem 0;
}

.hnb_text p {
  width: 83.11%;
}

.hnb_more {
  width: 0.42rem;
  height: 0.42rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #dedede;
  transition: all 0.4s ease;
  color: #666;
  font-size: 0.2rem;
}

.hnb_item:hover a {
  border-color: var(--i_color);
}
.hnb_item:hover .hnb_time h4 {
  color: var(--i_color);
}
.hnb_item:hover .hnb_text p {
  color: var(--i_color);
}
.hnb_item:hover .hnb_more {
  border-color: var(--i_color);
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .hnb_img,
  .hnb_list {
    width: 100%;
  }
  .hnb_list {
    order: -1;
    gap: 0.2rem 0;
  }
  .hnb_item a {
    padding-bottom: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .hnb_text p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .hnb_text {
    width: 80%;
  }
  .hnb_text p {
    font-size: 0.14rem;
  }
  .hnb_more {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 0.16rem;
  }
}

/* 底部表单 */
.Bottom_Form {
  background: linear-gradient(
    180deg,
    #fdf3f300 -3%,
    #fdf3f3 49%,
    #fdf3f300 102%
  );
}

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

.Bottom_Form_left {
  width: 36%;
  box-sizing: border-box;
}

.bfl_list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
}

.bfl_list li {
  display: flex;
  align-items: center;
  gap: 0 0.12rem;
}
.bfl_list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--i_color);
  border-radius: 50%;
}

.Bottom_Form_right {
  width: 57%;
  box-sizing: border-box;
}

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

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

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

#wpforms-111 .wpforms-field-container .wpforms-field > input,
#wpforms-111 .wpforms-field-container textarea,
#wpforms-111 .wpforms-uploader {
  background-color: #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
#wpforms-111 .wpforms-form label.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
}

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

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

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

#wpforms-111 .wpforms-submit-container {
  width: 100%;
  padding: 0 0;
}
#wpforms-111 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  border-radius: 8px;
  background: var(--i_color);
  transition: all 0.4s ease;
}
#wpforms-111 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-111 .wpforms-submit-container button:hover {
  background: #b6000e;
}

@media screen and (max-width: 1024px) {
  .Bottom_Form_left,
  .Bottom_Form_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #wpforms-111-field_1-container,
  #wpforms-111-field_3-container,
  #wpforms-111-field_4-container,
  #wpforms-111-field_5-container {
    width: 100% !important;
  }
}

/* footer */
footer {
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/footer_Ba.webp)
    no-repeat center;
  background-size: cover;
  position: relative;
}

.footer_logo {
  width: 20%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

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

.Fs_left {
  width: 34.67%;
  box-sizing: border-box;
}

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

.footer_contact li {
  width: 38%;
  display: flex;
}

.footer_contact iconify-icon {
  font-size: 0.22rem;
  margin-right: 0.12rem;
}

.footer_contact a,
.footer_contact h6 {
  font-size: 0.18rem;
  transition: all 0.4s ease;
}

.footer_contact li:nth-child(3),
.footer_contact li:nth-child(4) {
  width: 100%;
}

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

.Fs_right {
  width: 34.8%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 2%;
}

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

.Fsr_nav a {
  font-size: 0.18rem;
  transition: all 0.4s ease;
}
.Fsr_nav a:hover {
  color: var(--i_color);
}

.footer_social_media {
  width: 15.2%;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, 0);
}

.fsm_list {
  display: flex;
  justify-content: center;
  gap: 0 1.5vw;
}

.fsm_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fsm_list iconify-icon {
  font-size: 0.3rem;
  color: #969696;
  transition: all 0.4s ease;
}

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

.fm_QR {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fm_QR img {
  width: 1.2rem;
  display: block;
  margin-bottom: 7px;
}

.footer_product {
  width: 52%;
}

@media screen and (max-width: 1024px) {
  .Fs_left {
    width: 100%;
  }
  .Fs_right {
    display: none;
  }
  .footer_contact {
    justify-content: flex-start;
  }
  .footer_contact a,
  .footer_contact h6 {
    font-size: 0.16rem;
  }
  .footer_social_media {
    width: 100%;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 0.2rem;
  }
  .footer_social_media h4 {
    text-align: left;
  }
  .fsm_list {
    justify-content: flex-start;
    margin: 0.2rem 0;
  }
  .fsm_list iconify-icon {
    font-size: 0.24rem;
  }
  .fm_QR {
    width: max-content;
    align-items: flex-start;
  }
  .fm_QR p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 560px) {
  .footer_logo {
    width: 45%;
  }
  .footer_contact {
    gap: 0.2rem 0;
  }
  .footer_contact li {
    width: 100%;
  }
  .footer_contact iconify-icon {
    font-size: 0.2rem;
  }
  .footer_contact a,
  .footer_contact h6 {
    font-size: 0.14rem;
  }
  .fsm_list {
    gap: 0 3vw;
  }
  .fm_QR img {
    width: 0.8rem;
  }
}

.footer_bottom {
}

.f_cr {
  border-top: 1px solid rgb(102, 102, 102, 0.18);
}
.f_cr p,
.f_cr a {
  font-size: 0.14rem;
  color: #666;
}
.f_cr a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 560px) {
  .f_cr p,
  .f_cr a {
    font-size: 13px;
  }
}

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

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

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  position: relative;
}
.in_position .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #333;
  position: relative;
  line-height: 20px;
}
.in_position a:first-child {
  padding-left: 0.26rem;
}
.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 16px;
  height: 16px;
  background: url(static/imgs/home.webp) no-repeat center;
  background-size: contain;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}
.in_position a:last-child {
  color: var(--i_color) !important;
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}

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

/* 产品列表 */
.product_section {
  overflow: hidden;
}

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

.product_left {
  width: 21.34%;
  box-sizing: border-box;
}

.catList_aside {
  box-sizing: border-box;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .catList_aside {
    width: 100%;
    padding-right: 0;
    background: none;
  }
  .catList_aside::before {
    display: none;
  }

  .catList_show {
    width: 100%;
  }
}

.cat_nav {
  position: relative;
}
.cat_nav_tit {
  margin-bottom: 0.2rem;
}
.cat_nav_tit h4 {
  background-color: var(--i_color);
  border-radius: 6px;
  padding: 0.11rem 0;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  display: flex;
  flex-direction: column;
  gap: 0.12rem 0;
}
.cat_nav_list li {
  position: relative;
}
.cat_nav_list li.active {
  border-color: transparent;
}

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

.cat_fold_sub {
  display: none;
  padding: 0.1rem 0.2rem;
  margin-top: 0.12rem;
  background-color: #f6f6f6;
}
.cat_fold_sub a {
  display: block;
  padding: 0.1rem 0;
  font-size: 0.18rem;
  color: #666;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0;
  height: 1px;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a:hover::before,
.cat_fold_sub .active a::before {
  width: 0.16rem;
}
.cat_fold_sub a:hover,
.cat_fold_sub .active a {
  padding-left: 0.24rem;
  color: var(--i_color);
}

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

  .cat_fold_sub a {
    font-size: 0.16rem;
  }
  .active .cat_fold_tit {
    background: none;
  }
  .active .cat_fold_tit a {
    color: var(--i_color);
  }
  .active .cat_fold_tit iconify-icon {
    color: var(--i_color);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .cat_fold_sub {
    padding: 0 20px;
  }

  .cat_nav_list {
    display: none;
    box-sizing: border-box;
    padding: 30px 30px 30px;
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  }
  .cat_nav_list li {
    border-top: none;
    border-bottom: 1px solid rgb(0 88 167 / 10%);
  }
  .cat_nav_list li.active {
    border-color: rgb(0 88 167 / 10%);
  }
  .cat_fold_tit {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 0;
    background: none;
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub p {
    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_nav_list {
    padding: 20px 30px;
  }
  .cat_fold_tit a {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .cat_nav_tit h4 {
    font-size: 16px;
  }

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

.product_right {
  width: 76.4%;
  box-sizing: border-box;
  padding-left: 2vw;
  position: relative;
}
.product_right::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f7f7f7;
  z-index: -1;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem 2%;
}

.product_li {
  width: 32%;
}

.product_li a {
  height: 100%;
  box-sizing: border-box;
  padding: 0.25rem 0.25rem 0.35rem 0.25rem;
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
}
.product_li a::before {
  content: "";
  display: block;
  width: 86%;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background-color: #e2e1e1;
}
.product_li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background-color: var(--i_color);
  transition: all 0.4s ease;
}

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

.product_li p {
  width: 89%;
  margin: 0.24rem auto;
}

.product_li:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.product_li:hover p {
  color: var(--i_color);
}
.product_li:hover a::after {
  width: 86%;
}

@media screen and (max-width: 1024px) {
  .product_right,
  .product_left {
    width: 100%;
  }
  .product_right {
    padding-left: 0;
    padding-top: 0;
  }
  .product_right::before {
    display: none;
  }
  .product_li a {
    box-shadow: 0 0 20px rgba(175, 175, 175, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .product_list {
    gap: 0.2rem 2%;
  }
}
@media screen and (max-width: 560px) {
  .product_list {
    gap: 0.1rem 2%;
  }
  .product_li {
    width: 49%;
  }
  .product_li a {
    padding: 0.2rem;
  }
  .product_li p {
    font-size: 0.14rem;
    margin: 0.1rem auto;
  }
}

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

/* 产品简述 */
.Product_Overview {
  background: url(static/imgs/Product_Overview_Ba.webp) no-repeat center;
  background-size: cover;
}

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

/* atlas */
.p_atlas {
  width: 38.67%;
  box-sizing: border-box;
  position: relative;
}
.p_atlas_list {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 0.2rem;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_atlas_list .swiper-slide {
  flex-shrink: 0;
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_atlas_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* thumbnail */
.p_thumbnail_list {
  width: calc(100% - 1rem);
  box-sizing: border-box;
  padding: 0 2px;
  margin: 0.2rem auto 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_thumbnail_list .swiper-slide {
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
}
.p_thumbnail_list figure {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_thumbnail_list figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p_thumbnail_list .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--i_color);
}

.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.36rem;
  height: 0.36rem;
  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;
  z-index: 3;
}
.thumbnail-prev {
  left: 0;
}
.thumbnail-next {
  right: 0;
}
.thumbnail-prev iconify-icon,
.thumbnail-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #444;
}
.thumbnail-prev:hover iconify-icon,
.thumbnail-next:hover iconify-icon {
  color: var(--i_color);
}
.p_atlas .swiper-button-disabled {
  cursor: not-allowed;
}

.thumbnail-pagination {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  text-align: center;
  padding: 2px 6px;
  z-index: 2;
  display: none;
}
.thumbnail-pagination,
.thumbnail-pagination span {
  font-size: 14px;
  color: #666;
}
.thumbnail-pagination .swiper-pagination-current {
  font-size: 0.22rem;
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .p_thumbnail_list {
    width: 100%;
  }
  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
  .thumbnail-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .p_atlas {
    margin-bottom: 40px;
  }
  .p_atlas_list {
    width: 100%;
  }
  .thumbnail-prev iconify-icon,
  .thumbnail-next iconify-icon {
    font-size: 30px;
  }
}

.p_right {
  width: 56.54%;
  box-sizing: border-box;
}

.sort_name {
}

.Product_info {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.Product_Parameters {
  border-top: 1px solid #e5e5e5;
}

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

.Overview_btns {
  display: flex;
  gap: 0 2vw;
}

.p_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.p_share > p {
  font-size: 0.18rem;
  color: #666;
  font-weight: 550;
}
.p_share dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_share dt {
}
.p_share a {
}
.p_share a iconify-icon {
  font-size: 0.26rem;
  color: #b2b2b2;
  transition: all 0.4s ease;
}

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

@media screen and (max-width: 1024px) {
  .p_atlas,
  .p_right {
    width: 100%;
  }
  .p_atlas {
    max-width: 5rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p_share a iconify-icon {
    font-size: 22px;
  }
}
@media screen and (max-width: 560px) {
  .Pa_item {
    width: 100%;
    padding: 0.1rem;
  }
  .Pa_item img {
    width: 0.35rem;
  }
  .Pa_item p {
    font-size: 0.14rem;
  }
  .p_share > p {
    font-size: 15px;
  }
  .p_share dt iconify-icon {
    font-size: 20px;
  }
}

/* 产品详情 */
.Product_Details {
}

.p_content_tit {
  position: relative;
}
.p_content_tit p {
  box-sizing: border-box;
  display: table;
  padding-bottom: 0.14rem;
  position: relative;
}
.p_content_tit::before,
.p_content_tit p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
.p_content_tit::before {
  width: 100%;
  height: 1px;
  background: #d2dbf0;
}
.p_content_tit p::after {
  width: 100%;
  height: 3px;
  background: var(--i_color);
}

/* 定制化流程 */
.Customized_process {
}

.Customized_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.88rem 7.1%;
}

.Customized_item {
  width: 28.6%;
  box-sizing: border-box;
  position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 75px 0px rgba(0, 0, 0, 0.08);
  padding: 0.2rem 0.3rem 0.4rem 0.3rem;
}
.Customized_item::before {
  content: "";
  display: block;
  width: 0.36rem;
  height: 0.36rem;
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/Customized_arrow.webp)
    no-repeat center;
  background-size: contain;
  position: absolute;
  right: -16%;
  top: 50%;
  transform: translateY(-50%);
}

.Customized_item:nth-child(3)::before {
  left: 50%;
  top: auto;
  bottom: -26%;
  transform: translate(-50%, 0) rotate(90deg);
}

.Customized_item:nth-child(n + 4):nth-child(-n + 5)::before {
  transform: rotate(180deg);
}

.Customized_item:nth-child(6)::before {
  display: none;
}

.Customized_name {
  display: flex;
  align-items: center;
  gap: 0 0.38rem;
}

.Customized_icon {
  flex-shrink: 0;
  position: relative;
}

.Customized_name span {
  display: block;
  font-size: 0.76rem;
  font-weight: 550;
  color: #eee;
}

.Customized_icon img {
  width: 0.42rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo_Customized {
  width: 43%;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .Customized_list {
    gap: 0.3rem 4%;
  }
  .Customized_item {
    width: 48%;
    padding: 0.2rem;
  }
  .Customized_item::before {
    display: none !important;
  }
  .Customized_name {
    margin-bottom: 0.1rem;
  }
  .Customized_name span {
    display: none;
  }
  .Customized_icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .Customized_icon img {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }
  .logo_Customized {
    width: 25%;
  }
}
@media screen and (max-width: 560px) {
  .Customized_list {
    gap: 0.2rem 0%;
  }
  .Customized_item {
    width: 100%;
  }
  .Customized_name {
    flex-wrap: wrap;
    gap: 0.15rem 0.2rem;
  }
  .Customized_name p {
    font-size: 0.16rem;
  }
}

/* 产品FAQ */

.pFAQ_list {
}
.pFAQ_list li {
  border-bottom: 1px solid #e5e5e5;
}
.pFAQ_list .tit {
  padding: 0.4rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
}
.pFAQ_list .tit b {
  flex-shrink: 0;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--i_color);
  text-align: center;
  line-height: 0.36rem;
  font-size: 0.2rem;
  color: #fff;
}
.pFAQ_list .tit p {
  font-size: 0.24rem;
  font-weight: 550;
}
.pFAQ_list .tit i {
  flex-shrink: 0;
  margin-left: auto;
  width: 0.36rem;
  height: 0.36rem;
  position: relative;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 13H5v-2h6V5h2v6h6v2h-6v6h-2z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.28rem;
}

.pFAQ_list .tit.active b {
  background: #fff;
  color: var(--i_color);
}
.pFAQ_list .tit.active p {
}
.pFAQ_list .tit.active {
}
.pFAQ_list .tit.active i {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.28rem;
}

.pFAQ_list .txt {
  display: none;
  position: relative;
}
.pFAQ_list .txt span {
  display: block;
  padding-bottom: 0.4rem;
  font-size: 0.18rem;
  color: #666;
  line-height: 1.6;
}

@media screen and (max-width: 1024px) {
  .pFAQ_list .tit b {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .pFAQ_list .tit {
    padding: 0.2rem 0;
  }
  .pFAQ_list .txt span {
    padding-bottom: 0.2rem;
  }
  .pFAQ_list .tit p {
    font-size: 17px;
  }
  .pFAQ_list .txt span {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .Product_Details_tit i {
    padding: 0.12rem 0.25rem;
  }
  .pFAQ_list .tit p {
    font-size: 15px;
  }
  .pFAQ_list .tit i,
  .pFAQ_list .tit.active i {
    background-size: 0.2rem;
  }
}

/* tags+view_other */

.pBottom {
  background-color: #f7f7f7;
}

.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.24);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16rem 0;
}
.p_tags > p {
  margin-right: 0.14rem;
  font-size: 0.18rem;
  font-weight: 550;
}
.p_tags a {
  display: block;
  padding: 0.06rem 0.17rem;
  border-radius: 5rem;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  color: #666;
  background: #fff;
  transition: all 0.4s ease;
}
.p_tags a:hover {
  background: rgba(230, 0, 18, 0.08);
  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: 14px;
  }
}

.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.42rem;
  height: 0.42rem;
  box-sizing: border-box;
  border: 1px solid #dedede;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #666;
  transition: all 0.4s ease;
}
.p_view_other p {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.5;
  font-weight: 450;
}
.p_view_other p b {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
}

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

@media screen and (max-width: 1024px) {
  .p_view_other p,
  .p_view_other p b {
    font-size: 15px;
    font-weight: 300;
  }
}
@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,
  .p_view_other p b {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .p_view_other span {
    width: 24px;
    height: 24px;
  }
  .p_view_other span iconify-icon {
    font-size: 24px;
  }
  .p_view_other p,
  .p_view_other p b {
    font-size: 14px;
  }
}

/* 相关产品 */
.Related_products {
}

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

/* -------------------------- */
.Related-pagination {
  display: block;
  text-align: center;
}
.Related-pagination .swiper-pagination-bullet {
  width: 0.14rem;
  height: 0.14rem;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 6px;
  border: 1px solid rgb(0, 0, 0, 0.6);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}
.Related-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.Related-pagination .swiper-pagination-bullet-active {
  border-color: var(--i_color);
}
.Related-pagination .swiper-pagination-bullet-active::before {
  background-color: var(--i_color);
}

.Related_list .product_li a {
  background-color: #f6f6f6;
}

@media screen and (max-width: 1024px) {
  .Related-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
  }
  .Related_list .product_li a {
    box-shadow: none;
  }
}

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

/* 关于公司 */
.About_Company {
  background: linear-gradient(
    180deg,
    #ffffff -5%,
    #fff7f7cc 5%,
    #ffffff 37%,
    #ffffff00 100%
  );
}

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

.Company_box_left {
  width: 49.8%;
  max-height: 5.8rem;
  box-sizing: border-box;
  padding-right: 1.5vw;
  overflow-y: auto;
}
.Company_box_left::-webkit-scrollbar {
  width: 3px;
}
.Company_box_left::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 5rem;
}
.Company_box_left::-webkit-scrollbar-thumb {
  background: var(--i_color);
  border-radius: 5rem;
}

.Company_box_right {
  width: 41.4%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.88rem 2%;
}

.cbr_item {
  width: 49%;
}

.cbr_num {
  display: flex;
  align-items: baseline;
  transition: all 0.4s ease;
}

.cbr_name {
  display: flex;
  align-items: center;
  gap: 0 9px;
}

.cbr_name img {
  width: 0.36rem;
}

.cbr_item:hover .cbr_num {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .cbr_name p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .Company_box_left,
  .Company_box_right {
    width: 100%;
  }
  .Company_box_left {
    max-height: 3rem;
  }
  .Company_box_right {
    gap: 0.3rem 2%;
  }
  .cbr_item {
    width: 32%;
  }
}
@media screen and (max-width: 560px) {
  .Company_box_right {
    gap: 0.2rem 2%;
  }
  .cbr_item {
    width: 49%;
  }
  .cbr_name img {
    width: 0.25rem;
  }
  .cbr_name p {
    font-size: 0.14rem;
  }
}

.about_video {
  width: 100%;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.about_video::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 33.27%;
}
.about_video .about_video_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.about_video_btn {
  width: 8.5%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.4s ease;
}

.about_video_btn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.05, 1.05);
  transform: translate(-50%, -50%) scale(1.05, 1.05);
}

@media screen and (max-width: 1024px) {
  .about_video_btn {
    width: 15%;
  }
}
@media screen and (max-width: 560px) {
  .about_video_btn {
    width: 20%;
  }
}

/* 企业文化 */
.Corporat_Culture {
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/Corporat_Culture_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.Culture_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

.Culture_item {
  position: relative;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid #d1d1d1;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -0.25rem;
  transition: all 0.6s ease-in-out;
  overflow: hidden;
}

.Culture_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}

.Culture_info {
  width: 79.15%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2vw;
}

.Culture_icon {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Culture_icon img {
  width: 0.5rem;
}

.Culture_text {
  box-sizing: border-box;
  padding-left: 2vw;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  display: none;
}

.Culture_item.active {
  width: 6.3rem;
  z-index: 1;
  border-radius: 5rem;
  border-color: transparent;
}
.Culture_item.active .Culture_img {
  opacity: 1;
}
.Culture_item.active .Culture_icon img {
  filter: invert(1) sepia(1) saturate(0) hue-rotate(0deg) brightness(2);
}
.Culture_item.active .Culture_icon p {
  color: #fff;
}
.Culture_item.active .Culture_text {
  display: block;
}

@media screen and (max-width: 1366px) {
  .Culture_item {
    width: 3rem;
    height: 3rem;
  }
  .Culture_item.active {
    width: 5.6rem;
  }
  .Culture_icon p {
    font-size: 0.2rem;
    margin-top: 0.1rem;
  }
  .Culture_text {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .Culture_item {
    width: 2rem;
    height: 2rem;
    margin: 0 -0.1rem;
  }
  .Culture_item.active {
    width: 3.7rem;
  }
  .Culture_icon img {
    width: 0.35rem;
  }
  .Culture_icon p {
    font-size: 0.18rem;
  }
  .Culture_text {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .Culture_item {
    width: 3.5rem;
    height: 1.8rem;
    margin: 0;
    border-radius: 5rem;
  }
  .Culture_item.active {
    width: 3.5rem;
  }
  .Culture_item.active .Culture_icon {
    display: none;
  }
  .Culture_text {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 560px) {
  .Culture_item,
  .Culture_item.active {
    width: 100%;
  }
  .Culture_info {
    width: 90%;
  }
  .Culture_icon img {
    width: 0.3rem;
  }
  .Culture_icon p {
    font-size: 0.16rem;
  }
  .Culture_text {
    text-align: center;
    font-size: 0.12rem;
  }
}

/* 里程碑 */
.Milestone {
}

.Milestone_box {
  position: relative;
}
.logo_Milestone {
  width: 26.4%;
  position: absolute;
  right: 23%;
  bottom: -10%;
  z-index: -1;
}

.Milestone_top_list {
  position: relative;
  overflow: hidden;
}
.Milestone_top_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Milestone_top_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

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

.Milestone_top_txt {
  width: 42%;
  box-sizing: border-box;
}

.Milestone_top_txt h2 {
  font-size: 1.2rem;
  color: rgba(230, 0, 18, 0.1);
}

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

.Milestone_bottom {
  position: relative;
}
.Milestone_bottom::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ededed;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -1;
}

.Milestone_bottom .wrap {
  position: relative;
}

.Milestone_bottom_list {
  width: 72%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
}
.Milestone_bottom_list::before {
  content: "";
  display: block;
  width: 30px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.Milestone_bottom_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Milestone_bottom_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  margin-top: 30px;
}

.mb_point {
  display: block;
  width: 0.11rem;
  height: 0.11rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
}
.Milestone_bottom_list .swiper-slide::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 6px;
  transition: all 0.4s ease;
}

.mb_years {
  max-width: max-content;
  transition: all 0.4s ease;
  position: relative;
  left: -20px;
}

.Milestone_bottom_list .swiper-slide-active::before {
  width: 100%;
}
.Milestone_bottom_list .swiper-slide-active .mb_point {
  background-color: var(--i_color);
}
.Milestone_bottom_list .swiper-slide-active .mb_years {
  color: var(--i_color);
}

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

@media screen and (max-width: 1440px) {
  .Milestone_bottom_list .swiper-slide {
    margin-top: 25px;
  }
  .Milestone_bottom_list .swiper-slide::before {
    top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .Milestone_top_txt h2 {
    font-size: 0.8rem;
  }
  .Milestone_bottom_list {
    padding-left: 0;
  }
  .Milestone_bottom_list .swiper-slide {
    margin-top: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .Milestone_bottom_list .swiper-slide::before {
    display: none;
  }
  .mb_years {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .Milestone_top_txt h2 {
    font-size: 0.6rem;
  }
  .Milestone_bottom-prev,
  .Milestone_bottom-next {
    width: 0.35rem;
    height: 0.35rem;
  }
  .Milestone_bottom-prev iconify-icon,
  .Milestone_bottom-next iconify-icon {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .logo_Milestone {
    width: 70%;
    right: 0;
    bottom: 0;
  }
  .Milestone_top_img,
  .Milestone_top_txt {
    width: 100%;
  }
  .Milestone_top_txt h2 {
    font-size: 0.4rem;
  }
}

/* 荣誉证书 */
.Honor {
  background: #fafafa;
  overflow: hidden;
  position: relative;
}
.certificate_bacImg {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 84.32%;
  animation: certificate 20s forwards infinite linear;
  pointer-events: none;
}

@keyframes certificate {
  0% {
    transform: translateX(-50%) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }
}

.Certificate_Switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 1.5vw;
}

.cs_item {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 5rem;
  padding: 7px 0.24rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.cs_item.active,
.cs_item:hover {
  background-color: var(--i_color);
  border-color: var(--i_color);
  color: #fff;
}

.Certificate_box {
}

.cer_partner {
  position: relative;
  display: none;
}

.cer_partner.active {
  display: block;
}

.cer_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cer_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cer_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
}

.cer_partner_list .img {
  width: 68.5%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background-color: #c8c8c8;
}
.cer_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 141.8%;
}
.cer_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.04rem;
  box-sizing: border-box;
}

.cer_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;
}
.cer_text {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  box-sizing: border-box;
  padding: 0.2rem;
  position: relative;
  width: 100%;
  justify-content: center;
}
.cer_text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--i_color);
  transition: all 0.7s ease;
}
.cer_text img {
  width: 0.48rem;
  flex-shrink: 0;
}
.cer_text p {
  font-size: 0.16rem;
  color: #333;
}

.cer_partner_list li:hover .cer_text::after {
  right: auto;
  left: 0;
  width: 100%;
}
.cer_partner_list li:hover .cer_text p {
  color: var(--i_color);
}

/* 指示器 */
.cer_partner .pt-pagination {
  display: none;
  text-align: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.cer_partner .pt-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin: 0 0.05rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 1;
  outline: none;
  transition: all 0.3s ease;
}
.cer_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */
.cer_partner .pt-button-prev,
.cer_partner .pt-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #ebebeb;
  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;
}
.cer_partner .pt-button-prev iconify-icon,
.cer_partner .pt-button-next iconify-icon {
  font-size: 0.24rem;
  color: #333;
  transition: all 0.3s ease;
}
.cer_partner .pt-button-prev {
  left: -5%;
}
.cer_partner .pt-button-next {
  right: -5%;
}

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

@media screen and (max-width: 1440px) {
  .cer_text img {
    width: 0.4rem;
  }
  .certificate_bac {
    padding: 0.8rem 0;
  }
}
@media screen and (max-width: 1200px) {
  .certificate_bac {
    padding: 0.6rem 0;
  }
  .cer_partner_box {
    margin-top: 0.4rem;
  }
  .cer_partner .pt-pagination {
    display: flex;
  }
  .cer_partner .pt-button-prev,
  .cer_partner .pt-button-next {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .certificate_bacImg {
    position: absolute;
    top: -50%;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .certificate_bacImg {
    position: absolute;
    top: -20%;
    width: 100%;
  }
}

/* 公司环境 */
.Company_Environment {
}

.Environment_list {
  position: relative;
  overflow: hidden;
}
.Environment_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Environment_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.Environment_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.Environment_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 底部宣传 */
.Bottom_advertisement {
}

.advertisement_box {
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/advertisement_box.webp)
    no-repeat center;
  background-size: cover;
  border-radius: 0.2rem;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

/* -------------------------------------------  支持页面 */

/* 定制服务 */
.Customized_services {
}

.Customized_services .wrap {
  gap: 0.3rem 0;
}

.Cs_left {
  width: 45%;
}

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

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

/* 定制优势 */
.Customization_advantages {
}

.aboutAdv_list {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.aboutAdv_list::before {
  content: "";
  display: block;
  padding-bottom: 38.5%;
}

.aboutAdv_list dl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5%;
}
.aboutAdv_list dt {
  width: 17vw;
  height: 100%;
  position: relative;
  transition: all 0.5s ease;
  border-radius: 0.15rem;
  overflow: hidden;
}
.aboutAdv_list dt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  opacity: 0.7;
  background: linear-gradient(180deg, #00000000 0%, #e60012 100%);
  transition: all 0.5s ease;
}

.aboutAdv_list dt > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.aboutAdv_list .t1,
.aboutAdv_list .t2 {
  z-index: 3;
}

.aboutAdv_list .t1 {
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  transform: translateX(-50%);
  width: 100%;
  box-sizing: border-box;
  padding: 0 0.5rem;
}
.aboutAdv_list .t1 img {
  height: 0.5rem;
}
.aboutAdv_list .t1 h6 {
  margin-top: 0.3rem;
}

.aboutAdv_list .t2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0.3rem;
  bottom: 0.3rem;
  width: 34.5vw;
}
.aboutAdv_list .t2 p {
  font-size: 0.18rem;
  color: #fff;
  line-height: 1.5;
}
.aboutAdv_list .t2 img {
}

.aboutAdv_list h6 {
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
}

.aboutAdv_list .curr::after {
  height: 40%;
}
.aboutAdv_list .curr .t1 {
  opacity: 0;
  visibility: hidden;
}
.aboutAdv_list .curr .t2 {
  opacity: 1;
  visibility: visible;
}

.aboutAdv_list .t1,
.aboutAdv_list .t2 {
  transition: all 0.5s ease;
}

@media screen and (max-width: 1440px) {
  .aboutAdv_list .t2 {
    width: 48vw;
  }
}
@media screen and (max-width: 1200px) {
  .aboutAdv_list .t1 img {
    height: 0.56rem;
  }
}
@media screen and (max-width: 1024px) {
  .aboutAdv_list::before {
    display: none;
  }

  .aboutAdv_list dl {
    position: initial;
  }
  .aboutAdv_list dt {
    margin-bottom: 40px;
    width: 100%;
    background: var(--i_color);
  }
  .aboutAdv_list dt:last-child {
    margin-bottom: 0;
  }
  .aboutAdv_list dt::after {
    height: 40%;
  }
  .aboutAdv_list dt > img {
    position: initial;
  }

  .aboutAdv_list .t1 {
    display: none;
  }
  .aboutAdv_list .t2 {
    opacity: 1;
    visibility: visible;
    width: 100%;
    left: 0;
    bottom: 20px;
    box-sizing: border-box;
    padding: 0 20px;
  }
  .aboutAdv_list .t2 img {
    display: block;
    height: 40px;
  }
  .aboutAdv_list h6 {
    margin-top: 16px;
    font-size: 18px;
  }

  .aboutAdv_list .t1 h6 {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .aboutAdv_list {
    padding-bottom: 0;
  }
  .aboutAdv_list dt {
    margin-bottom: 20px;
  }
  .aboutAdv_list .t2 img {
    height: 30px;
  }
  .aboutAdv_list h6 {
    font-size: 16px;
  }
  .aboutAdv_list .t2 p {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* 我们的服务 */
.Our_Services {
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/Our_Services_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.Our_Services_text {
  width: 50%;
}

.Our_Services_list {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.16rem;
  overflow: hidden;
}

.Our_Services_item {
  width: 12.5%;
  box-sizing: border-box;
  padding: 0.6rem 0.2rem 0.3rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid #ebebeb;
  background-color: #fff;
}

.Our_Services_item img {
  width: 0.4rem;
  transition: all 0.4s ease;
}

.Our_Services_item:last-child {
  border-right: none;
}

.Our_Services_item:hover img {
  transform: scaleX(-1);
}
.Our_Services_item:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .Our_Services_item {
    padding: 0.3rem 0.2rem;
  }
  .Our_Services_item p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .Our_Services_text {
    width: 100%;
  }
  .Our_Services_item {
    width: 25%;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .Our_Services_item img {
    width: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .Our_Services_list {
    gap: 0.08rem 2%;
  }
  .Our_Services_item {
    width: 49%;
    padding: 0.2rem 0.1rem;
  }
  .Our_Services_item p {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}

/* 定制内容 */
.Customized_content {
  background: url(static/imgs/Corporat_Culture_Ba.webp) no-repeat center;
  background-size: cover;
}

.Customized_box {
  max-width: 17.38rem;
  max-height: 8.12rem;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
}

.Cb_content {
  width: 17.38rem;
  height: 17.38rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f6f3f3 0%, #f6f3f300 48%);
  border: 1px dashed rgba(230, 0, 18, 0.2);
  box-shadow: inset 0px 4px 40px 0px rgba(230, 0, 18, 0.03);
  border-radius: 50%;
  position: relative;
}
.Cb_content::before {
  content: "";
  display: block;
  width: 71.7%;
  height: 71.7%;
  border: 1.5px dashed rgba(230, 0, 18, 0.2);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12%;
}
.Cb_content::after {
  content: "";
  display: block;
  width: 51.45%;
  height: 51.45%;
  border: 1.5px dashed rgba(230, 0, 18, 0.2);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 19%;
}

.Cb_list {
}

.Cb_item {
  cursor: pointer;
}

.Cb_name {
  position: absolute;
  transition: all 0.4s ease;
}
.Cb_num {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
  position: absolute;
  transition: all 0.4s ease;
}

.Cb_item.active .Cb_name,
.Cb_item:hover .Cb_name {
  color: var(--i_color);
}
.Cb_item.active .Cb_num,
.Cb_item:hover .Cb_num {
  background: #e60012;
  color: #fff;
}

.Cb_name_01 {
  width: 6.3%;
  left: 6%;
  top: 38%;
}
.Cb_num_01 {
  left: 13.5%;
  top: 38%;
}

.Cb_name_02 {
  width: 4.85%;
  left: 11%;
  top: 29%;
}
.Cb_num_02 {
  left: 17%;
  top: 29%;
}

.Cb_name_03 {
  width: 4.8%;
  left: 17%;
  top: 20.5%;
}
.Cb_num_03 {
  left: 23%;
  top: 21%;
}

.Cb_name_04 {
  width: 6.3%;
  left: 24%;
  top: 14.5%;
}
.Cb_num_04 {
  left: 31%;
  top: 15%;
}

.Cb_name_05 {
  width: 7.15%;
  left: 40%;
  top: 7%;
}
.Cb_num_05 {
  left: 42%;
  top: 11%;
}

.Cb_name_06 {
  width: 4.75%;
  left: 53%;
  top: 7%;
}
.Cb_num_06 {
  left: 54%;
  top: 11%;
}

.Cb_name_07 {
  width: 7.4%;
  left: 69%;
  top: 13.5%;
}
.Cb_num_07 {
  left: 66%;
  top: 15%;
}

.Cb_name_08 {
  width: 4.75%;
  left: 78%;
  top: 20.5%;
}
.Cb_num_08 {
  left: 74%;
  top: 21%;
}

.Cb_name_09 {
  width: 8.4%;
  left: 84%;
  top: 29%;
}
.Cb_num_09 {
  left: 80%;
  top: 29%;
}

.Cb_name_10 {
  width: 5.15%;
  left: 87.5%;
  top: 39%;
}
.Cb_num_10 {
  left: 83.4%;
  top: 39%;
}

.Cb_imgs {
  width: 7.72rem;
  height: 7.72rem;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 22%;
}
.Cb_imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: rotate(10deg);
  transition: all 0.8s ease;
}

.Cb_imgs img.active {
  transform: rotate(0deg);
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .Customized_box {
    max-width: 14rem;
    max-height: 7.12rem;
  }
  .Cb_content {
    width: 14rem;
    height: 14rem;
  }
  .Cb_imgs {
    width: 6rem;
    height: 6rem;
    top: 23%;
  }
  .Cb_name {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1200px) {
  .Customized_box {
    max-width: 12rem;
    max-height: 6rem;
  }
  .Cb_content {
    width: 12rem;
    height: 12rem;
  }
  .Cb_imgs {
    width: 5.5rem;
    height: 5.5rem;
    top: 23%;
  }
  .Cb_name {
    font-size: 0.14rem;
  }
  .Cb_name_10 {
    width: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .Customized_box {
    width: 94vw;
    max-width: 1500px;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
  }
  .Cb_content {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .Cb_content::after,
  .Cb_content::before {
    display: none;
  }
  .Cb_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 2%;
  }
  .Cb_item {
    width: 23.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.1rem 4%;
  }
  .Cb_name {
    width: 70%;
    text-align: left;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .Cb_num {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 0.14rem;
    flex-shrink: 0;
    order: -1;
    position: relative;
    top: auto;
    left: auto;
  }
  .Cb_imgs {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    border-radius: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.3rem;
    border-radius: 0.1rem;
    margin-bottom: 0.3rem;
  }
  .Cb_imgs::before {
    content: "";
    display: block;
    padding-bottom: 55%;
  }
  .Cb_imgs img {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 768px) {
  .Cb_item {
    width: 32%;
  }
}
@media screen and (max-width: 560px) {
  .Cb_item {
    width: 49%;
  }
}

/* 服务流程 */
.Service_Process {
}

.process_ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}
.process_ul::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #a6a6a6;
  z-index: -1;
}
.process_ul li {
  display: flex;
  gap: 0.3rem;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.process_ul li::before {
  content: "";
  display: block;
  width: 0;
  border-bottom: 1px dashed var(--i_color);
  position: absolute;
  bottom: 9px;
  left: 0;
  transition: all 0.4s ease;
}
.process_ul li:nth-child(1) {
  grid-area: 1 / 1;
}
.process_ul li:nth-child(2) {
  grid-area: 2 / 2;
}
.process_ul li:nth-child(3) {
  grid-area: 1 / 3;
}
.process_ul li:nth-child(4) {
  grid-area: 2 / 4;
}
.process_ul li:nth-child(5) {
  grid-area: 1 / 5;
}
.process_ul li:nth-child(6) {
  grid-area: 2 / 6;
}
.process_ul li:nth-child(odd) {
  margin-bottom: -0.1rem;
}
.process_ul li:nth-child(even) {
  margin-top: -0.1rem;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.process_text {
  display: flex;
  flex-direction: column;
}

.process_ul li h3 {
  font-size: 0.3rem;
  font-weight: 550;
  line-height: 100%;
  transition: all 0.3s ease;
}
.process_img {
  margin: 0.2rem 0;
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.process_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 50%;
}
.process_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}
.process_ul li h4 {
  font-size: 0.18rem;
  font-weight: 550;
  margin-bottom: 0.14rem;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.process_text h6 {
}

.process_ul li i {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  border: 1px solid #999;
  background-color: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1025px) {
  .process_ul li:nth-child(even)::before {
    bottom: auto;
    top: 10px;
  }
  .process_ul li:nth-child(even) .process_text h3 {
    order: -1;
  }
  .process_ul li:nth-child(even) .process_img {
    order: 1;
  }
  .process_ul li:nth-child(even) .process_text h4 {
    order: 2;
  }
  .process_ul li:nth-child(even) .process_text h6 {
    order: 3;
  }
}

.process_ul li:hover::before {
  width: 100%;
}
.process_ul li:hover i {
  background-color: var(--i_color);
  border: 1px solid var(--i_color);
}
.process_ul li:hover h3 {
  color: var(--i_color);
}
.process_ul li:hover h4 {
  color: #333;
}
.process_ul li:hover h5 {
  color: #666;
}

@media screen and (max-width: 1440px) {
  .process_ul li::before {
    bottom: 8px;
  }
  .process_ul li:nth-child(even)::before {
    top: 9px;
  }
  .process_ul li h4 {
    font-size: 0.18rem;
  }
  .process_ul li h5 {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 1366px) {
  .process_ul li:nth-child(even)::before {
    top: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .process_ul li:nth-child(even)::before {
    top: 9px;
  }
}
@media screen and (max-width: 1024px) {
  .process_ul {
    flex-wrap: wrap;
    display: flex;
    gap: 0.2rem;
  }
  .process_ul li {
    margin: 0 !important;
    width: calc((100% - 0.4rem) / 3);
    height: unset;
  }
  .process_ul li::before {
    display: none;
  }
  .process_ul li i {
    display: none;
  }
  .process_text h3 {
    order: -1;
    margin-bottom: 0.2rem;
  }
  .process_img {
    margin: 0;
  }
  .process_text h6 {
    margin-bottom: 0.2rem;
  }
  .process_ul li h5 {
    width: 100%;
  }
  .process_ul::after {
    display: none;
  }
  .process_ul li {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .process_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
}
@media screen and (max-width: 560px) {
  .process_ul li {
    width: 100%;
  }
  .process_ul li h3 {
    font-size: 0.2rem;
  }
  .process_ul li h4 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 425px) {
}

/* 服务FAQ */
.Service_FAQ {
}

.title_box a {
  width: max-content;
  font-size: 0.18rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}
.title_box a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.6s ease;
}
.title_box a:hover {
  color: var(--i_color);
}
.title_box a:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.serFAQ_list {
}

ul.serFAQ_list {
}
.serFAQ_list li {
  margin-bottom: 0.2rem;
}
.serFAQ_list li.active {
}

.serFAQ_list .tit {
  padding: 0.2rem 0.2rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  background: #f6f7f9;
  cursor: pointer;
}
.serFAQ_list .QA {
  flex-shrink: 0;
  display: table;
  width: 0.34rem;
  height: 0.34rem;
  background: #fff;
  position: relative;
  border-radius: 50%;
}
.serFAQ_list .QA i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.18rem;
  color: #9c9c9c;
}
/* .serFAQ_list .QA.active{background: #FFF;}
.serFAQ_list .QA.active i{color: var(--i_color);} */

.serFAQ_list .tit p {
  font-size: 0.22rem;
  font-weight: 550;
}
.serFAQ_list .tit em {
  flex-shrink: 0;
  margin-left: auto;
  display: table;
  width: 0.3rem;
  height: 0.3rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.26rem;
}
.serFAQ_list .active .tit em {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.26rem;
}

.serFAQ_list .txt {
  display: none;
}
.serFAQ_list .txt_box {
  padding: 0.2rem 0.2rem 0.3rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.serFAQ_list .txt_box .QA {
  background: var(--i_color);
}
.serFAQ_list .txt_box .QA i {
  color: #fff;
}
.serFAQ_list .txt article {
  font-size: 0.2rem;
  color: #666;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  ul.serFAQ_list {
  }
  .service_faq_bac {
    box-sizing: border-box;
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .serFAQ_list .QA {
    width: 30px;
    height: 30px;
  }

  .serFAQ_list .tit p {
    font-size: 16px;
    line-height: 1.5;
  }
  .serFAQ_list .txt article {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .serFAQ_list .tit {
    padding: 12px 16px;
  }
  .serFAQ_list .txt_box {
    padding: 20px 16px 20px;
  }

  .serFAQ_list .tit p {
    font-size: 15px;
  }

  .serFAQ_list .tit em,
  .serFAQ_list .active .tit em {
    background-size: 20px;
  }
}

/* -------------------------------------------  案例列表页面 */

/* 案例列表 */
.case_section {
  position: relative;
}
.case_section::before {
  content: "";
  display: block;
  width: 100%;
  height: 49.5vw;
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/case_section_ba.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.case_list .product_li a {
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.case_list .product_li a::before {
  display: none;
}

/* -------------------------------------------  新闻列表页面 */

/* 新闻分类 */
.options_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0;
}

.options_list li {
  width: 25%;
  box-sizing: border-box;
  position: relative;
}

.options_list a {
  display: block;
  box-sizing: border-box;
  padding: 0 0.2rem;
  text-align: center;
  position: relative;
}
.options_list a::before {
  content: "";
  display: block;
  width: 2px;
  height: 0.24rem;
  background-color: #cecece;
  position: absolute;
  right: 0;
  top: 40%;
  transform: translate(0, -50%);
}
.options_list li:last-child a::before {
  display: none;
}

.options_list span {
  width: max-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: all 0.4s ease;
  padding-bottom: 0.1rem;
}
.options_list span::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.options_list .active span,
.options_list li:hover span {
  color: var(--i_color);
}
.options_list .active span::before {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .options_list a {
    font-size: 0.16rem;
    padding: 0 0.4rem;
  }
  .options_list a::before {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .options_list {
    padding-bottom: 0.1rem;
    gap: 0.1rem 0.25rem;
  }
  .options_list li {
    width: 100%;
  }
  .options_list a {
    font-size: 0.14rem;
    padding: 0;
    border: none;
  }
}

/* 新闻列表 */
.news_section {
}

.news_list {
  display: flex;
  flex-direction: column;
  gap: 0.48rem 0;
}

.news_item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  padding-bottom: 0.48rem;
  border-bottom: 1px solid #e5e5e5;
}

.new_left {
  width: 62.54%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.new_time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.new_text {
  width: 88%;
  box-sizing: border-box;
}

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

.news_item a:hover .new_text h3 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .news_list {
    gap: 0.3rem 0;
  }
  .news_item a {
    padding-bottom: 0.3rem;
  }
  .new_time p {
    font-size: 0.16rem;
  }
  .new_time span {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .new_left,
  .new_text {
    width: 100%;
  }
  .new_time {
    flex-direction: row;
    align-items: center;
    gap: 0 0.1rem;
    margin-bottom: 0.1rem;
  }
  .new_time span {
    order: -1;
  }
  .news_list {
    gap: 0.2rem 0;
  }
  .new_text h4 {
    margin: 0.15rem 0;
  }
  .news_item a {
    padding-bottom: 0.2rem;
  }
  .new_img {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .new_left {
    width: 100%;
  }
}

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

/* 联系我们 */
.Contact_Us {
}

.contact__list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 2%;
}
.contact__list dt {
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0.4rem 0.2rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.contact__list dt::before {
  content: "";
  position: absolute;
  top: 104%;
  left: 50%;
  transform: translateX(-50%);
  width: 3.1rem;
  height: 3.16rem;
  background: url(https://lingjuimg.com/wp-content/uploads/jinhui/2026/07/logo_contact.webp)
    no-repeat center;
  background-size: contain;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.contact__list dt::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--i_color);
}

.contact__list span {
  position: relative;
}
.contact__list i {
  display: table;
  margin-left: auto;
  margin-right: auto;
  width: 1.06rem;
  height: 0.84rem;
  background: #fdf1f2;
  -webkit-border-radius: 5rem;
  border-radius: 5rem;
  position: relative;
}
.contact_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.32rem;
  color: var(--i_color);
}

.contact__list h6 {
  margin: 0.16rem 0;
  font-size: 0.2rem;
  font-weight: 550;
}
.contact__list span > a {
  display: block;
}
.contact__list span > a {
  font-size: 0.2rem;
  color: #666;
  line-height: 1.5;
}

.contact__list dt:hover {
  background: #fdf8f8;
  border-color: #fdf8f8;
}
.contact__list dt:hover::before {
  top: 25%;
}
.contact__list dt:hover::after {
  width: 100%;
}
.contact__list dt:hover i {
  background: var(--i_color);
}
.contact__list dt:hover .contact_icon {
  color: #fff;
}
.contact__list dt span > a:hover {
  color: #333;
}

.contact__list dt,
.contact__list i,
.contact__list iconify-icon,
.contact__list dt::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 1024px) {
  .contact__list {
    flex-wrap: wrap;
    gap: 26px 2%;
  }
  .contact__list dt {
    width: 49%;
  }
  .contact__list dt::before {
    width: 40%;
    height: 80%;
  }
  .contact__list i {
    width: 50px;
    height: 50px;
  }
  .contact_icon {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .contact__list h6 {
    font-size: 15px;
  }
  .contact__list a,
  .contact__list p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .contact__list {
    gap: 20px 0;
  }
  .contact__list dt {
    width: 100%;
    padding: 20px 10px;
  }
  .contact__list i {
    width: 40px;
    height: 40px;
  }
}

/* 联系表单 */
.Contact_Form_Box {
  background: linear-gradient(180deg, #f7f7f7 0%, #f4f4f400 100%);
  border-bottom: 1px solid #e5e5e5;
}

.Contact_social_media {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.3rem;
}

.csm_item {
  box-sizing: border-box;
}

.csm_item a {
  box-sizing: border-box;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.24);
  font-size: 0.26rem;
  color: #afafaf;
  transition: all 0.4s ease;
}
.csm_item a:hover {
  border-color: var(--i_color);
  color: var(--i_color);
}

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

.cfb_left {
  width: 45.4%;
  box-sizing: border-box;
}

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

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

#wpforms-228 .wpforms-field-container .wpforms-field-label {
  font-weight: 550;
}
/* #wpforms-228 .wpforms-field-container .wpforms-required-label {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 15px;
  color: #f00;
  font-weight: bold;
} */

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

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

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

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

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

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

@media screen and (max-width: 1024px) {
  .csm_item a {
    width: 0.5rem;
    height: 0.5rem;
    font-size: 0.2rem;
  }
  .cfb_left,
  .cfb_right {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .csm_item a {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.2rem;
  }
}

/* 地图展示 */
.Map_display {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  justify-content: space-between;
}

.Map_box {
  width: 49.38%;
  box-sizing: border-box;
}

.map_name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
}

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

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

/* -------------------------------------------  Thanks */
.Thanks_btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
}

.hint_box {
  box-sizing: border-box;
  border-radius: 0.12rem;
  background: rgb(141 141 141 / 8%);
  padding: 0.3rem;
  display: flex;
  gap: 0 0.12rem;
}

.hint_box iconify-icon {
  font-size: 0.2rem;
  color: #a8a8a8;
  margin-top: 2px;
}

.hint_box h6 {
  color: #999;
}
