/*
Theme Name: WeriDe
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: #103a70;
  --i_color2: #cd121c;

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

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

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

.title_box img {
  width: 0.65rem;
}

.title_box h2 {
  width: max-content;
  max-width: 100%;
  position: relative;
  word-wrap: break-word;
  white-space: normal;
}
.title_box h2::before {
  content: "";
  display: block;
  width: 1.38rem;
  height: 4px;
  background: linear-gradient(270deg, #103a70 0%, #103a7000 100%);
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .title_box h2::before {
    width: 1rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .title_box img {
    width: 0.45rem;
  }
}

.btn_box {
  display: table;
  cursor: pointer;
}
.btn_a {
  box-sizing: border-box;
  padding: 0.1rem 0.32rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cd121c;
  transition: all 0.4s ease;
}

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

@media screen and (max-width: 1024px) {
  .btn_a {
    padding: 0.05rem 0.2rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .btn_a {
    padding: 0.05rem 0.1rem;
    font-size: 0.14rem;
  }
}

/* --- --- */

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

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

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

header.fixedHeader {
  background: rgb(255, 255, 255, 0.7);
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  --header_height: 0.7rem;
  backdrop-filter: blur(5px);
}
header .header_wrap {
  height: var(--header_height);
  transition: height 0.5s ease;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
header.fixedHeader .header_wrap {
  height: 0.7rem;
}

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

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

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 3vw;
    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: 1.2vw;
    width: 0;
    height: 2px;
    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;
    color: #222;
    font-weight: 550;
    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);
    font-weight: bold;
  }

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

.nav_menu.on i {
  opacity: 0;
}

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

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

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

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

.top_r_line {
  display: block;
  width: 1px;
  height: 18px;
  background-color: #333;
  margin: 0 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: #333;
  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 {
  position: relative;
  cursor: pointer;
}

.top_language_btn.on::before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  border-top-color: var(--i_color);
}
.top_language_btn.on p {
  color: var(--i_color);
}

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

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

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

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

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

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

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

.home_a_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  background: linear-gradient(93deg, #103a70 6%, #103a7000 95%);
  padding: 0.55rem 0.5rem;
}

/* -------------------------- */
.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;
  transition: all 0.4s ease;
}
.home_banner-prev {
  left: 0;
}
.home_banner-next {
  right: 0;
}
.home_banner-prev iconify-icon,
.home_banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #fff;
}
.home_banner_list .swiper-button-disabled {
  cursor: not-allowed;
}
.home_banner-prev:hover,
.home_banner-next:hover {
  background: var(--i_color);
}

/* -------------------------- */
.home_banner-pagination {
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
}
.home_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;
}
.home_banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .home_banner-prev,
  .home_banner-next {
    display: none;
  }
  .home_a_text {
    padding: 0.3rem;
  }
  .home_a_text h3 {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .home_a::before {
    padding-bottom: 45%;
  }
  .home_a_text {
    padding: 0.1rem;
  }
  .home_a_text h2 {
    font-size: 0.16rem;
  }
  .home_a_text h3 {
    margin-top: 0.1rem;
    font-size: 0.12rem;
  }
}

/* footer */
footer {
}

.footer_top {
  background: url(https://lingjuimg.com/wp-content/uploads/weide/2026/06/footer_top_ba.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.footer_top .wrap {
  gap: 0.2rem 0;
}

.footer_top h4 {
  width: 64%;
}

.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
}
.f_media li {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_media iconify-icon {
  font-size: 0.32rem;
  color: rgb(255 255 255 / 50%);
}
.f_media li:hover {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
}
.f_media li:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .f_media iconify-icon {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_top h4 {
    width: 100%;
  }
}

.footer_middle {
  position: relative;
  background-color: #07233b;
}
.footer_logo {
  width: 46.82%;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

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

.Fmc_list {
  display: flex;
  gap: 0 0.6rem;
}

.Fmc_list a {
  font-size: 0.18rem;
  color: #fff;
  font-weight: 450;
  position: relative;
}
.Fmc_list a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}
.Fmc_list a:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.f_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0 6%;
}
.f_cont dt {
  max-width: 100%;
}

.f_tit {
  margin-bottom: 0.28rem;
  color: #fff;
}

.f_cont dt.f_contact {
  width: 30%;
  flex-shrink: 0;
}
.f_contact_list {
}
.f_contact_list li {
  padding-top: 6px;
  margin-bottom: 0.1rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.1rem;
}
.f_contact_list li > span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}
.f_contact_list iconify-icon {
  font-size: 0.24rem;
  color: #fff;
}
.f_contact_list a,
.f_contact_list span {
  font-size: 0.18rem;
  font-weight: 550;
  color: #fff;
  line-height: 1.5;
}

.f_contact_list a:hover {
  text-decoration: underline;
}

