/*
Theme Name: ShenJue
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: #325d93;

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

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

/* 通用 */
.title h3 {
  font-size: 0.36rem;
}
.title h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 24px;
  background: url(static/imgs/title_icon.webp) no-repeat center;
  background-size: contain;
  margin-right: 0.16rem;
}
.title h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 24px;
  background: url(static/imgs/title_icon.webp) no-repeat center;
  background-size: contain;
  transform: scaleX(-1);
  margin-left: 0.16rem;
}

@media screen and (max-width: 1200px) {
  .title h3 {
    font-size: 0.24rem;
  }
  .title h3::before,
  .title h3::after {
    width: 18px;
    height: 16px;
  }
  .title p {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  .title h3 {
    font-size: 0.18rem;
  }
  .title h3::before,
  .title h3::after {
    width: 16px;
    height: 14px;
  }
  .title p {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}

.btn_box {
  display: table;
}
.btn {
  display: block;
  color: var(--i_color);
  border: 2px solid var(--i_color);
  border-radius: 5px;
  padding: 0.12rem 0.45rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.btn i {
  position: relative;
  z-index: 20;
}
.btn::before {
  content: "";
  display: block;
  width: 81px;
  height: 81px;
  background: rgba(50, 93, 147, 0.3);
  position: absolute;
  left: -59px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: all 0.6s ease;
}
.btn::after {
  content: "";
  display: block;
  width: 81px;
  height: 81px;
  background: rgba(50, 93, 147, 0.3);
  position: absolute;
  right: -59px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.btn:hover {
  color: #fff;
}
.btn:hover::before {
  width: 200%;
  height: 200%;
  background: var(--i_color);
}
.btn:hover::after {
  width: 200%;
  height: 200%;
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .btn {
    padding: 0.06rem 0.3rem;
  }
  .btn i {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .btn {
    padding: 0.04rem 0.2rem;
  }
  .btn i {
    font-size: 0.14rem;
  }
  .btn::before {
    left: -70%;
  }
  .btn::after {
    right: -70%;
  }
}

/* --- --- */

.wrap {
  width: 94vw;
  max-width: 1600px;
  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;
  background-color: #020202;
  z-index: 20250916;
}

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

@media screen and (max-width: 1024px) {
  header {
    /* background: #fff; */
  }
}

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 0.38rem;
}
.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: 3%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 0.4rem;
    position: relative;
    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
    height: var(--header_height);
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }
  .i_nav > li::before {
    display: none;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #333;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: #fff;
    white-space: nowrap;
    line-height: var(--header_height);
    position: relative;
    box-sizing: border-box;
    padding: 0 0.2rem;
    z-index: 10;
  }
  .i_nav > li > a::before {
    content: "";
    display: block;
    width: 0;
    height: 0.36rem;
    border-radius: 5rem;
    background-color: var(--i_color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    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 {
    right: initial;
    left: 0;
    width: 100%;
  }

  /* .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > li.active > a {
    color: var(--i_color);
  } */

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

  .i_nav > li > .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    min-width: 1.6rem;
    background: #fff;
    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
    font-size: 0;
  }
  .nav_dropdown_menu1 > .sub-menu,
  .nav_dropdown_menu2 > .sub-menu,
  .nav_dropdown_menu3 > .sub-menu,
  .nav_dropdown_menu4 > .sub-menu {
    display: none !important;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav > li > .sub-menu li::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-color: var(--i_color);
    transition: all 0.5s ease;
  }
  .i_nav > li > .sub-menu a {
    display: block;
    padding: 0 0.16rem;
    font-size: 0.15rem;
    color: #333;
    line-height: 0.36rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }
  .i_nav > li > .sub-menu > li:hover::before {
    width: 100%;
  }
  .i_nav .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--i_color);
    min-width: 1.4rem;
  }
  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: rgb(255 255 255 / 15%);
  }
  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;
    color: #fff;
  }
  .i_nav .sub-menu .sub-menu li:hover {
    background: rgb(255 255 255 / 15%);
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.4rem;
  }
  .i_nav > li > a {
    font-size: 15.5px;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav > li > a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: fixed;
    top: var(--header_height);
    left: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    z-index: 2;
  }
  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }
  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.24rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);
    background-size: 0.24rem;
  }
  .i_nav > li > a {
    padding: 0 3%;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }
  .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: 16px;
    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: 15px;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }
  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}
.nav_menu.on i {
  opacity: 0;
}
.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}
.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
  }
}
/* 导航下拉 */
.nav_dropdown {
  position: fixed;
  top: var(--top_h);
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2013;
}
.nav_dropdown_item {
  display: none;
  padding: 0.4rem 0;
}
.nav_dropdown_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 3%;
}
.nav_dropdown_list dt {
  width: 100%;
  max-width: 3.8rem;
}
.nav_p_cat_name a {
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 900;
}
.nav_dropdown_list ul {
  margin-top: 0.2rem;
}
.nav_dropdown_list li {
  position: relative;
  padding-left: 0.24rem;
}
.nav_dropdown_list li::before {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 24 24"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M24 0v24H0V0h24ZM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018Zm.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022Zm-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01l-.184-.092Z"%2F%3E%3Cpath fill="currentColor" d="M15.707 11.293a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 1 1-1.414-1.414l4.95-4.95l-4.95-4.95a1 1 0 0 1 1.414-1.414l5.657 5.657Z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}
.nav_dropdown_list li a {
  display: block;
  padding: 0.06rem 0;
  font-size: 0.15rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_dropdown_list li:hover a {
  margin-left: 8px;
  color: var(--i_color);
}

.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: auto;
  gap: 0 0.3rem;
}

.top_r {
  --size: 0.24rem;
}
.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0.4rem;
  gap: 0 0.2rem;
}
@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_language_btn {
  display: flex;
  align-items: center;
}
.top_language_btn i {
  display: block;
  margin-left: 8px;
}

.top_search_ico {
  box-sizing: border-box;
  padding: 0.1rem 0.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_search_ico::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b0282f;
  transform: skewX(-15deg);
  z-index: -1;
  pointer-events: none;
}

.top_search_ico iconify-icon,
.top_language_btn iconify-icon {
  font-size: var(--size);
  color: #fff;
  cursor: pointer;
}

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

.top_language {
  position: relative;
}
.top_language_btn {
  padding: 0.1rem 0.3rem;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
.top_language_btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #b0282f;
  transform: skewX(-15deg);
  pointer-events: none;
}

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

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

.language_list dt > h6 {
  margin-bottom: 0.08rem;
  font-size: 0.17rem;
  font-weight: bold;
  white-space: nowrap;
}
.curr_lang {
  margin-bottom: 0.12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #eee;
}

.lang_list a {
  display: block;
  padding: 0.06rem 0;
}
.lang_list span img {
  display: none;
}
.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;
  font-size: 14px;
  position: relative;
}
.lang_list .trp-ls-language-name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.18rem;
  height: 0.18rem;
  box-sizing: border-box;
  border: 1px solid #aaa;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.lang_list .trp-ls-language-name::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.06rem;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--i_color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after {
  display: block;
}
.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name {
  color: var(--i_color);
}

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

@media screen and (max-width: 1200px) {
  .top_language_btn {
    padding: 0.08rem 0.12rem;
  }
  .top_search_ico {
    padding: 0.08rem 0.15rem;
  }
}
@media screen and (max-width: 1024px) {
  .logo {
    background-color: transparent;
    padding-right: 0;
  }

  .top_search_ico::before,
  .top_language_btn::before {
    display: none;
  }
  .top_search_ico,
  .top_language_btn {
    padding: 0;
  }
  .top_r {
    margin-right: 0;
  }
  .nav_menu {
    margin: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .logo {
    padding-left: 0.1rem;
  }
  .top_language_btn i {
    display: none;
  }
}

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

.full_header_height {
  display: block;
  height: var(--header_height);
}

/* banner */
.i_banner {
}

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

.ib_img {
  width: 100%;
  position: relative;
}

.ib_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 40%;
}

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

