/*
Theme Name: AiEn
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: #004183;
  --i_color2: #e56226;

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

/* 通用 */

.btnBox {
  display: table;
}

.btn_ {
  width: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.1rem 0;
  color: var(--i_color2);
  border: 1px solid var(--i_color2);
  transition: all 0.4s ease;
}

.btn_ iconify-icon {
  font-size: 0.22rem;
  margin-left: 0.12rem;
}

.baColor {
  background-color: var(--i_color2);
  color: #fff;
}

.btnBox:hover .btn_ {
  background-color: var(--i_color2);
  color: #fff;
}
.btnBox:hover .baColor {
  background-color: #fff;
  color: var(--i_color2);
}

@media screen and (max-width: 1024px) {
  .btn_ {
    width: 1.4rem;
    padding: 0.05rem 0;
  }
  .btn_ span {
    font-size: 0.16rem;
  }
  .btn_ iconify-icon {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .btn_ {
    width: 1.2rem;
    padding: 0.02rem 0;
  }
  .btn_ span {
    font-size: 0.14rem;
  }
  .btn_ iconify-icon {
    font-size: 0.15rem;
    margin-left: 0.05rem;
  }
}

/* title */

.titleBox h6 {
  color: var(--i_color2);
}

/* --- --- */

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

.wrap_header {
  width: 94vw;
  max-width: 1768px;
  margin-left: auto;
  margin-right: auto;
}

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

/* header */

header .wrap {
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20251108;
  background-color: #fff;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(0 0 0 / 10%);
}
header.fixedHeader {
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}
header .wrap_header {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

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

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

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 4.81%;
    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: 32px;
    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: #333;
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
  }

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

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

  .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;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  gap: 0 0.22rem;
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;
  }
}

.ift_mail {
  color: #333;
  transition: all 0.4s ease;
}
.ift_mail iconify-icon {
  font-size: 0.3rem;
}
.ift_mail:hover {
  color: var(--i_color);
}

.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);
  cursor: pointer;
}

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

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

.top_language_btn iconify-icon {
  display: none;
}

.top_language_btn::after {
  content: "";
  position: absolute;
  top: 23%;
  left: 0;
  width: 1px;
  height: 25px;
  background-color: #d6d6d6;
}

.top_language_btn::before {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #777;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.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: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .top_language_btn {
    padding: 0;
  }
  .top_language_btn::after,
  .top_language_btn::before {
    display: none;
  }
  .top_language_btn iconify-icon {
    display: block;
    margin-bottom: 0.05rem;
  }
  .top_language_btn span {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .logo a {
    height: 50%;
  }
  .language_list dt > h6 {
    font-size: 15px;
  }
}

@media screen and (max-width: 560px) {
  .top_r {
    gap: 0 0.15rem;
  }
  .top_r iconify-icon {
    font-size: 0.2rem;
  }
  .ift_mail iconify-icon {
    font-size: 0.23rem;
  }
  .nav_menu {
    margin-bottom: 0.02rem;
    margin-left: 0.2rem;
  }
}

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

.products_drop_down .sub-menu,
.industries_drop_down .sub-menu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .products_drop_down .sub-menu {
    display: block;
  }
}

.xiala {
  /* height: 100%;
  background: rgba(0, 0, 0, 0.3); */
  position: fixed;
  top: var(--header_height);
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  box-sizing: border-box;
  transition: top 0.3s ease;
  display: none;
  z-index: 100;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}

.xialaBox {
  padding: 0.4rem 0;
  background-color: #fff;
}

.Products_down {
}

/* Products_Box */

.Products_Box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 4%;
}

.Products_down a {
  display: block;
  box-sizing: border-box;
  width: 9.693%;
}

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

.Products_down a:hover .Products_down_img img {
  transform: scale(1.1);
}
.Products_down a:hover p {
  color: var(--i_color);
}

/* Industries_Box */

.Industries_Box {
}

.Industries_list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 0.2rem 2.3978%;
}

.Industries_list li {
  width: 12.231%;
}

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

.Industries_bottom {
  border-top: 1px solid #333333;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 0.2rem 2.3978%;
}
.Industries_bottom li {
  width: 12.231%;
}
.Industries_bottom a {
  width: 100%;
  height: 100%;
  display: block;
}

.Industries_list li:hover img {
  transform: scale(1.1);
}
.Industries_Box li:hover a {
  color: var(--i_color);
}

/* banner */

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

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

