/*
Theme Name: GeRun
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: #009944;

  /* 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);
  }
}

/* 通用 */
.f450 {
  font-weight: 450;
}
.f550 {
  font-weight: 550;
}
.f606060 {
  color: #606060;
}

.btn_box {
  display: table;
}

.btn_a {
  display: flex;
  align-items: center;
  gap: 0 0.24rem;
  box-sizing: border-box;
  border-radius: 5rem;
  padding: 0.08rem 0.1rem 0.08rem 0.34rem;
  background-color: var(--i_color);
  transition: all 0.4s ease;
  color: #fff;
  cursor: pointer;
}

.btn_icon {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background-color: #fff;
  color: var(--i_color);
  font-size: 0.22rem;
  transition: all 0.4s ease;
}

.btn_a:hover {
  background-color: #fff;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
  color: var(--i_color);
}
.btn_a:hover .btn_icon {
  background-color: var(--i_color);
  color: #fff;
}

.btn_line {
  background-color: transparent;
  border: 1px solid var(--i_color);
  color: var(--i_color);
}
.btn_line .btn_icon {
  background-color: var(--i_color);
  color: #fff;
}
.btn_line:hover {
  background-color: var(--i_color);
  color: #fff;
}
.btn_line:hover .btn_icon {
  background-color: #fff;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .btn_a {
    gap: 0 0.1rem;
    padding: 0.05rem 0.08rem 0.05rem 0.15rem;
  }
  .btn_a p {
    font-size: 0.16rem;
  }
  .btn_icon {
    width: 0.25rem;
    height: 0.25rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .btn_a p {
    font-size: 0.12rem;
  }
  .btn_icon {
    width: 0.2rem;
    height: 0.2rem;
  }
}

/* --- --- */

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

.wrap_l {
  box-sizing: border-box;
  padding-left: 10.8vw;
}
.wrap_r {
  box-sizing: border-box;
  padding-right: 10.8vw;
}
@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: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  z-index: 2026;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(0 0 0 / 10%);
}
header.fixedHeader {
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}
header .wrap {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

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

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

@media screen and (max-width: 560px) {
  .logo a {
    height: 30%;
  }
}

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

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

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

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

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

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

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

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

/* 页眉2K适配 */
@media (min-width: 1921px) {
  .i_nav {
    gap: 0 0.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;
    position: fixed;
    top: var(--header_height);
    left: 101%;
    width: 100%;
    width: 100vw;
    height: calc(100vh - var(--header_height));
    background: #fff;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 9999;
  }
  .i_nav.active {
    opacity: 1;
    left: 0;
  }
  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 8px;
    right: 0.2rem;
    width: 0.3rem;
    height: 0.3rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }
  .i_nav > .menu-item-has-children span.on {
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }

  .i_nav > li > a {
    padding: 0 0.2rem;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }
  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a {
    color: var(--i_color) !important;
  }

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

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

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

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

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

/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

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

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

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

  .nav_menu {
    margin-bottom: 0.05rem;
  }
}

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

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

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

.top_language {
  position: relative;
}
.top_language_btn {
  padding: 0.1rem 0 0.1rem 0;
  position: relative;
  cursor: pointer;
}

.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: 768px) {
  .top_search {
    --search_height: 0.34rem;
  }
}

.full_header_height {
  display: none;
  height: var(--header_height);
}
.not_header {
  height: var(--header_height);
}
@media screen and (max-width: 1024px) {
  .full_header_height {
    display: block;
  }
  .not_header {
    display: none;
  }
}

/* nav dropdown menu */
.nav_dropdown {
  display: none;
  position: fixed;
  top: var(--header_height);
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
  z-index: 2026;
}
.nav_p {
  padding: 0.4rem 0 0.46rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.nav_p_cat {
  width: 28%;
}
.nav_p_cat a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  padding: 0.24rem 0.8rem 0.24rem 0.3rem;
  position: relative;
}
.nav_p_cat a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 2px;
  height: 0;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_p_cat .curr a::before {
  height: 100%;
}
.nav_p_cat img {
  width: 20%;
}
.nav_p_cat p {
  width: 80%;
  box-sizing: border-box;
  padding-left: 0.2rem;
  font-size: 0.2rem;
  color: var(--i_color3);
  font-weight: 450;
  font-size: 0.16rem;
}
.nav_p_cat a:hover p,
.nav_p_cat .curr p {
  color: var(--i_color);
}

.nav_p_list {
  width: 72%;
  margin-left: auto;
  box-sizing: border-box;
  padding: 0 0 0 0.5rem;
}
.nav_p_list ul {
  display: none;
}
.nav_p_list ul.curr {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.nav_p_list li {
  width: 18.4%;
  margin: 0.14rem 2% 0.14rem 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_p_list li:nth-child(5n) {
  margin-right: 0;
}

.nav_p_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.nav_p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 80%;
}
.nav_p_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav_p_list .txt {
  text-align: center;
  margin-top: 0.1rem;
}
.nav_p_list .txt p {
  font-size: 0.14rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav_p_list li:hover {
  -webkit-transform: translate(0, -8px);
  transform: translate(0, -8px);
}
.nav_p_list li:hover p {
  color: var(--i_color);
}

/* nav_home */
.nav_home,
.nav_solutions,
.nav_Service,
.nav_Techology,
.nav_About {
  display: none;
  position: fixed;
  top: var(--header_height);
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
  z-index: 2026;
}
.nav_home_wrap {
  padding: 0.4rem 0 0.46rem;
  color: #666;
}
.nav_About_wrap {
  padding-top: 0;
}
.nav_home_wrap h2 {
  display: flex;
  align-items: center;
}
.nh_list {
  box-sizing: border-box;
  padding: 2% 9vw;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 5%;
}
.nh_list li {
  width: 30%;
}
.nh_list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 3%;
}
.nh_list a img {
  width: 15%;
}
.nh_list p {
  position: relative;
  transition: all 0.4s;
}
.nh_list p::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.5s;
}
.nh_list a:hover p {
  color: var(--i_color);
  cursor: pointer;
}
.nh_list p:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .nav_dropdown,
  .nav_home,
  .nav_solutions,
  .nav_Service,
  .nav_Techology,
  .nav_About {
    display: none !important;
  }
}

/* banner */
.i_banner {
}

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

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

/* -------------------------- */
.i_banner-pagination {
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translate(-50%, 0);
}
.i_banner-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.i_banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

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

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

.ib_a_txt {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 1024px) {
  .i_banner-prev,
  .i_banner-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ib_a_txt h2 {
    font-size: 0.2rem;
  }
  .ib_a_txt h3 {
    font-size: 0.18rem;
    margin: 0.15rem 0;
  }
}
@media screen and (max-width: 560px) {
  .ib_a_txt {
    top: 10%;
  }
  .ib_a_txt h2 {
    font-size: 0.16rem;
  }
  .ib_a_txt h3 {
    font-size: 0.14rem;
    margin: 0.15rem 0;
  }
  .ib_a_txt .btn_box {
    display: none;
  }
}

.back_color01 {
  background-color: cadetblue;
}
.back_color02 {
  background-color: chartreuse;
}
.back_color03 {
  background-color: coral;
}
.back_color04 {
  background-color: cornflowerblue;
}

/* 我们的产品 */

.Our_products {
  position: relative;
}

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

.opc_list {
  width: 100%;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
}

.opc_item {
  flex-shrink: 0;
  box-sizing: border-box;
  padding-right: 10.8vw;
  padding-top: 7.62%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0%;
  position: relative;
}

.opc_item::before {
  content: "";
  display: block;
  width: 96%;
  height: 48.82%;
  position: absolute;
  left: 2%;
  top: 0;
  background: url(static/imgs/line.webp) no-repeat center;
  background-size: contain;
}

.opci_left {
  width: 40.49%;
  box-sizing: border-box;
  margin-top: 5.35%;
}

.opci_left .accr_title {
  justify-content: flex-start;
}

.opci_left .btn_box {
  display: none;
}

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