.f_nav {
}
.f_nav a {
  display: block;
  padding: 6px 0;
  font-size: 0.18rem;
  font-weight: 550;
  color: #fff;
  line-height: 1.5;
}
.f_nav a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .Fm_connect {
    display: none;
  }
  .f_cont {
    margin-top: 0;
  }
  .f_cont dt.f_contact {
    width: 100%;
  }
  .fm_aaa {
    display: none;
  }
  .f_contact_list a,
  .f_contact_list span {
    font-weight: normal;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .f_contact_list a,
  .f_contact_list span {
    font-size: 0.14rem;
  }
}

.f_cr {
  padding: 0.24rem 0;
}
.f_cr p {
  font-size: 0.14rem;
  color: #333;
  font-weight: 450;
  display: flex;
  align-items: center;
}
.f_cr p img {
  width: 3.86%;
  margin-right: 0.11rem;
}
.f_cr a {
  font-size: 0.14rem;
  color: #333;
}
.f_cr a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .f_cr p {
    display: block;
  }
  .f_cr p img {
    display: none;
  }
}

/* 产品中心 */
.Product_Center {
}

.Product_Center_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.5%;
}

.Product_Center_item {
  width: 26.5%;
  max-height: 3.76rem;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.Product_Center_item a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.Product_Center_img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.Product_Center_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Product_Center_txt {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0.68rem 0.16rem 0.16rem 0.16rem;
  background: linear-gradient(180deg, #00000000 0%, #000000 100%);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.Product_Center_hide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(181deg, #00000000 0%, #103a70 98%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.Product_Center_item:hover .Product_Center_txt {
  opacity: 0;
}
.Product_Center_item:hover .Product_Center_hide {
  opacity: 1;
}

.Product_Center_item.active {
  width: 44%;
}

@media screen and (max-width: 1440px) {
  .Product_Center_item {
    max-height: 3.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .Product_Center_item {
    max-height: 3.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .Product_Center_item {
    max-height: 3rem;
  }
  .Product_Center_list_b {
    margin-top: 0.15rem;
  }
}
@media screen and (max-width: 768px) {
  .Product_Center_item {
    max-height: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .Product_Center_list {
    gap: 0.15rem 2%;
  }
  .Product_Center_item {
    width: 100%;
    max-height: 1rem;
  }
}

/* 关于公司 */
.home_about {
  background: url(https://lingjuimg.com/wp-content/uploads/weide/2026/06/home_about_Ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.hzi_left {
  width: 50.5%;
  box-sizing: border-box;
}

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

.hzi_right iconify-icon {
  font-size: 0.55rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.4s ease;
}
.hzi_right iconify-icon:hover {
  color: #cd121c;
}

@media screen and (max-width: 1024px) {
  .hzi_right iconify-icon {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hzi_left,
  .hzi_right {
    width: 100%;
  }
}

/* 宣传数据 */
.Promotional_data {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 8.66%;
}

.data_item {
  width: 18.5%;
}

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

.data_num {
  display: flex;
  align-items: baseline;
}
.data_num p {
  font-size: 0.72rem;
}

.data_icon {
  width: 0.55rem;
}

.data_item h6 {
  padding-top: 8px;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 1200px) {
  .data_num p {
    font-size: 0.6rem;
  }
  .data_item h6 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .data_num p {
    font-size: 0.32rem;
  }
  .data_icon {
    width: 0.4rem;
  }
  .data_item h6 {
    font-weight: normal;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .data_num p {
    font-size: 0.26rem;
  }
  .data_icon {
    width: 0.35rem;
  }
}
@media screen and (max-width: 560px) {
  .data_item {
    width: 45.67%;
  }
  .data_num p {
    font-size: 0.2rem;
  }
  .data_icon {
    width: 0.3rem;
  }
  .data_item h6 {
    font-size: 0.12rem;
  }
}

/* 公司优势 */
.Company_Advantages {
  background: linear-gradient(180deg, #f0f5ff00 8%, #f7f7f7 23%);
  position: relative;
}

.Company_Advantages .title_box {
  border-bottom: 1px solid #d0d0d0;
}

.advantages_logo {
  width: 43.2%;
  position: absolute;
  left: 0.55%;
  bottom: 4%;
}

.Ca_left {
  width: 38.15%;
  box-sizing: border-box;
}

.Company_Advantages {
  --li_height: 1.2rem;
}

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

.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: #222;
}
.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 {
  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 {
  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) {
}
@media screen and (max-width: 1024px) {
  .Choose_top h2 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
}
@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;
  }
}

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

.Partners_top {
  background: url(https://lingjuimg.com/wp-content/uploads/weide/2026/06/Partners_top_ba.webp)
    no-repeat center;
  background-size: cover;
}

.Partners_top .title_box h2,
.Partners_top .title_box h2 span,
.Partners_top .title_box p {
  color: #fff;
}
.Partners_top .title_box h2::before {
  background: linear-gradient(270deg, #ffffff 0%, #ffffff00 100%);
}

.Partners_bottom {
  background: url(https://lingjuimg.com/wp-content/uploads/weide/2026/06/Partners_bottom_ba.webp)
    no-repeat center;
  background-size: cover;
}

.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;
}
.Partners_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 28%;
}
.Partners_list .swiper-slide::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.59rem;
  background-color: rgba(51, 51, 51, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.Partners_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* -------------------------- */
.Partners-pagination {
  display: none;
  margin-top: 0.3rem;
  text-align: center;
}
.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);
}

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

.company_name h3 img {
  width: 100%;
  display: block;
}

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

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

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

.Hn_top .title_box {
  width: 60.36%;
}

.Hn_top .title_box h2::before {
  width: 1.19rem;
}

@media screen and (max-width: 1024px) {
  .Hn_top .title_box {
    width: 100%;
  }
  .Hn_top .title_box h2::before {
    left: 0;
    background: linear-gradient(90deg, #103a70 0%, #103a7000 100%);
  }
}

.Hn_bottom {
  position: relative;
}

.Hn_list {
  position: relative;
  overflow: hidden;
}
.Hn_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Hn_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.Hn_list .swiper-slide::before {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background-color: var(--i_color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

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

.Hn_list .swiper-slide h4 {
  margin-top: 0.14rem;
}

.Hn_list .swiper-slide:hover .Hn_img img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.Hn_list .swiper-slide:hover::before {
  width: 100%;
}

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

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

@media screen and (max-width: 1440px) {
  .Hn-prev {
    left: 0;
  }
  .Hn-next {
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .Hn_list .swiper-slide {
    padding-bottom: 0;
  }
  .Hn_list .swiper-slide::before {
    display: none;
  }
  .Hn-prev,
  .Hn-next {
    display: none;
  }
  .Hn-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .Hn_list p {
    margin: 0.1rem 0;
  }
  .Hn_list h3 {
    font-size: 0.14rem;
  }
  .Hn_list h4 {
    font-size: 0.12rem;
  }
}

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

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

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #f9f9f9;
  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 {
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}
.in_position a:last-child {
  color: var(--i_color) !important;
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}

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

/* 产品列表 */
.Product_List {
}

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

.cat_nav {
  width: 22.86%;
  height: max-content;
  position: sticky;
  top: 1.2rem;
}
.cat_nav_tit {
  box-sizing: border-box;
  background-color: var(--i_color2);
  padding: 0.14rem 0.2rem;
  margin-bottom: 0.2rem;
}
.cat_nav_tit h4 {
}
.cat_nav_tit iconify-icon {
  display: none;
}

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

.cat_nav_list li.active {
}

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  background-color: #f5f5f5;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  transition: all 0.4s ease;
}
.cat_fold_tit a {
  padding: 0.14rem 0;
  width: 100%;
  font-size: 0.18rem;
  font-weight: 550;
  color: #222;
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.24rem;
  color: #333;
  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_color2);
}
.active .cat_fold_tit {
}
.active .cat_fold_tit a {
  color: var(--i_color2);
}
.active .cat_fold_tit iconify-icon {
  color: var(--i_color2);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

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

@media screen and (max-width: 1024px) {
  .cat_nav {
    width: 100%;
    padding: 0 0;
    background: none;
    position: static;
    top: auto;
  }
  .cat_nav_tit {
    padding: 14px 28px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--i_color2);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 0;
  }
  .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_fold_sub a {
    font-size: 0.16rem;
  }

  .active .cat_fold_tit {
    background: none;
  }
  .active .cat_fold_tit a {
    color: var(--i_color2);
  }
  .active .cat_fold_tit iconify-icon {
    color: var(--i_color2);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .cat_fold_sub {
    padding: 0 20px;
    margin-top: 0;
    background-color: transparent;
  }

  .cat_nav_list {
    display: none;
    box-sizing: border-box;
    padding: 30px 30px 30px;
    background: #fff;
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  }
  .cat_nav_list li {
    border-top: none;
    border-bottom: 1px solid #f5f5f5;
  }
  .cat_nav_list li.active {
  }
  .cat_fold_tit {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 0;
    background-color: transparent;
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .cat_nav_tit {
    padding: 12px 20px;
  }
  .cat_nav_tit h4 {
    font-size: 18px;
  }
  .cat_nav_tit iconify-icon {
    font-size: 22px;
  }

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

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

.product_box {
  width: 73.58%;
  box-sizing: border-box;
}

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

.goods_item {
  width: 32%;
  box-sizing: border-box;
  padding-bottom: 0.25rem;
  position: relative;
}

.goods_item a {
  display: block;
  box-sizing: border-box;
  padding: 0.12rem 0.12rem 0.6rem 0.12rem;
  background-color: #f4f4f4;
  border: 1px solid #f4f4f4;
  transition: all 0.4s ease;
}

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

.goods_item h5 {
  margin-top: 0.26rem;
}

.goods_btn {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #fff;
  color: var(--i_color2);
  font-size: 0.24rem;
  box-shadow: 2px 0px 11px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.goods_item:hover a {
  background-color: #fff;
  border-color: var(--i_color2);
}
.goods_item:hover h5 {
  color: var(--i_color2);
}
.goods_item:hover .goods_btn {
  background-color: var(--i_color2);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .product_box {
    width: 100%;
  }
  .goods_list {
    gap: 0.25rem 2%;
  }
}
@media screen and (max-width: 768px) {
  .goods_item {
    padding-bottom: 0;
  }
  .goods_item a {
    padding: 0.12rem;
  }
  .goods_item h5 {
    margin-top: 0.12rem;
  }
  .goods_btn {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .goods_list {
    gap: 0.1rem 2%;
  }
  .goods_item {
    width: 49%;
  }
  .goods_item h5 {
    font-size: 0.14rem;
  }
}

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

/* 产品简述 */
.Product_Overview {
  background-color: #f9f9f9;
}

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

/* atlas */
.p_atlas {
  width: 43%;
  box-sizing: border-box;
  position: relative;
}
.p_atlas_top {
  box-sizing: border-box;
  padding: 0.18rem;
  border: 1px solid rgba(51, 51, 51, 0.3);
}
.p_atlas_list {
  width: 100%;
  box-sizing: border-box;
  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;
  background-color: #fff;
  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% - 1.45rem);
  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 #fff;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
}
.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_color2);
}

.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.48rem;
  height: 0.48rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid var(--i_color2);
  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.24rem;
  color: var(--i_color2);
}

.thumbnail-prev:hover,
.thumbnail-next:hover {
  background-color: var(--i_color2);
}
.thumbnail-prev:hover iconify-icon,
.thumbnail-next:hover iconify-icon {
  color: #fff;
}
.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_atlas {
    margin-left: auto;
    margin-right: auto;
  }
  .p_thumbnail_list {
    width: 100%;
  }
  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
  .thumbnail-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .p_atlas {
    width: 100%;
  }
  .p_atlas {
    margin-bottom: 40px;
  }
  .p_atlas_list {
    width: 100%;
  }
  .thumbnail-prev iconify-icon,
  .thumbnail-next iconify-icon {
    font-size: 30px;
  }
}

.Overview_right {
  width: 52.79%;
  box-sizing: border-box;
}

.Overview_info {
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}

.operate_box {
  gap: 0.2rem 0;
}

.Overview_btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.24rem;
}

.Details_btn {
  display: flex;
  box-sizing: border-box;
  padding-left: 0.1rem;
  border: 1px solid var(--i_color);
  align-items: center;
  color: var(--i_color);
  cursor: pointer;
  transition: all 0.4s ease;
}
.Details_icon {
  width: 0.48rem;
  height: 0.48rem;
  border-left: 1px solid var(--i_color);
  margin-left: 0.1rem;
  font-size: 0.24rem;
  transition: all 0.4s ease;
}
.Details_btn:hover {
  background-color: var(--i_color);
  color: #fff;
}
.Details_btn:hover .Details_icon {
  border-color: #fff;
}

.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;
}
.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: #666666;
  transition: all 0.4s ease;
}

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

@media screen and (max-width: 1024px) {
  .Overview_right {
    width: 100%;
  }
  .p_share a iconify-icon {
    font-size: 22px;
  }
}
@media screen and (max-width: 560px) {
  .Product_Overview {
    padding-top: 0;
  }
  .Details_icon {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 0.2rem;
  }
  .p_share > p {
    font-size: 15px;
  }
  .p_share dt iconify-icon {
    font-size: 20px;
  }
}

/* 详情介绍 */
.Details_introduce {
}

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

.Details_left {
  width: 66.86%;
  box-sizing: border-box;
}

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

/* FAQ */
.pFAQ_list {
}
.pFAQ_list li {
  margin-bottom: 0.24rem;
  border: 1px solid rgba(30, 74, 179, 0.2);
}
.pFAQ_list .Q {
  background: #f9f9f9;
}
.pFAQ_list .Q p {
  font-size: 0.2rem;
  font-weight: 550;
  line-height: 1.6;
}
.pFAQ_list .A {
}
.pFAQ_list .A span {
}

.pFAQ_list .Q,
.pFAQ_list .A {
  padding: 0.18rem;
}

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

@media screen and (max-width: 1024px) {
  .p_content_tit p {
    font-size: 24px;
  }
  .pFAQ_list .Q p {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .p_content_tit p {
    font-size: 22px;
  }
}
@media screen and (max-width: 560px) {
  .p_content_tit p {
    font-size: 18px;
  }
  .pFAQ_list .Q p {
    font-size: 16px;
  }
}

.Details_right {
  width: 22.86%;
  box-sizing: border-box;
}

.Details_right .cat_nav {
  width: 100%;
  position: relative;
  top: 0;
}

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

.Popular_item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.1rem 0;
}

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

.Popular_info {
  width: 48.44%;
}

.Popular_item:hover .Popular_img img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.Popular_item:hover h5,
.Popular_item:hover p {
  color: var(--i_color2);
}

@media screen and (max-width: 1024px) {
  .Details_right,
  .Details_left {
    width: 100%;
  }
  .Details_right {
    order: -1;
  }
  .Popular_box {
    display: none;
  }
}

/* tags+view_other */

.pBottom {
  background-color: #f9f9f9;
}

.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: #333;
  font-weight: 450;
}
.p_tags a {
  display: block;
  padding: 0.05rem 0.2rem;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  font-weight: 450;
  background: #fff;
  transition: all 0.4s ease;
}
.p_tags a:hover {
  background: var(--i_color2);
  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;
  box-sizing: border-box;
  border: 1px solid var(--i_color2);
  color: var(--i_color2);
  position: relative;
  transition: all 0.4s ease;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
}
.p_view_other p {
  font-size: 0.18rem;
  color: #333;
  line-height: 1.5;
  font-weight: 550;
}
.p_view_other p b {
  font-size: 0.18rem;
  color: #333;
  font-weight: 450;
}

.p_view_other li:hover span {
  background-color: var(--i_color2);
  color: #fff;
}
.p_view_other li:hover p,
.p_view_other li:hover p b {
  color: var(--i_color2);
}

@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 span {
    order: -1;
  }
  .p_view_other li {
    max-width: 100%;
  }
  .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: 16px;
  }
  .p_view_other p,
  .p_view_other p b {
    font-size: 14px;
  }
}

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

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

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

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

/* 公司介绍 */
.Company_Introduction {
  background: linear-gradient(180deg, #ffffff00 0%, #f7f7f7 100%);
  position: relative;
  overflow: hidden;
}

.round {
  width: 54%;
  position: absolute;
  left: -27%;
  bottom: -15.5%;
  pointer-events: none;
}

.homeAbout_cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.homeAbout_cont ul {
  width: 29.22%;
  display: flex;
  flex-direction: column;
  gap: 0.48rem 0;
}
.homeAbout_ul li {
  width: 100%;
}
.ad_top {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
}
.ad_top::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #222;
}
.ad_top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--i_color);
  transition: all 0.5s ease;
}
.ad_top span {
  display: flex;
  align-items: baseline;
}
.homeAbout_ul li h5 {
  font-size: 0.72rem;
}
.homeAbout_ul li i {
  font-size: 0.18rem;
  font-weight: bold;
}
.homeAbout_ul li img {
  margin-left: auto;
  height: 0.55rem;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) hue-rotate(0deg);
}