.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  border: 0.01rem solid #fff;
  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;
}
.banner-prev {
  left: 1%;
}
.banner-next {
  right: 1%;
}
.banner-prev iconify-icon,
.banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
}
.banner_list .swiper-button-disabled {
  cursor: not-allowed;
}
.banner-prev:hover,
.banner-next:hover {
  background: var(--i_color);
  border: 0.01rem solid var(--i_color);
}

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

.banner-pagination {
  display: none;
  text-align: center;
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.banner-pagination .swiper-pagination-bullet {
  border-radius: 1000px;
  overflow: hidden;
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 0.05rem;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.18rem;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

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

.banner01_txt01 h6 {
  width: max-content;
  border: 1px solid #fff;
  padding: 0.11rem 0.125rem;
}

.banner01_txt01 h4 {
  position: relative;
  margin-top: 0.14rem;
}
.banner01_txt01 h4::before {
  content: "";
  display: block;
  width: 6%;
  height: 4px;
  background-color: var(--i_color2);
  position: absolute;
  left: 0;
  bottom: 0;
}

.banner01_txt01 h3 {
  margin-top: 0.15rem;
}

@media screen and (max-width: 1024px) {
  .banner-prev,
  .banner-next {
    display: none;
  }
  .banner-pagination {
    display: block;
  }

  .banner01_txt01 h6,
  .banner01_txt01 h3 {
    display: none;
  }
  .banner01_txt01 h4 {
    margin-top: 0;
    padding-bottom: 0;
  }
  .banner01_txt01 h4::before {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .banner-pagination {
    bottom: 0.1rem;
  }

  .banner01_txt01 h4 {
    font-size: 0.14rem;
  }
  .banner01_txt01 .btnBox {
    margin-top: 0.1rem;
  }
}

/* 产品中心 */
.Product_Center_Options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  border-bottom: 1px solid #d8d8d8;
}

.Product_Center_Options li {
  width: 25%;
}
.Product_Center_Options li a {
  display: block;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.24rem;
}

.Product_Center_Options li a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

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

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

.Product_Center_Options .active a::before {
  width: 100%;
}

.Product_CenterBox {
  position: relative;
  /* margin-top: 0.45rem; */
}

.Product_Center_list {
  position: relative;
  overflow: hidden;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
.Product_Center_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  padding-top: 0.45rem;
  padding-bottom: 0.55rem;
}
.Product_Center_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

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

/* -------------------------- */
.Product_Center-pagination {
  display: none;
  /* margin-top: 0.3rem; */
  text-align: center;
}
.Product_Center-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Product_Center-pagination .swiper-pagination-bullet-active {
  width: 0.4rem;
  background: var(--i_color2);
}

.li_item {
  position: relative;
  box-shadow: 0 0.01rem 0.02rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.logoBa {
  width: 43%;
  position: absolute;
  right: -15%;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.li_item a {
  display: block;
  box-sizing: border-box;
  padding: 0.14rem 0.14rem 0.2rem 0.14rem;
}

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

.li_item h6 {
  transition: all 0.3s ease;
}

.li_item_btn,
.li_item_btn a {
  display: flex;
  align-items: center;
  gap: 0 0.14rem;
  color: #666;
  transition: all 0.3s ease;
}
.li_item_btn iconify-icon {
  font-size: 0.2rem;
}

.li_item:hover .li_item_img img {
  transform: scale(1.1);
}
.li_item:hover h6 {
  color: var(--i_color);
}
.li_item:hover .li_item_btn {
  color: var(--i_color2);
}
.li_item:hover .logoBa {
  right: 0;
  opacity: 1;
}

.swiper-box {
  display: none;
}
.swiper-box.active {
  display: block;
}

.Product_Center_list_btns {
  display: none;
}

@media screen and (max-width: 1440px) {
  .Product_Center_list .swiper-wrapper {
    padding-bottom: 0;
  }
  .Product_Center-prev,
  .Product_Center-next {
    display: none;
  }

  .Product_Center_list_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 3%;
  }
  .Product_Center_list_btns .Product_Center-prev,
  .Product_Center_list_btns .Product_Center-next {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    transform: none;
  }
}

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

@media screen and (max-width: 768px) {
  .Product_Center_Options li {
    width: 50%;
  }
  .Product_Center_Options li a {
    padding-bottom: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .Product_Center-pagination .swiper-pagination-bullet-active {
    width: 0.2rem;
  }
}

/* 行业 */
.industry {
  background: url(https://lingjuimg.com/wp-content/uploads/aien/2025/11/IndustriesBox.webp)
    no-repeat center;
  background-size: cover;
}

.industryList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.43rem 1%;
}

.industryList li {
  width: 24.25%;
  box-sizing: border-box;
  overflow: hidden;
}

.industryList a {
  display: block;
}
.industryImg {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.industryImg::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 65.1%;
}
.industryImg::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 65, 131, 0) 0%,
    rgba(0, 0, 0, 0.9) 98%
  );
  position: absolute;
  left: 0;
  bottom: 0;
}
.industryImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.industry_n {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  box-sizing: border-box;
  padding: 0.18rem 0.22rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  transition: all 0.3s ease;
  opacity: 1;
}

.industry_b {
  width: 90%;
  position: absolute;
  left: -3%;
  bottom: -3%;
  box-sizing: border-box;
  border-radius: 0px 25px 0px 0px;
  background: linear-gradient(
    0deg,
    rgba(0, 65, 131, 0.27) 0%,
    rgba(0, 65, 131, 0.85) 100%
  );
  padding: 0.16rem 0.22rem 0.11rem 0.22rem;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.industry_b .li_item_btn {
  color: var(--i_color2);
  margin-top: 8px;
}

.industryList li:hover .industryImg img {
  transform: scale(1.1);
}
.industryList li:hover .industry_n {
  opacity: 0;
  left: -3%;
  bottom: -3%;
}
.industryList li:hover .industry_b {
  opacity: 1;
  left: 0;
  bottom: 0;
}

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

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

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .industryList li,
  .industry_last {
    width: 32%;
  }
  .industry_lastImg::before {
    padding-bottom: 65.1%;
  }
}
@media screen and (max-width: 768px) {
  .industryList {
    gap: 0.1rem 1%;
  }
  .industryList li,
  .industry_last {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .industry_n {
    font-size: 0.12rem;
    padding: 0.1rem;
  }
  .industry_last_txt {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .industry_last_txt h6 {
    display: none;
  }
}

/* 我们的优势 */
.serviceCom_cont {
  /* height: 200vh; */
}
.serviceCom_cont .item {
  display: block;
  overflow: hidden;
  position: sticky;
  position: -webkit-sticky;
  top: 2rem;
  margin-bottom: 0.4rem;
}
.serviceCom_cont .item::before {
  content: "";
  display: block;
  padding-bottom: 44.231%;
}

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

.Advantages_t {
  width: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  box-sizing: border-box;
  padding: 0 0.53rem;
}

.Advantages_t h6 {
  margin-top: 0.25rem;
}

.Advantages_t .btn_ {
  width: 2.27rem;
}

@media screen and (max-width: 1024px) {
  .Our_Advantages {
    margin-bottom: 0.3rem;
  }
  .serviceCom_cont .item::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
  .serviceCom_cont {
    height: auto;
  }
  .serviceCom_cont .item {
    position: relative;
    top: initial;
    margin-bottom: 30px;
  }

  .Advantages_t {
    width: 100%;
    padding: 0.2rem;
    z-index: 10;
  }
  .Advantages_t h6 {
  }
}
@media screen and (max-width: 768px) {
  .Advantages_t h5 {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .Advantages_t .btn_ {
    width: 1.5rem;
  }
  .Advantages_t h5 {
    font-size: 0.13rem;
  }
  .Advantages_t h6 {
    font-size: 0.11rem;
    margin-top: 0.1rem;
  }
}

/* 关于公司 */

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

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

.About_top_left {
  width: 46.847%;
}

.About_top_right {
  width: 48.385%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem 0;
}

.About_top_right li {
  width: 46.264%;
  box-sizing: border-box;
  border-top: 1px solid #bbc5cd;
  transition: all 0.3s ease;
}

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

.ac_video {
  position: relative;
  /* overflow: hidden; */
}
.ac_video::before {
  content: "";
  display: block;
  padding-bottom: 40%;
}

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

.ac_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ac_video iconify-icon {
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .About_top_left,
  .About_top_right {
    width: 100%;
  }
  .About_top_right {
    gap: 0.24rem 0;
  }
}

/* 主页新闻 */
.i_news {
  background-color: #f6f6f6;
}

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

.i_news_left {
  width: 48.847%;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

.i_news_left a {
  display: block;
  position: relative;
}

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

.i_news_left_txt {
  height: 100%;
  box-sizing: border-box;
  padding: 0.2rem 0.36rem;
  background-color: #fff;
}

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

.i_news_left:hover .i_news_left_pic img {
  transform: scale(1.1);
}
.i_news_left:hover h6 {
  color: var(--i_color);
}

.i_news_right {
  width: 46.847%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
  box-sizing: border-box;
}

.i_news_right li {
  box-sizing: border-box;
  position: relative;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
  padding: 0.36rem 0.19rem 0.29rem 0.39rem;
  transition: all 0.4s ease;
}

.i_news_right li::before {
  content: "";
  display: block;
  width: 4px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--i_color);
  transition: all 0.4s ease;
}

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

.i_news_right h6 span {
  width: 90%;
}
.i_news_right h6 iconify-icon {
  font-size: 0.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.inew_info {
  margin-top: 0.17rem;
  display: none;
}
.inew_info h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.li_item_btn:hover,
.li_item_btn:hover a {
  color: var(--i_color2);
}

.i_news_right .active {
  border-radius: 0px 0.25rem 0px 0px;
}
.i_news_right .active::before {
  height: 100%;
}
.i_news_right .active h6 span {
  color: var(--i_color);
}
.i_news_right .active .i_news_icon {
  transform: rotate(180deg);
  color: var(--i_color2);
}

@media screen and (max-width: 1024px) {
  .i_news_left,
  .i_news_right {
    width: 100%;
  }
  .inew_info {
    display: block;
  }
  .i_news_icon {
    display: none;
  }
  .i_news_right h6 span {
    width: 100%;
  }

  .i_news_right li:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 768px) {
}

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

/* footer */
.footer_top {
  background: url(https://lingjuimg.com/wp-content/uploads/aien/2025/11/footerTop.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.footer_top::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #004183 0%, rgba(0, 65, 131, 0.52) 100%);
}

.footer_top .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem 0;
  position: relative;
  z-index: 10;
}

.footer_top p {
  width: 56%;
}

.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.22rem;
}
.f_media li {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_media iconify-icon {
  font-size: 0.28rem;
  color: #fff;
  transition: all 0.4s ease;
}
.f_media li:hover {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
}
.f_media li:hover iconify-icon {
  color: var(--i_color2);
}

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

/* footer_bottom */
.footer_bottom {
  background-color: #f6f6f6;
}

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

.f_contactBox {
  flex-shrink: 0;
  width: 30%;
}
.f_contact {
}
.f_contact span {
  display: block;
  padding: 6.5px 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.f_contact p,
.f_contact a {
  font-size: 0.16rem;
}

.f_nav h5 {
  margin-bottom: 0.21rem;
  font-size: 0.24rem;
  font-weight: bold;
}

.f_nav ul {
}
.f_nav li {
}
.f_nav li a {
  display: block;
  padding: 6px 0;
  font-size: 0.16rem;
}

.f_nav a:hover {
  color: var(--i_color2);
}

.footer_cr {
  border-top: 1px solid #cfcfcf;
  background-color: #f6f6f6;
}

.footer_cr .wrap {
  display: flex;
  align-items: center;
}

.fb_logo {
  display: block;
  width: 6.539%;
  margin-right: 0.14rem;
}
.fb_logo img {
  width: 100%;
}

.f_cr {
}
.f_cr,
.f_cr a {
  font-size: 16px;
  color: #666;
}
.f_cr a {
}
.f_cr a:hover {
  color: var(--i_color2);
}

@media screen and (max-width: 1024px) {
  .f_nav .item {
    display: none;
  }
  .f_contact {
    width: 100%;
  }

  .f_cr {
    margin: 0 0;
    padding: 20px 0;
  }
}

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

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

.banner__ {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner__::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 65, 131, 0.45) 0%,
    rgba(0, 65, 131, 0.23) 44%,
    rgba(0, 65, 131, 0) 100%
  );
}

.banner__ img {
  width: 100vw;
  height: auto;
  display: block;
}

.banner__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.banner__text h2 {
  font-weight: bold;
  color: #fff;
}

/* Breadcrumb */
.positionBox {
  width: 100%;
}

.in_position {
  padding: 0.2rem 0;
  position: relative;
}
.in_position .wrap {
  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: 20px;
  height: 20px;
  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 {
  font-weight: bold;
  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: 768px) {
  .banner__text p {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}

/* ----------------------------------  产品列表页面 */
.Products_main {
  position: relative;
}

.catList_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.catList_aside {
  width: 27.143%;
  box-sizing: border-box;
  position: relative;
}

.catList_aside::before {
  content: "";
  display: block;
  width: 500%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f6f6f6;
}

.catList_show {
  width: 70%;
  margin-left: auto;
}

.catList_page .news_header {
  display: none;
}

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

  .catList_page .news_header {
    width: 100%;
    display: block;
  }

  .catList_show {
    width: 100%;
  }
}

.cat_nav {
  padding-right: 0.49rem;
  position: sticky;
  top: 1.2rem;
  padding-bottom: 0.6rem;
  align-self: flex-start;
}
.cat_nav_tit {
  margin-bottom: 0.24rem;
}
.cat_nav_tit h4 {
  font-size: 0.3rem;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

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

.cat_nav_list li.active {
  border-color: transparent;
}

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border: 1px solid #d3d1d1;
  gap: 0 0.2rem;
}
.cat_fold_tit a {
  padding: 0.14rem 0;
  width: 100%;
  font-size: 0.18rem;
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.24rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_tit a:hover {
  color: var(--i_color);
}

.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: #fff;
}

.active .cat_fold_tit {
  background: var(--i_color);
  border-color: var(--i_color);
}
.active .cat_fold_tit a {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  color: #fff;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cat_fold_sub {
  display: none;
  padding: 0.1rem 0.2rem;
}
.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: 8px;
  border-radius: 50%;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a:hover::before,
.cat_fold_sub .active a::before {
  width: 8px;
}
.cat_fold_sub a:hover,
.cat_fold_sub .active a {
  padding-left: 0.16rem;
  color: var(--i_color);
}

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

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

  .cat_fold_sub {
    padding: 0 20px;
  }

  .cat_nav_list {
    /* display: none; */
    box-sizing: border-box;
    padding: 14px 30px 30px;
    background-color: #f9f9f9;
  }
  .cat_nav_list li {
    border-top: none;
  }
  .cat_nav_list li.active {
    border-color: rgb(0 88 167 / 10%);
  }
  .cat_fold_tit {
    background-color: transparent;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 0;
    padding-left: 0.1rem;
    border-color: transparent;
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub p {
    font-size: 15px;
  }

  .cat_fold_sub a {
    font-size: 0.15rem;
  }
}
@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: 14px 20px 24px;
  }
  .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_Center_Options li {
    font-size: 0.14rem;
  }
}

.cat_info {
}

.cat_info h2 {
  font-size: 0.28rem;
}

.cat_info > span {
  display: block;
  margin-top: 0.16rem;
}

.productsList {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
}

.productsList li {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

.productsList a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0.14rem 0.11rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem 0;
}

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

.productsList_txt {
  width: 71%;
  position: relative;
}

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

.productsList_item:hover .productsList_img img {
  transform: scale(1.1);
}
.productsList_item:hover h5 {
  color: var(--i_color);
}
.productsList_item:hover .li_item_btn {
  color: var(--i_color2);
}

@media screen and (max-width: 768px) {
  .productsList {
    gap: 0.3rem 2%;
  }
  .productsList li {
    width: 49%;
  }
  .productsList_img {
    width: 100%;
  }

  .productsList_txt h6 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cat_info h2 {
    font-size: 0.22rem;
  }
  .productsList_txt {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .productsList li {
    width: 100%;
  }
}

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

.p_data {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 4%;
}

/* atlas */
.p_atlas {
  flex-shrink: 0;
  width: 46.155%;
  box-sizing: border-box;
  position: relative;
}

.one_title {
  display: none;
}

.p_atlas_list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_atlas_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.p_atlas_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* thumbnail */
.p_thumbnail_list {
  width: 100%;
  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 {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.p_thumbnail_list figure {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border: 1px solid rgba(51, 51, 51, 0.2);
  overflow: hidden;
}
.p_thumbnail_list figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.5s ease;
}
.p_thumbnail_list figure::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.p_thumbnail_list figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p_thumbnail_list .swiper-slide-thumb-active figure::after {
  height: 0;
}

.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.5;
  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: #fff;
}
.p_atlas .swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.thumbnail-prev:hover,
.thumbnail-next:hover {
  background-color: var(--i_color2);
  border-color: var(--i_color2);
  opacity: 1;
}

.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: #fff;
}
.thumbnail-pagination .swiper-pagination-current {
  font-size: 0.22rem;
  color: var(--i_color2);
}

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

  .p_atlas {
    width: 100%;
    max-width: 6rem;
    margin: 0 auto 0.46rem;
  }

  .one_title {
    display: block;
  }

  .p_title {
    border-top: 1px solid #cfcfcf;
  }

  .p_title h1 {
    display: none;
  }

  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }

  .thumbnail-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .p_atlas_list {
    width: 100%;
  }
}

.p_title {
}
.p_title h1 {
  color: var(--i_color);
  font-weight: bold;
  border-bottom: 1px solid #cfcfcf;
}

/* .p_des article table {
  border-top: 2px solid var(--i_color);
} */

.pMenu {
  border-top: 1px solid #ddd;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.p_btn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}

.p_share {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.p_share dd {
  font-size: 0.18rem;
}
.p_share dt {
}
.p_share iconify-icon {
  font-size: 0.26rem;
  color: #999;
  transition: all 0.4s ease;
}
.p_share a:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .pMenu {
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
  }
  .p_share {
    margin: 20px 0 0;
    width: 100%;
  }
  .p_share iconify-icon {
    font-size: 22px;
  }
}

/* 宣传 */
.publicity_box {
  position: relative;
  background: url(https://lingjuimg.com/wp-content/uploads/aien/2025/11/publicity.webp)
    no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

/* 产品详情 */
.Product_Details_tit {
  background-color: #f6f6f6;
}

.Product_Details_tit i {
  display: block;
  width: max-content;
  padding: 0.12rem 0.52rem;
  background-color: #fff;
  position: relative;
}

.Product_Details_tit i::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  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 */

.faq_box text {
  display: block;
  margin-bottom: 0.24rem;
}

.faq_list {
}
.faq_list > p {
  font-weight: bold;
  color: #999;
}

.faq_list li {
}

.faq_list .active_li {
  background-color: #f6f6f6;
}

.faq_list .tit {
  box-sizing: border-box;
  padding: 0.2rem 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.3rem;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.faq_list .tit::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d6d6d6;
}
.faq_list .tit.active::before {
  background: none;
}
.faq_list .tit p {
  font-size: 20px;
}
.faq_list .tit iconify-icon {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.16rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.faq_list .tit.active p,
.faq_list .tit.active iconify-icon {
  color: var(--i_color);
}
.faq_list .tit.active iconify-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq_list .txt {
  display: none;
  padding: 0 0.2rem 0.2rem 0.2rem;
  color: #666;
}

@media screen and (max-width: 1024px) {
  .faq_list .tit {
    padding: 14px 20px;
  }
  .faq_list .tit.active::before {
    background: rgb(0 88 167 / 15%);
  }
  .faq_list .tit p {
    font-size: 17px;
  }
  .faq_list .txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .faq_list .tit p {
    font-size: 16px;
  }
  .faq_list .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .faq_list li {
    margin-bottom: 12px;
  }
  .faq_list .tit p {
    font-size: 14px;
  }
  .faq_list .tit iconify-icon {
    font-size: 12px;
  }
  .faq_list .txt {
    padding: 10px 20px;
  }
  .faq_list .txt {
    font-size: 13px;
  }
}

/* tags */
.Operation_Options {
  background-color: #f6f6f6;
}

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

.p_view_other {
  padding-top: 0.2rem;
  border-top: 1px solid #cfcfcf;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 4%;
}
.p_view_other li {
  max-width: 46%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.14rem;
  align-items: center;
}
.p_view_other .arrow_btn {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color2);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.p_view_other .arrow_btn iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: var(--i_color2);
}
.p_view_other a {
  font-size: 0.16rem;
}
.p_view_other a b {
  font-weight: bold;
}
.p_view_other .next {
  text-align: right;
}
.p_view_other li:hover .arrow_btn {
  background: var(--i_color2);
}
.p_view_other li:hover .arrow_btn iconify-icon {
  color: #fff;
}
.p_view_other a:hover {
  color: var(--i_color2);
}

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

/* 相关产品 */
.Related_products .titleBox a {
  width: max-content;
  display: block;
  margin-top: 0.05rem;
  position: relative;
}
.Related_products .titleBox a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  transition: all 0.5s ease;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.Related_products .titleBox a:hover::before {
  width: 100%;
}

.Related_products .Product_Center-pagination {
  display: block;
}

/* ----------------------------------  行业页面 */
.Industries_main {
  position: relative;
  overflow: hidden;
}

.Industries_pic {
  width: 49%;
  position: absolute;
  right: -7.75%;
  top: 0;
  z-index: -1;
}

.Industries_main .industry {
  background: none;
}

/* ----------------------------------  行业详情页面 */
.industry_head {
  background-color: #f6f6f6;
}

.industry_head .wrap_l {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem 0;
  position: relative;
  margin-left: 15.9vw;
}

.industry_headtxt {
  width: 34.81%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.industry_headimg {
  width: 100%;
  position: relative;
}
.industry_headimg::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 47.182%;
}
.industry_headimg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    90deg,
    #f6f6f6 0%,
    rgba(246, 246, 246, 0.57) 19%,
    rgba(246, 246, 246, 0.1) 37%,
    rgba(255, 255, 255, 0) 100%
  );
}
.industry_headimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1200px) {
  .industry_headtxt p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .industry_head .wrap_l {
    padding-right: 3vw;
    margin-left: 0;
  }

  .industry_headtxt {
    position: relative;
    top: 0;
    transform: none;
  }

  .industry_head {
    padding: 0.3rem 0;
  }
  .industry_headtxt,
  .industry_headimg {
    width: 100%;
  }
  .industry_headimg {
    order: -1;
  }
  .industry_headimg::after {
    display: none;
  }
}

/* 工业中心 */
.Industrial_Center {
}

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

.Industrial_Center_Box li {
  width: 23.5%;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

@media screen and (max-width: 1024px) {
  .Industrial_Center_Box li {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .Industrial_Center_Box {
    gap: 0.1rem 2%;
  }
  .Industrial_Center_Box li {
    width: 49%;
  }
}

/* ------------------------------  About Us-company */

.about_top {
  background: linear-gradient(
    180deg,
    #f2f8fd -5%,
    #e9f2fa 8%,
    #ffffff 37%,
    rgba(255, 255, 255, 0) 100%
  );
  overflow: hidden;
}

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

.about_Brief_list li {
  width: 19.231%;
}

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

.about_biglogo {
  width: 72.693%;
  position: absolute;
  right: -14%;
  top: -26.3%;
}

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

/* 全球商业 */
.Global_Business {
  background-color: #f6f6f6;
}

.Global_Brief {
  box-sizing: border-box;
  padding: 0.26rem 0.25rem;
  background-color: #fff;
}

.Global_Business img {
  width: 100%;
  display: block;
  margin: 0.62rem 0 0.95rem 0;
}

.Global_txt {
  border-top: 1px solid #cfcfcf;
}

.about_form {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.4rem 0.64rem 0.56rem 0.64rem;
}

#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 {
  height: 0;
  font-size: 0;
  margin: 0 0;
}
#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 {
  border: 1px solid #ccc;
  -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_3-container,
#wpforms-125-field_4-container,
#wpforms-125-field_5-container,
#wpforms-125-field_6-container,
#wpforms-125-field_10-container {
  width: 48% !important;
}

#wpforms-125 .wpforms-submit-container {
  width: 180px;
  padding: 0 0;
}
#wpforms-125 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: var(--i_color2);
  border-radius: 0;
}
#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: var(--i_color);
}