@media screen and (max-width: 1440px) {
  .opc_item {
    padding-right: 3vw;
  }
}
@media screen and (max-width: 1024px) {
  .Our_products {
    margin-bottom: 0.3rem;
  }
  .op_content {
    height: max-content !important;
  }
  .opc_list {
    flex-direction: column;
    gap: 0.3rem 0;
  }
  .opc_item {
    padding-top: 0;
  }
  .opc_item::before {
    display: none;
  }
  .opci_left {
    margin-top: 0;
  }
  .opci_left .btn_box {
    display: table;
  }
}
@media screen and (max-width: 768px) {
  .opci_left,
  .opci_right {
    width: 100%;
  }
  .opci_left .accr_title {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .opc_list {
    gap: 0.2rem 0;
  }
  .opci_left h2 {
    font-size: 0.16rem;
    margin-top: 0;
    margin-bottom: 0.1rem;
  }
  .opci_left h4 {
    font-size: 0.14rem;
  }
}

/* 关于公司 */
.About_Company {
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/About_Company_Ba.webp)
    no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.Earth {
  width: 56.7%;
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translate(0, -50%);
  animation: rotate360 60s linear infinite;
}
@keyframes rotate360 {
  from {
    transform: translate(0, -50%) rotate(0deg);
  }
  to {
    transform: translate(0, -50%) rotate(360deg);
  }
}

.ac_content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
  box-sizing: border-box;
  padding-left: 16.87%;
}

.acc_left {
  width: 20.13%;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}

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

.data_num h4 {
  font-size: 0.68rem;
}

.acc_right {
  width: 70.74%;
  box-sizing: border-box;
}

.accr_title {
  display: flex;
  justify-content: center;
  gap: 0 6px;
}

.accr_title p {
  background-color: var(--i_color);
  box-sizing: border-box;
  padding: 0 0.05rem;
}

@media screen and (max-width: 1366px) {
  .acc_left {
    gap: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .ac_content {
    padding-left: 0;
    align-items: center;
  }
  .acc_left {
    gap: 0.2rem 0;
  }
  .data_num h4 {
    font-size: 0.42rem;
  }
}
@media screen and (max-width: 768px) {
  .acc_left {
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    gap: 0.2rem 2%;
    justify-content: space-between;
  }
  .data_num h4 {
    font-size: 0.3rem;
  }
  .acc_right {
    width: 100%;
    margin-top: 0;
    order: -1;
  }
}
@media screen and (max-width: 560px) {
  .Earth {
    width: 100%;
    left: 0;
    opacity: 0.8;
  }
  .acc_left li {
    width: 49%;
  }
  .data_num h4 {
    font-size: 0.3rem;
  }
}

/* 解决方案 */
.Solution {
}

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

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

.Solution_box .wrap {
  position: relative;
  z-index: 10;
}

.Solution_items {
}

.Solution_item {
  display: none;
}
.Solution_item.active {
  display: block;
}

.Solution_item a {
  margin-top: 17.9vw;
  width: 25.34%;
  display: block;
  box-sizing: border-box;
  border-radius: 0.12rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.46rem;
}

.si_icon {
  width: 0.66rem;
  height: 0.66rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #c4c4c4;
}

.si_icon img {
  width: 65%;
}

.Solution_nav {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(235px);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.Solution_nav li {
  width: 25%;
  box-sizing: border-box;
  padding: 0.5rem 0.2rem;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}
.Solution_nav li::before {
  content: "";
  display: block;
  width: 2px;
  height: 0.16rem;
  background-color: #2a2a2a;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.4s ease;
}
.Solution_nav li:last-child::before {
  display: none;
}

.Solution_nav li.active {
  border-radius: 12px;
  background-color: #fff;
}
.Solution_nav li.active::before {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .Solution_item a {
    width: 30%;
    padding: 0.2rem;
  }
  .Solution_nav li {
    padding: 0.15rem 0.1rem;
    font-size: 0.16rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .Solution_nav li::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .Solution_item a {
    width: 40%;
  }
  .Solution_nav li {
    width: 50%;
  }
}
@media screen and (max-width: 560px) {
  .si_icon {
    width: 0.45rem;
    height: 0.45rem;
  }
  .Solution_item a {
    width: 65%;
  }
  .Solution_nav li {
    width: 100%;
    padding: 0.05rem 0.1rem;
    font-size: 0.12rem;
  }
}

/* 案例 */
.home_case {
}

.Project_Display_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.Pdt_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.46rem;
}

.Pdt_list a {
  position: relative;
  transition: all 0.4s ease;
}

.Pdt_list a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.4s ease;
}

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

.Pdt_list li:hover a::before {
  width: 100%;
  left: 0;
  right: auto;
}

@media screen and (max-width: 1024px) {
  .Pdt_list {
    width: 100%;
    gap: 0 0.2rem;
  }
  .Pdt_list a {
    font-size: 0.16rem;
  }
}

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

.application_item {
  width: 32%;
}

.application_item a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.16rem;
}

.application_item a::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 118.5%;
}

.application_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease;
}

.application_none {
  width: 100%;
  box-sizing: border-box;
  /* 右上角边圆角 */
  border-radius: 0 0.2rem 0 0;
  background: rgba(243, 243, 243, 0.85);
  padding: 0.34rem 0.2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.application_none h3 {
  font-size: 0.24rem;
}

.application_block {
  opacity: 0;
  bottom: -0.3rem;
  transition: all 0.6s ease;
}

.application_block h3 {
  color: var(--i_color);
  font-weight: 350;
  margin-bottom: 0.1rem;
}

.application_block p {
  font-weight: 150;
}

.application_item:hover .application_none {
  bottom: -0.15rem;
  opacity: 0;
}

.application_item:hover .application_block {
  bottom: 0;
  opacity: 1;
}

.application_none h4,
.Related_Projects_list h4 {
  width: 0.3rem;
  height: 0.3rem;
}

.application_none iconify-icon,
.Related_Projects_list iconify-icon {
  color: var(--i_color);
  font-size: 0.22rem;
}

@media screen and (max-width: 1024px) {
  .application_lists li {
    width: 49%;
  }
  .application_none h3 {
    font-size: 0.2rem;
    font-weight: 150;
  }
}

@media screen and (max-width: 560px) {
  .application_lists {
    gap: 0.2rem 3%;
  }
  .application_lists li {
    width: 100%;
  }
  .application_lists li .application_none {
    opacity: 0;
  }

  .application_lists li .application_block {
    bottom: 0;
    opacity: 1;
  }
  .application_lists .application_block p {
    margin-bottom: 0.1rem;
  }
}

/* 资格证书 */
.Qualification_Certificate {
  background-color: #f7f7f7;
}

.Certificate_box {
  position: relative;
}

.abHonor_list {
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.abHonor_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
}
.abHonor_list li {
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 33 / 46;
  font-size: 0;
}
.abHonor_list li span {
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 33 / 46;
  box-sizing: border-box;
  padding: 0.1rem;
  border: 4px solid #00112e;
  transition: width 0.5s ease;
}
.abHonor_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abHonor_list .t {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -0.8rem;
  width: 100%;
  box-sizing: border-box;
}
.abHonor_list .t p {
  font-size: 0.18rem;
  color: var(--i_color);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.abHonor_list .swiper-slide-prev span,
.abHonor_list .swiper-slide-next span {
  width: 85%;
  opacity: 0.5;
}
.abHonor_list .swiper-slide-prev span {
  left: 0;
  transform: translate(0, -50%);
}
.abHonor_list .swiper-slide-next span {
  right: 0;
  left: initial;
  transform: translate(0, -50%);
}
.abHonor_list .swiper-slide-active span {
  opacity: 1;
  width: 100%;
}
.abHonor_list .swiper-slide-active .t {
  bottom: -0.6rem;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s 0.3s;
}

.abHonor-pagination {
  display: none;
}

@media screen and (max-width: 1440px) {
  .Certificate-prev,
  .Certificate-next {
    width: 0.4rem;
    height: 0.4rem;
  }
  .Certificate-prev {
    left: 0;
  }
  .Certificate-next {
    right: 0;
  }
  .Certificate-prev iconify-icon,
  .Certificate-next iconify-icon {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .abHonor_list .t p {
    font-size: 13px;
  }
  .Certificate-prev,
  .Certificate-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .abHonor_list li span {
    padding: 6px;
    border-width: 3px;
  }
  .abHonor_list .t p {
    font-size: 12px;
  }
}

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

.Partners_list {
  position: relative;
  overflow: hidden;
}
.Partners_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Partners_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  padding: 0 0.28rem;
  position: relative;
}
.Partners_list .swiper-slide::before {
  content: "";
  display: block;
  width: 1px;
  height: 0.59rem;
  background: rgba(51, 51, 51, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

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

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

.company_name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
}
.company_name::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.company_name h3 {
  box-sizing: border-box;
  border-radius: 5rem;
  border: 1px solid rgba(51, 51, 51, 0.2);
  padding: 0.08rem 0.33rem;
  background-color: #fff;
}

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

/* 主页新闻 */
.Homepage_News {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 56%);
}

.hn_top {
  gap: 0.2rem 0;
}

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

.hnc_left {
  display: block;
  width: 49.34%;
  box-sizing: border-box;
}

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

.hncl_time {
  position: absolute;
  left: 2%;
  bottom: 2%;
  background-color: var(--i_color);
  border-radius: 8px;
  box-sizing: border-box;
  padding: 0.08rem 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hncl_txt {
  border-radius: 0px 0px 12px 12px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.24rem 0.2rem 0.4rem 0.24rem;
}

.hnc_left:hover .hncl_img img {
  transform: scale(1.1);
}
.hnc_left:hover .hncl_txt h2 {
  color: var(--i_color);
}

.hnc_right {
  width: 47.4%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
}

.hnc_right a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  justify-content: space-between;
  box-sizing: border-box;
  border-radius: 0.12rem;
  padding-bottom: 0.3rem;
  position: relative;
  overflow: hidden;
}
.hnc_right a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
}

.hncr_txt {
  width: 67.36%;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 12px 0px 0px 12px;
  padding: 0.18rem 0.16rem 0.14rem 0.16rem;
}

.hncr_txt p {
  margin: 8px 0 14px 0;
}

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

.hnc_right a:hover .hncr_img img {
  transform: scale(1.1);
}
.hnc_right a:hover .hncr_txt h3 {
  color: var(--i_color);
}

.hnc_right li:last-child a {
  padding-bottom: 0;
}
.hnc_right li:last-child a::before {
  display: none;
}

@media screen and (max-width: 1024px) {
  .hnc_left,
  .hnc_right {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .hnc_right {
    gap: 0.2rem 0;
  }
  .hnc_right a {
    padding-bottom: 0.2rem;
  }
}

/* footer */
footer {
  background-color: #f1f1f1;
}

.footer_top .wrap {
  padding: 0.33rem 0 0.18rem 0;
  border-bottom: 1px solid #cdcdcd;
}

.footer_top img {
  width: 25.5%;
}

.footer_middle {
}

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

.fm_a {
  width: 21.2%;
}

.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: #bdbdbd;
  border-radius: 5rem;
  position: relative;
  transition: all 0.4s ease;
}
.fMedia iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #fff;
}
.fMedia li:hover a {
  background: var(--i_color);
}