.ib_content {
  max-width: 1400px;
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
}
.ib_content h2 {
  font-weight: 900;
  text-shadow: 0px 2px 0px #ffffff;
}
.ib_content h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.24rem;
}

.ib_advantages {
  display: flex;
  justify-content: center;
  gap: 0 0.48rem;
}

.ib_advantages li {
  background-color: rgb(255, 255, 255, 0.8);
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0.1rem;
  color: var(--i_color);
  display: flex;
  align-items: center;
}

.ib_advantages li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b0282f;
  margin-right: 0.08rem;
}

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

/* -------------------------- */
.ib-pagination {
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
}
.ib-pagination .swiper-pagination-bullet {
  width: 0.72rem;
  height: 0.02rem;
  display: inline-block;
  margin: 0 12px;
  background: rgb(204, 204, 204, 40%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.ib-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

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

  .ib_content h3 {
    background: linear-gradient(
      90deg,
      transparent,
      #fff 20%,
      #fff 80%,
      transparent
    );
    margin: 0.2rem 0;
    padding: 0.04rem 0;
    font-size: 0.14rem;
  }

  .ib_advantages {
    gap: 0 0.2rem;
  }

  .ib_advantages li {
    padding: 0.04rem 0.1rem;
  }
  .ib_advantages li::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .ib_content h2 {
    display: none;
  }
  .ib_advantages {
    display: none;
  }
}

/* footer */
footer {
  background-color: #151515;
  position: relative;
}

.footer_txt {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.footer_top {
  padding: 0.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.fb_logo img {
  height: 0.9rem;
}

.ft_nav {
  height: max-content;
  display: flex;
  gap: 0 0.7rem;
  align-items: center;
  margin-top: 0.4rem;
}

.ft_nav li {
  font-size: 0.16rem;
}

.ft_nav li a {
  color: rgb(255, 255, 255, 70%);
  transition: all 0.3s ease;
}

.ft_nav li a:hover {
  color: #fff;
  font-size: 0.18rem;
}

.footer_content {
  padding-top: 0.47rem;
  padding-bottom: 0.32rem;
  border-top: 1px solid rgb(255, 255, 255, 20%);
  border-bottom: 1px solid rgb(255, 255, 255, 20%);
  display: flex;
  flex-wrap: wrap;
}

.fContact {
  flex-shrink: 0;
  width: 28%;
}
.fMail {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.32rem;
  font-weight: bold;
  color: #fff;
}
.fContact ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.26rem 0;
}
.code {
  width: 1.2rem;
  position: absolute;
  right: 0;
  top: -15%;
}
.fContact li {
  font-size: 0.18rem;
  color: #d0d0d0;
}
.fContact li a,
.fContact li p {
  font-size: 0.18rem;
  color: #d0d0d0;
  line-height: 1.6;
}
.fContact li a:hover {
  color: #fff;
  text-decoration: underline;
}

.fTit {
  margin-bottom: 0.27rem;
  font-size: 0.24rem;
  font-weight: bold;
  color: #fff;
}

.f_nav_main {
  margin-left: 0.9rem;
}

.f_nav_product {
  flex-shrink: 0;
  width: 15%;
  margin-left: 2rem;
}
.f_nav_product ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4%;
}
.f_nav_product li {
  width: 48%;
}

.f_nav li a {
  display: block;
  padding: 10px 0;
  font-size: 0.18rem;
  color: rgb(255 255 255 / 50%);
  line-height: 1.3;
}
.f_nav li a:hover {
  color: #fff;
  text-decoration: underline;
}

.f_information {
}

/* 搜索框 */

#searchforms2 {
  height: 0.67rem !important;
  margin-left: auto;
  border-radius: 5rem;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255, 30%) !important;
}
#searchforms2 .top_search_ipt2 {
  width: 80%;
  height: 100%;
  border: none;
  padding-left: 0.2rem;
  box-sizing: border-box;
  background-color: transparent !important;
}
#searchforms2 .top_search_ipt2::placeholder {
  color: #999999;
  font-size: 0.18rem;
}
#searchforms2 .top_search_btn2 {
  width: 50px !important;
  height: 50px !important;
  background: url(static/imgs/search.webp) no-repeat center;
  border-radius: 50% !important;
  margin-left: auto;
  margin-right: 0.1rem;
  cursor: pointer;
  position: relative;
}

.fMedia {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
}
.fMedia li {
  transition: all 0.5s ease;
}
.fMedia a {
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  background: rgb(255 255 255 / 10%);
  border-radius: 50%;
  position: relative;
  transition: all 0.5s ease;
}
.fMedia iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.18rem;
  color: #fff;
  transition: all 0.3s ease;
}
.fMedia li:hover a {
  background: #fff;
}
.fMedia li:hover iconify-icon {
  color: var(--i_color);
}

.f_cr .wrap {
  border-top: 1px solid rgb(255 255 255 / 10%);
}
.f_cr p,
.f_cr a {
  font-size: 15px;
  color: rgb(255 255 255 / 40%);
  line-height: 1.5;
}
.f_cr a:hover {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  .fMail {
    font-size: 0.24rem;
    margin-bottom: 0.27rem;
  }
  .code {
    width: 0.7rem;
    top: 0;
  }
  .f_nav_product {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .ft_nav {
    display: none;
  }
  .footer_content {
    gap: 0.3rem 0rem;
  }
  .f_nav_main,
  .f_nav_product {
    display: none;
  }
  .fContact,
  .f_information {
    width: 100%;
  }

  #searchforms2 {
    height: 0.5rem !important;
  }
  #searchforms2 .top_search_btn2 {
    width: 40px !important;
    height: 40px !important;
  }
}

@media screen and (max-width: 560px) {
  .fMail {
    font-size: 0.2rem;
    margin-bottom: 0.15rem;
  }
  .fContact ul {
    gap: 0.12rem 0;
  }
  .code {
    display: none;
  }
  .fContact li a,
  .fContact li p {
    font-size: 0.16rem;
  }

  #searchforms2 {
    height: 0.5rem !important;
  }
  #searchforms2 .top_search_btn2 {
    width: 40px !important;
    height: 40px !important;
  }
}

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

.h_Products_list {
  position: relative;
  overflow: hidden;
}
.h_Products_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.h_Products_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.h_Products_list .swiper-slide a {
  display: block;
  box-sizing: border-box;
  padding: 0.16rem 0.16rem 0.24rem 0.16rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

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

.h_Products_list h6 {
  color: var(--i_color);
  margin-top: 0.12rem;
  margin-bottom: 0.15rem;
}

.h_Products_list h4 {
  border-bottom: 1px solid var(--i_color);
  padding-bottom: 0.2rem;
}

.hp_list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem 0;
}

.hp_list li {
  display: flex;
  align-items: center;
  color: #666;
}
.hp_list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d8d8d8;
  margin-right: 0.12rem;
}

.hp_list li b {
  color: red;
}

.swiper-wrapper .btn_box {
  width: 100%;
  margin-top: 0.25rem;
}
.swiper-wrapper .btn {
  padding: 0.08rem 0.45rem;
}

.h_Products_list .swiper-slide:hover img {
  transform: scale(1.1);
}