#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 {
  border: 1px solid #ccc;
  border-radius: 4px;
}

@media screen and (max-width: 1024px) {
  .about_form {
    padding: 0.3rem 0.2rem;
  }
  #wpforms-125-field_1-container,
  #wpforms-125-field_3-container,
  #wpforms-125-field_4-container,
  #wpforms-125-field_5-container,
  #wpforms-125-field_6-container,
  #wpforms-125-field_10-container {
    width: 100% !important;
  }
}

.certificationsBox article a {
  color: var(--i_color) !important;
  text-decoration: none;
}

/* ------------------------------  支持列表页面 */
.support_main,
.news_main {
  background-color: #f6f6f6;
}

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

.new_list_ul li {
  width: 32%;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

.new_list_ul a {
  display: block;
  box-sizing: border-box;
  padding: 0.16rem 0.18rem 0.3rem 0.17rem;
}

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

.new_list_ul h6 {
  color: var(--i_color2);
}

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

.new_list_ul li:hover img {
  transform: scale(1.1);
}
.new_list_ul li:hover h5 {
  color: var(--i_color);
}
.new_list_ul li:hover .li_item_btn {
  color: var(--i_color2);
}

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

@media screen and (max-width: 560px) {
  .new_list_ul {
    gap: 0.2rem 2%;
  }
  .new_list_ul li {
    width: 100%;
  }
  .new_list_ul li h5 {
    font-size: 0.14rem;
  }
}

/* ------------------------------  news列表页面 */
.news_main .Product_Center_Options {
  justify-content: center;
  gap: 0 10%;
}

.news_main .Product_Center_Options li {
  width: max-content;
}

.First_new {
  background: #ffffff;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

.First_new a {
  box-sizing: border-box;
  padding: 0.13rem 0.6rem 0.14rem 0.13rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem 0;
}

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

.First_new_txt {
  width: 47.189%;
}

.First_new_txt h5 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.16rem;
  margin-bottom: 0.94rem;
}

.First_new:hover img {
  transform: scale(1.1);
}
.First_new:hover h6 {
  color: var(--i_color);
}
.First_new:hover .li_item_btn {
  color: var(--i_color2);
}

.news_box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.27rem 0;
}