.fm_b {
  width: 20.34%;
}
.fm_c {
}
.fm_d {
  width: 28.8%;
}

.fm_ul {
  display: flex;
  flex-direction: column;
  gap: 0.14rem 0;
}

.fm_ul a {
  font-size: 0.16rem;
  color: #606060;
  transition: all 0.4s ease;
}
.fm_ul a:hover {
  color: var(--i_color);
}

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

.fm_connect li {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
}

.fm_connect li span {
  width: 84%;
}

.fm_connect iconify-icon {
  color: var(--i_color);
  font-size: 0.2rem;
  margin-top: 2px;
}

.fm_connect li,
.fm_connect span,
.fm_connect a {
  color: #606060;
  font-size: 0.16rem;
  transition: all 0.3s ease;
}
.fm_connect a:hover {
  color: var(--i_color);
}

.f_cr .wrap {
  border-top: 1px solid #cdcdcd;
}
.f_cr p,
.f_cr a {
  font-size: 16px;
  color: #606060;
  line-height: 1.5;
}
.f_cr a:hover {
  color: var(--i_color);
}

/* 页脚2K屏适配 */
@media (min-width: 1921px) {
  .fm_a {
    width: 25%;
  }
  .fMedia {
    gap: 0 0.2rem;
  }
  .fm_ul a {
    font-size: 16px;
  }
  .fm_connect li,
  .fm_connect span,
  .fm_connect a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .fm_b,
  .fm_c {
    display: none;
  }
  .fm_a,
  .fm_d {
    width: 100%;
  }
  .fm_connect span {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .footer_top img {
    width: 40%;
  }
  .fMedia a {
    width: 0.36rem;
    height: 0.36rem;
  }
  .fMedia a iconify-icon {
    font-size: 0.16rem;
  }
  .fm_connect li {
    flex-wrap: wrap;
  }
  .fm_connect span,
  .fm_connect a {
    font-size: 0.14rem;
  }
  .f_cr p,
  .f_cr a {
    font-size: 14px;
  }
}

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

.in_banner {
  width: 100%;
  font-size: 0;
  overflow: hidden;
}
.in_banner img {
  width: 100%;
  width: 100vw;
}

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

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

.categoryBox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 5%;
}
.catSide {
  flex-shrink: 0;
  width: 30%;
  position: relative;
}
.catList_show {
  width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 1440px) {
  /* .catSide{width: 24%;} */
}
@media screen and (max-width: 1024px) {
  .categoryBox {
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .catSide {
    width: 100%;
    padding: 0 0;
    background: none;
    border: none;
  }
  .catList_show {
    width: 100%;
    padding: 0 0;
    margin: 0 0;
  }
}

.cat_nav {
}
.cat_nav_tit {
  margin-bottom: 0.2rem;
  position: relative;
}
.cat_nav_tit h4 {
  font-size: clamp(20px, 2vw, 0.28rem);
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  position: relative;
}
.cat_nav_list li {
  margin-bottom: 0.3rem;
  position: relative;
}

.cat_fold_tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 0.14rem 0 0.2rem;
  gap: 0 0.2rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  transition: all 0.4s ease;
}

.cat_fold_tit img {
  width: 0.3rem;
  height: 0.3rem;
  object-fit: contain;
  filter: brightness(0) sepia(1) hue-rotate(0deg) saturate(10000%);
}

.active .cat_fold_tit img {
  filter: none;
}

.cat_fold_tit a {
  padding: 0.14rem 0;
  width: 100%;
  font-size: 0.18rem;
  color: #222;
  font-weight: 550;
  line-height: 1.5;
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.22rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.active .cat_fold_tit {
  border-radius: 4px;
  background: var(--i_color);
  border-bottom: transparent;
}
.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

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

.cat_fold_sub {
  display: none;
  margin-top: 0.1rem;
  padding: 0.12rem 0.2rem;
  background: rgba(0, 153, 68, 0.0588);
  border-radius: 6px;
}
.cat_fold_sub dt {
  box-sizing: border-box;
}
.cat_fold_sub a {
  display: block;
  padding: 0.1rem 0.24rem;
  font-size: 0.17rem;
  color: #666;
  position: relative;
  transition: all 0.5s ease;
}
.cat_fold_sub a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999;
  transition: all 0.5s ease;
}

.cat_fold_sub a:hover,
.cat_fold_sub dt.active a {
  color: var(--i_color);
  text-decoration: underline;
}
.cat_fold_sub a:hover::before,
.cat_fold_sub dt.active a::before {
  background: var(--i_color);
}

@media screen and (max-width: 1366px) {
  .cat_fold_sub a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .cat_nav {
    padding: 0;
    background: none;
  }
  .cat_nav_tit {
    padding: 12px 28px;
    margin: 0 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid var(--i_color);
  }
  .cat_nav_tit h4 {
    padding: 0 0;
    font-size: 20px;
    color: var(--i_color);
  }
  .cat_nav_tit iconify-icon {
    display: block;
    margin-left: auto;
    font-size: 26px;
    color: var(--i_color);
  }

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

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

  .cat_fold_tit a {
    font-size: 15px;
  }
  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }
  .cat_fold_sub {
    margin-top: 10px;
  }
  .cat_fold_sub a {
    font-size: 14px;
    padding: 10px 18px;
  }
  .cat_fold_sub a::before {
    width: 6px;
    height: 6px;
  }
}

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

.category_des {
}
.category_des article {
}

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

.p_item {
  width: 32%;
  box-sizing: border-box;
}

.p_item a {
  display: block;
}