.about_data:hover span {
  color: var(--i_color);
}
.about_data:hover .ad_top::after {
  width: 100%;
}
.about_data:hover img {
  filter: none;
}
.about_data:hover p {
  color: var(--i_color);
}

.homeAbout_pic {
  padding-top: 0.1rem;
  padding-left: 0.1rem;
  margin-left: auto;
  width: 60%;
  position: relative;
}
.homeAbout_pic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 55%;
  background: var(--i_color);
}
.homeAbout_pic > img {
  width: 100%;
  object-fit: cover;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .homeAbout_pic {
    order: -1;
    width: 100%;
  }
  .homeAbout_cont ul {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0;
  }
  .homeAbout_ul li {
    width: 100%;
  }
  .homeAbout_ul li h5 {
    font-size: 30px;
  }
  .homeAbout_ul li p {
    font-size: 14px;
  }
  .homeAbout_ul li img {
    height: 40px;
  }
}
@media screen and (max-width: 560px) {
  .homeAbout_cont ul {
    gap: 0.2rem 0;
  }
  .homeAbout_ul li h5 {
    gap: 0 6px;
  }
  .homeAbout_ul li h5 {
    font-size: 24px;
  }
  .homeAbout_ul li p {
    margin-top: 6px;
  }
  .homeAbout_ul li img {
    height: 30px;
  }
}