.news_box li {
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

.news_box a {
  display: flex;
  box-sizing: border-box;
  padding: 0.12rem 0.6rem 0.12rem 0.13rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

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

.news_box_txt {
  width: 84.76%;
}

.news_box_txt h5 {
  margin-top: 0.05rem;
  margin-bottom: 0.15rem;
}

.news_box li:hover img {
  transform: scale(1.1);
}
.news_box li:hover h6 {
  color: var(--i_color);
}
.news_box li:hover .li_item_btn {
  color: var(--i_color2);
}

@media screen and (max-width: 1024px) {
  .First_new a,
  .news_box a {
    padding: 0.2rem;
  }

  .First_new_img {
    width: 100%;
  }
  .First_new_img::before {
    padding-bottom: 32%;
  }

  .First_new_txt,
  .news_box_txt {
    width: 100%;
  }

  .news_box_img {
    display: none;
  }
  .First_new_txt h6 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
  }
  .First_new_txt h5 {
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 768px) {
  .news_box_img {
    width: 20%;
  }
}

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

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

.contact_top_cont h2 {
  line-height: 1.2;
}

.contact_top_left {
  width: 43%;
}

.contact_top_right {
  width: 51.155%;
}

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

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

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

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

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

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

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

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

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

.contact__form {
  background: -webkit-linear-gradient(top, transparent, #f1f1f1);
  background: linear-gradient(to bottom, transparent, #f1f1f1);
  position: relative;
}
.contact__form::before {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 3rem;
  height: 3rem;
  background: url(static/images/team_logo.webp) no-repeat bottom center;
  background-size: contain;
}
.contact__form .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 10%;
}

.contact__formT {
  width: 100%;
}
.contact__formT h6 {
  color: var(--i_color);
}
.contact__formT h3 {
  margin-top: 0.1rem;
  font-weight: bold;
}
.contact__formT p {
  margin: 0.2rem 0;
}
.contact__formT h5 {
}

.contact__ .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 4%;
}

.contact__info {
  width: 100%;
}
.contact__info h3 {
  font-weight: bold;
}

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

.contact__list {
  width: 70%;
}
.contact__list li {
  margin: 0.15rem 0;
}
.contact__list iconify-icon {
  display: block;
  margin-bottom: 6px;
  width: 0.24rem;
  height: 0.24rem;
  font-size: 0.26rem;
  color: #666;
}
.contact__list p,
.contact__list a {
  font-size: 0.18rem;
}

.contact__list li:hover iconify-icon,
.contact__list li:hover a {
  color: var(--i_color);
}

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

.contact__media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.2rem;
}
.contact__media dt {
}
.contact__media a {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__media iconify-icon {
  font-size: 0.24rem;
  color: #999;
}

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

.c_pic {
  width: 40%;
  position: relative;
}
.c_pic::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}
.c_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.contact__info {
  width: 55%;
}

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

.QR_codes {
  width: 28%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.QR_codes img {
  width: 45%;
}

/* 遮罩默认隐藏 */
.fs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999999999;
  cursor: zoom-out;
}
.fs-overlay.show {
  opacity: 1;
  visibility: visible;
}
.fs-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .contact__ .wrap {
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .c_pic,
  .contact__info {
    width: 100%;
  }

  .contact__info {
    order: -1;
  }
  .contact__list p,
  .contact__list a {
    font-size: 16px;
  }
  .map {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact__list {
    width: 100%;
  }
  .QR_codes {
    width: 35%;
  }
}
@media screen and (max-width: 560px) {
  .QR_codes {
    width: 100%;
    justify-content: flex-start;
    gap: 0 4%;
  }
  .QR_codes img {
    width: 20%;
  }
  .contact__media a {
    width: 36px;
    height: 36px;
  }
  .contact__list p,
  .contact__list a {
    font-size: 15px;
  }
}