/* -------------------------- */
.h_Products-pagination {
  display: block;
  width: 1.4rem;
  height: 3px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.4rem;
}
.h_Products-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.h_Products-pagination span {
  background: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

@media screen and (max-width: 560px) {
  .h_Products-pagination {
    margin-top: 0.2rem;
  }
}

/* 热门类别 */
.Popular_Categories {
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/PopularCategories_Ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.pc_top .btn {
  color: #fff;
  border-color: #fff;
}

.pc_top .btn::before,
.pc_top .btn::after {
  background: rgba(255, 255, 255, 0.3);
}
.pc_top .btn:hover i {
  color: var(--i_color);
}
.pc_top .btn:hover::before,
.pc_top .btn:hover::after {
  background-color: #fff;
}

/* 产品分类 */
.pc_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pcl_left {
  width: 24%;
  box-sizing: border-box;
  padding: 0.48rem 0.32rem 0.3rem 0.4rem;
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/Popular_Categories_item.webp)
    no-repeat center;
  background-size: cover;
  border-radius: 4px;
}

.pcl_pic {
  width: 100%;
  position: relative;
  margin-top: 1.5rem;
}
.pcl_pic::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pcl_pic img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
}

.pcl_right {
  width: 74.6%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.pcl_right li {
  /* height: max-content; */
  position: relative;
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/Popular_Categories_item02-1.webp)
    no-repeat center;
  background-size: cover;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0.48rem 0.32rem 0.3rem 0.4rem;
  transition: all 0.4s ease;
}

.pcl_right li h3 {
  transition: all 0.4s ease;
}

/* 第 1 个 li */
.pcl_right li:nth-of-type(1),
.pcl_right li:nth-of-type(2) {
  width: 49%;
}

.pcl_right li:nth-of-type(1) a,
.pcl_right li:nth-of-type(2) a {
  display: flex;
}

.pcl_right li:nth-of-type(1) .pclr_pic::before,
.pcl_right li:nth-of-type(2) .pclr_pic::before {
  padding-bottom: 60%;
}

.pcl_right li:nth-of-type(1) .pclr_pic img,
.pcl_right li:nth-of-type(2) .pclr_pic img {
  height: 125%;
}

.pcl_right li:nth-of-type(3),
.pcl_right li:nth-of-type(4),
.pcl_right li:nth-of-type(5) {
  width: 32%;
}

.pclr_pic {
  width: 100%;
  position: relative;
}
.pclr_pic::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.pclr_pic img {
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  object-fit: contain;
}

.pclr_Mask {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(50, 93, 147, 0.84);
  left: 0;
  top: 0;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.4s ease;
}

.pclr_Mask .btn {
  color: #fff;
  border-color: #fff;
}
.pclr_Mask .btn::before,
.pclr_Mask .btn::after {
  background: rgba(255, 255, 255, 0.3);
}

.pcl_right li:hover h3 {
  opacity: 0;
}

.pcl_right li:hover .pclr_Mask {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .pc_list {
    gap: 0.2rem 0;
  }
  .pcl_left {
    width: 100%;
  }
  .pcl_left .btn_box {
    display: none;
  }
  .pcl_pic::before {
    padding-bottom: 60%;
  }
  .pcl_pic {
    margin-top: 0.3rem;
  }
  .pcl_pic img {
    width: auto;
    object-fit: contain;
  }

  .pcl_right {
    width: 100%;
  }
  .pcl_right li {
    width: 100% !important;
  }
  .pcl_right li:nth-of-type(1) a,
  .pcl_right li:nth-of-type(2) a {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .pcl_left,
  .pcl_right li {
    padding: 0.2rem;
  }
}

/* 关于我们 */
.About_Us {
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/about_usBa.webp)
    no-repeat center;
  background-size: cover;
}

.g10 {
  gap: 0 0.1rem;
}

.numlist {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-around;
  gap: 10px 0;
}

.numlist li {
  box-sizing: border-box;
  padding: 0.2rem 0;
}

.numlist li p {
  margin-bottom: 0.1rem;
}

.fz64 {
  font-size: 0.64rem;
  font-weight: bold;
}

.numlist h6 {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .fz64 {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .fz64 {
    font-size: 0.26rem;
  }
  .numlist li {
    width: 49%;
    border: 1px solid var(--border_color);
    box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;
    text-align: center;
    padding: 0.2rem;
  }

  .numlist li p {
    gap: 0 5px;
  }

  .numlist li img {
    height: 0.3rem;
  }
}

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

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

.wraps .left {
  width: 51%;
}

.wraps .left > img {
  width: 100%;
  object-fit: cover;
}

.wraps .right {
  width: 45.5%;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .wraps .left {
    width: 100%;
    margin-bottom: 0.2rem;
  }

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

.video_boxs {
}

.video_boxs {
  position: relative;
}

.video_boxs > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_boxs .imgs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video_boxs .imgs img {
  /* height: 0.5rem; */
  /* animation: zoom2 1.5s infinite alternate; */
}

@media screen and (max-width: 1024px) {
  .video_boxs .imgs img {
    height: 0.3rem;
  }
}

/* 公司优势 */

.Rotation_Box {
  width: 100%;
  background: #e9eaeb;
  position: relative;
  overflow: hidden;
}

.Rotation_Box .title_Box p {
  color: #fff;
}

.Rotation_Box .R_contentBox {
  width: 100%;
  position: relative;
  padding-bottom: 1.6rem;
  z-index: 20;
}

.Rotation_Box .Rc_list {
  width: 100%;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 0.8rem 45%;
  padding-top: 0.5rem;
  z-index: 20;
}

.Rotation_Box .Rc_list li {
  width: 27.5%;
  cursor: pointer;
  z-index: 20;
  position: relative;
}

.Rotation_Box .Rc_list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.1rem;
  display: none;
}

@media screen and (min-width: 769px) {
  .Rc_list li:nth-child(3) {
    order: 4;
  }

  .Rc_list li:nth-child(4) {
    order: 3;
  }

  .Rotation_Box .Rc_list li:nth-child(1),
  .Rotation_Box .Rc_list li:nth-child(4) {
    text-align: right;
  }
}

.Rc_pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 0.1rem;
  display: none;
}

.Rotation_Box .Rc_list li h4 {
  color: #333;
  font-size: 0.24rem;
  font-weight: bold;
  transition: all 0.4s;
  position: relative;
  z-index: 10;
}

.Rotation_Box .Rc_list li p {
  color: #333;
  font-weight: bold;
  margin: 0.1rem 0;
  transition: all 0.4s;
  position: relative;
  z-index: 10;
}

.Rotation_Box .Rc_list li span {
  color: #666;
  transition: all 0.4s;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1025px) {
  .Rotation_Box .Rc_list .Rc_black h4,
  .Rotation_Box .Rc_list .Rc_black p {
    color: var(--i_color);
  }
  .Rotation_Box .Rc_list .Rc_black span {
    /* color: #000; */
  }
}

.Rotation_Box .Rc_imgs {
  width: 580px;
  height: 580px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: 6px solid #fff;
}

.Rotation_Box .Rc_imgs::before {
  width: 125%;
  height: 125%;
  content: "";
  display: block;
  background: url(static/imgs/Circular_Arrow.webp) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));
  transition: all 0.4s;
  z-index: 5;
}

.Rotation_Box .Rc_imgs .Rc_imgBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.Rotation_Box .Rc_imgs .Rc_imgBox img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s;
}

.Rotation_Box .Rc_imgs .Rc_imgBox .imgBlock {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .Rotation_Box .R_contentBox {
    padding-bottom: 1.5rem;
  }
  .Rotation_Box .Rc_imgs {
    width: 480px;
    height: 480px;
  }
}

@media screen and (max-width: 1366px) {
  .Rotation_Box .Rc_imgs {
    width: 450px;
    height: 450px;
  }
}