.i_v_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 4;
}
.i_v_btn span {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  font-size: 0.3rem;
  color: var(--i_color2);
}
.i_v_btn::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background-color: rgba(255, 255, 255, 0.3);
  animation: yuans 1.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes yuans {
  0% {
    width: 130%;
    height: 130%;
  }

  50% {
    width: 150%;
    height: 150%;
  }
  100% {
    width: 130%;
    height: 130%;
  }
}
@media screen and (max-width: 560px) {
  .i_v_btn span {
    width: 50px;
    height: 50px;
  }
}

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

.Ab_advantage_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}

.ada_item {
  width: 13%;
  height: 6.68rem;
  box-sizing: border-box;
  position: relative;
  transition: all 0.4s ease;
}
.ada_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #103a7000 0%, #103a70 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.4s ease;
}

.ada_item.active {
  width: 70%;
}

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

.ada_text {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 0.16rem 0.38rem 0.16rem;
  z-index: 3;
}

.ada_text p {
  text-align: center;
}

.ada_text span {
  display: none;
  margin-top: 0.15rem;
}

.ada_item.active::before {
  height: 35%;
}
.ada_item.active .ada_text {
  padding: 0.4rem 0.28rem;
}
.ada_item.active .ada_text p {
  text-align: left;
}
.ada_item.active .ada_text span {
  display: block;
}