.pi_img {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.pi_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}
.pi_img img {
  width: 70%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.p_item p {
  padding-top: 0.06rem;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.p_item:hover .pi_img {
  box-shadow: 0px 4px 10px 0px rgba(120, 155, 135, 0.2);
}
.p_item:hover .pi_img img {
  transform: translate(-50%, -50%) scale(1.1);
}
.p_item:hover h2 {
  color: var(--i_color);
}
.p_item:hover p {
  border-color: var(--i_color);
}

@media screen and (max-width: 768px) {
  .pList {
    gap: 0.25rem 2%;
  }
  .p_item {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .p_item h2 {
    font-size: 0.16rem;
  }
  .p_item h3 {
    margin-bottom: 0.1rem;
    font-size: 0.14rem;
  }
}

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

/* 头部简述信息 */

.p_data {
  background-color: #f4f4f4;
}
.p_data .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}

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

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

.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.36rem;
  height: 0.36rem;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 3;
}
.thumbnail-prev {
  left: 0;
}
.thumbnail-next {
  right: 0;
}
.thumbnail-prev iconify-icon,
.thumbnail-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.36rem;
  color: #444;
}
.thumbnail-prev:hover iconify-icon,
.thumbnail-next:hover iconify-icon {
  color: var(--i_color);
}
.p_atlas .swiper-button-disabled {
  cursor: not-allowed;
}

.thumbnail-pagination {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  text-align: center;
  padding: 2px 6px;
  z-index: 2;
}
.thumbnail-pagination,
.thumbnail-pagination span {
  font-size: 14px;
  color: #fff;
}
.thumbnail-pagination .swiper-pagination-current {
  font-size: 0.22rem;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .p_data .wrap {
    flex-wrap: wrap;
  }

  .p_atlas {
    width: 100%;
    max-width: 6rem;
    margin: 0 auto 46px;
  }
  .p_thumbnail_list {
    width: 100%;
  }
  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .p_atlas {
    margin-bottom: 40px;
  }
  .p_atlas_list {
    width: 100%;
  }
  .thumbnail-prev iconify-icon,
  .thumbnail-next iconify-icon {
    font-size: 30px;
  }
}

.p_title {
  width: 57.33%;
}

.p_cat {
  display: block;
  font-size: 16px;
  color: var(--i_color);
  margin-bottom: 0.16rem;
}
.p_title h1 {
  padding-bottom: 0.17rem;
  font-size: 0.2rem;
  color: #222;
  line-height: 1.4;
  position: relative;
  font-weight: 550;
}
.p_title h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}

.p_des {
  border-bottom: 1px solid #e5e5e5;
}
.p_des article {
  font-size: 0.18rem;
  line-height: 1.7;
}

.pd_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.17rem 0;
}

.pdl_li {
  width: 50%;
  padding-bottom: 0.23rem;
  border-bottom: 1px solid #e5e5e5;
}

.pdl_li h6 {
  margin-bottom: 0.16rem;
}

.pd_operate {
  gap: 0.2rem 0;
}

.p_btn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.4rem;
}

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

@media screen and (max-width: 1024px) {
  .p_title {
    width: 100%;
  }
  .pdb_a {
    padding: 0.05rem 0.15rem;
  }
  .pdb_a p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .pd_list {
    gap: 0.2rem 2%;
  }
  .pdl_li {
    width: 49%;
  }
  .pdl_li h6 {
    font-size: 0.12rem;
  }
  .pdl_li {
    padding-bottom: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .pdl_li p {
    font-size: 0.16rem;
  }
  .pdb_a {
    padding: 0.02rem 0.1rem;
  }
  .pdb_a p {
    font-size: 0.14rem;
  }
  .pdb_a iconify-icon {
    font-size: 0.2rem;
  }
}

.p_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.p_share > p {
  font-size: 0.18rem;
  color: #555;
}
.p_share dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_share dt a {
  display: block;
  width: 0.3rem;
  text-align: center;
}
.p_share dt iconify-icon {
  font-size: 0.2rem;
  color: #666;
}
.p_share a:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .p_des article {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 1024px) {
  .p_title h1 {
    font-size: 18px;
  }
  .p_des article {
    font-size: 15px;
  }
  .p_share dt iconify-icon {
    font-size: 22px;
  }
}
@media screen and (max-width: 560px) {
  .p_cat {
    font-size: 14px;
  }
  .p_title h1 {
    font-size: 17px;
  }
  .p_des article {
    font-size: 14px;
  }

  .p_btn {
    gap: 0 20px;
  }

  .p_share > p {
    font-size: 15px;
  }
  .p_share dt iconify-icon {
    font-size: 20px;
  }
}

/* 产品特性 */
.Features_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 3%;
}

.Features_list li {
  width: 48.5%;
  box-sizing: border-box;
  background-color: #f0f0f0;
  padding: 0.4rem 0.22rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.2rem 0.3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.Features_list li::before {
  content: "";
  display: block;
  width: 33.3%;
  height: 124.2%;
  position: absolute;
  right: -2%;
  top: 10.5%;
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/logo_end.webp)
    no-repeat center;
  transition: all 0.4s ease;
  opacity: 0;
}

.Features_list h4 {
  width: 0.94rem;
  height: 0.94rem;
  position: relative;
}
.Features_list i {
  position: relative;
  z-index: 10;
  transition: all 0.4s ease;
}
.Features_list h4::before {
  content: "";
  display: block;
  width: 0.94rem;
  height: 0.94rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(static/imgs/polygon.webp) no-repeat center;
  background-size: contain;
  filter: invert(1) sepia(1) saturate(0) hue-rotate(0deg) brightness(2);
  transition: all 0.4s ease;
}

.Features_list li:hover {
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.Features_list li:hover::before {
  opacity: 1;
}
.Features_list li:hover h4::before {
  filter: none;
}
.Features_list li:hover h4 i {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .Features_list li {
    padding: 0.2rem;
  }
  .Features_list h4,
  .Features_list h4::before {
    width: 0.5rem;
    height: 0.5rem;
  }
  .Features_list h6 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .Features_list {
    gap: 0.15rem 0;
  }
  .Features_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .Features_list li {
    gap: 0.15rem 0.1rem;
    padding: 0.2rem 0.1rem;
  }
  .Features_list i {
    font-size: 0.14rem;
  }
  .Features_list h4::before {
    width: 0.35rem;
    height: 0.35rem;
  }
  .Features_list h6 {
    font-size: 0.14rem;
  }
}

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

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

.db_info {
  width: 58.8%;
}

.db_video {
  width: 38.61%;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
}
.db_video::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 73.39%;
}
.db_video .db_v {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.db_video .db_b {
  width: 28.7%;
  position: absolute;
  bottom: 6%;
  left: 6%;
  cursor: pointer;
  transition: all 0.4s ease;
}

.db_video .db_b:hover {
  transform: scale(1.1);
}

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

/* 产品项目 */
.Product_Projects {
  background-color: #f4f4f4;
}

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

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

.Projects_item {
}

.Projects_item a {
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  padding: 0.14rem 0.14rem 0.44rem 0.14rem;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.Projects_item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #666666;
  transition: all 0.4s ease;
}

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

.Projects_item h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.22rem;
}

.Projects_info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.6rem;
}

.Projects_item a:hover::before {
  background-color: var(--i_color);
}
.Projects_item a:hover .Projects_img img {
  transform: scale(1.1);
}
.Projects_item a:hover h3 {
  color: var(--i_color);
}

/* 应用场景 */
.Application_scenarios {
}

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

.Application_list li {
  width: 23.5%;
  box-sizing: border-box;
}

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

.Application_list li:hover .Application_pic img {
  transform: scale(1.1);
}
.Application_list li:hover p {
  color: var(--i_color);
}

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

/* FAQ */

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

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

.pFAQ_list .txt {
  display: none;
  background: var(--i_color);
  position: relative;
}
.pFAQ_list .txt span {
  display: block;
  padding-left: 0.32rem;
  padding-right: 0.32rem;
  padding-bottom: 0.43rem;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}