@media screen and (max-width: 1200px) {
  .Rotation_Box .R_contentBox {
    padding-bottom: 0.5rem;
  }

  .Rotation_Box .Rc_imgs {
    width: 400px;
    height: 400px;
  }

  .Rotation_Box .Rc_list li span {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 1024px) {
  .Rotation_Box .wrap > h3::before {
    display: none;
  }
  .Rotation_Box .Rc_list {
    padding-top: 0;
  }
  .Rotation_Box .Rc_imgs {
    width: 300px;
    height: 300px;
    top: 10%;
  }
  .Rotation_Box .Rc_imgs::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .Rotation_Box {
    padding-bottom: 0.2rem;
  }

  .Rotation_Box .R_contentBox {
    padding-bottom: 0;
  }
  .Rotation_Box .Rc_imgs {
    display: none;
  }
  .Rotation_Box .Rc_list {
    gap: 0.3rem 10%;
  }
  .Rotation_Box .Rc_list li {
    width: 100%;
    padding: 0.4rem 0.2rem;
    box-sizing: border-box;
  }
  .Rotation_Box .Rc_list li span {
    color: #fff;
  }

  .Rotation_Box .Rc_list li::before {
    display: block;
  }

  .Rc_pic {
    display: block;
  }

  .Rotation_Box .Rc_list li h4 {
    display: none;
  }

  .Rotation_Box .Rc_list li p {
    color: #fff;
  }
}

@media screen and (max-width: 560px) {
  .Rotation_Box .Rc_list li p {
    font-size: 0.15rem;
  }
  .Rotation_Box .Rc_list li span {
    font-size: 0.12rem;
  }
}

/* 联系我们 */
.i_contact {
  background: url(static/imgs/i_contact.webp) no-repeat center;
  background-size: cover;
}

.i_contact .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 4.2rem;
}

.i_contact .title h3 {
  color: #fff;
}

.i_contact .title h3::before,
.i_contact .title h3::after {
  display: none;
}

.ic_form {
  width: 52.5%;
  margin-top: 0.2rem;
}

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

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

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

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

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

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

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

#wpforms-76 .wpforms-submit-container {
  width: 184px !important;
  padding: 0 0;
}
#wpforms-76 .wpforms-submit-container button {
  width: 100%;
  height: 0.52rem !important;
  font-size: 18px !important;
  color: #333 !important;
  background: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
}
#wpforms-76 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-76 .wpforms-submit-container button:hover {
  background: transparent !important;
  color: #fff !important;
}

#wpforms-76 .wpforms-field-container .wpforms-field > input,
#wpforms-76 .wpforms-field-container textarea,
#wpforms-76 .wpforms-field-container select {
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgb(255, 255, 255, 70%) !important;
}

#wpforms-76-field_1::placeholder,
#wpforms-76-field_2::placeholder,
#wpforms-76-field_3::placeholder {
  color: rgb(255, 255, 255, 50%) !important;
  opacity: 1 !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
  height: 0.75rem !important;
}

@media screen and (max-width: 1024px) {
  .i_contact .wrap {
    gap: 0.2rem 0;
    min-height: 0;
  }
  .i_contact {
    background: -webkit-linear-gradient(bottom, transparent, var(--i_color));
    margin-bottom: 0.2rem;
  }
  .ic_form {
    width: 100%;
  }
  #wpforms-76 .wpforms-submit-container button {
    background: var(--i_color) !important;
    color: #fff !important;
    border: none !important;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  #wpforms-76-field_1-container,
  #wpforms-76-field_2-container {
    width: 100% !important;
  }
}

/* 最新新闻 */
.i_news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem 2%;
}

.i_news_list li a {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  padding: 0.4rem 0.24rem 0.3rem 0.24rem;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.i_news_list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.i_news_list h4 {
  color: var(--i_color);
  margin-top: 0.3rem;
  margin-bottom: 0.2rem;
}

.i_news_list p {
  margin-bottom: 0.34rem;
}

.i_news_list li:hover img {
  transform: scale(1.1);
}

/* 新闻一、三 */
.i_news_list li:nth-child(1),
.i_news_list li:nth-child(3) {
  width: 53.5%;
}
.i_news_list li:nth-child(1) a img,
.i_news_list li:nth-child(3) a img {
  display: none;
}

/* 新闻二 */
.i_news_list li:nth-child(2) {
  width: 44.5%;
}
.i_news_list li:nth-child(2) a,
.i_news_list li:nth-child(4) a {
  display: flex;
  align-items: flex-end;
  border-radius: 0;
  border: none;
}
.i_news_list li:nth-child(2) a h6,
.i_news_list li:nth-child(2) a p,
.i_news_list li:nth-child(2) a .btn_box,
.i_news_list li:nth-child(4) a h6,
.i_news_list li:nth-child(4) a p,
.i_news_list li:nth-child(4) a .btn_box {
  display: none;
}
.i_news_list li:nth-child(2) a h4,
.i_news_list li:nth-child(4) a h4 {
  z-index: 10;
  color: #fff;
  margin: 0;
}

/* 新闻四 */
.i_news_list li:nth-child(4) {
  width: 33%;
}

/* 按钮 */
.i_news_list li:nth-child(5) {
  width: 9.5%;
}
.i_news_list li:nth-child(5) a {
  background-color: var(--i_color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--i_color);
  transition: all 0.4s ease;
  border-radius: 0;
}
.i_news_list li:nth-child(5) a:hover {
  background-color: transparent;
  color: var(--i_color);
}

.News_Box #i_newBtn {
  display: none;
}

@media screen and (max-width: 1024px) {
  .i_news_list li:nth-child(4) {
    width: 44.5%;
  }
  .i_news_list li:nth-child(5) {
    display: none;
  }
  .News_Box #i_newBtn {
    display: table;
  }
}
@media screen and (max-width: 768px) {
  .i_news_list li {
    width: 100% !important;
  }
  .i_news_list li:nth-child(2) a,
  .i_news_list li:nth-child(4) a {
    display: block;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
  }
  .i_news_list li:nth-child(2) a img,
  .i_news_list li:nth-child(4) a img {
    display: none;
  }
  .i_news_list li:nth-child(2) a h6,
  .i_news_list li:nth-child(2) a p,
  .i_news_list li:nth-child(4) a h6,
  .i_news_list li:nth-child(4) a p {
    display: block;
  }
  .i_news_list h4 {
    color: var(--i_color) !important;
    margin: 0.1rem 0 !important;
  }
  .i_news_list li:nth-child(2) a .btn_box,
  .i_news_list li:nth-child(4) a .btn_box {
    display: table;
  }
  .i_news_list p {
    margin-bottom: 0.1rem;
  }
  .i_news_list li a {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
}

/* 合作伙伴 */

.iabs .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}

.iabs .wrap .left {
  width: 37%;
}

.iabs .wrap .left img {
  width: 100%;
}

.iabs .wrap .right {
  width: 55.5%;
}

.iabs .wrap .right .xj {
  position: relative;
  display: inline;
  color: var(--i_color);
}