@media screen and (max-width: 1024px) {
  .ada_item {
    width: 18%;
    height: 4rem;
  }
  .ada_text,
  .ada_item.active .ada_text {
    padding: 0.2rem;
  }
  .ada_text p {
    font-size: 0.16rem;
  }
  .ada_text span {
    font-size: 0.14rem;
  }
  .ada_item.active {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .Ab_advantage_ul {
    gap: 0.2rem 0;
  }
  .ada_item,
  .ada_item.active {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .ada_item {
    height: 3rem;
  }
  .ada_text p {
    font-size: 0.14rem;
  }
  .ada_text span {
    font-size: 0.12rem;
  }
}

/* 工厂环境 */
.Factory_Environment {
  background: url(https://lingjuimg.com/wp-content/uploads/weide/2026/06/Factory_Environment_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.gol_partner {
  position: relative;
}
.gol_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.gol_partner_list .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property:
    transform,
    -webkit-transform;
  display: flex;
  align-items: center;
}
.gol_partner_list li {
  width: 6.5rem;
  height: max-content;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition-property: transform;
  overflow: hidden;
}
.gol_partner_list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 3;
  transition: all 0.5s ease;
}

.gol_partner_list li.swiper-slide-active::after {
  background: rgba(255, 255, 255, 0);
  height: 0%;
}

.gol_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.gol_partner_list .img::after {
  content: "";
  display: block;
  padding-bottom: 55%;
}
.gol_partner_list .img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.gol_partner_list .swiper-slide-active .img img {
  width: 100%;
  height: 100%;
}

.gol_partner_list li p {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 50px 50px 6px 6px;
  width: 100%;
  box-sizing: border-box;
  padding: 0.2rem;
  background: var(--i_color);
  color: #fff;
  text-align: center;
  transition: all 0.4s;
  opacity: 0;
}
.gol_partner_list .swiper-slide-active p {
  bottom: 0;
  opacity: 1;
}

.gol_partner_list .swiper-slide-active .img::after {
  padding-bottom: 74%;
}

@media screen and (max-width: 560px) {
  .gol_partner_list li p {
    padding: 0.05rem 0;
    font-size: 0.16rem;
  }
}

/* 证书 */
.Certificate {
  background: url(static/imgs/Certificate_Ba.webp) no-repeat center;
  background-size: cover;
}

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

.Certificate_left {
  width: 44.36%;
  box-sizing: border-box;
}

.Certificate_btns {
  display: flex;
  gap: 0 0.6rem;
}

.Certificate_right {
  width: 50.5%;
  box-sizing: border-box;
}

.Certificate_list {
  position: relative;
  overflow: hidden;
  padding-top: 0.3rem;
}
.Certificate_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Certificate_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  padding: 0.18rem 0.13rem;
  border: 1px solid rgba(51, 51, 51, 0.2);
  background-color: #fff;
  transition: all 0.4s ease;
}