@media screen and (max-width: 1024px) {
  .pFAQ_list .tit b {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .pFAQ_list .tit p {
    font-size: 17px;
  }
  .pFAQ_list .txt span {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .pFAQ_list .tit {
    padding: 0.2rem 0.2rem 0.17rem 0.2rem;
  }
  .pFAQ_list .txt span {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .pFAQ_list .tit p {
    font-size: 15px;
  }
}

.pBottom {
  background: #f6f6f6;
}

.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16rem 0;
}
.p_tags > p {
  margin-right: 0.14rem;
  font-size: 0.18rem;
  color: #666;
  font-weight: bold;
}
.p_tags a {
  display: block;
  padding: 0.06rem 0.2rem;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  color: var(--i_color);
  background: #fff;
  border-radius: 4px;
  transition: all 0.4s ease;
}
.p_tags a:hover {
  background: var(--i_color);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p_tags {
    gap: 12px 0;
  }
  .p_tags > p {
    font-size: 17px;
  }
  .p_tags a {
    margin-right: 16px;
    font-size: 14px;
  }
}

.p_view_other {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 4%;
}
.p_view_other li {
  max-width: 46%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.14rem;
  align-items: center;
}
.p_view_other a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_view_other span {
  flex-shrink: 0;
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #333;
}
.p_view_other p {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.5;
  font-weight: 550;
}
.p_view_other p b {
  font-size: 0.18rem;
  color: #333;
  font-weight: 550;
}

.p_view_other li:hover span iconify-icon,
.p_view_other li:hover p,
.p_view_other li:hover p b {
  color: var(--i_color);
}

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

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

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

/* -------------------------- */
.Related_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.36rem;
}

.Related-prev,
.Related-next {
  width: 0.6rem;
  height: 0.6rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.Related-prev {
}
.Related-next {
}
.Related-prev iconify-icon,
.Related-next iconify-icon {
  font-size: 0.3rem;
  color: var(--i_color);
}
.Related_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Related-prev:hover,
.Related-next:hover {
  background: var(--i_color);
}
.Related-prev:hover iconify-icon,
.Related-next:hover iconify-icon {
  color: #fff;
}

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

@media screen and (max-width: 1024px) {
  .Related_btns {
    display: none;
  }
  .Related-pagination {
    display: block;
  }
}

/* ------------------------------  解决方案页面 */
.Solution_a {
  display: flex;
  flex-wrap: wrap;
}

.forTab_box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.12rem;
  background-color: #fff;
}

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

.forTab_img p {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 153, 68, 0) 0%,
    rgba(0, 153, 68, 0.5) 93%
  );
  box-sizing: border-box;
  padding: 0.4rem 0.26rem 0.16rem 0.26rem;
}

.forTab_list {
  width: 58%;
  border-radius: 0 0.12rem 0.12rem 0;
  box-sizing: border-box;
  padding: 0.35rem 0.15rem 0rem 0.5rem;
  order: 2;
  background-color: #f4f4f4;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.forTab_list::before {
  content: "";
  display: block;
  width: 52%;
  height: 55%;
  position: absolute;
  right: -11%;
  bottom: -1.5%;
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/logo_Solution.webp)
    no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.forTab_icon {
  width: 10.79%;
}

.forTab_list li {
  margin-bottom: 0.3rem;
}
.forTab_list .tit {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
  gap: 0 0.2rem;
}
.forTab_list .tit h5 {
  font-size: 0.18rem;
  font-weight: 450;
}
.forTab_list .tit i {
  margin-left: auto;
  flex-shrink: 0;
  width: 0.24rem;
  height: 0.24rem;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.2rem;
}
.forTab_list .active .tit h5 {
  color: var(--i_color);
}
.forTab_list .active .tit i {
  border-color: var(--i_color);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2328968C' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.2rem;
}

.forTab_list .txt {
  display: none;
  margin-top: 0.2rem;
}
.forTab_list .txt span {
  font-size: 0.18rem;
  color: #666;
  line-height: 1.7;
}

.forTab_box:hover .forTab_list {
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(205, 211, 208, 0.4);
}
.forTab_box:hover .forTab_list::before {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .forTab_img,
  .forTab_list {
    width: 100%;
  }
  .forTab_list {
    order: -1;
    padding: 0.3rem 0.2rem;
  }
  .forTab_list .tit h5 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .forTab_list li {
    margin-bottom: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .forTab_icon {
    width: 15%;
  }
  .forTab_list .tit h5 {
    font-size: 0.16rem;
  }
  .forTab_list .txt {
    margin-top: 0.1rem;
  }
  .forTab_list .txt span {
    font-size: 0.14rem;
  }
}

/* 案例 */
.Solution_case {
}

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

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

.Solution_case_box:nth-child(odd) .forTab_box {
  flex-direction: row-reverse;
}

/* 完整能源解决方案 */
.exhibitBox-scroll-wrapper {
  position: relative;
  width: 100%;
}

.exhibitBox {
  position: sticky !important;
  top: var(--header_height);
  width: 100%;
  height: calc(100vh - var(--header_height)) !important;
  overflow: hidden;
}

.exhibitImgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: -1;
}

.exhibitImgs li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.exhibitImgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibitImgs li.active {
  opacity: 1;
}

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

.exhibitTxt {
  width: 51.94%;
}

.exhibitTxt > img {
  width: 7.2%;
}

.Complete_Energy_list {
  display: flex;
  gap: 0.2rem 2%;
  justify-content: space-between;
}

.Complete_Energy_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.Complete_Energy_item:not(:last-child)::before {
  content: "+";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  color: #fff;
  position: absolute;
  right: -20px;
  top: 0;
  font-size: 0.16rem;
  font-weight: normal;
}

.Complete_Energy_item img {
  width: 0.15rem;
  display: block;
  margin: 5px 0;
}

.exhibitAct {
  width: 40%;
  box-sizing: border-box;
  padding: 0.28rem 0.28rem 0.37rem 0.28rem;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid #ffffff;
  backdrop-filter: blur(418px);
  border-radius: 0.12rem;
}

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

.exhibitAct_pics img.active {
  opacity: 1;
  top: 0;
}

.exhibitAct_txt {
  width: 100%;
  position: relative;
  min-height: 3.6rem;
}

.exhibitAct_li {
  opacity: 0;
  transform: translateY(20px);
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.exhibitAct_txt h4 {
  margin-bottom: 0.25rem;
}

.exhibitAct_list {
  display: flex;
  flex-direction: column;
  gap: 0.12rem 0;
}

.exhibitAct_list li {
  display: flex;
}
.exhibitAct_list li::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 0.1rem;
  margin-top: 8px;
}

.exhibitAct_txt li.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}

.Indicator_num {
  text-align: right;
}

/* 移动端 */

.Complete_Energy_box {
  display: none;
}

.Complete_Energy_none {
  background: url(static/imgs/Complete_Energy.webp) no-repeat center;
  background-size: cover;
}

.Complete_Energy_none .exhibitTxt {
  width: 100%;
}
.Complete_Energy_box .Complete_Energy_list {
  flex-wrap: wrap;
  gap: 0.4rem 2%;
}
.Complete_Energy_box .Complete_Energy_list .exhibitAct_li {
  opacity: 1 !important;
  transform: none !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  display: block !important;
  width: 100%;
  box-sizing: border-box;
}
.xxx_img {
  width: 100%;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
}
.xxx_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 65%;
}
.xxx_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.ce_none {
}

.Complete_Energy_list .exhibitAct_list li::before {
  background-color: #999;
}
.Complete_Energy_box .Complete_Energy_list .exhibitAct_li h4 {
  margin: 0.1rem 0;
}
.Complete_Energy_list .exhibitAct_list {
  color: #666;
}

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

/* -------------------------- */
.cen-pagination {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.cen-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;
}
.cen-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .exhibitAct_txt {
    min-height: 4.5rem;
  }
  .Complete_Energy_item:not(:last-child)::before {
    right: -8px;
  }
}
@media screen and (max-width: 1024px) {
  .Complete_Energy_box {
    display: block;
  }
  .Complete_Energy {
    display: none;
  }
  .Complete_Energy_item:not(:last-child)::before {
    display: none;
  }
  .Complete_Energy_box .Complete_Energy_list {
    gap: 0.2rem 0;
  }
  .Complete_Energy_item {
    width: 49%;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(255, 255, 255, 0.5);
    padding-bottom: 0.2rem;
  }
  .Complete_Energy_item img {
    width: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .Complete_Energy_box .Complete_Energy_list {
    gap: 0.1rem 0;
  }
  .Complete_Energy_item {
    width: 100%;
    padding-bottom: 0.1rem;
  }
}

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

/* 产品定制 */
.Product_customization {
}

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

.pc_left {
  width: 46.54%;
}

.pc_right {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.pc_right::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 66.4%;
}
.pc_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}
.pc_right:hover img {
  transform: scale(1.1);
}

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

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