.iabs .wrap .right .xj::before {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.2rem;
  font-size: 34px;
  font-weight: normal;
  color: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.iabs .wrap .right .borbto {
  display: table;
}
.iabs .wrap .right .borbto {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #222;
}
.m10 {
  margin: 0.1rem 0;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .iabs .wrap .left {
    width: 100%;
    margin-bottom: 0.2rem;
  }

  .iabs .wrap .right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

/* blogos */
.brand {
}
.i_blogs_list {
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.i_blogs_list2 {
  background: #fff;
}
.i_blogs_list3 {
}
.i_blogs_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.i_blogs_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  padding-bottom: 12%;
  /* border: 1px solid #d8d8d8; */
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
  box-sizing: border-box;
  border: 0.01rem solid transparent;
  border: 1px solid var(--border_color);
  border-radius: 0.05rem;
  overflow: hidden;
}
.i_blogs_list .swiper-slide:hover {
  border: 1px solid var(--i_color);
  background: #fff;
}
.i_blogs_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.i_blogs-prev,
.i_blogs-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(0 0 0 / 60%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.i_blogs-prev {
  left: 0;
}
.i_blogs-next {
  right: 0;
}
.i_blogs-prev iconify-icon,
.i_blogs-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.i_blogs_list .swiper-button-disabled {
  cursor: not-allowed;
}
.i_blogs-prev:hover,
.i_blogs-next:hover {
  background: var(--i_color);
}
.i_blogs-pagination {
  text-align: center;
}
.i_blogs-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 2px;
  background: #ccc;
  border-radius: 500px;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_blogs-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
  width: 45px;
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .i_blogs_list .swiper-slide {
    padding-bottom: 18%;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .i_blogs-pagination {
    margin-top: 0;
  }
}

/* 指示器 */
.p-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.p-pagination.wh140 {
  width: 140px;

  margin-left: auto;
  margin-right: auto;
}

.p-pagination {
  background: #d8d8d8;
  position: relative;
  width: 100%;
  height: 2px;
  display: block;
}

.p-pagination span {
  background-color: var(--i_color);

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  -webkit-transform: scale(0);

  -ms-transform: scale(0);

  transform: scale(0);

  -webkit-transform-origin: left top;

  -ms-transform-origin: left top;

  transform-origin: left top;
}

.line {
  width: 100%;
  background: var(--border_color);
  height: 2px;
  position: relative;
}

.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: var(--i_color);
  z-index: 9;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .p-pagination {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

.fz88 {
  font-size: 0.88rem;
  text-shadow: 0.02rem 0.03rem 0rem #fff;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .fz88 {
    font-size: 0.46rem;
  }
}
@media screen and (max-width: 768px) {
  .fz88 {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 560px) {
}

.banner__ {
  width: 100%;
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.banner__ > img {
  width: 100vw;
  max-height: 550px;
  object-fit: cover;
}

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #f5f7f9;
  position: relative;
}
.in_position .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #333;
  position: relative;
  line-height: 20px;
}
.in_position a:first-child {
  padding-left: 0.26rem;
}
.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: 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;
  }
}

/* -------------------------------------- news页面 */
.news_list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem 0;
}

.news_list li {
  width: 100%;
}

.news_list a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #e5e5e5;
}

.new_pic {
  width: 20%;
  position: relative;
  margin-left: 3.7%;
}
.new_pic::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.new_pic img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.new_txt {
  width: 70%;
}

@media screen and (max-width: 1024px) {
  .news_list a {
    gap: 0.2rem 0;
    padding-bottom: 0.2rem;
  }
  .new_pic {
    width: 30%;
  }
  .new_txt {
    width: 100%;
  }
}

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

/* ------------------------------------------ contact页面 */
.ct_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
  gap: 0.2rem 13%;
}

.ct_list a {
  transition: all 0.3s ease;
}
.ct_list a:hover {
  color: var(--i_color);
}

.add {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.top_text_ul {
  display: flex;
  display: -webkit-flex;
  gap: 0 0.13rem;
}
.top_text_ul li {
}
.top_text_ul li a {
  display: block;
}
.top_text_ul li a iconify-icon {
  font-size: 0.2rem;
  color: #999999;
  transition: all 0.3s ease;
}
.top_text_ul li a:hover iconify-icon {
  color: var(--i_color);
}

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

.contact_form {
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/form_Ba-1.webp)
    no-repeat center;
  background-attachment: fixed;
}

.co_form {
  width: 100%;
}

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

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

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

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

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

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

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

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

#wpforms-147-field_4 {
  height: calc(var(--wpforms-field-size-input-height) * 2.8) !important;
}

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

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

/* --------------------------- service页面 */

/* 我们的优势 */
.advantage {
}

.ServiceContent_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2%;
}

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

.Sc_txt {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 0.32rem 0.4rem;
  opacity: 1;
  transition: all 0.4s ease;
}
.Sc_txt img {
  width: 0.48rem;
}
.Sc_txt p {
  margin-top: 0.24rem;
}

.Sc_Mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(50, 93, 147, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}
.Sc_Mask img {
  width: 0.48rem;
}
.Sc_Mask p {
  margin-top: 0.12rem;
  margin-bottom: 0.16rem;
}
.Sc_Mask span {
  width: 90%;
}