.Certificate_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.Certificate_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 141%;
}
.Certificate_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Certificate_list .swiper-slide:hover {
  background-color: var(--i_color);
  border-color: var(--i_color);
  transform: translateY(-0.3rem);
}

/* -------------------------- */
.Certificate-prev,
.Certificate-next {
  width: 0.55rem;
  height: 0.55rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid var(--i_color2);
  color: var(--i_color2);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.Certificate-prev {
}
.Certificate-next {
}
.Certificate-prev iconify-icon,
.Certificate-next iconify-icon {
  font-size: 0.24rem;
}
.Certificate_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Certificate-prev:hover,
.Certificate-next:hover {
  background: var(--i_color2);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .Certificate_left,
  .Certificate_right {
    width: 100%;
  }
  .Certificate_btns {
    display: none;
  }
  .Certificate_list {
    padding-top: 0;
  }
  .Certificate_list .swiper-slide:hover {
    transform: translateY(-0rem);
  }
}

/* 全球伙伴 */
.global_partners {
}

.global_img {
  width: 100%;
  display: block;
}

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

/* -------------------------- */
.global_btns {
  display: flex;
  justify-content: center;
  gap: 0 0.6rem;
}

.global-prev,
.global-next {
  width: 0.55rem;
  height: 0.55rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid var(--i_color2);
  color: var(--i_color2);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.global-prev {
}
.global-next {
}
.global-prev iconify-icon,
.global-next iconify-icon {
  font-size: 0.24rem;
}
.global_list .swiper-button-disabled {
  cursor: not-allowed;
}
.global-prev:hover,
.global-next:hover {
  background: var(--i_color2);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .global_btns {
    gap: 0 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .global-prev,
  .global-next {
    width: 0.35rem;
    height: 0.35rem;
  }
  .global-prev iconify-icon,
  .global-next iconify-icon {
    font-size: 0.2rem;
  }
}

/* 客户评价 */
.Customer_reviews {
  background: url(https://lingjuimg.com/wp-content/uploads/weide/2026/06/Customer_reviews_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.reviews_list {
  position: relative;
  overflow: hidden;
  padding-top: 0.24rem;
}
.reviews_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.reviews_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s ease;
}

.reviews_box {
  height: 100%;
  box-sizing: border-box;
  position: relative;
  padding-top: 0.6rem;
}

.Customer_avatar {
  width: 1.16rem;
  height: 1.16rem;
  box-sizing: border-box;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid #999999;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s ease;
}
.Customer_avatar img {
  display: block;
  width: 100%;
}

.Customer_text {
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.7rem 0.4rem;
  position: relative;
}
.Customer_text::before {
  content: "";
  display: block;
  width: 0;
  height: 8px;
  background-color: var(--i_color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.reviews_list .swiper-slide:hover {
  transform: translateY(-0.24rem);
}
.reviews_list .swiper-slide:hover .Customer_avatar {
  background-color: var(--i_color);
  border-color: var(--i_color);
}
.reviews_list .swiper-slide:hover h3 {
  color: var(--i_color);
}
.reviews_list .swiper-slide:hover .Customer_text::before {
  width: 100%;
}

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

@media screen and (max-width: 1024px) {
  .reviews_box {
    padding-top: 0.5rem;
  }
  .Customer_avatar {
    width: 1rem;
    height: 1rem;
  }
  .Customer_text {
    padding: 0.7rem 0.3rem 0.3rem 0.3rem;
  }
  .reviews-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .reviews_box {
    padding-top: 0.4rem;
  }
  .Customer_avatar {
    width: 0.8rem;
    height: 0.8rem;
  }
}

/* --------------------------  应用行业页面 */

/* 应用列表 */
.Application_box {
  background: linear-gradient(180deg, #103a700f 29%, #ffffff00 135%);
}

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

.Application_item {
  width: 49%;
  box-sizing: border-box;
}

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

.Application_item p {
  width: 91%;
  box-sizing: border-box;
  padding: 0.13rem 0.28rem;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0px 30px 0px 0px;
  background: linear-gradient(270deg, #ffffff80 0%, #ffffff 100%);
  transition: all 0.4s ease;
}
.Application_item p::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.Application_item:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.Application_item:hover p {
  background: var(--i_color);
  color: #fff;
}
.Application_item:hover p::before {
  background-color: #fff;
}

@media screen and (max-width: 1200px) {
  .Application_list {
    gap: 0.3rem 2%;
  }
}
@media screen and (max-width: 1024px) {
  .Application_item p {
    width: 95%;
    font-size: 0.16rem;
    padding: 0.1rem 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .Application_list {
    gap: 0.2rem 2%;
  }
  .Application_item p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .Application_item {
    width: 100%;
  }
  .Application_item p {
    width: 100%;
    font-size: 0.12rem;
    padding: 0.1rem 0.15rem;
  }
  .Application_item p::before {
    width: 5px;
  }
}

/* --------------------------  OEM页面 */

/* 咨询建议 */
.Consultation_advice {
  background: url(https://lingjuimg.com/wp-content/uploads/weide/2026/06/Consultation_advice_ba.webp)
    no-repeat center;
  background-size: cover;
}

.oem_contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 7vw;
}

.oem_item {
  display: flex;
  align-items: center;
  gap: 0 0.12rem;
}

.oem_icon {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #164581;
  color: #fff;
  font-size: 0.22rem;
  position: relative;
}
.oem_icon::before {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: #1d4f8f;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.oem_item a {
  font-size: 0.2rem;
  color: #fff;
  font-weight: 450;
  transition: all 0.4s ease;
}
.oem_item a:hover {
  color: var(--i_color2);
}

@media screen and (max-width: 768px) {
  .oem_item a {
    font-size: 0.16rem;
  }
}

/* 请求召回 */
.Request_recall {
  background: linear-gradient(180deg, #103a700f 30%, #ffffff00 135%);
}

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

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

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

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

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

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

#wpforms-166 .wpforms-field-container {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#wpforms-166-field_1-container,
#wpforms-166-field_2-container,
#wpforms-166-field_3-container,
#wpforms-166-field_4-container,
#wpforms-166-field_7-container,
#wpforms-166-field_8-container,
#wpforms-166-field_9-container,
#wpforms-166-field_10-container,
#wpforms-166-field_11-container,
#wpforms-166-field_12-container,
#wpforms-166-field_13-container,
#wpforms-166-field_14-container {
  width: 48% !important;
}

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

#wpforms-166 .wpforms-field-label-inline {
  font-size: 0.14rem !important;
  color: #a2a2a2 !important;
}
#wpforms-166 #wpforms-166-field_5_1:after {
  left: -4px !important;
  top: -3px !important;
}

@media screen and (max-width: 560px) {
  #wpforms-166-field_1-container,
  #wpforms-166-field_2-container,
  #wpforms-166-field_3-container,
  #wpforms-166-field_4-container,
  #wpforms-166-field_7-container,
  #wpforms-166-field_8-container,
  #wpforms-166-field_9-container,
  #wpforms-166-field_10-container,
  #wpforms-166-field_11-container,
  #wpforms-166-field_12-container,
  #wpforms-166-field_13-container,
  #wpforms-166-field_14-container {
    width: 100% !important;
  }
}

/* --------------------------  新闻页面 */
.news_box {
  background-color: #f9f9f9;
}

.News_Categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.3rem;
}

.Nc_item a {
  display: block;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  color: var(--i_color);
  padding: 0.15rem 0.4rem;
  transition: all 0.4s ease;
}

.Nc_item.active a {
  background-color: var(--i_color);
  color: #fff;
  font-weight: 550;
}

.Nc_item a:hover {
  background-color: var(--i_color);
  color: #fff;
}

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

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

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

.new_item a {
  display: block;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  transition: all 0.4s ease;
}

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

.new_text {
  box-sizing: border-box;
  padding: 0.2rem;
}

.new_text h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new_more {
  border-top: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  gap: 0 0.1rem;
  color: #666;
}
.new_more iconify-icon {
  font-size: 0.24rem;
}

.new_item a:hover {
  border-color: #222222;
}
.new_item a:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.new_item a:hover h3 {
  color: var(--i_color);
}

.new_item:nth-child(-n + 2) {
  width: 49%;
}
.new_item:nth-child(-n + 2) .new_img::before {
  padding-bottom: 56%;
}
.new_item:nth-child(-n + 2) .new_text h6 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
  .new_list {
    gap: 0.2rem 2%;
  }
  .new_item {
    width: 49%;
  }
  .new_item:nth-child(-n + 2) .new_img::before {
    padding-bottom: 84%;
  }
  .new_item:nth-child(-n + 2) .new_text h6 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 560px) {
  .new_item,
  .new_item:nth-child(-n + 2) {
    width: 100%;
  }
}

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

/* 联系信息 */
.contact_information {
  background: linear-gradient(180deg, #ffffff 16%, #fff4f5a3 112%);
}

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

.contact_left {
  width: 35.5%;
  box-sizing: border-box;
}

.contact_social_media {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12rem;
}

.contact_social_media a {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--i_color2);
  color: #fff;
  font-size: 0.2rem;
  transition: all 0.4s ease;
}
.contact_social_media a:hover {
  transform: translateY(-5px);
}

.contact_right {
  width: 60.15%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 6%;
}

.cr_item {
  box-sizing: border-box;
  width: 47%;
  background-color: #fff;
  border: 1px solid rgba(51, 51, 51, 0.2);
  padding: 0.3rem 0.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.cri_icon {
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(236deg, #780c07 -16%, #c50824 81%);
}

.cri_icon img {
  width: 0.4rem;
}

.cri_text {
  width: 65%;
}

.cri_text a {
  font-weight: 550;
  font-size: 0.18rem;
  transition: all 0.4s ease;
}
.cri_text a:hover {
  color: var(--i_color2);
}

.cri_text p {
  font-weight: 550;
}
.cr_item:nth-child(3) {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .contact_left,
  .contact_right {
    width: 100%;
  }
  .contact_right {
    gap: 0.2rem 2%;
  }
  .cr_item {
    width: 49%;
    padding: 0.2rem;
  }
  .cri_icon {
    width: 0.45rem;
    height: 0.45rem;
  }
  .cri_icon img {
    width: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .cr_item {
    width: 100%;
  }
  .cri_text {
    width: 80%;
  }
}
@media screen and (max-width: 560px) {
  .cri_text a,
  .cri_text p {
    font-size: 0.14rem;
  }
}

/* 联系表单 */
.Contact_Form .wrap {
  gap: 0.3rem 0;
}

.c_map {
  width: 57%;
}

.c_form {
  width: 39.5%;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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