.Service_content {
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/Service_content_bg.webp)
    no-repeat center;
  background-size: cover;
  /* min-height: calc(100vh - var(--header_height)); */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.Service_content .wrap {
  display: flex;
  flex-wrap: wrap;
}

.abHistory_show {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 70%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 5%;
  z-index: 3;
}
.abHistory_show .t {
  width: 100%;
}
.abHistory_show .t i {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 550;
}
.abHistory_show .t span {
  font-size: 0.24rem;
  color: #666;
  line-height: 1.8;
}
.abHistory_show .p {
  flex-shrink: 0;
  width: 55%;
  aspect-ratio: 575 / 430;
}
.abHistory_show .p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.14rem;
}

.abHistory_box {
  width: 45%;
  aspect-ratio: 3 / 3.2;
  margin-left: auto;
  position: relative;
}
.abHistory_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 35%;
  width: 100%;
  height: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/history-round.webp)
    no-repeat right center;
  background-size: contain;
}

.abHistory_list {
  margin-left: auto;
  width: 66%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.abHistory_list .swiper-wrapper {
  position: relative;
  width: 100%;
}
.abHistory_list li {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.abHistory_list li span {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.14rem;
}
.abHistory_list i {
  flex-shrink: 0;
  width: 1rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.abHistory_list i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abHistory_list p {
  font-size: 0.18rem;
  font-weight: 450;
}

.abHistory_list .swiper-slide-prev,
.abHistory_list .swiper-slide-next {
  transform: translate(10%, 0);
}
.abHistory_list .swiper-slide-active {
  transform: translate(36%, 0);
}

.abHistory-pagination {
  display: none;
}

.abHistory_list .swiper-slide-active .year {
  color: var(--i_color);
}
.abHistory_list .swiper-slide-active i {
  border: 2px solid var(--i_color);
}

@media screen and (max-width: 1024px) {
  .abHistory_cont {
    min-height: auto;
  }

  .abHistory_box {
    width: 100%;
    aspect-ratio: initial;
  }
  .abHistory_box::before {
    display: none;
  }

  .abHistory_list {
    width: 100%;
    height: auto;
  }
  .abHistory_list .swiper-wrapper {
    display: flex;
  }
  .abHistory_list li {
    display: block;
    transform: none !important;
  }
  .abHistory_list li span {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .abHistory_list i {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
  }
  .abHistory_list p {
    margin-top: 16px;
  }
  .abHistory_list .swiper-slide-active p {
    color: var(--i_color);
  }

  .abHistory_show {
    position: initial;
    transform: none;
    width: 100%;
    margin-top: 50px;
  }
  .abHistory_show .t i {
    margin-bottom: 20px;
  }
  .abHistory_show .t span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .abHistory_list p {
    font-size: 15px;
    text-align: center;
  }

  .abHistory_show {
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .abHistory_show .p {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .abHistory_list i {
    width: 60px;
  }

  .abHistory_show {
    margin-top: 30px;
    gap: 20px 0;
  }
  .abHistory_show .t i {
    margin-bottom: 6px;
  }
  .abHistory_show .t span {
    font-size: 15px;
  }
}

/* 服务案例 */
.Service_Cases {
  position: relative;
}

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

.Service_Cases .wrap {
  padding-top: 1.4rem;
  position: relative;
  z-index: 10;
}

.Service_Cases_content {
  display: none;
}
.Service_Cases_content.active {
  display: block;
}

.Service_Cases_txt {
  margin-bottom: 2.69rem;
}

.Service_Cases_list {
  display: flex;
}

.Service_Cases_list li {
  width: 50%;
  box-sizing: border-box;
  padding: 0.35rem;
  cursor: pointer;
  border-top: 3px solid #8c8c8c;
  text-align: center;
  transition: all 0.4s ease;
}

.Service_Cases_list .active {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(235px);
  border-color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .Service_Cases .wrap {
    padding-top: 1.2rem;
  }
  .Service_Cases_txt {
    margin-bottom: 2.2rem;
  }
  .Service_Cases_list li {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .Service_Cases .wrap {
    padding-top: 0.8rem;
  }
  .Service_Cases_txt {
    margin-bottom: 1rem;
  }
  .Service_Cases_list li {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Service_Cases .wrap {
    padding-top: 0.4rem;
  }
  .Service_Cases_txt {
    margin-bottom: 0.4rem;
  }
  .Service_Cases_list li {
    width: 100%;
    padding: 0.1rem 0.05rem;
    font-size: 0.12rem;
  }
}

/* 如何购买 */
.How_buy {
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/How_buy_bg.webp)
    no-repeat center;
  background-size: cover;
}

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

.buy_left {
  width: 42.8%;
  position: relative;
  border-radius: 0.16rem;
  overflow: hidden;
}
.buy_left::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 68.07%;
}
.buy_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 2%;
  left: 0;
  transition: all 0.4s ease;
  opacity: 0;
}
.buy_left img.active {
  opacity: 1;
  top: 0;
}

.buy_right {
  width: 52.8%;
  max-height: 3.3rem;
  box-sizing: border-box;
  overflow-y: auto;
  padding-right: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
.buy_right::-webkit-scrollbar {
  width: 2px;
}
.buy_right::-webkit-scrollbar-track {
  background: transparent;
}
.buy_right::-webkit-scrollbar-thumb {
  background: var(--i_color);
  border-radius: 1px;
}

.buy_right h3 {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.buy_txt {
  display: flex;
}

.buy_txt::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--i_color);
  margin-top: 8px;
  margin-right: 6px;
}

@media screen and (max-width: 1024px) {
  .buy_left,
  .buy_right {
    width: 100%;
  }
  .buy_right h3 {
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .buy_right {
    padding-right: 0.2rem;
  }
}

/* 下载列表 */
.Download_box {
}

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

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

.Download_list a {
  color: #222;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.19rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.Download_list a iconify-icon {
  font-size: 0.3rem;
  color: #333;
}

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

.Download_content .active {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .Pdt_Download_list {
    justify-content: center;
  }
}

@media screen and (max-width: 560px) {
  .Download_list {
    gap: 0.1rem 0;
  }
  .Download_list a {
    padding-bottom: 0.1rem;
  }
  .Download_list a p {
    font-size: 0.13rem;
  }
  .Download_list a iconify-icon {
    font-size: 0.2rem;
  }
}

/* -------------------------  科技页面 */

/* 制造工艺 */
.Manufacturing_process {
}

.mp_box {
  gap: 0.3rem 0;
}

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

.mp_right {
  width: 53.2%;
  box-sizing: border-box;
}

.mp_right h3 {
  margin-bottom: 0.16rem;
}

.Natural_advantages {
  display: flex;
  flex-direction: column;
  gap: 0.12rem 0;
}

.Natural_advantages li {
  box-sizing: border-box;
  background-color: var(--i_color);
  padding: 0.12rem 0.4rem;
}

@media screen and (max-width: 1024px) {
  .mp_left,
  .mp_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Natural_advantages li {
    padding: 0.12rem 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Natural_advantages li {
    font-size: 0.14rem;
  }
}

/* 四大制造工艺 */
.Four_manufacturing {
}

.forAccordion_cont {
  position: relative;
}
.forAccordion_cont::before {
  content: "";
  display: block;
  padding-bottom: 42%;
}

.forAccordion_cont ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 3%;
}

.forAccordion_cont li {
  flex-grow: 1;
  width: 14%;
  height: 100%;
  border-radius: 0.14rem;
  position: relative;
  transition: all 0.7s ease;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
}
.forAccordion_cont li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(235px);
  transition: all 0.7s ease;
}
.forAccordion_cont .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.forAccordion_cont .t1,
.forAccordion_cont .t2 {
  position: absolute;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 3;
}
.forAccordion_cont .t1 {
  bottom: 0.2rem;
  padding: 0 10px;
  transition: all 0.5s 0.3s;
}
.forAccordion_cont .t1 h5 {
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.forAccordion_cont .t2 {
  opacity: 0;
  visibility: hidden;
  bottom: -0.4rem;
  padding: 0.1rem 0.2rem;
  text-align: center;
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
}
.forAccordion_cont .t2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(235px);
  border-radius: 0.2rem 0.2rem 0 0;
}
.forAccordion_cont .t2 span {
  display: block;
  width: 34vw;
  margin-left: auto;
  margin-right: auto;
}
.forAccordion_cont .t2 h5 {
  margin-bottom: 0.1rem;
  font-size: 0.2rem;
  font-weight: 550;
  color: #fff;
  position: relative;
}
.forAccordion_cont .t2 p {
  font-size: 0.16rem;
  color: #fff;
  line-height: 1.6;
  position: relative;
}

.forAccordion_cont li.active {
  flex-grow: 1000 !important;
}
.forAccordion_cont li.active::after {
  opacity: 0;
}
.forAccordion_cont li.active .t1 {
  opacity: 0;
  visibility: hidden;
}
.forAccordion_cont li.active .t2 {
  bottom: -1px;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1200px) {
  .forAccordion_cont .t2 h5 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .forAccordion_cont::before {
    display: none;
  }
  .forAccordion_cont ul {
    position: initial;
    flex-wrap: wrap;
    gap: 30px 4%;
  }
  .forAccordion_cont li {
    width: 48%;
    border-radius: 0;
  }
  .forAccordion_cont li::after {
    display: none;
  }
  .forAccordion_cont .bg {
    position: initial;
    height: auto;
    aspect-ratio: 74 / 60;
    border-radius: 0.1rem;
  }

  .forAccordion_cont .t1 {
    display: none;
  }
  .forAccordion_cont .t2 {
    display: block;
    position: initial;
    padding: 0;
    margin-top: 0.18rem;
    opacity: 1;
    visibility: visible;
  }
  .forAccordion_cont .t2::before {
    display: none;
  }
  .forAccordion_cont .t2 span {
    width: 100%;
  }
  .forAccordion_cont .t2 h5 {
    font-size: 16px;
    color: #333;
  }
  .forAccordion_cont .t2 p {
    font-size: 14px;
    color: #666;
  }
}
@media screen and (max-width: 560px) {
  .forAccordion_cont li {
    width: 100%;
  }
}

/* 市场前景 */
.Market_Prospects {
  padding-top: 1.4rem;
  padding-bottom: 4.33rem;
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/Market_Prospects_bg.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

/* 储蓄系统 */
.Savings_system {
}

/* 材料熟悉 */
.Material_properties {
  display: flex;
  flex-wrap: wrap;
  background-color: #f4f4f4;
}

.Material_left {
  width: 57.2%;
  box-sizing: border-box;
  padding: 0.36rem 0.25rem;
}

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

@media screen and (max-width: 1024px) {
  .Material_left,
  .Material_right {
    width: 100%;
  }
  .Material_left {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Material_left article {
    font-size: 0.14rem;
  }
}

/* 生产流程 */
.Production_process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

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

.Production_right {
  width: 54.27%;
  box-sizing: border-box;
}

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

.Production_list li {
  display: flex;
}

.Production_list li::before {
  margin-top: 8px;
  margin-right: 8px;
  flex-shrink: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--i_color);
}

.Production_list li p {
  width: 100%;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #d6d6d6;
}

.Production_list li:last-child p,
.Production_list li:last-of-type p {
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (max-width: 1024px) {
  .Production_left,
  .Production_right {
    width: 100%;
  }
  .Production_right {
    order: -1;
  }
}
@media screen and (max-width: 560px) {
  .Production_list {
    gap: 0.1rem 0;
  }
  .Production_list li p {
    font-size: 0.14rem;
    padding-bottom: 0.1rem;
  }
}

/* 工艺介绍 */
.Process_Introduction {
  background: linear-gradient(180deg, rgba(216, 216, 216, 0) 0%, #f4f4f4 100%);
}

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

.Process_list li {
  width: 32%;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0.5rem 0.47rem 0.42rem 0.47rem;
  transition: all 0.4s ease;
  position: relative;
}

.Process_list h2 {
  margin-bottom: 0.16rem;
}

.Process_list p {
  -webkit-text-stroke: 1px #999;
  color: transparent;
  position: absolute;
  right: 1.3%;
  bottom: 2%;
  transition: all 0.4s ease;
}

.Process_list li:hover {
  background-color: var(--i_color);
}
.Process_list li:hover h2,
.Process_list li:hover h4 {
  color: #fff;
}
.Process_list li:hover p {
  -webkit-text-stroke: 1px #fff;
}

@media screen and (max-width: 1024px) {
  .Process_list li {
    width: 49%;
    padding: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .Process_list li {
    width: 100%;
  }
  .Process_list p {
    -webkit-text-stroke: unset;
    color: #999;
  }
  .Process_list li:hover p {
    -webkit-text-stroke: unset;
    color: #fff;
  }
}

/* 储能集成 */
.Energy_storage_integration {
}

/* 集成能源 */
.Integrated_Energy {
  box-sizing: border-box;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  position: relative;
}

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

.ie_text {
  margin-bottom: 1.6rem;
}

.ie_text h2 {
  display: none;
}
.ie_text h2.active {
  display: block;
}

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

.ie_list li {
  width: 23.5%;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  padding: 0.2rem 0.19rem 0.19rem 0.39rem;
  transition: all 0.4s ease;
}

.ie_list h4 {
  display: none;
  margin-top: 0.1rem;
  font-size: 0.12rem;
}

.ie_list li:hover,
.ie_list li.active {
  background-color: #fff;
}
.ie_list li:hover h2,
.ie_list li.active h2 {
  color: #222;
}
.ie_list li:hover p,
.ie_list li.active p {
  color: #666;
}
.ie_list li:hover h4,
.ie_list li.active h4 {
  color: #999;
}

@media screen and (max-width: 1200px) {
  .ie_text {
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .Integrated_Energy {
    padding: 0.4rem 0.2rem;
  }
  .ie_text {
    margin-bottom: 0.6rem;
  }
  .ie_list li {
    width: 49%;
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Integrated_Energy {
    padding: 0.3rem 0.2rem;
  }
  .ie_text {
    display: none;
  }
  .ie_list li {
    width: 100%;
  }
  .ie_list h2 {
    font-size: 0.16rem;
  }
  .ie_list p {
    font-size: 0.14rem;
  }
  .ie_list h4 {
    display: block;
  }
}

/* 储能介绍 */
.Energy_Storage_Introduction {
}

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

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

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

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

.esi_item_txt h4 {
  width: 36.41%;
}

.esi_item_txt h6 {
  width: 58.32%;
}

@media screen and (max-width: 1024px) {
  .Energy_Storage_Introduction {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .esi-pagination {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .esi_item_txt h4,
  .esi_item_txt h6 {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .esi_item_txt h4 {
    font-size: 0.16rem;
  }
  .esi_item_txt h6 {
    font-size: 0.14rem;
  }
}

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

/* 关于公司 */
.About_Company {
  position: relative;
}

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

.About_top h6 {
  width: 68%;
}

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

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

.video_btn {
  width: 1.86rem;
  height: 1.86rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/GeRun/2026/04/video_btn.webp)
    no-repeat center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotate360 15s linear infinite;
}

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

@keyframes rotate360 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media screen and (max-width: 1024px) {
  .video_btn {
    width: 1.4rem;
    height: 1.4rem;
  }
  .video_btn iconify-icon {
    font-size: 0.35rem;
  }
}
@media screen and (max-width: 560px) {
  .video_btn {
    width: 1rem;
    height: 1rem;
  }
  .video_btn iconify-icon {
    font-size: 0.25rem;
  }
}

/* 选择我们 */
.Choose_us {
  background-color: #f4f4f4;
  overflow: hidden;
}

.Choose_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.15rem 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.Choose_us {
  --li_height: 1.2rem;
}

.aboutAdv_cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.aboutAdv_nav {
  width: 40%;
  box-sizing: border-box;
  padding-left: 0.3rem;
  position: relative;
}
.aboutAdv_nav .curr {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -0.1rem;
  height: 0.2rem;
  transition: all 0.5s ease;
}
.aboutAdv_nav .curr iconify-icon {
  font-size: 0.2rem;
  color: var(--i_color);
}

.aboutAdv_nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.aboutAdv_nav li {
  height: var(--li_height);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0.4rem;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.aboutAdv_nav li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.16rem;
  height: 2px;
  background: #999;
}
.aboutAdv_nav p {
  color: #666;
}
.aboutAdv_nav .line {
  position: absolute;
  top: 70%;
  left: 0;
  width: 8px;
  height: calc(var(--li_height) / 2 + 10%);
}
.aboutAdv_nav .line i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #999;
}
.aboutAdv_nav .line i:nth-child(1) {
  top: 0;
}
.aboutAdv_nav .line i:nth-child(2) {
  top: 16.66%;
}
.aboutAdv_nav .line i:nth-child(3) {
  top: 33.33%;
}
.aboutAdv_nav .line i:nth-child(4) {
  top: 49.98%;
}
.aboutAdv_nav .line i:nth-child(5) {
  top: 66.64%;
}
.aboutAdv_nav .line i:nth-child(6) {
  top: 83.33%;
}
.aboutAdv_nav .line i:nth-child(7) {
  top: 99%;
}

.aboutAdv_nav li:last-child .line {
  display: none;
}

.aboutAdv_nav li.active::before {
  background: var(--i_color);
  transition: all 0.5s ease;
}
.aboutAdv_nav li.active p {
  font-weight: 450;
  font-size: 0.32rem;
  color: var(--i_color);
  transition: all 0.5s ease;
}

@media screen and (max-width: 1024px) {
  .aboutAdv {
    --li_height: 80px;
  }
  .aboutAdv p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .aboutAdv {
    --li_height: 60px;
  }
  .aboutAdv_nav {
    width: 100%;
  }
  .aboutAdv p {
    font-size: 16px;
  }
}

.aboutAdv_show {
  margin-left: auto;
  width: 58%;
}
.aboutAdv_show dt {
  opacity: 0;
  visibility: hidden;
  height: 0;
  position: relative;
  left: 0.3rem;
}
.aboutAdv_show dt.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  left: 0;
  transition: all 0.5s ease;
}

.aboutAdv_show .pic {
  width: 100%;
  aspect-ratio: 945 / 450;
  position: relative;
  overflow: hidden;
}
.aboutAdv_show .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutAdv_show .txt {
  margin-top: 0.16rem;
}
.aboutAdv_show .txt h5 {
  font-weight: 450;
  color: var(--i_color);
}
.aboutAdv_show .txt span {
  display: block;
  margin-top: 0.1rem;
}

@media screen and (max-width: 768px) {
  .aboutAdv_show {
    margin-top: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .aboutAdv_nav li.active p {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .Choose_top h2 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .aboutAdv_nav li.active p {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Choose_us {
    --li_height: 0.8rem;
  }
  .aboutAdv_nav ul {
    gap: 0.12rem 0;
  }
  .aboutAdv_nav li {
    height: auto;
    padding-left: 0rem;
  }
  .aboutAdv_nav li::before,
  .aboutAdv_nav .line {
    display: none;
  }
  .aboutAdv_nav p,
  .aboutAdv_nav li.active p {
    font-size: 0.16rem;
  }
}

/* 生产车间 */
.Production_workshop {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(240, 255, 247, 0.5) 100%
  );
}

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

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

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

.workshop_img p {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 0.16rem;
  border-radius: 0px 0.6rem 0px 0px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(235px);
  opacity: 0;
  transition: all 0.4s ease;
}

.workshop_list .swiper-slide-active .workshop_img::before {
  padding-bottom: 58.2%;
}
.workshop_list .swiper-slide-active .workshop_img::after {
  opacity: 0;
}
.workshop_list .swiper-slide-active .workshop_img p {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .workshop-pagination {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .workshop_img p {
    padding: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .Production_workshop {
    padding: 0.3rem 0;
  }
  .workshop_img::before {
    padding-bottom: 58.2%;
  }
}

/* 公司愿景 */
.Company_Vision {
  position: relative;
  overflow: hidden;
  padding: 1.3rem 0 2rem 0;
}

.floatPic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: all 0.5s ease;
}

@media screen and (max-width: 1200px) {
  .Company_Vision {
    padding: 1rem 0 1.5rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .Company_Vision {
    padding: 0.8rem 0 1rem 0;
  }
}
@media screen and (max-width: 560px) {
  .Company_Vision {
    padding: 0.5rem 0 0.8rem 0;
  }
}

/* -------------------------  新闻列表页面 */
.new_main {
  background: linear-gradient(
    179deg,
    rgba(244, 244, 244, 0.0621) 2%,
    #f4f4f4 14%
  );
}

.options_list {
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0;
}

.options_list li {
  width: 33.33%;
}

.options_list a {
  display: block;
  box-sizing: border-box;
  padding: 0 0.2rem;
  text-align: center;
  border-right: 2px solid rgba(51, 51, 51, 0.24);
}

.options_list li:last-child a {
  border-right: none;
}

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

.options_list .active a {
  color: var(--i_color);
}

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

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

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

.new_list li {
  width: 32%;
  box-sizing: border-box;
}

.new_list a {
  display: block;
}

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

.nl_txt {
  box-sizing: border-box;
  background-color: #fff;
  padding: 0.2rem 0.18rem;
  transition: all 0.4s ease;
  position: relative;
}
.nl_txt::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #eefff6 25%, rgba(0, 153, 68, 0.27) 231%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.nl_time {
  display: flex;
  align-items: center;
  gap: 0 4px;
}

.new_list li:hover .nl_img img {
  transform: scale(1.1);
}
.new_list li:hover .nl_txt {
  background-color: transparent;
}
.new_list li:hover .nl_txt::before {
  opacity: 1;
}
.new_list li:hover .nl_time p {
  color: #222;
}

@media screen and (max-width: 1024px) {
  .new_list {
    gap: 0.2rem 2%;
  }
}
@media screen and (max-width: 768px) {
  .new_list li {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .new_list {
    gap: 0.1rem 2%;
  }
  .nl_txt {
    padding: 0.1rem;
  }
  .nl_txt h2 {
    font-size: 0.14rem;
  }
}

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

/* 联系方式 */
.ci_box {
  border-top: 1px dashed #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  gap: 0.3rem 0;
}

.ci_left {
  width: 45.65%;
}

.cil_cont {
  display: flex;
  flex-direction: column;
  gap: 0.42rem 0;
}

.cil_info {
  font-size: 0.18rem;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 2%;
}

.cil_Email {
  font-size: 0.18rem;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 0;
}

.cil_cont p {
  margin-bottom: 0.1rem;
}

.cil_cont a,
.cil_cont span {
  font-size: 0.18rem;
  color: #666;
  transition: all 0.4s ease;
}

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

.p_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.p_share > p {
  font-size: 0.18rem;
  color: #666;
  font-weight: 150;
}
.p_share dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_share dt a {
  display: block;
  width: 0.3rem;
  text-align: center;
}
.p_share dt iconify-icon {
  font-size: 0.26rem;
  color: #666;
  transition: all 0.4s ease;
}
.p_share a:hover iconify-icon {
  color: var(--i_color);
}

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

@media screen and (max-width: 768px) {
  .ci_left,
  .ci_right {
    width: 100%;
  }
  .cil_cont {
    gap: 0.2rem 0;
  }
  .cil_cont p,
  .p_share > p {
    font-size: 0.16rem;
  }
  .cil_cont a,
  .cil_cont span,
  .cil_info,
  .cil_Email {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .cil_cont {
    gap: 0.1rem 0;
  }
  .p_share dl {
    gap: 0 0.1rem;
  }
  .p_share dt iconify-icon {
    font-size: 0.2rem;
  }
}

/* 联系表单 */
.Contact_form {
}

.c_form {
  box-sizing: border-box;
  padding: 0.47rem 0.4rem 0.4rem 0.6rem;
  background-color: #f9f9f9;
  border-radius: 10px;
}

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

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

#wpforms-144 .wpforms-field-container .wpforms-field-label {
  font-size: 0.18rem;
  font-weight: normal;
  color: #666;
}

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

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

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

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

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

#wpforms-144 .wpforms-submit-container {
  width: 374px;
  padding: 0 0;
  margin-left: auto;
  margin-right: auto;
}
#wpforms-144 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: var(--i_color);
}
#wpforms-144 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-144 .wpforms-submit-container button:hover {
  background: rgb(0, 153, 68, 0.7);
}

@media screen and (max-width: 1024px) {
  .c_form {
    padding: 0.3rem 0.2rem;
  }
  #wpforms-144 .wpforms-field-container .wpforms-field-label {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  #wpforms-144-field_1-container,
  #wpforms-144-field_2-container,
  #wpforms-144-field_3-container,
  #wpforms-144-field_4-container {
    width: 100% !important;
  }
  #wpforms-144 .wpforms-field-container > .wpforms-field {
    margin: 0;
  }
  #wpforms-144 .wpforms-submit-container {
    width: 60%;
  }
}
@media screen and (max-width: 560px) {
}