.ServiceContent_list li:hover .Sc_txt {
  opacity: 0;
}
.ServiceContent_list li:hover .Sc_Mask {
  opacity: 1;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .Sc_txt img,
  .Sc_Mask img {
    width: 0.3rem;
  }
  .Sc_txt p {
    margin-top: 0.1rem;
    font-size: 0.14rem;
  }
  .Sc_Mask p {
    margin: 0.1rem 0;
    font-size: 0.14rem;
  }
  .Sc_Mask span {
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 768px) {
  .ServiceContent_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .Sc_txt {
    padding: 0.2rem;
  }
}

/* 服务优势 */
.companyAdv_list {
  height: 0;
  padding-bottom: 40%;
  position: relative;
  overflow: hidden;
}
.companyAdv_list dl {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.companyAdv_list dt {
  width: 24%;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  overflow: hidden;
}
.companyAdv_list dt::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: -webkit-linear-gradient(top, transparent, rgb(0 110 191 / 75%));
  background: linear-gradient(to bottom, transparent, rgb(0 110 191 / 75%));
}
.companyAdv_list .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.companyAdv_list .cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companyAdv_list .tit {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.3rem 0.4rem;
  text-align: center;
  z-index: 3;
}
.companyAdv_list .tit h6 {
  font-size: 0.24rem;
  color: #fff;
  font-weight: bold;
}
.companyAdv_list .tit p {
  display: block;
  margin-top: 0.2rem;
  opacity: 0;
  height: 0;
  text-align: left;
  width: 36vw;
  font-size: 18px;
  color: #fff;
}

.companyAdv_list dt.curr .tit {
  text-align: left;
}
.companyAdv_list dt.curr .tit p {
  opacity: 1;
  height: auto;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.companyAdv_list dt.curr::after {
  height: 50%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

@media screen and (max-width: 1440px) {
  .companyAdv_list .tit p {
    width: 42vw;
  }
}
@media screen and (max-width: 1024px) {
  .companyAdv_list {
    height: auto;
    padding-bottom: 0;
  }
  .companyAdv_list dl {
    position: relative;
    display: block;
  }
  .companyAdv_list dt {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }
  .companyAdv_list dt::after {
    display: none;
  }
  .companyAdv_list .cover {
    position: relative;
    overflow: hidden;
  }
  .companyAdv_list .cover::before {
    content: "";
    display: block;
    padding-bottom: 70%;
  }
  .companyAdv_list .tit {
    position: initial;
    margin-top: 20px;
    padding: 0 0;
  }
  .companyAdv_list .tit h6 {
    font-size: 20px;
    color: #333;
  }
  .companyAdv_list .tit p {
    opacity: 1;
    height: auto;
    color: #666;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .companyAdv_list dt {
    margin-bottom: 40px;
  }
  .companyAdv_list .tit h6 {
    font-size: 18px;
  }
  .companyAdv_list .tit p {
    font-size: 13px;
  }
}

/* 成功案例 */
.Success_Stories {
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/Success_StoriesBa.webp)
    no-repeat center;
  background-size: cover;
}

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

.explore_list .swiper-slide .img {
  position: relative;
  padding-bottom: 92%;
  /* overflow: hidden; */
}
.explore_list .swiper-slide .img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.explore_list .swiper-slide .txt {
  padding: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 90%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.explore_list .swiper-slide .txt p {
  display: flex;
  align-items: center;
  gap: 0 4%;
}

.explore_list .swiper-slide .txt h6 {
}

.explore_list .swiper-slide:hover img {
}
.explore_list .swiper-slide:hover .txt {
  background: #fff;
}

.explore-prev,
.explore-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: var(--i_color);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.explore-prev {
  left: 5%;
}
.explore-next {
  right: 5%;
}
.explore-prev iconify-icon,
.explore-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.explore_list .swiper-button-disabled {
  cursor: not-allowed;
}
.explore-prev:hover,
.explore-next:hover {
  background: var(--i_color);
}

/* -------------------------- */
.explore-pagination {
  display: block;
  text-align: center;
}
.explore-pagination .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.01rem;
  display: inline-block;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.explore-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .explore-prev,
  .explore-next {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .explore_list .swiper-slide .txt {
    right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .explore-pagination .swiper-pagination-bullet {
    width: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .explore-pagination .swiper-pagination-bullet {
    width: 0.25rem;
  }
}

/* 购买流程 */
.Purchase_Process {
  position: relative;
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/process.webp)
    no-repeat center;
  background-size: cover;
}

.Purchase_Process .title h3 {
  color: #fff;
}
.Purchase_Process .title p {
  color: #fff;
}

.customization_process_ul {
  display: flex;
  display: -webkit-flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.Purchase_Process::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.54rem;
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/sbc.webp)
    no-repeat center;
  background-size: cover;
  top: 60%;
  left: 0;
  transform: translate(0, -50%);
}
.customization_process_ul li {
  width: calc((100% - 2.4rem) / 5);
  box-sizing: border-box;
  padding: 0.45rem 0.2rem 0.6rem 0.2rem;
  border-radius: 0.06rem;
  background-color: #fff;
  box-shadow: 0 0.29rem 0.35rem rgba(115, 169, 212, 0.3);
}
.customization_process_ul li:nth-child(even) {
  margin-top: 0.8rem;
}
.customization_process_img {
  width: 1rem;
  height: 1rem;
  background: #b9b9b9;
  position: relative;
  border-radius: 0.04rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.customization_process_img h3 {
  font-size: 0.26rem;
  color: #fff;
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
  background: var(--i_color);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: -0.18rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.customization_process_img img {
  width: 0.6rem;
  height: 0.6rem;
  object-fit: contain;
  margin-top: 0.1rem;
}
.customization_process_text {
}
.customization_process_text h4 {
  font-size: 0.24rem;
  color: var(--i_color2);
  font-weight: bold;
  margin: 0.2rem 0 0.15rem 0;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.customization_process_text h5 {
  font-size: 0.16rem;
  color: #5a6c7b;
  text-align: center;
}
.customization_process_ul li:hover .customization_process_img {
  background: var(--i_color);
}
.customization_process_ul li:hover .customization_process_img h3 {
  background-color: var(--i_color);
}
.customization_process_ul li:hover .customization_process_text h4 {
  color: var(--i_color);
}
.customization_process_ul li:hover .customization_process_img h3 {
  background: #999;
}

@media screen and (max-width: 1440px) {
  .customization_process_ul {
    gap: 0.5rem;
  }
  .customization_process_ul li {
    width: calc((100% - 2rem) / 5);
  }
  .customization_process_text h4 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 1200px) {
  .customization_process_ul {
    gap: 0.4rem;
  }
  .customization_process_ul li {
    width: calc((100% - 1.6rem) / 5);
  }
  .customization_process_text h4 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .customization_process_bac {
    padding: 60px 0;
  }
  .customization_process_ul {
    gap: 0.3rem;
  }
  .customization_process_ul li {
    width: calc((100% - 1.2rem) / 5);
  }
  .customization_process_text h4 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 959px) {
  .customization_process_ul {
    gap: 0.2rem;
  }
  .customization_process_ul li {
    width: calc((100% - 0.8rem) / 5);
  }
  .customization_process_text h4 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 767px) {
  .customization_process_ul li {
    width: calc((100% - 0.4rem) / 3);
  }
  .customization_process_ul li {
    padding: 0.4rem 0.1rem 0.4rem 0.1rem;
  }
  .customization_process_ul {
    flex-wrap: wrap;
  }
  .customization_process_ul li:nth-child(even) {
    margin-top: 0rem;
  }
  .customization_process_ul {
    align-items: unset;
  }
  .customization_process_img img {
    width: 0.5rem;
    height: 0.5rem;
  }
  .customization_process_ul {
    justify-content: center;
  }
}
@media screen and (max-width: 560px) {
  .customization_process_bac {
    padding: 40px 0;
    background: #111;
  }
  .customization_process_bac::after {
    display: none;
  }
  .customization_process_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
  .customization_process_img {
    width: 0.8rem;
    height: 0.8rem;
  }
  .customization_process_img img {
    width: 0.4rem;
    height: 0.4rem;
  }
  .customization_process_ul li:nth-child(5) {
    width: 100%;
  }
}

/* 装载 */
.Load {
  background: url(static/imgs/Load_Ba.webp) no-repeat center;
  background-size: cover;
}

.Load_Options {
  flex-wrap: wrap;
  gap: 0.2rem 2.4rem;
  border-bottom: 1px solid #cdcfd0;
}

.Load_Options li {
  padding-bottom: 0.3rem;
  cursor: pointer;
  position: relative;
}
.Load_Options li::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.Load_Options .active {
  color: var(--i_color);
}
.Load_Options .active::before {
  width: 100%;
}

.Load_Options li:hover {
  color: var(--i_color);
}
.Load_Options li:hover::before {
  width: 100%;
}

.Load_pics {
}
.Load_pics li {
  display: none;
}
.Load_pics img {
  width: 100%;
}

.Load_pics .active {
  display: block;
}

@media screen and (max-width: 1024px) {
  .Load_Options {
    gap: 0.1rem 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .Load_Options li {
    font-size: 0.14rem;
    padding-bottom: 0.12rem;
  }
}

/* faq */

.FAQ_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem 2%;
}

.FAQ_list li {
  width: 49%;
  background-color: #f4f4f4;
  transition: all 0.4s ease;
  box-sizing: border-box;
  padding: 0.3rem 0.3rem 0.4rem 0.3rem;
}

.FAQ_list h3 {
  display: flex;
  align-items: center;
}

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

.FAQ_list p {
  margin-left: 5%;
}

.FAQ_list li:hover {
  background: #ffffff;
  box-shadow: -1px 4px 10px 3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .FAQ_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .FAQ_list li {
    padding: 0.2rem;
  }
  .FAQ_list h3::before {
    display: none;
  }
  .FAQ_list p {
    margin-left: 0;
  }
}

/* ---------------------------------------- about页面 */

/* 环境展示 */
.environment {
  background: url(https://lingjuimg.com/wp-content/uploads/shenjue/2025/09/environment_BA.webp)
    no-repeat center;
  background-size: cover;
}
.gol_partner {
  position: relative;
}
.gol_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.gol_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.gol_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  flex-direction: column;
  transition: width 0.3s ease;
  overflow: hidden;
  width: 20% !important;
}
.gol_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 4.8rem;
}
.gol_partner_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.gol_partner_list p {
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
  z-index: 12;
  opacity: 0;
  transition: all 0.3s ease;
}

.gol_partner_list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    rgba(86, 179, 0, 0) 30%,
    rgba(86, 179, 0, 0.8) 100%
  );
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transition: all 0.3s ease;
  display: none;
}

.gol_partner_list .swiper-slide-active {
  width: 48% !important;
}

.gol_partner_list .swiper-slide-active p {
  opacity: 1;
}

.gol_partner_list .swiper-slide-active::before {
  height: 30%;
}

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

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

/* -------------------------- */
.en_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2%;
}
.gol-button-prev,
.gol-button-next {
  width: 0.4rem;
  height: 0.4rem;
  background: #dcdcdc;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gol-button-prev iconify-icon,
.gol-button-next iconify-icon {
  font-size: 0.22rem;
  color: #333;
}
.abc_list .swiper-button-disabled {
  cursor: not-allowed;
}
.gol-button-prev:hover,
.gol-button-next:hover {
  background: var(--i_color);
}

.gol-button-prev:hover iconify-icon,
.gol-button-next:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .gol_partner_list .img {
    height: 5rem;
  }
  .golbal_bac {
    padding: 0.8rem 0;
    margin-top: -0.8rem;
    border-radius: 1rem 0 0 0;
  }
}
@media screen and (max-width: 1366px) {
  .gol_partner_list .img {
    height: 4.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .gol_partner_list .img {
    height: 4.5rem;
  }
  .golbal_bac {
    padding: 0.6rem 0;
    margin-top: -0.6rem;
    border-radius: 0.8rem 0 0 0;
  }
}
@media screen and (max-width: 959px) {
  .gol_partner_list .img {
    height: 4rem;
  }
  .golbal_bac {
    border-radius: 0.6rem 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .gol_partner_box {
    margin-top: 0.4rem;
  }
  .gol_partner_list .img {
    height: 3.5rem;
  }
  .gol_partner_list li {
    width: 100% !important;
  }
  .gol_partner_list .swiper-slide-active {
    width: 100% !important;
  }
  .gol_partner_box {
    box-sizing: border-box;
    padding: 0 3%;
  }
  .golbal_bac {
    border-radius: 0.4rem 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  .gol-pagination {
    display: block;
  }
  .en_btns {
    display: none;
  }
  .gol_partner .pt-button-prev,
  .gol_partner .pt-button-next {
    display: none;
  }
  .gol_partner_list .img {
    height: 3rem;
  }
  .gol_partner .pt-pagination {
    margin: 0.2rem auto 0;
  }
  .gol_partner .pt-pagination .swiper-pagination-bullet {
    width: 0.06rem;
    height: 0.06rem;
  }
}

/* 合作品牌 */
.Cooperative_Brand {
  background: url(static/imgs/Cooperative_Brand_Ba.webp) no-repeat center;
  background-size: cover;
}

.partner_cont {
  position: relative;
  overflow: hidden;
}
.partner_cont::before {
  content: "";
  display: block;
  padding-bottom: 15.35%;
}
.partner_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.partner_list .swiper-wrapper {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}
.partner_list .swiper-slide {
  flex-shrink: 0;
  height: calc((100% - 30px) / 2);
  box-sizing: border-box;
  border: 1px solid var(--border_color);
  position: relative;
}
.partner_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: contain;
}

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

@media screen and (max-width: 1024px) {
  .partner_cont::before {
    padding-bottom: 20%;
  }
}
@media screen and (max-width: 768px) {
  .partner_cont::before {
    padding-bottom: 24%;
  }
  .partner-pagination .swiper-pagination-bullet {
    width: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .partner_cont::before {
    padding-bottom: 30%;
  }
  .partner-pagination {
    margin-top: 0;
  }
}

/* 荣誉证书 */
.honor {
  background: url(static/imgs/honor_ba.webp) no-repeat center;
  background-size: cover;
}

.zs {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.zs_left {
  width: 37.5%;
}
.zs_left_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.zs_left_ul li {
  font-size: 0.18rem;
  color: #666;
  line-height: 166%;
}
.zs_right {
  width: 55.3%;
}

/*  */
.zs_partner_box {
}

.zs_partner {
  position: relative;
}
.zs_partner_list {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.zs_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.zs_partner_list li {
  display: flex;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.zs_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.zs_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 150%;
}
.zs_partner_list .img img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 90%;
  object-fit: cover;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.zs_partner_list .swiper-slide-prev .img img {
  transform: translateX(-50%) translateX(20px);
}
.zs_partner_list .swiper-slide-next .img img {
  transform: translateX(-50%) translateX(-20px);
}
.zs_partner_list .swiper-slide-active .img img {
  height: 100%;
  bottom: -5px;
}

/* 指示器 */
.zs_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.zs_partner .pt-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  outline: none;
}
.zs_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */
.zs_LR {
  display: flex;
  display: -webkit-flex;
  gap: 0.2rem;
  margin-top: 0.3rem;
}

.zs .pt-button-prev,
.zs .pt-button-next {
  width: 0.48rem;
  height: 0.48rem;
  box-sizing: border-box;
  z-index: 999;
  cursor: pointer;
  outline: none;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #cbcbcc;
}
.zs .pt-button-prev iconify-icon,
.zs .pt-button-next iconify-icon {
  font-size: 0.22rem;
  color: #333;
  transition: all 0.3s ease;
}

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

@media screen and (max-width: 1440px) {
  .zs_bac {
    padding: 0.8rem 0;
    border-radius: 0 0 0 0.8rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .zs_left_ul li {
    font-size: 0.16rem;
  }
  .zs_left_ul {
    gap: 0.2rem;
    margin-top: 0.3rem;
  }
  .zs_bac {
    padding: 0.6rem 0;
    border-radius: 0 0 0 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .zs_LR {
    display: none;
  }
  .zs .pt-button-prev,
  .zs .pt-button-next {
    display: none;
  }
  .zs_partner .pt-pagination {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .zs_left {
    width: 100%;
  }
  .zs_right {
    width: 100%;
    padding-left: 0%;
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .zs_bac {
    border-radius: 0 0 0 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .zs_partner .pt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

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

/* Category List */
.cat_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
}

.cat_nav {
  width: 23%;
  position: relative;
}

.cat_nav_tit {
  margin-bottom: 0.24rem;
}
.cat_nav_tit h4 {
  font-size: 0.24rem;
  color: #666;
  padding-left: 0.125rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #e5e5e5;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
}
.cat_nav_list li {
  margin: 0 0 0.2rem;
}
.cat_nav_list li:last-child {
  margin-bottom: 0;
}

.cat_fold_tit {
  padding: 0 0.1rem 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: relative;
}
.cat_fold_tit a {
  width: 100%;
  padding: 0.18rem 0;
  font-size: 0.22rem;
  font-weight: bold;
}
.cat_fold_tit iconify-icon {
  flex-shrink: 0;
  padding: 0.1rem;
  margin-left: auto;
  font-size: 0.26rem;
  color: #555;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.active .cat_fold_tit {
  background: var(--i_color) !important;
}
.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.cat_fold_sub {
  display: none;
  box-sizing: border-box;
  padding: 0.3rem 0.3rem 0.26rem;
  margin-top: -0.16rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.cat_fold_sub dt {
  /* border-bottom: 1px solid #ddd; */
}
.cat_fold_sub a {
  padding: 0.12rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.1rem;
}
.cat_fold_sub i {
  flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  box-sizing: border-box;
  position: relative;
}
.cat_fold_sub iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.1rem;
  color: #999;
}
.cat_fold_sub p {
  font-size: 0.18rem;
}
.cat_fold_sub dt:hover i,
.cat_fold_sub dt.active i {
  border-color: var(--i_color);
}
.cat_fold_sub dt:hover iconify-icon,
.cat_fold_sub dt.active iconify-icon {
  color: var(--i_color);
}
.cat_fold_sub dt:hover iconify-icon {
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
  transform: translate(-50%, -50%) rotateY(180deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub dt:hover p,
.cat_fold_sub dt.active p {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .cat_nav {
    width: 26%;
  }
  .cat_nav_tit h4 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 1200px) {
  .cat_nav_tit h4 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 1024px) {
  .cat_nav {
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .cat_nav_tit {
    margin: 0 0 -14px;
    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;
    border: none;
    padding-bottom: 0;
    padding-left: 0;
  }
  .cat_nav_tit iconify-icon {
    display: block;
    margin-left: auto;
    font-size: 26px;
    color: #fff;
  }

  .cat_nav_list {
    display: none;
    box-sizing: border-box;
    padding: 40px 30px 30px;
    background: #eee;
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  }
  .cat_fold_tit {
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .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;
  }
}
@media screen and (max-width: 560px) {
  .cat_nav_tit h4 {
    font-size: 16px;
  }

  .cat_nav_list li {
    margin: 0 0 14px;
  }
  .cat_fold_tit {
    padding: 0 4px 0 18px;
  }
  .cat_fold_tit a {
    font-size: 15px;
  }
  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }

  .cat_fold_sub {
    padding: 24px 28px 20px;
  }
  .cat_fold_sub p {
    font-size: 14px;
  }

  .cat_nav_list {
    padding: 34px 20px 20px;
  }
}

.cat_post_show {
  width: 73%;
  margin-left: auto;
  box-sizing: border-box;
  padding-left: 0.4rem;
  border-left: 1px solid #f3f3f3;
}
@media screen and (max-width: 1440px) {
  .cat_post_show {
    width: 71%;
  }
}
@media screen and (max-width: 1024px) {
  .cat_post_show {
    width: 100%;
    border: none;
    padding-left: 0;
    padding-top: 0.2rem;
  }
}

.cat_info {
}
.cat_info h1 {
  font-weight: bold;
}
.cat_info span {
  display: block;
  margin-top: 0.1rem;
}

.p_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.26rem 2%;
}
.p_list .p_list_item {
  width: 32%;
  overflow: hidden;
}

.p_list a {
  display: block;
  box-sizing: border-box;
  padding: 0.16rem 0.16rem 0.24rem 0.16rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

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

.p_list h6 {
  color: var(--i_color);
  margin-top: 0.12rem;
  margin-bottom: 0.15rem;
}

.p_list h4 {
  border-bottom: 1px solid var(--i_color);
  padding-bottom: 0.2rem;
}

.hp_list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem 0;
}

.hp_list li {
  display: flex;
  align-items: center;
  color: #666;
}
.hp_list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d8d8d8;
  margin-right: 0.12rem;
}

.hp_list li b {
  color: red;
}

.p_list .btn_box {
  width: 100%;
  margin-top: 0.25rem;
}
.p_list .btn {
  padding: 0.08rem 0.45rem;
}

.p_list li:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .p_list {
    gap: 24px 2%;
  }
  .p_list .p_list_item {
    width: 49%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 560px) {
  .p_list {
    gap: 16px 2%;
  }
  .p_list .p_list_item {
    width: 100%;
  }
}

/* -------------------------------------- 产品详情页面 */
.ul_list555 {
  position: relative;
  overflow: hidden;
}
.ul_list555 > .pd_wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}
.ul_list555 .wrap .left {
  width: 40%;
  position: relative;
}
.ul_list555 .wrap .right {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .ul_list555 .wrap .left {
    width: 100%;
    margin-bottom: 20px;
  }
  .ul_list555 .wrap .right {
    width: 100%;
  }
}

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

/* thumbnail */
.p_thumbnail_list {
  width: 100%;
  margin: 20px auto 0;
  box-sizing: border-box;
  padding: 0 0.02rem;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 101%;
}
.p_thumbnail_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border_color);
}
.p_thumbnail_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_thumbnail_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_thumbnail_list .swiper-slide-thumb-active {
  border-color: var(--i_color);
}

.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 92%;
  transform: translate(0, -50%);
  width: 34px;
  height: 34px;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 3;
  background: transparent;
  border-radius: 1000px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.thumbnail-prev {
  left: 0;
}
.thumbnail-next {
  right: 0;
}
.thumbnail-prev iconify-icon,
.thumbnail-next iconify-icon {
  font-size: 0.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #333;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.prbox {
  width: 88%;
  margin: 0 auto;
}

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

@media screen and (max-width: 1024px) {
  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
  .p_atlas {
    width: 100%;
    height: auto;
  }
}

.details_des {
}
.details_des .dtopbox > i {
  font-size: 0.18rem;
  margin-bottom: 0.15rem;
  display: block;
}
.details_des .dtopbox > i b {
  color: var(--i_color);
}
.details_des h1 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  position: relative;
  border-top: 3px solid var(--i_color);
}

.details_des .pd_btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 3%;
}

.pShares {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.pShares dt {
}
.pShares dd iconify-icon {
  font-size: 0.24rem;
  color: #666;
}
.pShares dd:hover iconify-icon {
  color: var(--i_color);
}

.pd_advantage_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 12%;
  border-top: 1px solid #e5e5e5;
}

.pd_advantage_list li {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pd_advantage_list li div {
  width: 0.57rem;
  height: 0.57rem;
  border-radius: 4px;
  background-color: #999;
}
.pd_advantage_list li img {
  width: 0.34rem;
}

.pd_advantage_list li p {
  color: #222;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .details_des h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .details_des h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .details_des h1 {
    font-size: 22px;
  }
  .pd_advantage_list {
    gap: 0.2rem 0;
    justify-content: space-between;
  }
  .pd_advantage_list li {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .pShares {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .pd_advantage_list li div {
    width: 0.4rem;
    height: 0.4rem;
  }
  .pd_advantage_list li img {
    width: 0.2rem;
  }
  .pd_advantage_list li p {
    font-size: 0.12rem;
  }
}

/* 产品详情 */
.pd_list {
}
.pd_list .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pd_list .left {
  width: 23%;
}

.pd_list .right {
  width: 74%;
}

.xxbox .xxk {
  margin: 0 auto;
}

.xxbox .tab-list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e5e5;
  justify-content: start;
  gap: 0 40px;
}

.xxbox .tab {
  padding: 0.14rem 0.4rem;
  cursor: pointer;
  border-bottom: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.xxbox .tab.active {
  background-color: var(--i_color);
  color: #fff;
  box-sizing: border-box;
}

.xxbox .tab-content {
}

.xxbox .content {
  display: none;
}

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

@media screen and (max-width: 1024px) {
  .xxbox .tab-list {
    gap: 20px 0;
    justify-content: space-between;
  }
  .xxbox .tab {
    width: 32%;
    box-sizing: border-box;
  }

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

@media screen and (max-width: 1024px) {
  .pd_list .wrap .left {
    width: 100%;
  }

  .pd_list .right {
    width: 100%;
  }
  .details_left {
    display: none !important;
  }
}

.contacts {
  padding: 0.3rem 0.2rem;
  box-sizing: border-box;
  background: url(static/imgs/contact_us.webp) no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.hline {
  height: 1px;
  width: 100%;
  background: rgba(225, 225, 225, 0.5);
}

.contacts a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}

.contacts a img {
  height: 0.3rem;
}

/* tag */

.p_tags {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.06rem 0;
}
.p_tags > p {
  margin-right: 12px;
  font-size: 0.18rem;
  font-weight: bold;
}
.p_tags a {
  margin-right: 0.26rem;
  font-size: 0.14rem;
}
.p_tags a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 768px) {
  .p_tags > p {
    font-size: 15px;
  }
  .p_tags a {
    font-size: 13px;
  }
}

.p_view_other {
  padding-top: 0.2rem;
  border-top: 1px solid #ddd;
  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 .arrow_btn {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.p_view_other .arrow_btn iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #333;
}
.p_view_other a {
  font-size: 0.16rem;
}
.p_view_other a b {
  font-weight: bold;
}
.p_view_other .next {
  text-align: right;
}
.p_view_other li:hover .arrow_btn {
  /* border-color: var(--i_color);
  background: var(--i_color); */
}
.p_view_other li:hover .arrow_btn iconify-icon {
  color: var(--i_color);
}
.p_view_other a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .p_view_other a {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p_view_other {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .p_view_other li {
    width: 100%;
    max-width: 100%;
  }
  .p_view_other .arrow_btn {
    width: 30px;
    height: 30px;
  }
  .p_view_other .arrow_btn iconify-icon {
    font-size: 20px;
  }
  .p_view_other .next .arrow_btn {
    order: -1;
  }
}

.pd_Products {
  background: #fff;
}
