/*
Theme Name: YiYue
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: #026659;

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

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

.btn_aaa {
  box-sizing: border-box;
  align-items: center;
  display: flex;
  background-color: #fff;
  border-radius: 5rem;
  padding: 0.12rem 0.12rem 0.12rem 0.24rem;
  gap: 0 0.16rem;
  transition: all 0.4s ease;
}

.btn_icon {
  width: 0.24rem;
  height: 0.24rem;
  background-color: var(--i_color);
  border-radius: 50%;
  color: #fff;
  font-size: 0.2rem;
}

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

.btn_color {
  background-color: rgba(2, 102, 89, 0.2);
}

@media screen and (max-width: 1024px) {
  .btn_aaa {
    padding: 0.06rem 0.06rem 0.06rem 0.15rem;
  }
  .btn_aaa span {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .btn_aaa {
    padding: 0.06rem 0.06rem 0.06rem 0.1rem;
  }
  .btn_aaa span {
    font-size: 0.14rem;
  }
}

/* title */
.title_box {
}

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

.title_box h3 {
  margin: 0.16rem 0 0.24rem 0;
}

/* --- --- */

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

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

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

header.fixedHeader {
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  background-color: rgb(0, 0, 0, 0.75);
}
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: rgb(0, 0, 0, 0.75);
  }
}

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

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

  .i_nav > li {
    position: relative;
  }
  .i_nav > li::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 32%;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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

  .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > li.active::before {
    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) {
  .i_nav {
    gap: 0 0.54rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav {
    gap: 0 0.5rem;
  }
  .i_nav > li > a {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.4rem;
  }
  .i_nav > li > a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

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

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

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

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

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

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

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

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

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

.nav_menu.on i {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full_header_height {
  display: none;
  height: var(--header_height);
}
.page_height {
  height: var(--header_height);
  background-color: rgb(0, 0, 0, 0.75);
}
@media screen and (max-width: 1024px) {
  .full_header_height {
    display: block;
  }
  .page_height {
    display: none;
  }
}

/* banner */
.home_banner {
}

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

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

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

.hb01_info h2 {
  width: 53%;
  position: relative;
}
.hb01_info h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #026659 0%, #02665900 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.hb01_list {
  display: flex;
  flex-direction: column;
  gap: 0.24rem 0;
}

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

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

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

@media screen and (max-width: 1024px) {
  .home_banner-prev,
  .home_banner-next {
    display: none;
  }
  .home_banner-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
  }
  .hb01_info h2 {
    width: 100%;
  }
  .hb01_list {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .hb01_info h2 {
    font-size: 0.26rem;
  }
  .hb01_list {
    gap: 0.1rem 0;
  }
  .hb01 .btn_box {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .hb01_info h2 {
    font-size: 0.16rem;
  }
  .hb01_list li {
    font-size: 0.14rem;
  }
}

/* 品牌优势 */
.Brand_advantages {
  background-color: var(--i_color);
}

.Brand_advantages_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.06rem 0;
}

.Brand_advantages_item {
  width: 33.33%;
  box-sizing: border-box;
  padding: 0 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.24rem;
  position: relative;
}
.Brand_advantages_item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.42);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.Brand_advantages_item:last-child::before {
  display: none;
}

.Brand_advantages_item img {
  width: 0.48rem;
}

@media screen and (max-width: 1024px) {
  .Brand_advantages_item img {
    width: 0.3rem;
  }
  .Brand_advantages_item {
    gap: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .Brand_advantages_item img {
    width: 0.2rem;
  }
  .Brand_advantages_item p {
    font-size: 0.14rem;
    font-weight: normal;
  }
}
@media screen and (max-width: 560px) {
  .Brand_advantages_list {
    padding: 0.15rem 0;
  }
  .Brand_advantages_item {
    width: 100%;
  }
  .Brand_advantages_item::before {
    display: none;
  }
}

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

.footer_top .wrap {
  box-sizing: border-box;
  padding: 0.7rem 0.8rem 0.45rem 0.8rem;
  background-color: var(--i_color);
  border-radius: 0.2rem;
}

.footer_top h4 {
  color: rgb(255, 255, 255, 0.7);
}

.ft_connect {
  display: flex;
  margin-top: 0.24rem;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.ft_connect h2 {
  width: 77.84%;
}

.ft_list {
  width: 89.71%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.1rem 0;
}

.ftl_item {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 450;
  font-size: 0.18rem;
}

.ftl_item iconify-icon {
  font-size: 0.24rem;
  margin-right: 0.1rem;
}

.ftl_item a {
  color: #fff;
  font-weight: 450;
  font-size: 0.18rem;
}
.ftl_item a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .footer_top .wrap {
    padding: 0.3rem;
  }
  .ft_list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ft_connect h2 {
    width: 100%;
  }
  .ft_list {
    margin-top: 0.2rem;
  }
  .ftl_item {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .footer_top .wrap {
    padding: 0.2rem;
  }
  .ftl_item iconify-icon {
    font-size: 0.2rem;
  }
  .ftl_item,
  .ftl_item a {
    font-size: 0.16rem;
  }
}

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

.fm_A {
  width: 38%;
  box-sizing: border-box;
}

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

.fm_company a {
  width: 1rem;
  display: block;
}
.fm_company a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fMedia {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.fMedia li {
  transition: all 0.5s ease;
}
.fMedia a {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(2, 102, 89, 0.24);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  position: relative;
  color: rgb(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}
.fMedia iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
}
.fMedia li:hover {
  transform: translate(0, -6px);
}
.fMedia li:hover a {
  color: #fff;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .fm_A {
    width: 100%;
  }
  .fm_company {
    width: 100%;
    justify-content: flex-start;
    gap: 0.1rem;
  }
  .fm_company a {
    width: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .fMedia a {
    width: 40px;
    height: 40px;
  }
  .fMedia iconify-icon {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .fm_company a {
    width: 0.5rem;
  }
  .fMedia {
    gap: 0 20px;
  }
  .fMedia a {
    width: 34px;
    height: 34px;
  }
  .fMedia iconify-icon {
    font-size: 18px;
  }
  .fm_A h6 {
    font-size: 0.16rem;
    margin: 0.2rem 0;
  }
}

.fTit {
}
.fNav ul {
  display: flex;
  flex-direction: column;
  gap: 0.24rem 0;
}
.fNav li {
}
.fNav li a {
  font-size: 0.18rem;
  color: #fff;
  position: relative;
  transition: all 0.4s ease;
}
.fNav li a::before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}
.fNav li a:hover {
  color: var(--i_color);
}
.fNav li a:hover::before {
  width: 100%;
}

.fm_QR img {
  width: 1.2rem;
  display: block;
}

@media screen and (max-width: 1024px) {
  .fNav {
    display: none;
  }
}

.footer_bottom {
  border-top: 1px solid #424243;
}

.f_cr {
}
.f_cr p,
.f_cr a {
  font-size: 0.16rem;
  color: rgb(255, 255, 255, 0.7);
}
.f_cr a:hover {
  text-decoration: underline;
}

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

/* 产品展示 */
.Product_Showcase {
  background-color: #f7f7f7;
}

.Product_list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem 2%;
}

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

.Product_item a {
  display: block;
  box-sizing: border-box;
  border: 1px solid #fff;
  background-color: #fff;
  padding: 0.18rem 0.18rem 0.24rem 0.18rem;
  transition: all 0.4s ease;
}

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

.Product_item a:hover {
  border-color: var(--i_color);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}
.Product_item a:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.Product_item a:hover h4 {
  color: var(--i_color);
}

.Product_Showcase_more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem;
  border-top: 1px solid #e4e4e4;
}

@media screen and (max-width: 768px) {
  .Product_list {
    gap: 0.12rem 2%;
  }
  .Product_item {
    width: 32%;
  }
  .Product_item a {
    padding: 0.1rem;
  }
  .Product_item h4 {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .Product_list {
    gap: 0.1rem 2%;
  }
  .Product_item {
    width: 49%;
  }
}

/* 公司介绍 */
.About_Company {
  background: linear-gradient(180deg, #0266591f 0%, #02665900 100%);
}

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

.acb_left {
  width: 39.8%;
  height: max-content;
  position: relative;
}

.acb_left::before {
  content: "";
  display: block;
  width: 14%;
  height: 3px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.acb_right {
  width: 53%;
}
.acb_right article {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
  .acb_left {
    padding-bottom: 0.1rem;
  }
  .acb_left,
  .acb_right {
    width: 100%;
  }
}

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

.v_btn {
  width: 0.68rem;
  height: 0.68rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgb(2, 102, 89, 0.6);
  cursor: pointer;
}
.v_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgb(2, 102, 89, 0.3);
  box-sizing: border-box;
  animation: pulseAnimation 3s infinite;
  z-index: -1;
}
@keyframes pulseAnimation {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 136%;
    height: 136%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

.v_btn iconify-icon {
  font-size: 0.26rem;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .v_btn {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .v_btn {
    width: 0.4rem;
    height: 0.4rem;
  }
  .v_btn iconify-icon {
    font-size: 0.18rem;
  }
}

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

.ac_list li {
  width: 30%;
  box-sizing: border-box;
  border-top: 2px solid #999;
}

.ac_list p {
  margin-top: 0.15rem;
}

.ac_list li:hover {
  border-color: var(--i_color);
}
.ac_list li:hover h6,
.ac_list li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 768px) {
  .ac_list li {
    width: 48%;
  }
}
@media screen and (max-width: 560px) {
  .ac_list {
    gap: 0.2rem 0;
  }
  .ac_list li {
    width: 100%;
    border-top: 1px solid #e1e1e1;
  }
}

/* 合作伙伴 */
.Partners {
  background: url(https://lingjuimg.com/wp-content/uploads/YiYue/2026/07/Partners_Ba.webp)
    no-repeat center;
  background-size: cover;
}

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

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

.Partners_right {
  width: 52.8%;
  box-sizing: border-box;
}

.Partners_right h3 {
  display: flex;
}
.Partners_right h3 p {
  font-size: 0.84rem;
}

.Partners_right h4 {
  width: max-content;
  border-bottom: 1px solid var(--i_color);
}

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

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

@media screen and (max-width: 1024px) {
  .Partners_right h3 p {
    font-size: 0.6rem;
  }
  .partner-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .Partners_right h3 p {
    font-size: 0.4rem;
  }
  .Partners_right h4 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .Partners_left,
  .Partners_right {
    width: 100%;
  }
  .Partners_right {
    order: -1;
  }
  .Partners_right h3 p {
    font-size: 0.3rem;
  }
}

/* 应用场景 */
.Application_scenarios {
  background: linear-gradient(180deg, #0266591f 0%, #02665900 100%);
}

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

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

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

.App_Mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.App_Mask img {
  width: 1.48rem;
}

.App_None {
  width: 100%;
  box-sizing: border-box;
  border-top-right-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.24rem 0.3rem 0.32rem 0.3rem;
  position: absolute;
  left: 0;
  bottom: -2%;
  transition: all 0.4s ease;
  opacity: 0;
}

.Application_item:hover .App_Mask {
  opacity: 0;
  top: -2%;
}
.Application_item:hover .App_None {
  opacity: 1;
  bottom: 0;
}

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

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

@media screen and (max-width: 1440px) {
  .Application-prev {
    left: 0;
  }
  .Application-next {
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .App_Mask img {
    width: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .Application_scenarios .wrap_l {
    padding-right: 3vw;
  }
  .Application-prev,
  .Application-next {
    display: none;
  }
  .Application-pagination {
    display: block;
  }
  .App_Mask img {
    width: 0.6rem;
  }
  .App_None {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .App_Mask img {
    width: 0.4rem;
  }
  .App_Mask p {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
  .App_None h4 {
    font-size: 0.14rem;
  }
}

/* 选择我们 */
.Choose_us {
}

.serCustom_cont {
  position: relative;
}

.serCustom_pic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 41.61%;
  max-height: 77.01%;
  object-fit: cover;
  border-radius: 3rem;
}

.serCustom_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 40%;
  position: relative;
}
.serCustom_list li {
  width: 26%;
}
.serCustom_list span {
}
.serCustom_list img {
  height: 0.54rem;
}
.serCustom_list p {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 1.6;
  color: #333;
}

.serCustom_list li:hover p {
  color: var(--i_color);
}

@media screen and (min-width: 1025px) {
  .serCustom_list li:nth-child(odd) {
    text-align: right;
  }
  .serCustom_list li:nth-child(odd) span {
    justify-content: flex-end;
  }
  .serCustom_list li:nth-child(odd) h5 {
    order: -1;
  }
}

@media screen and (max-width: 1024px) {
  .serCustom_cont {
    padding: 0 0;
  }

  .serCustom_pic {
    position: initial;
    transform: none;
    top: initial;
    left: initial;
    width: 100%;
    max-width: 5rem;
    max-height: none;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .serCustom_list {
    margin-top: 0.5rem;
    gap: 50px 4%;
  }
  .serCustom_list li {
    width: 48%;
  }
  .serCustom_list img {
    height: 38px;
  }
  .serCustom_list h5 {
    font-size: 22px;
  }
  .serCustom_list p {
    margin-top: 14px;
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .serCustom_list {
    margin-top: 30px;
    gap: 30px 0;
  }
  .serCustom_list li {
    width: 100%;
  }
  .serCustom_list img {
    height: 30px;
  }
  .serCustom_list h5 {
    font-size: 18px;
  }
}

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

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

.hnt_left {
  width: 38.47%;
  box-sizing: border-box;
}

.hnt_right {
  width: 53.54%;
  box-sizing: border-box;
}

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

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

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

.home_new_item a {
  display: block;
}

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

.home_new_text {
  box-sizing: border-box;
  background-color: #f6f6f6;
  padding: 0.21rem 0.18rem;
}

.home_new_more {
  background-color: #f6f6f6;
  box-sizing: border-box;
  padding: 0.12rem 0.18rem;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--i_color);
}

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

.home_new_item a:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.home_new_item a:hover .home_new_more {
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .home_new_text h5 {
    margin: 0.1rem 0;
  }
}
@media screen and (max-width: 768px) {
  .home_new_list {
    gap: 0.15rem 2%;
  }
  .home_new_item {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .home_new_list {
    gap: 0.1rem 2%;
  }
  .home_new_text {
    padding: 0.1rem;
  }
  .home_new_text span {
    font-size: 0.12rem;
  }
  .home_new_text h5 {
    font-size: 0.16rem;
  }
  .home_new_more {
    display: none;
  }
}

/* ======================================== page_banner */

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

.page_banner_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.72rem;
}

@media screen and (max-width: 1440px) {
  .page_banner_text {
    font-size: 0.65rem;
  }
}
@media screen and (max-width: 1366px) {
  .page_banner_text {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .page_banner_text {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .page_banner_text {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .page_banner_text {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 560px) {
  .page_banner_text {
    font-size: 0.24rem;
  }
}

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

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

/* 产品展示 */
.Products_section {
}

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

.cat_nav {
  flex-shrink: 0;
  width: 22%;
  box-sizing: border-box;
  position: relative;
}

.cat_nav_tit {
  padding-bottom: 0.16rem;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.cat_nav_tit h4 {
  font-size: 0.3rem;
  color: var(--i_color);
  font-weight: 450;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  position: relative;
}
.cat_nav_list li {
  position: relative;
  border: 1px solid transparent;
  border-bottom-color: #ddd;
}
.cat_nav_list li.active {
  border: 1px solid rgba(2, 102, 89, 0.4);
}

.cat_fold_tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 0.1rem 0 0.14rem;
  gap: 0 0.2rem;
}
.cat_fold_tit a {
  padding: 0.16rem 0;
  width: 100%;
  font-size: 0.18rem;
  font-weight: 450;
  line-height: 1.5;
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.3rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_tit a:hover,
.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: var(--i_color);
}
.active .cat_fold_tit {
  background: var(--i_color);
}
.active .cat_fold_tit a {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  color: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.cat_fold_sub {
  display: none;
  padding: 0.18rem 0.14rem;
}
.cat_fold_sub dt {
  box-sizing: border-box;
  border-radius: 4px;
}
.cat_fold_sub a {
  display: block;
  padding: 0.14rem 0.2rem;
  font-size: 0.18rem;
  color: #666;
  position: relative;
  transition: all 0.5s ease;
}
.cat_fold_sub a::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.24rem;
  height: 0.24rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23026659' d='M10 17V7l5 5z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
  transition: all 0.5s ease;
}

.cat_fold_sub a:hover,
.cat_fold_sub dt.active a {
  padding-left: 0.36rem;
  background: rgba(2, 102, 89, 0.06);
}
.cat_fold_sub a:hover::before,
.cat_fold_sub dt.active a::before {
  opacity: 1;
  left: 0.1rem;
}

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

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

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

  .cat_nav_list {
    padding: 20px 20px;
  }

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

.Products_box {
  box-sizing: border-box;
  position: relative;
  width: 75.6%;
  padding-left: 2.5vw;
}
.Products_box::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
  position: absolute;
  left: 0;
  top: 0;
}

.Products_ul .Product_item {
  width: 32%;
}

@media screen and (max-width: 1024px) {
  .Products_box {
    width: 100%;
    padding-left: 0;
  }
  .Products_box::before {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .Products_ul .Product_item {
    width: 49%;
  }
}

/* ------------------------------------------  产品详情页面 */
.Product_Overview {
}

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

/* atlas */
.p_atlas {
  width: 42.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;
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_atlas_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

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

.sort_name {
  display: flex;
  align-items: center;
}
.sort_name::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
  margin-right: 0.1rem;
}

.Product_info {
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

/* 产品优势 */
.Product_Advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 2%;
}

.Pa_item {
  width: 32%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.1rem;
  background: rgba(2, 102, 89, 0.1);
  padding: 0.2rem 0.18rem 0.12rem 0.18rem;
}

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

.Pa_item p {
  margin-top: 0.16rem;
  transition: all 0.4s ease;
}

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

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

.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: #acacac;
  font-weight: 450;
}
.p_share dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_share dt {
}
.p_share a {
}
.p_share a iconify-icon {
  font-size: 0.26rem;
  color: #b2b2b2;
  transition: all 0.4s ease;
}

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

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

/* 产品介绍 */
.Product_Introduction {
}

.Product_Details_tit {
  background-color: #f3f3f3;
}

.Product_Details_tit i {
  display: block;
  width: max-content;
  padding: 0.12rem 0.8rem;
  background-color: #fff;
  position: relative;
  color: var(--i_color);
}

.Product_Details_tit i::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
}

.Product_Details_tit i::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -1px;
}

/* 产品FAQ */

.pFAQ_list {
}
.pFAQ_list li {
  border-bottom: 1px solid #e5e5e5;
}
.pFAQ_list .tit {
  padding: 0.4rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
}
.pFAQ_list .tit b {
  flex-shrink: 0;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--i_color);
  text-align: center;
  line-height: 0.36rem;
  font-size: 0.2rem;
  color: #fff;
}
.pFAQ_list .tit p {
  font-size: 0.24rem;
  font-weight: 450;
}
.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 256 256'%3E%3Cg fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'%3E%3Ccircle cx='128' cy='128' r='112'/%3E%3Cpath d='M 79.999992,128 H 176.0001'/%3E%3Cpath d='m 128.00004,79.99995 v 96.0001'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.28rem;
}

.pFAQ_list .tit.active b {
  background: #fff;
  color: var(--i_color);
}
.pFAQ_list .tit.active p {
}
.pFAQ_list .tit.active {
}
.pFAQ_list .tit.active i {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23026659' d='M16 4c6.6 0 12 5.4 12 12s-5.4 12-12 12S4 22.6 4 16S9.4 4 16 4m0-2C8.3 2 2 8.3 2 16s6.3 14 14 14s14-6.3 14-14S23.7 2 16 2'/%3E%3Cpath fill='%23026659' d='M8 15h16v2H8z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.28rem;
}

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

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

/* tags+view_other */

.pBottom {
  background-color: #f7f7f7;
}

.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #cecece;
  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.17rem;
  border-radius: 5rem;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  color: var(--i_color);
  background: #fff;
  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: 450;
}
.p_view_other p b {
  font-size: 0.18rem;
  color: #333;
  font-weight: 450;
}

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

/* ------------------------------------------  关于我们页面 */
.aboutUs_section .in_position {
  background-color: transparent;
}

/* 关于我们 */
.aboutUs_section {
  background: linear-gradient(180deg, #0266591f 0%, #02665900 100%);
}

.about_info {
  box-sizing: border-box;
  padding-right: 0.8vw;
  max-height: 3rem;
  overflow-y: auto;
}
.about_info::-webkit-scrollbar {
  width: 5px;
}
.about_info::-webkit-scrollbar-track {
  background: #d0d8d8;
}
.about_info::-webkit-scrollbar-thumb {
  background: var(--i_color);
}

/* 选择我们 */
.Choose_us {
}

.service_adv_ul {
  display: flex;
  display: -webkit-flex;
  gap: 0.3rem;
}
.service_adv_ul li {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  width: 15.75%;
  height: 6.2rem;
  overflow: hidden;
  position: relative;
  transition: all 0.7s ease;
}
.service_adv_ul li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_adv_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 0.25rem 0.3rem 0.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service_adv_text img {
  width: 0.72rem;
  height: 0.72rem;
  object-fit: contain;
}

.service_adv_text h4 {
  font-size: 0.2rem;
  font-weight: 450;
  color: #fff;
  line-height: 0.24rem;
  display: none;
  opacity: 0;
  width: 31vw;
  margin-top: 0.24rem;
  transition: all 0.3s ease;
}

.service_adv_active {
  flex-grow: 1000 !important;
}

.service_adv_active .service_adv_text {
  align-items: flex-start;
}
.service_adv_active h4 {
  display: block;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .service_adv_bac {
    padding: 0.8rem 0;
  }
  .service_adv_text h4 {
    font-size: 0.16rem;
    line-height: 0.22rem;
  }
  .service_adv_text h4 {
    width: 36vw;
  }
  .service_adv_text img {
    width: 0.7rem;
    height: 0.7rem;
  }
  .service_adv_ul {
    gap: 0.2rem;
  }
  .service_adv_ul li {
    height: 5.8rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .service_adv_bac {
    padding: 0.6rem 0;
  }
  .service_adv_text img {
    width: 0.6rem;
    height: 0.6rem;
  }
  .service_adv_ul li {
    height: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .service_adv_text img {
    width: 0.5rem;
    height: 0.5rem;
  }
  .service_adv_ul li {
    height: 4.5rem;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
  .service_adv_ul {
    margin-top: 0.4rem;
    flex-wrap: wrap;
  }
  .service_adv_ul li {
    width: 100%;
  }
  .service_adv_text h4 {
    width: 100%;
  }
  .service_adv_ul li {
    height: 4rem;
  }
}
@media screen and (max-width: 560px) {
  .service_adv_ul li {
    height: 3.5rem;
  }
}
@media screen and (max-width: 425px) {
  .service_adv_ul li {
    height: 3rem;
  }
  .service_adv_text {
    padding: 0.2rem;
    align-items: flex-start;
  }
  .service_adv_text img {
    width: 0.4rem;
  }
  .service_adv_text h4 {
    display: block;
    opacity: 1;
    margin-top: 0.1rem;
    font-size: 0.14rem;
  }
}

/* 证书 */
.Certificate_section {
  background-color: #f8f8f8;
}

.Certificate_box {
  display: flex;
  flex-wrap: wrap;
}

.Certificate_left {
  width: 72.26%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 0.76rem 0.4rem 0.48rem 0.36rem;
}

.Certificate_list {
  position: relative;
  overflow: hidden;
}
.Certificate_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Certificate_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.Certificate_img {
  width: 100%;
  position: relative;
  background-color: #f8f8f8;
  overflow: hidden;
}
.Certificate_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 77%;
}
.Certificate_img img {
  width: 88.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

/* -------------------------- */
.Certificate-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Certificate-pagination .over_1,
.Certificate-pagination .over_3 {
  font-size: 0.18rem;
  font-weight: 450;
}
.Certificate-pagination .over_3 {
  color: var(--i_color);
}

.Certificate-pagination .over_2 {
  width: 90%;
  height: 1px;
  background-color: #d6d6d6;
}

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

@media screen and (max-width: 1024px) {
  .Certificate_left {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .Certificate_left,
  .Certificate_right {
    width: 100%;
  }
  .Certificate_right {
    order: -1;
  }
}

/* 企业客户 */
.Enterprise_clients {
}

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

/* 塑造表单 */
/* 塑造表单 */
.Creating_Forms {
  background-color: #f7f7f7;
}

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

.Creating_left {
  width: 45.87%;
  box-sizing: border-box;
}

.cl_tit {
  margin: 0.24rem 0 0.15rem 0;
}

.cl_text {
  color: #1e2d3e;
  border-bottom: 1px dashed #0e1926;
}

.WhatsAppBtn {
  width: max-content;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: var(--i_color);
  border-radius: 6px;
  color: #fff;
  padding: 0.14rem 0.25rem;
  gap: 0 0.16rem;
}

.WhatsAppBtn iconify-icon {
  font-size: 0.3rem;
}

.WhatsAppBtn:hover {
  background-color: #000000;
}

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

.Creating_list a {
  color: #666;
  transition: all 0.4s ease;
}

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

.Creating_right {
  width: 40.5%;
}

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

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

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

#wpforms-128 .wpforms-field-container .wpforms-field > input,
#wpforms-128 .wpforms-field-container textarea {
  border-bottom: 1px solid #c1c1c1;
  background-color: transparent;
  border-radius: 0px;
}
#wpforms-128 .wpforms-form label.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
}

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

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

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

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

@media screen and (max-width: 1024px) {
  .Creating_left,
  .Creating_right {
    width: 100%;
  }
  .Creating_right {
    margin-top: 0;
  }
  .WhatsAppBtn {
    padding: 0.1rem 0.2rem;
  }
  .WhatsAppBtn iconify-icon {
    font-size: 0.2rem;
  }
  .WhatsAppBtn p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .WhatsAppBtn {
    padding: 0.06rem 0.1rem;
  }
}

/* ------------------------------------------  服务支持页面 */

/* 服务支持 */
.Service_Support {
}

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

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

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

.Support_txt {
  width: 54.2%;
  box-sizing: border-box;
}

.Support_title {
  border-bottom: 1px solid #bebebe;
}

.Support_item:nth-child(odd) {
  background-color: #f5f5f5;
}

.Support_item:nth-child(odd) .wrap {
  flex-direction: row;
}

@media screen and (max-width: 768px) {
  .Support_img,
  .Support_txt {
    width: 100%;
  }
  .Support_txt {
    order: -1;
  }
}

/* 服务FAQ */
.Service_FAQ {
}

.Service_FAQ .title_box a {
  display: block;
  margin-top: 5px;
}
.Service_FAQ .title_box a:hover {
  text-decoration: underline;
}

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

/* 新闻分类 */
.News_Categories {
}

.nc_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem 1rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.nc_list li {
  padding-bottom: 0.26rem;
  position: relative;
}
.nc_list li::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

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

@media screen and (max-width: 768px) {
  .nc_list {
    gap: 0.1rem 0.2rem;
  }
  .nc_list li {
    padding-bottom: 0.1rem;
  }
  .nc_list a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .nc_list a {
    font-size: 0.14rem;
  }
}

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

.new_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 3%;
}

.new_item {
  width: 31.33%;
  box-sizing: border-box;
}

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

.btn_more {
  box-sizing: border-box;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: 1px solid rgba(51, 51, 51, 0.4);
  color: #333;
  font-size: 0.2rem;
}

.new_item:hover .new_img img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.new_item:hover h5 {
  color: var(--i_color);
}
.new_item:hover .btn_more {
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .new_list {
    gap: 0.3rem 3%;
  }
}
@media screen and (max-width: 560px) {
  .new_list {
    gap: 0.1rem 3%;
  }
  .new_item {
    width: 48.5%;
  }
  .new_item h5 {
    margin: 0.1rem 0;
  }
  .new_item h6 {
    margin: 0.1rem 0;
  }
  .btn_more {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 0.2rem;
  }
}

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

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

.contact_we_list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  gap: 0 3%;
}

.contact_we_list .ct_item {
  width: 22.5%;
  position: relative;
  box-sizing: border-box;
  border-radius: 0.12rem;
  border: 1px solid #e7e7e7;
  cursor: pointer;
  background: #fff
    url(https://lingjuimg.com/wp-content/uploads/YiYue/2026/07/ct_item.webp)
    no-repeat;
  background-size: cover;
  background-position: right 1.2rem;
}

.contact_we_list .ct_item a {
  display: block;
  width: 100%;
  height: 60%;
}

.contact_we_list .ct_item .ct_icon {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.4s;
}

.contact_we_list .ct_item .ct_icon iconify-icon {
  font-size: 0.38rem;
  color: var(--i_color);
  transition: all 0.4s;
}

.contact_we_list .ct_item p {
  text-align: center;
  font-weight: 450;
  font-size: 0.2rem;
  margin-top: 1rem;
}

.contact_we_list .ct_item span {
  text-align: center;
  font-size: 0.2rem;
  color: #666;
  display: block;
  margin: 0.2rem 0 1.4rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  overflow: hidden;
}

/* 第三个span */
.contact_we_list .ct_item:nth-child(3) span {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact_we_list .ct_item i {
  display: block;
  font-size: 0.16rem;
  font-weight: bold;
  color: #666666;
  text-align: center;
  margin-top: 0.2rem;
}

.contact_we_list .ct_item text {
  display: block;
  margin-top: 0.14rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 80%;
  font-size: 0.2rem;
  color: #666;
  line-height: 1.5;
}

.contact_we_list .ct_item i:not(:nth-of-type(1)) {
  margin-top: 0.05rem;
}

.contact_we_list .ct_item:hover .ct_icon {
  background: var(--i_color);
}

.contact_we_list .ct_item:hover .ct_icon iconify-icon {
  color: #fff;
  transform: scale(1.1);
}

.ct_t_code {
  width: 36%;
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.ct_t_code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .contact_we {
    margin-bottom: 0.5rem;
  }
  .contact_we_list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: normal;
    gap: 0.8rem 3%;
  }
  .contact_we_list .ct_item {
    width: 48.48%;
  }
  .ct_t_code {
    display: none;
  }

  .contact_we_list .ct_item span {
    margin: 0.2rem 0 1rem 0;
  }
  .contact_we_list .ct_item:nth-child(3) span {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .ct_title {
    font-size: 0.3rem;
  }
  .contact_we_list {
    gap: 0.6rem 3%;
  }
  .contact_we_list .ct_item {
    width: 100%;
  }
  .contact_we_list .ct_item span {
    margin: 0.2rem 0 0.3rem 0;
  }
  .contact_we_list .ct_item:last-child {
    padding-bottom: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .contact_we_list .ct_item {
    background-position: top;
  }
  .contact_we_list .ct_item .ct_icon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .ct_title {
    font-size: 0.24rem;
  }
  .contact_we_list .ct_item span,
  .contact_we_list .ct_item text {
    font-size: 0.16rem;
  }
  .contact_we_list .ct_item .ct_icon iconify-icon {
    font-size: 0.24rem;
  }
  .contact_we_list .ct_item p {
    margin-top: 0.6rem;
    font-size: 0.16rem;
  }
}

/* 联系表单 */
.Contact_Form {
  background: linear-gradient(180deg, #f7f7f7 0%, #f7f7f700 100%);
}

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

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

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

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

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

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

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

#wpforms-125 .wpforms-field-container .wpforms-field-label {
  font-weight: normal;
  color: #999;
}
/* #wpforms-125 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 4px; font-size: 15px;color: #F00;font-weight: bold;} */

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

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

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

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

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

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

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

/* 详情页统一发货 */
.Shipping_list,
.app_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.Shipping_item {
  width: 23.5%;
}

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