/*
Theme Name: siyuan
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 {
  --i_color: #23306a;
  --i_color2: #f5f8fc;
  --header_height: 0.9rem;
  --boxShadow: 0 2px 10px rgb(0 88 167 / 20%);
  --border_color: #e6e6e6;
  --bjs: #F5F6F8
}
@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.6rem;
  }
}
.wrap {
  width: 94vw;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_l {
  box-sizing: border-box;
  padding-left: 8.4vw;
}

.wrap_r {
  box-sizing: border-box;
  padding-right: 8.4vw;
}
@media screen and (max-width: 1440px) {
  .wrap_l {
    padding-left: 3vw;
  }
  .wrap_r {
    padding-right: 3vw;
  }
}
.wrap2 {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}
.wrap3 {
  width: 94%;
}

/* 通用 */
.titBox h2 {
  font-size: 0.36rem;
  text-transform: capitalize;
}
.titBox p {
  color: var(--i_color);
  background-color: #f5f6f8;
  box-sizing: border-box;
  padding: 0.07rem 0.3rem;
  margin-top: 0.1rem;
  display: table;
}
.titBox p span {
  display: flex;
  align-items: center;
}
.titBox p span::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 2px;
  background-color: var(--i_color);
  margin-right: 0.08rem;
}
@media screen and (max-width: 1024px) {
  .titBox h2 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 560px) {
  .titBox h2 {
    font-size: 0.18rem;
  }
  .titBox p {
    font-size: 0.14rem;
  }
  .titBox p span::before {
    display: none;
  }
}
.btn__ {
  display: table;
  transition: all 0.4s ease;
}
.btnBox.fff {
  background: #fff !important;
  color: var(--i_color) !important;
}

.btnBox.fff iconify-icon {
  color: var(--i_color);
}
.btnBox {
  display: flex;
  align-items: center;
  background-color: var(--i_color);
  color: #fff;
  box-sizing: border-box;
  padding: 0.18rem 0.42rem;
}
.btnBox iconify-icon {
  font-size: 0.2rem;
  margin-left: 0.32rem;
}

.btnBox.lines {
  background: transparent;
  border: 1px solid var(--i_color);
  color: var(--i_color);

}

.btnBox.line iconify-icon {
  color: var(--i_color);
}

.g40 {
  gap: 0 0.4rem;
}



.btn__:hover {
  transform: translateY(-5px);
}

@media screen and (max-width: 1024px) {

  .g40 {
    gap: 0 0.2rem;
  }
  .btnBox {
    padding: 0.08rem 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .btnBox {
    padding: 0.04rem 0.12rem;
  }
  .btnBox span {
    font-size: 0.13rem;
  }
  .btnBox iconify-icon {
    font-size: 0.15rem;
    margin-left: 0.1rem;
  }
}

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

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

.header-ba {
  box-shadow: 0 2px 10px rgb(0 88 167 / 20%);
}

.top {
  background: #fff;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* 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: 100%;
}
.logo img {
  max-height: 100%;
}
@media screen and (max-width: 1024px) {
  .logo img {
    max-height: 65%;
  }
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 1rem;
    margin-right: auto;
    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;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--i_color);
    width: 0;
    height: 4px;
    transition: all 0.4s 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 {
    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);
  }

  .nav_products .sub-menu {
    display: none !important;
  }

  .i_nav .sub-menu {
    display: none;
    position: fixed;
    left: 0;
    top: var(--header_height);
    width: 100%;
    box-sizing: border-box;
    padding: 0.4rem 0;
    background: #fff;
    border-top: 1px solid rgb(0 0 0 / 10%);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 10px rgb(0 88 167 / 10%);
    font-size: 0;
  }

  .i_nav .sub-menu li {
    display: inline-block;
    margin: 0 0.3rem;
    position: relative;
    text-align: center;
  }
  .i_nav .sub-menu a {
    display: block;
    font-size: 0.18rem;
    color: #555;
    line-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }
  .i_nav .sub-menu li:hover a {
    color: var(--i_color);
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    margin-left: 0.8rem;
    gap: 0 0.44rem;
  }
  .i_nav>li>a {
    font-size: 0.18rem;
  }
  .i_nav .sub-menu a {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    margin-left: 0.6rem;
    gap: 0 0.3rem;
  }
  .i_nav>li>a {
    font-size: 0.17rem;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;
    position: fixed;
    top: var(--header_height);
    left: 101%;
    margin: 0 0;
    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: 20px;
    width: 30px;
    height: 30px;
    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: 20px;
  }
  .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: 20px;
  }

  .i_nav>li>a {
    padding: 0 20px;
    font-size: 16px;
    color: #222;
    line-height: 44px;
    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 40px;
    font-size: 15px;
    color: #555;
    line-height: 40px;
    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: 40px;
    height: 40px;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat center;
    background-size: 16px;
  }
  .i_nav>li>.sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
    background-size: 16px;
  }

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

  .i_nav .sub-menu .sub-menu a {
    padding: 0 60px;
    font-size: 13px;
    color: #888;
    line-height: 36px;
    position: relative;
  }

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

.nav_menu_products {
  display: none;
  position: fixed;
  top: var(--header_height);
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgb(0 0 0 / 10%);
  box-shadow: 0 8px 10px rgb(0 88 167 / 10%);
  z-index: 2014;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}

.nav_menu_products dl {
  padding: 0.5rem 0 0.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 3%;
  position: relative;
}
.nav_menu_products dt {
  width: 100%;
}
.nav_menu_products dt>a {
  display: block;
  padding-left: 8px;
  font-size: 18px;
  font-weight: bold;
}
.nav_menu_products ul {
  margin-top: 0.12rem;
  padding-top: 0.12rem;
  border-top: 1px solid #ddd;
}
.nav_menu_products li {}
.nav_menu_products li a {
  display: block;
  padding: 6px 0 6px 14px;
  font-size: 15px;
  color: #666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.nav_menu_products li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #ccc;
}

.nav_menu_products dt>a:hover {
  color: var(--i_color);
}
.nav_menu_products li a:hover {
  color: var(--i_color);
}
.nav_menu_products li a:hover::before {
  background: rgb(0 88 167 / 50%);
}

@media screen and (max-width: 1440px) {
  .nav_menu_products dt>a {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .nav_menu_products dt>a {
    font-size: 15px;
  }
  .nav_menu_products li a {
    font-size: 14px;
  }
  .nav_menu_products li a::before {
    top: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .nav_menu_products {
    display: none !important;
  }
}

/* 移动端导航按钮 */
.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.2rem;
  }
}

.top_r {
  --size: 0.25rem;
}
.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.35rem;
}
@media screen and (max-width: 1024px) {
  .top_r {
    --size: 0.2rem;
  }
  .top_r {
    margin-left: auto;
    gap: 0 30px;
    margin-right: 14px;
  }
}

.top_search_ico {
  position: relative;
  font-size: 0;
  cursor: pointer;
}
.top_search_ico::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -0.2rem;
  width: 1px;
  height: 0.2rem;
  background: #d6d6d6;
}
.top_search_ico iconify-icon {
  font-size: var(--size);
  color: #3d3d3d;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_search_ico.on iconify-icon {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .top_search_ico::before {
    display: none;
  }
}

.top_language {
  position: relative;
}
.top_language_btn {
  height: var(--header_height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.top_language_btn iconify-icon {
  font-size: var(--size);
  color: #3d3d3d;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_language_btn.on iconify-icon {
  color: var(--i_color);
}

#caret {
  font-size: 0.12rem;
  margin-left: 0.06rem;
}

.top_language_list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 0.16rem);
  right: 0;
  min-width: 1.6rem;
  background: #fff;
  box-sizing: border-box;
  box-shadow: var(--boxShadow);
  padding: 0.14rem 0.18rem 0.1rem;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_language_list.on {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.top_language_list h6 {
  font-family: Arial;
  margin-bottom: 0.14rem;
  font-size: 0.16rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

.top_language_list ul {
  overflow: hidden;
}
.top_language_list li {
  position: relative;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_language_list a>span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 8px;
  box-sizing: border-box;
  overflow: hidden;
}
.top_language_list .trp-ls-language-name {
  font-size: 15px;
  color: #666;
  line-height: 0.3rem;
}

.top_language_list li:hover {
  left: 4px;
}
.top_language_list li:hover .trp-ls-language-name {
  color: var(--i_color);
}

/* search */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: calc(var(--header_height) + 0.3rem);
  left: 0;
  width: 100%;
  padding: 0.16rem 0;
  border-top: 1px solid rgb(0 0 0 / 10%);
  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: var(--boxShadow);
}
.top_search form {
  width: 80%;
  margin: 0 auto;
  max-width: 5rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
.top_search_ipt {
  width: 100%;
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0.12rem;
}
.top_search_btn {
  flex-shrink: 0;
  font-size: 0;
  color: #fff;
  width: calc(var(--search_height) * 1.5);
  height: var(--search_height);
  background: var(--i_color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23FFF' d='m11.271 11.978l3.872 3.873a.5.5 0 0 0 .708 0a.5.5 0 0 0 0-.708l-3.565-3.564c2.38-2.747 2.267-6.923-.342-9.532c-2.73-2.73-7.17-2.73-9.898 0s-2.728 7.17 0 9.9a6.96 6.96 0 0 0 4.949 2.05a.5.5 0 0 0 0-1a5.96 5.96 0 0 1-4.242-1.757a6.01 6.01 0 0 1 0-8.486a6.004 6.004 0 0 1 8.484 0a6.01 6.01 0 0 1 0 8.486a.5.5 0 0 0 .034.738'/%3E%3C/svg%3E") no-repeat center;
  background-size: 0.2rem;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 34px;
  }
  .top_search {
    padding: 12px 0;
  }

  #caret {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .top_search form {
    width: 94%;
  }
}

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

/* banner */

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

.i_ba_list .swiper-slide::after {
  /* content: ""; */
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}

.i_ba_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 42.5%;
}
.i_ba_list .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.ba01_text {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 100;

  display:-webkit-flex; display:flex; flex-wrap:wrap;
  flex-direction: column;
  align-items: center;
}

.ba01_text h2 {}

.ba01_text h4 {
  width: 80%;
}

.iBa_btn {
  display: table;
  transition: all 0.4s ease;
}
.iBa_ {
  display: flex;
  align-items: center;
  color: #fff;
  background-color: var(--i_color);
  box-sizing: border-box;
  padding: 0.12rem 0.24rem;
}
.iBa_ iconify-icon {
  font-size: 0.2rem;
  margin-left: 0.2rem;
}

.iBa_btn:hover {
  transform: translateY(-5px);
}

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

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

@media screen and (max-width: 1024px) {
  .ba01_text h4 {
    width: 100%;
    display: none;
  }
  .iBa_ {
    padding: 0.08rem 0.2rem;
  }
  .iBa_ span {
    font-size: 0.18rem;
  }
  .iBa_ iconify-icon {
    font-size: 0.16rem;
    margin-left: 0.1rem;
  }
  .i_ba-prev,
  .i_ba-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ba01_text h2 {
    font-size: 0.2rem;
  }
  .ba01_text h4 {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .i_ba_list .swiper-slide::before {
    padding-bottom: 50%;
  }
  .ba01_text h2 {
    font-size: 0.17rem;
  }
  .ba01_text h4 {
    font-size: 0.13rem;
    margin-top: 0.1rem;
  }
  .iBa_btn {
    margin-top: 0.1rem;
  }
  .iBa_ {
    padding: 0.04rem 0.12rem;
  }
  .iBa_ span {
    font-size: 0.13rem;
  }
  .iBa_ iconify-icon {
    font-size: 0.14rem;
  }
}

/* 产品分类 */

.classification {
   background: url(https://lingjuimg.com/wp-content/uploads/siyuan/2025/08/cate.webp) no-repeat center;
  background-size: cover;
}

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

.cf_top .titBox p {
  background-color: #fff;
}

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

.classification_list .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  width: 100px;
  height: 60px;
  background: url(static/imgs/xlogo.png) no-repeat center;
  background-size: cover;
  z-index: 9;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 0.5;
}


.classification_list .swiper-slide:hover::after {
  opacity: 1;
}


.classification_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.classification_list .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
}

.cl_txt {
  width: 100%;
  max-height: 213px;
  position: absolute;
  left: 0;
  bottom: -5%;
  background: url(static/imgs/cl_txtBa.webp) no-repeat center;
  background-size: cover;
  opacity: 0;
  transition: all 0.5s ease;
}

.cl_txtBox {
  position: relative;
  color: #fff;
  box-sizing: border-box;
  padding: 1.2rem 0.2rem 0.32rem 0.32rem;
}

.classification_list .cl_txtBox .cl_img {
  width: 0.56rem;
  height: 0.56rem;
  position: absolute;
  right: 0.2rem;
  top: 0.35rem;
}

.classification_list .swiper-slide:hover .cl_txt {
  opacity: 1;
  bottom: 0;
}

/* -------------------------- */
.classification-pagination {
  display: block;
  margin-top: 0.48rem;
  text-align: center;
}
.classification-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #9b9b9b;
  outline: none;
  cursor: pointer;
  transition: all 0.4s;
}
.classification-pagination .swiper-pagination-bullet-active {
  width: 0.46rem;
  background: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .cl_txtBox {
    padding: 1rem 0.2rem 0.2rem 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .classification .titBox {
    width: 100%;
  }
  .cl_txt {
    background: -webkit-linear-gradient(top, transparent, var(--i_color));
    opacity: 1;
    bottom: 0;
  }
  .classification_list .cl_txtBox .cl_img {
    display: none;
  }

  .classification-pagination {
    margin-top: 0.2rem;
  }
  .classification-pagination .swiper-pagination-bullet {
    width: 0.04rem;
    height: 0.04rem;
  }
  .classification-pagination .swiper-pagination-bullet-active {
    width: 0.2rem;
    height: 0.04rem;
  }
}
@media screen and (max-width: 560px) {
  .cf_top {
    gap: 0.15rem 0;
  }
}

/* 热门产品 */

.Hot_Products {}

.hp_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.47rem 2%;
}

.hp_list li {
  width: 23.5%;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

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

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

.hp_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  transition: all 0.4s ease;
}

.hp_txt {}

.hp_txt h3 {
  color: #999;
  transition: all 0.4s ease;
  box-sizing: border-box;
  padding: 0 0.1rem;
}

.hp_name {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 0.1rem;
}

.hp_name span {
  width: 80%;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s ease;
}

.hp_name p {
  width: 0.36rem;
  height: 0.36rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  transition: all 0.4s ease;
}

.hp_name p iconify-icon {
  flex-shrink: 0;
  color: var(--i_color);
  font-size: 0.22rem;
}

.hp_txt h4 {
  border-top: 1px solid #d6d6d6;
  position: relative;
}

.hp_txt h4::before {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  top: -1px;
  left: 0;
}

.hp_txt h4 span {
  display: block;
  box-sizing: border-box;
  padding: 0.12rem 0.1rem;
  color: #333;
}

.hp_txt h4 i {
  color: red;
}

.hp_list li:hover {
  box-shadow: 0px 4px 10px 0px rgba(51, 51, 51, 0.1);
}

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

.hp_list li:hover .hp_txt h3 {
  color: #333;
}

.hp_list li:hover .hp_name span {
  color: var(--i_color);
}

.hp_list li:hover .hp_name p {
  background-color: var(--i_color);
}

.hp_list li:hover .hp_name p iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .hp_list {
    gap: 0.2rem 2%;
  }
  .hp_list li {
    width: 32%;
  }
  .hp_name span {
    width: 100%;
  }
  .hp_name p {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hp_list li {
    box-shadow: 0px 4px 10px 0px rgba(51, 51, 51, 0.1);
  }
}
@media screen and (max-width: 560px) {
  .hp_list li {
    width: 100%;
  }
}

/* 关于我们 */

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

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

.aboutUs_img {
  width: 42%;
}


.aboutUs_img img {
  width: 100%;
  height: 100%;
}

.aboutUs_txt {
  width: 49%;
  position: relative;
}

.aboutUs_txt img {
  width: 36%;
  position: absolute;
  right: 0;
  bottom: -1.2rem;
}

@media screen and (max-width: 1440px) {
  .aboutUs_txt img {
    width: 50%;
  }
}

@media screen and (max-width: 1024px) {
  .aboutUs_img {
    width: 100%;
  }
  .aboutUs_txt {
    width: 100%;
    order: -1;
  }
  .aboutUs_txt img {
    display: none;
  }
}

/* 公司优势 */

.Company_advantages {

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

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

.Ca_txt {
  width: 46%;
}

.Ca_img {
  width: 45%;
  position: relative;
  --Ab_height: 97.5%;
}





.v_img {

  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  transition: all 0.4s ease;
}

.v_btn {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}



@media screen and (min-width: 1025px) {}


.globalbox {
  width: 78%;
}

.globalbox img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.Ca_data {
  width: 19%;
  display: flex;
  flex-direction: column;
  gap: 0.28rem 0;
}

.Ca_data li {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 0.28rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.4s ease;
}

.Ca_data li h3 {
  display: flex;
  transition: all 0.4s ease;
}

.Ca_data li p {
  color: #666666;
}

.Ca_data li img {
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  transition: opacity 0.3s ease;
}

.Ca_data li img:nth-child(3) {
  opacity: 0;
  position: absolute;
  right: 0;
}

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

.Ca_data li:hover h3 {
  color: var(--i_color);
}

.Ca_data li:hover img:nth-child(3) {
  opacity: 1;
}

.Ca_data li:hover img:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .Ca_txt {
    width: 100%;
  }
  .Ca_img {
    width: 100%;
    margin-top: 0.3rem;
  }
  .Ca_img::before {
    padding-bottom: 60%;
  }
  .Ca_img::after {
    display: none;
  }
  .v_img {
    width: 100%;
    height: 100%;
  }
  .v_btn {
    width: 10%;
  }
  .Ca_data {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .Ca_data li {
    padding-bottom: 0;
    border: none;
  }
  .Ca_data li img {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .v_btn {
    width: 18%;
  }
  .Ca_data li {
    width: 50%;
    justify-content: center;
  }
}

/* 新闻 */

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

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

.i_news_list li {
  width: 32%;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.i_news_list li a {
  display: block;
  box-sizing: border-box;
  position: relative;
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(173, 173, 173, 0.3);
}

.i_news_list li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}

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

.i_news_list span {
  display: block;
  padding: 0 0.59rem 0.24rem 0.32rem;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  transition: all 0.4s ease;
}

.i_news_list span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.i_news_txt {
  box-sizing: border-box;
  padding: 0.24rem 0.59rem 0 0.32rem;
  z-index: 10;
  position: relative;
}

.i_news_txt h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  margin-bottom: 0.24rem;
}

.i_news_txt p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i_news_btn {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  border: 1px solid var(--i_color);
  color: var(--i_color);
  margin-top: 1.54rem;
  display:-webkit-flex; display:flex; flex-wrap:wrap;
  justify-content: center;
  align-items: center;
}

.i_news_btn iconify-icon {
  font-size: 0.2rem;
}

@media screen and (min-width: 1025px) {
  .i_news_list li:hover {
    transform: translateY(-0.3rem);
  }
}

.i_news_list li:hover a::before,
.i_news_list li:hover a img {
  opacity: 1;
}

.i_news_list li:hover span,
.i_news_list li:hover .i_news_txt h3,
.i_news_list li:hover .i_news_txt p {
  color: #fff;
}

.i_news_list li:hover span::before {
  background-color: rgb(255, 255, 255, 30%);
}

.i_news_list li:hover .i_news_btn {
  border-color: #fff;
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .i_news_list li {
    width: 100%;
  }
  .i_news_list li a::before,
  .i_news_list li a img {
    opacity: 1;
  }
  .i_news_list span,
  .i_news_list .i_news_txt h3,
  .i_news_list .i_news_txt p {
    color: #fff;
  }
  .i_news_list span::before {
    background-color: rgb(255, 255, 255, 30%);
  }
  .i_news_btn {
    border-color: #fff;
    background-color: var(--i_color);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .i_news_list li a {
    padding: 0.2rem 0;
  }
  .i_news_list span {
    padding: 0 0.2rem 0.1rem 0.2rem;
  }
  .i_news_txt {
    padding: 0.1rem 0.2rem 0 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .i_news_btn {
    width: 0.3rem;
    height: 0.3rem;
    margin-top: 0.2rem;
  }
  .i_news_btn iconify-icon {
    font-size: 0.12rem;
  }
}

/* 合作品牌 */

.Brands {}

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

.Brands_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 41%;
}

.Brands_list .swiper-slide img {
  width: 98%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

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

@media screen and (max-width: 1024px) {
  .Brands-pagination {
    display: block;
  }
  /* .Brands_list .swiper-slide {
    border: 1px solid #d6d6d6;
  } */
}

/* footer */

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

.ftBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.ftBox::before {
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  background-color: rgb(255, 255, 255, 20%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.ftBox img {
  height: 1.16rem;
}

.footer_middle {
  padding-bottom: 1.5rem;
}

.f_media {
  flex-shrink: 0;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.2rem;
}

.f_media>p {
  color: rgb(255, 255, 255, 60%);
}

.f_media dt {
  flex-shrink: 0;
  background: #454545;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_media a {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
}
.f_media iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.18rem;
  color: #fff;
}
.f_media dt:hover {
  background: #214b97;
}

.footer_middle {}

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

.fmc_info {
  width: 37.5%;
}

.fmc_info p,
.fmc_info a {
  color: rgb(255, 255, 255, 80%);
  margin-bottom: 0.18rem;
}

.f_navBox {}
.f_tit {
  font-size: 0.26rem;
  font-weight: bold;
  color: #fff;
}

.f_nav {}
.f_nav li {
  margin-bottom: 0.1rem;
}
.f_nav a {
  font-size: 0.2rem;
  color: rgb(255, 255, 255, 80%);
  transition: all 0.3s ease;
}

.f_products {
  width: 15%;
}
.f_products .f_nav {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.f_products .f_nav li {
  width: 34%;
}

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

.f_cr {
  background-color: var(--i_color);
  border-radius: 50px 50px 0px 0px;
}
.f_cr p,
.f_cr a {
  font-size: 16px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.5;
}
.f_cr a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {

  .ftBox img {
    height: 0.8rem;
  }
  .footer_middle {
    padding-bottom: 0.8rem;
  }
  .fmc_info {
    width: 100%;
  }
  .f_navBox,
  .f_products {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .f_media {
    width: 100%;
    margin-top: 0.2rem;
  }
  .f_cr {
    border-radius: 20px 20px 0px 0px;
  }
  .f_cr p,
  .f_cr a {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 560px) {
  .footer_middle {
    padding-bottom: 0.5rem;
  }
}
.inpage_banner {
  position: relative;
  height: 5rem;
  overflow: hidden;
}
.inpage_banner>img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inpage_banner {}
.inpage_banner p {
  font-size: 0.42rem;
  background: linear-gradient(to bottom, #fff 40%, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mbx {
  position: absolute;
  bottom: 0;
  left: 7.8vw;
  width: 100%;
}
/* Breadcrumb */
.in_position {
  width: 100%;
  padding: .2rem 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-clip-path: polygon(0.7% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0.7% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.in_position .wrap2 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  font-size: 15px;
  color: #fff;
  position: relative;
  line-height: 20px;
  text-transform: capitalize;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.in_position a:first-child {
  padding-left: 0.9rem;
  color: rgba(255, 255, 255, .5);

}
.in_position a:first-child::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 80px;
  height: 60px;
  background: var(--i_color) url('static/imgs/fz.png') no-repeat center;
  background-size: 0.23rem;
  -webkit-clip-path: polygon(17% 0%, 100% 0%, 83% 100%, 0% 100%);
  clip-path: polygon(17% 0%, 100% 0%, 83% 100%, 0% 100%);
}
.in_position a:not(:last-child):after {
  content: "/";
  margin: 0 4px;
  color: #fff
}
.in_position a:last-child {
  color: #fff !important
}
.in_position a:hover {
  color: var(--i_color)
}
@media screen and (max-width:1024px) {
  .in_position {
    padding: .16rem 0;
  }
  .in_position a {
    font-size: 14px
  }
}
@media screen and (max-width:560px) {
  .in_position {
    padding: .12rem 0;
  }
  .in_position a {
    font-size: 13px
  }
}

@media screen and (max-width:1440px) {


  .in_position a:first-child::before {
    clip-path: none;
    font-size: 0.2rem;

    background:  url('static/imgs/fz.png') no-repeat center;
  }
  .mbx {
    left: 0;
  }
  .inpage_banner p {
    font-size: 0.38rem;
  }
  .inpage_banner {
    height: 4rem;
  }
  .in_position {
    clip-path: none;
  }
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
  .inpage_banner p {
    font-size: 0.25rem;
  }
  .inpage_banner {
    height: 3rem;
  }
}
@media screen and (max-width:1024px) {
  .inpage_banner p {
    font-size: 0.2rem;
  }
  .inpage_banner {
    height: 2rem;
  }
}
@media screen and (max-width:768px) {

  .in_position a:first-child {
    padding-left: 0.6rem;
  }

  .in_position a:first-child::before {
    background-size: 0.15rem;
    width: 0.65rem;
    height: 0.25rem;
    top: 43%;
    left: 9px;
  }
}
@media screen and (max-width:560px) {}
/* ul>li左图右文 */
.pbox {}
.pbox .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pbox .wrap .left {
  width: 21%;
}
.pbox .wrap .left img {
  width: 100%;
}
.pbox .wrap .right {
  width: 75.5%;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .pbox .wrap .left {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .pbox .wrap .right {
    width: 100%;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
.p_nav_list {}
.p_nav_list .li2 {
  border-bottom: none;
}
.p_nav_list li {
  margin-bottom: 0.2rem;
}
.p_nav_list li {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
}
.p_nav_list .curr .cat_name {}
.p_nav_list .curr {
  /* background: var(--btn_color2); */
}
.p_nav_list .currs {
  background: transparent !important;
}
.p_nav_list .cat_name {
  height: 55px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  background: #eee;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 0.2rem;
}
.noborder a {
  border-top: 1px solid transparent !important;
}
.p_nav_list .cat_name:last-child {}
.p_nav_list li:last-child .cat_name {}
.p_nav_list .cat_name:nth-child(1) {}
.p_nav_list .cat_name:nth-child(1) {}
.p_nav_list .aa {
  background-color: #EEEEEE;
}
.p_nav_list .cat_name b {
  font-size: 0.18rem;
  color: #333;
  /* padding-left: 24px; */
  margin-right: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p_nav_list .curr .cat_name b {

  font-size: 0.26rem;
}
.p_nav_list .cat_name iconify-icon {
  font-size: 0.18rem;
  color: #333;
  flex-shrink: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  padding: 0.2rem 0.2rem 0.2rem 0.2rem;
  box-sizing: border-box;
}
.p_nav_list .curr .cat_name iconify-icon {
  transform: rotate(-180deg);
  color: #fff;
}
.p_nav_list .curr .cat_name {
  position: relative;
  height: 55px;
  background: var(--i_color);
}
.p_nav_list .curr .cat_name b {
  color: #fff;
}
.p_nav .img {
  width: 3.5%;
  position: absolute;
  right: 0;
  top: 0;
}
.p_nav img {
  width: 100%;
}
.p_nav_list dl {
  display: none;
}
.p_nav_list .curr dl {
  display: block !important;
  /* background: #fff; */
  overflow: hidden;
  padding-left: 0.15rem;
  box-sizing: border-box;

  background: var(--bjs);

  border-bottom: none;
}
.p_nav_list dt {
  position: relative;
  margin: 0.1rem 0;
}
.p_nav_list dt::before {
  /* content: ''; */
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: -.3rem;
  width: 0.3rem;
  height: 0.3rem;
  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="%23eec73e" d="M13 16.25a.74.74 0 0 1-.53-.22a.75.75 0 0 1 0-1.06l3-3l-3-3A.75.75 0 0 1 13.53 8l3.5 3.5a.75.75 0 0 1 0 1.06L13.53 16a.74.74 0 0 1-.53.25m-5.5 0A.74.74 0 0 1 7 16a.75.75 0 0 1 0-1l3-3l-3-3a.75.75 0 0 1 1-1l3.5 3.5a.75.75 0 0 1 0 1.06L8 16a.74.74 0 0 1-.5.25"%2F%3E%3C%2Fsvg%3E') no-repeat center;
  background-size: contain;
  transition: all .5s ease;
}
.p_nav_list dt a {
  display: flex;
  font-size: 16px;
  color: #666;
  padding: 0.15rem 0.3rem;
  box-sizing: border-box;
  position: relative;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  align-items: center;
  gap: 0 0.05rem;
}
.p_nav_list dt a iconify-icon {
  display: none;
}
.p_nav_list dt:hover iconify-icon {
  display: block;
}
.p_nav_list dt a.active iconify-icon {
  display: block;
}
.p_nav_list dt a::before {
  /* content: ''; */
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.2rem;
  height: 6px;
  width: 6px;
  border-radius: 100px;
  background: #999;
}
.p_nav_list .curr>a {
  border-bottom: 1px solid transparent;
}
.p_nav_list .curr {
  border-bottom: 1px solid var(--border_color);
  border-radius: 0;
}
.p_nav_list dt a.active {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  background: #fff;
  /* background: rgba(255, 0, 0, 0.12); */
}
.p_nav_list dt a:hover {
  /* padding: 0.15rem 0.5rem; */
  /* background: rgba(255, 0, 0, 0.12); */
  background: #fff;
}

.p_nav_list dt.active a {
  /* color: var(--i_color); */
}
.p_nav_list dt.active a::before {
  /* opacity: 1; */
}
.p_nav_list dt a.active {
  color: var(--i_color);

}
.p_nav_list dt a.active::before {
  background: var(--i_color);
}

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

.p_nav_list dt a:hover::before {
  background: var(--i_color);

}
.p_nav_list dt a:not(:last-child) {
  border-bottom: 1px solid #EEEEEE;
}
.p_nav_list .ccc.act {
  /* display: none; */
  position: relative;
  z-index: 99999;
}
.p_nav_list .ccc {
  /* display: none; */
}
.p_nav .i_line {
  width: 100%;
  height: 2px;
  color: grey;
}
.p_nav_list dt:hover a,
.p_nav_list dt.on a {
  /* padding-left: 20px; */
}
.zwbanner {
  height: 2rem;
}
@media screen and (max-width:1440px) {
  .p_nav_list dt a {
    font-size: 0.18rem;
  }
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {

  .p_nav_list .curr .cat_name b {
    font-size: 0.18rem;
  }
  .p_nav_list .cat_name {
    height: 48px;
  }
  .p_nav_list dt a {
    font-size: 0.14rem;
  }
  .zwbanner {
    height: 1.5rem;
  }
  .p_nav_list li {}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
.p_nav_list>p {
  padding-left: 0.3rem;
  position: relative;
  box-sizing: border-box;
}
.p_nav_list>p::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 6px;
  height: 80%;
  background: var(--i_color);
  border-radius: 1000px;
}
.p_listss {}
.p_listss .p3_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2%;
}
.p_listss .p3_list li {
  width: 32%;
  box-sizing: border-box;
}
.p_listss .p3_list li .img {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.p_listss .p3_list li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.p_listss .p3_list li .txt {
  padding: 0.15rem;
  box-sizing: border-box;
}
.p_listss .p3_list li .txt p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.p_listss .p3_list li .txt h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.p_listss .p3_list li:hover img {
  -webkit-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}
.p_listss .p3_list li:hover p {}

.w90 {
  width: 80%;
}
.red {
  color: #FF0000;
}
.mb10 {
  margin-bottom: 10px;

}
.vline {
  padding: 0.1rem 0.15rem;
  box-sizing: border-box;
  border-top: 1px solid var(--border_color);
  position: relative;
}

.vline::before {
  content: '';
  position: absolute;
  left: 0%;
  top: -1px;
  width: 30%;
  height: 1px;
  background: var(--i_color);

}


.p_listss .p3_list li:hover {
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;
}


.p_listss .p3_list li:hover p {
  color: #333;
}
.p_listss .p3_list li:hover h6 {
  color: var(--i_color);
}

.p_listss .p3_list li:hover .zfx {
  background: var(--i_color);
}

.p_listss .p3_list li:hover .zfx iconify-icon {
  color: #fff;

}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .p_listss .p3_list li {
    width: 100%;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}



/* .zfx */
.zfx {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.zfx iconify-icon {
  font-size: 0.24rem;
  color: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}


.zfx.br {
  border-radius: 1000px;
  overflow: hidden;
}


.zfx.line {
  background: transparent;
  border: 1px solid var(--i_color);
}

.zfx.line iconify-icon {
  color: var(--i_color);
}

.zfx.line:hover {
  background: var(--i_color);
}
.zfx.line:hover iconify-icon {
  color: #fff;
}


.zfx.center {
  margin: 0 auto;
}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .zfx {
    width: 30px;
    height: 30px;
  }
  .zfx iconify-icon {
    font-size: 0.18rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}


/* ----------------------- 热销产品  ---------- */
.hot_product {
  width: 100%;
  position: relative;
}

.hot_product .hp_b_Img {
  width: 25%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hot_product .hp_b_Img .hp_b_Img_bg {
  position: relative;
  padding-bottom: 100%;
}
.hot_product .hp_b_Img .hp_b_Img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: -30%;
}
.fff {
  color: #fff !important;
}

.hot_product .hp_top {
  width: 100%;
  display: flex;
  background: url(static/imgs/hbj.webp) no-repeat center;
  background-size: cover;
}

.hot_product .hp_top .wrap {
  display: flex;
}

/* 左侧选项盒子 */

.hot_product .hp_top .hp_t_left {
  width: 25%;
}

.hot_product .hp_top .hp_t_left .btn_box {
  margin-top: 0.2rem;
}

.hot_product .hp_top .hp_t_right {
  width: 70%;
  color: #fff;
  font-size: 0.18rem;
  line-height: 1.5;
}

.hot_product .hp_bottom {
  position: relative;
  z-index: 3;
}

.hot_product .hp_bottom .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.hot_product .hp_bottom .hp_b_left {
  width: 14%;

  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
  padding-bottom: 4rem;
}

.hot_product .hp_bottom .hp_b_left>li {
  width: 100%;
  color: var(--txt-color);
  font-size: 0.22rem;
  line-height: 2;
  padding: 0 0.25rem 0 0.2rem;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;

}

.hot_product .hp_bottom .hp_b_left .hp_Xactive {
  color: #fff;
  background: var(--i_color);
}

/* 右侧内容盒子 */

.hp_b_right {
  width: 76%;
  margin-top: -1.6rem;
}

.hp_b_right ul {
  width: 100%;
  display: none;
}

.hp_b_right ul>div {
  width: 100%;
  display: flex;
  gap: 0.25rem 3%;
  flex-wrap: wrap;
}

.hp_b_right .hp_Kactive {
  display: block;
}

.hp_b_right ul .hpb_r_item li {
  flex-shrink: 0;
  width: 31.33%;
  border: 1px solid rgba(51, 51, 51, 0.2);
  box-sizing: border-box;
  padding: 0.15rem 0.15rem;
  border-radius: 0.1rem;
  transition: all 0.3s;
}

.hp_b_right ul .hpb_r_item li .hpb_r_item_img {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}

.hp_b_right ul .hpb_r_item li .hpb_r_item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.08rem;
}

.hp_b_right ul .hpb_r_item li p {
  font-size: 0.22rem;
  color: var(--txt-color);
  font-weight: bold;
  position: relative;
  padding: 0.15rem 0;
  transition: all 0.4s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.hp_b_right ul .hpb_r_item li p::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.01rem;
  background: #d6d6d6;
  bottom: 0;
  transition: all 0.4s;
}

.hp_b_right ul .hpb_r_item li .hpb_r_item_txt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0.12rem 0.1rem;
  margin: 0.12rem 0 0 0;
  border-radius: 0.08rem;
  transition: all 0.4s;
}

.hp_b_right ul .hpb_r_item li .hpb_r_item_txt span {
  font-size: 0.18rem;
  color: var(--txt-color);
  transition: all 0.4s;
}

.hp_b_right ul .hpb_r_item li .hpb_r_item_txt iconify-icon {
  font-size: 0.2rem;
  color: var(--txt-color);
  transition: all 0.4s;
}

/* li 盒子hover */

.hp_b_right ul .hpb_r_item li:hover {
  border: 1px solid var(--i_color);
}

.hp_b_right ul .hpb_r_item li:hover p {
  color: var(--i_color);
}

.hp_b_right ul .hpb_r_item li:hover p::before,
.hp_b_right ul .hpb_r_item li:hover .hpb_r_item_txt {
  background: var(--i_color);
}

.hp_b_right ul .hpb_r_item li:hover .hpb_r_item_txt span,
.hp_b_right ul .hpb_r_item li:hover .hpb_r_item_txt iconify-icon {
  color: #fff;
}

/* 热销产品最底部 */

.hot_product .hp_b_b {
  width: 100%;
  background: url(static/imgs/fbj.webp) no-repeat center;
  background-size: cover;
}

.hot_product .hp_b_b p {
  background: var(--i_color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 0.3rem;
  font-weight: bold;
  text-align: right;
  margin-bottom: 0.4rem;
}

/* 搜索框 */

#searchforms2 {
  width: 50% !important;
  height: 66px !important;
  border: 1px solid var(--i_color);
  margin-left: auto;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  background-color: transparent !important;
}
#searchforms2 .top_search_ipt2 {
  width: 80%;
  height: 100%;
  border: none;
  padding-left: 0.2rem;
  box-sizing: border-box;
  background-color: transparent !important;
}
#searchforms2 .top_search_ipt2::placeholder {
  color: #999999;
  font-size: 0.18rem;
}
#searchforms2 .top_search_btn2 {
  width: 50px !important;
  height: 50px !important;
  background: url(static/imgs/searwebp.webp) no-repeat center;
  margin-left: auto;
  margin-right: 0.1rem;
  cursor: pointer;
  border-radius: 1000px;
}

@media screen and (max-width: 1250px) {
  #searchforms2 {
    height: 56px !important;
  }
}

/* 热销产品自适应 */
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1200px) {
  .hot_product .hp_b_Img {
    display: none;
  }
  .hot_product .hp_top .wrap {
    flex-wrap: wrap;
  }
  .hot_product .hp_top .hp_t_left {
    width: 100%;
    display: flex;
    align-items: end;
  }

  .hot_product .hp_top .hp_t_left .btn_box {
    width: max-content;
    height: max-content;
    margin-left: 0.6rem;
  }
  .hot_product .hp_top .hp_t_right {
    width: 100%;
    margin-top: 0.2rem;
  }

  .hot_product .hp_bottom .wrap {
    flex-direction: column;
  }
  .hot_product .hp_bottom .hp_b_left {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0;
    gap: 0.2rem 5%;
  }
  .hot_product .hp_bottom .hp_b_left>li {
    width: 16%;
  }
  .hp_b_right {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
    width: 100%;
  }
  .hot_product .hp_b_b p {
    text-align: center;
  }
  #searchforms2 {
    margin-left: auto;
    margin-right: auto;
    width: 80% !important;
  }
}
@media screen and (max-width: 1024px) {
  .titleBox h2,
  .titleBox h3 {
    font-size: 0.4rem;
  }
  .hot_product .hp_bottom .hp_b_left {
    gap: 0.2rem 6.6%;
  }
  .hot_product .hp_bottom .hp_b_left>li {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .titleBox h2,
  .titleBox h3 {
    font-size: 0.32rem;
  }
  .hot_product .hp_bottom .hp_b_left>li {
    font-size: 0.18rem;
  }
  .hp_b_right ul .hpb_r_item li {
    width: 48.5%;
  }
}
@media screen and (max-width: 560px) {
  .hp_b_right ul .hpb_r_item li .hpb_r_item_txt {
    border: 1px solid rgba(51, 51, 51, 0.2);
    padding: 0.05rem 0.06rem;
  }
  .hp_b_right ul .hpb_r_item li p {
    font-size: 0.18rem;
  }
  .hp_b_right ul .hpb_r_item li .hpb_r_item_txt span {
    font-size: 0.14rem;
  }
  .hot_product .hp_b_b p {
    font-size: 0.24rem;
    margin-bottom: 0.15rem;
  }
  #searchforms2 {
    height: 40px !important;
  }
  #searchforms2 .top_search_btn2 {
    width: 30px !important;
    height: 30px !important;
    background: url(static/imgs/search.webp) no-repeat center;
  }
  .hot_product .hp_bottom .hp_b_left {
    gap: 0.2rem 8%;
  }
  .hot_product .hp_bottom .hp_b_left>li {
    width: 28%;
    font-size: 0.14rem;
    text-align: center;
    padding: 0;
  }
}


/* Number of pages */
.in_page_box {
  text-align: center;
  overflow: hidden
}
.in_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.in_page li {
  min-width: .32rem;
  margin: 0 .04rem;
}
.in_page a,
.in_page span {
  display: block;
  padding: 0 .12rem;
  line-height: .32rem;
  font-size: .14rem;
  color: #666;
  background: var(--bjs);
  -webkit-border-radius: .05rem;
  border-radius: .05rem;
  overflow: hidden;
}
.in_page>i {
  margin-top: 0.14rem;
  width: 100%;
  font-size: 0.13rem;
  color: #888;
}
.in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
  border-color: var(--i_color) !important;
  background: var(--i_color);
  color: #FFF !important
}
@media screen and (max-width:1024px) {
  .in_page_box {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width:768px) {
  .in_page li {
    min-width: .28rem;
  }
  .in_page a,
  .in_page span {
    line-height: 0.28rem;
    padding: 0 .1rem;
  }
}
@media screen and (max-width:560px) {
  .in_page_box {
    margin-top: 0.3rem;
  }
}






.p_det {}
.p_det>.wrap {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  background: #fff;
}
/* atlas */
.p_atlas {
  width: 45.5%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.p_atlas::before {
  content: '';
  display: block;
  padding-bottom: 80%;
}
/* thumbnail */
.p_thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 15.5%;
  height: 100%;
}
.p_thumbnail_list {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden
}
.p_thumbnail_list .swiper-wrapper {
  flex-direction: column;
  position: relative;
  width: 100%;
}
.p_thumbnail_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;

  position: relative;
}

.p_thumbnail_list .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.p_thumbnail_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_v_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.32rem;
  height: 0.26rem;
  background: var(--i_color);
  -webkit-border-radius: .1rem;
  border-radius: .1rem;
  font-size: 0.12rem;
  color: #FFF;
}
.p_v_btn::before {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
}
.p_thumbnail_list .swiper-slide-thumb-active {
  border-color: var(--i_color2);
}

.p_thumbnail_list .swiper-slide-thumb-active::before {

  background: none;
}

.p_thumbnail_list .swiper-slide-thumb-active .img {
  opacity: 0;
}
.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.55rem;
  height: 0.55rem;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 3;
  background-color: var(--i_color);
  border-radius: 1000px;
}
.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.38rem;
  color: #fff
}
.p_atlas_list .swiper-button-disabled {
  cursor: not-allowed
}
.thumbnail-prev:hover iconify-icon,
.thumbnail-next:hover iconify-icon {}
.thumbnail-pagination {
  position: absolute;
  top: .1rem;
  right: .2rem;
  margin-top: 0.1rem;
  text-align: center;
}
.thumbnail-pagination,
.thumbnail-pagination span {
  font-size: 0.16rem;
  color: #666;
}
.thumbnail-pagination .swiper-pagination-current {
  font-size: 0.24rem;
}
.p_atlas_list {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 19%);
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
}
.p_atlas_list .swiper-slide {
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.p_atlas_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_atlas_list .swiper-slide iframe,
.p_atlas_list .swiper-slide video {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
@media screen and (max-width:1024px) {
  .p_det>.wrap {
    flex-wrap: wrap;
  }
  .p_atlas {
    width: 99%;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .p_atlas::before {
    display: none;
  }
  .p_thumbnail {
    margin-top: 0.2rem;
    position: relative;
    width: 100%;
  }
  .p_thumbnail_list {
    position: initial;
    top: initial;
    transform: none;
    height: auto;
  }
  .p_thumbnail_list .swiper-wrapper {
    display: -webkit-flex;
    display: flex;
    flex-direction: initial
  }
  .p_thumbnail_list .swiper-slide {
    border-width: 1px;
  }
  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
  .p_atlas_list {
    order: -1;
    position: relative;
    width: 100%;
  }
  .p_atlas_list .swiper-slide {
    height: 0;
    padding-bottom: 100%;
  }
  .p_atlas_list .swiper-slide iframe,
  .p_atlas_list .swiper-slide video,
  .p_atlas_list .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p_cont {
  width: 51%;
  box-sizing: border-box;
  position: relative;
}
.p_cont::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: var(--liner_color2);
}
.p_cont h1 {
  margin-bottom: 0.25rem;
  font-size: 0.26rem;
  font-weight: bold;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--border-color);
}
.p_des {
  box-sizing: border-box;
  color: #666;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.2rem;
}
.cs {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.xqbg {
  margin: 0.38rem 0;
}
.xg {
  margin-bottom: 0.4rem;
}
.xg p {
  font-size: 0.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.1rem;
}
.xg li {
  color: var(--i_color2);
}
.cs li {
  width: 24%;
  padding: 0.15rem 0;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
  margin: 0.3rem 0;
  cursor: pointer;
}
.cs li:hover img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.cs li:hover .img {
  background: var(--i_color);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.cs li .img {
  display: grid;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
  background: rgba(17, 177, 225, 0.1);
  margin: 0 auto;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.cs li p {
  color: var(--i_color);
  margin-top: 0.1rem;
}
.p_cont {
  position: relative;
  overflow: hidden;
}
.p_cont .imgs {
  position: absolute;
  bottom: 0;
  right: -0.2rem;
}
.p_cont .btnbox {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
}
.p_cont .btnbox .home_btn1 {}
.p_cont .btnbox .home_btn1 a {
  color: #666;

  border: 1px solid #666;

}
.p_cont .btnbox .home_btn1:hover {
  /* border-color: var(--i_color); */
}

.p_cont .btnbox .home_btn1:hover a {
  color: #fff;
  border-color: var(--i_color);

}
.p_cont .btnbox .btn {
  padding: 0.15rem 0.3rem;
  background: var(--i_color);
  color: #fff;
}
.p_cont .btnbox .btn b {
  color: var(--i_color);
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .p_cont {
    padding: 0.2rem;
  }
  .p_cont .imgs {
    height: 1cm;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
.p_table {
  margin: 0.2rem 0;
}
.p_menu {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.p_btn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 .3rem;
}
.p_btn li {
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #626262;
}
.p_btn li:first-child {
  background: var(--i_color);
}
.p_btn a {
  display: block;
  padding: .1rem .3rem;
  font-size: 0.18rem;
  color: #FFF;
  text-transform: uppercase;
}
.p_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 .1rem;
}
.p_share p {
  color: var(--i_color2);
}
.p_share iconify-icon {
  font-size: 0.24rem;
  color: var(--i_color);
  opacity: 0.1;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.p_share a:hover iconify-icon {
  color: var(--i_color);
  opacity: 1;
}
@media screen and (max-width:1024px) {
  .p_cont {
    width: 100%;
    margin: .4rem 0 0;
  }
  .p_cont h1 {
    font-size: 0.22rem;
  }
  .p_btn a {
    padding: 10px 20px;
    font-size: 16px;
  }
}
@media screen and (max-width:768px) {
  .p_cont h1 {
    font-size: 0.17rem;
  }
  .p_btn a {
    padding: 8px 20px;
    font-size: 14px;
  }
  .p_share {
    width: 100%;
    margin-top: 0.2rem;
  }
  .p_share p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width:560px) {
  .xg {
    margin-bottom: 0.15rem;
  }
}
.share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.2rem;
  align-items: center;
  border-top: 1px solid var(--border_color);
}
.share a {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: #D3D6E1;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}

.share iconify-icon {
  font-size: 0.2rem;
  color: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;

}
.share a:hover {
  background: var(--i_color);
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .share iconify-icon {
    font-size: 0.2rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}




.pbox2 .flexbox {
  border-bottom: 1px solid var(--border_color);
}

.pbox2 .flexbox .bt1 {
  padding: 5px 15px;
  display: table;
  box-sizing: border-box;
  background: var(--i_color);
}





.p_faq li {
  margin-bottom: 0.2rem;
}
.p_faq {
  background: #fff;
}
.p_faq li.curr {}
.p_faq li iconify-icon {
  font-size: 0.32rem;
}


.p_faq li .ic2 {
  display: none;

}


.p_faq li.curr .ic2 {
  display: block;
}

.p_faq li.curr .ic1 {
  display: none;
  color: #666;
}
.p_faq .tit {
  padding: .26rem 0.26rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}
.p_faq li.curr article {}
.p_faq .tit {
  background: var(--bjs);

}

.p_faq .tit.active {
  background-size: cover;
}

.p_faq .tit.active p {}
.p_faq .tit p {
  font-size: 0.22rem;
}

.p_faq .tit.active {
  border-bottom: 1px solid transparent;
}
.p_faq .txt span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  font-size: 0.2rem;
}
.p_faq em {
  flex-shrink: 0;
  display: table;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin-right: 0.25rem;
  text-align: center;
  font-size: 0.18rem;
  color: #FFF;
}
.p_faq .tit em {
  background: var(--i_color);
}
.p_faq .txt em {
  background: #fff;
  color: var(--i_color);
  background: #CBD0E7;
}

.oc0 {
  opacity: 0;
}

.p_faq .txt {
  margin-bottom: 0.1rem;
  padding: 0.26rem;
  padding-bottom: 0.35rem;
  box-sizing: border-box;
  display: none;

}
@media screen and (max-width:1024px) {

  .p_faq em {
    display: none;
  }
  .p_faq .tit p {
    font-size: 0.16rem;
  }
  .p_faq .tit {
    padding: .2rem 0.26rem;
  }
}


.n_t {}
.n_t .tag {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  align-items: center;
}
.n_t .tag p {}
.n_t .tag li a {
  padding: 10px 15px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  display: table;
  background: #fff;
}
.n_t .tag li a:hover {
  color: #fff;
  background: var(--i_color);
}
.n_p {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.n_p li a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.1rem;
}
.n_p .img {
  width: 0.38rem;
  height: 0.38rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border_color);
  border-radius: 100px;
  flex-shrink: 0;
}
.n_p .img iconify-icon {
  color: #666;
}
.n_p a:hover iconify-icon {
  color: #fff;
}
.n_p a:hover .zfx2 {
  background: var(--i_color);
}
.n_p a p {}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .desboxs {
    padding: 0.1rem;
  }
  .n_t .tag li a {
    padding: 0.05rem 0.1rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}






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

.related_list .swiper-slide .img {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.related_list .swiper-slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.related_list .swiper-slide .txt {
  padding: 0.2rem 0.15rem;
  box-sizing: border-box;

}

.related_list .swiper-slide .txt p {
	overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
}

.related_list .swiper-slide .txt h6 {
	overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;
}

.related_list .swiper-slide:hover img {
  -webkit-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}

.related_list .swiper-slide:hover {
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;
}

.related_list .swiper-slide:hover p {
  color: #333;
}
.related_list .swiper-slide:hover h6 {
  color: var(--i_color);
}

.related_list .swiper-slide:hover .zfx {
  background: var(--i_color);
}

.related_list .swiper-slide:hover .zfx iconify-icon {
  color: #fff;

}


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

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

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





/* .zfx */
.zfx2 {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.zfx2 iconify-icon {
  font-size: 0.24rem;
  color: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}


.zfx2.br {
  border-radius: 1000px;
  overflow: hidden;
}


.zfx2.line {
  background: transparent;
  border: 1px solid var(--i_color);
}

.zfx2.line iconify-icon {
  color: var(--i_color);
}

.zfx2.line:hover {
  background: var(--i_color);
}
.zfx2.line:hover iconify-icon {
  color: #fff;
}


.zfx2.center {
  margin: 0 auto;
}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .zfx2 {
    width: 30px;
    height: 30px;
  }
  .zfx2 iconify-icon {
    font-size: 0.18rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}











/* ul>li左图右文 */
.iaboxs {
  background: url(static/imgs/abj.webp) no-repeat center;
  background-size: cover;
}
.iaboxs .wraps {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.iaboxs .wraps .left {
  width: 51%;
}

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

.iaboxs .wraps .right {
  width: 45.5%;
}

@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {

  .iaboxs .wraps .left {
    width: 100%;
    margin-bottom: 0.2rem;
  }

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









.video_boxs {}


.video_boxs {
  position: relative;
}

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

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


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


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












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


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

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

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


@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
  .fz64 {
    font-size: 0.4rem;
  }

}
@media screen and (max-width:1024px) {

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

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

  .numlist li img {
    height: 0.3rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}

.aboutAdv {}
.aboutAdv_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}
.aboutAdv_cont>img {
  flex-shrink: 0;
  width: 52%;
  min-height: 100%;
  object-fit: cover;
}
.aboutAdv_box {
  margin-left: auto;
  width: 45%;
}
.aboutAdv_list {
  padding-bottom: 40px;
  position: relative;
}
.aboutAdv_t {
  width: 100%;
  position: relative;
  z-index: 3;
}
.aboutAdv_t>img {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 999;
}
.aboutAdv_t::before {
  content: '';
  display: block;
  padding-bottom: 88.8%;
}
.aboutAdv_t dt {
  opacity: 0;
  position: absolute;
  top: 4%;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: .5rem;
  background: #F4F4F4;
  -webkit-border-radius: .2rem;
  border-radius: .2rem;
  box-shadow: 0 4px 10px rgb(0 0 0 / 15%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.aboutAdv_item.active {
  opacity: 1;
  top: 0;
  z-index: 2;
}
.aboutAdv_item .num {
  position: absolute;
  top: .3rem;
  right: .3rem;
  font-size: 140px;
  color: #999;
  opacity: 0.2;
  font-family: 'dn';
}
.aboutAdv_item img {
  width: 0.6rem;
  height: 0.6rem;
  object-fit: contain;
}
.aboutAdv_item h5 {
  display: table;
  padding-bottom: 0.14rem;
  margin: .3rem 0;
  font-size: 0.3rem;
  color: #222;
  font-weight: bold;
  position: relative;
}
.aboutAdv_item h5::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--i_color);
}
.aboutAdv_item span {
  display: block;
  max-height: 46%;
  overflow-y: auto;
}
.aboutAdv_item span::-webkit-scrollbar {
  width: 2px;
  height: 8px
}
.aboutAdv_a {
  position: absolute;
  left: 0.5rem;
  bottom: 1rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 .3rem;
}
.aboutAdv_a i {
  font-size: 0.16rem;
  color: var(--i_color);
}
.aboutAdv_a iconify-icon {
  font-size: 0.2rem;
  color: var(--i_color);
}
.aboutAdvShadow1,
.aboutAdvShadow2 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 50%;
  background: #F4F4F4;
  -webkit-border-radius: .2rem;
  border-radius: .2rem;
  box-shadow: 0 4px 10px rgb(0 0 0 / 15%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.aboutAdvShadow1 {
  width: 90%;
  bottom: 0.2rem;
  z-index: 2;
}
.aboutAdvShadow2 {
  width: 80%;
  bottom: 0;
}
.aboutAdv_pagination {
  margin-top: 0.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 .12rem;
}
.aboutAdv_pagination span {
  width: .46rem;
  height: .06rem;
  background: #DDD;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.aboutAdv_pagination i {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--i_color);
}
.aboutAdv_pagination .active i {
  opacity: 1;
}
@media screen and (max-width:1024px) {
  .aboutAdv_t>img {
    display: none;
  }
  .aboutAdv_t dt {
    padding: 30px;
  }
  .aboutAdv_item img {
    width: 30px;
    height: 30px;
  }
  .aboutAdv_item h5 {
    font-size: 20px;
  }
  .aboutAdv_a {
    left: 30px;
    bottom: 20px;
  }
}
@media screen and (max-width:768px) {
  .aboutAdv_cont {
    gap: 40px 0;
  }
  .aboutAdv_cont>img {
    width: 100%;
  }
  .aboutAdv_box {
    width: 100%;
  }
  .aboutAdv_item img {
    width: 20px;
    height: 20px;
  }
  .aboutAdv_item h5 {
    margin: 10px 0;
    padding-bottom: 6px;
    font-size: 17px;
  }
}
@media screen and (max-width:560px) {}




/* 环境展示 */
.environment_box {}
.environment_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.32rem;
}

/* =================================================================== */
.environment_list_big {
  flex-shrink: 0;
  width: 44%;
  overflow: hidden;
}
.environment_list_big .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.environment_list_big .swiper-slide {
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
.environment_list_big .swiper-slide-active {
  z-index: 3;
}

.e_pic {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.e_pic::before {
  content: "";
  display: block;
  padding-bottom: 66%;
}
.e_pic::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #000);
}
.e_pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.environment_list_big figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.environment_list_big p {
  padding: 0.3rem 0.4rem;
  font-size: 0.24rem;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.environment_list_big .swiper-slide:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

/* =================================================================== */
.environment_list_thumbnail {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.environment_list_thumbnail .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.environment_list_thumbnail .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.environment_list_thumbnail .e_pic::before {
  padding-bottom: 60%;
}
.environment_list_thumbnail .e_pic::after {
  display: none;
}
.environment_list_thumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment_list_thumbnail figcaption {
  display: none;
}
.environment_list_thumbnail .swiper-slide:hover img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.environment_control {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.3rem;
}
.environment_control>i {
  width: 5rem;
  height: 1px;
  background: #ccc;
}
.environment-pagination {
  font-size: 0.2rem;
  color: #999;
}
.environment-pagination .swiper-pagination-current {
  font-size: 0.28rem;
  color: var(--i_color);
}
.environment-navigation {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.22rem;
}
.environment-navigation>div {
  width: 0.44rem;
  height: 0.44rem;
  border: 1px solid #cbcbcb;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.environment-navigation>div iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.26rem;
  color: var(--txt_color2);
}
.environment-navigation>div:hover {
  background: var(--i_color);
  border-color: var(--i_color);
}
.environment-navigation>div:hover iconify-icon {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .environment_control>i {
    width: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .environment_list_big p {
    padding: 20px;
    font-size: 16px;
  }

  .environment-pagination {
    font-size: 15px;
  }
  .environment-pagination .swiper-pagination-current {
    font-size: 20px;
  }
  .environment-navigation>div {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .environment_cont {
    flex-wrap: wrap;
    gap: 0 0;
  }
  .environment_list_big {
    display: none !important;
  }

  .environment_list_thumbnail {
    width: 97%;
  }
  .environment_list_thumbnail .e_pic::before {
    padding-bottom: 66%;
  }
  .environment_list_thumbnail .e_pic::after {
    display: block;
  }
  .environment_list_thumbnail figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
  }
  .environment_list_thumbnail p {
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .environment_control {
    position: relative;
    margin-top: 20px;
  }
  .environment_control>i {
    width: 20%;
  }
}
@media screen and (max-width: 560px) {
  .environment_control {
    gap: 0 20px;
  }
  .environment-navigation {
    gap: 0 10px;
  }
  .environment-navigation>div {
    width: 32px;
    height: 32px;
  }
}
.sboxs_swipers {
  position: relative;
}
.sboxs_swipers .sboxs_list {
  position: relative;
  overflow: hidden
}
.sboxs_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.sboxs_list .swiper-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sboxs_list .swiper-slide .img {
  width: 56%;
  position: relative;
  overflow: hidden;
  border: 1px solid #d8d8d8;
}
.sboxs_list .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.sboxs_list .swiper-slide .txt {
  width: 43%;
  padding: 0.2rem 0.3rem;
  box-sizing: border-box;
  background: var(--bjs);
}
.sboxs_list .swiper-slide .txt p {}
.sboxs_list .swiper-slide .txt h6 {}
.sboxs_list .swiper-slide:hover img {
  -webkit-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}
.fz140 {
  font-size: 1.4rem;
  color: rgba(35, 48, 106, 0.05);
}
.sboxs-prev,
.sboxs-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: .4rem;
  height: .4rem;
  background: var(--i_color);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none
}
.sboxs-prev {
  left: 5%;
}
.sboxs-next {
  right: 5%;
}
.sboxs-prev iconify-icon,
.sboxs-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #FFF;
}
.sboxs_list .swiper-button-disabled {
  cursor: not-allowed
}
.sboxs-prev:hover,
.sboxs-next:hover {
  background: var(--i_color);
}
.sboxs-pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center
}
.sboxs-pagination .swiper-pagination-bullet {
  width: .08rem;
  height: .08rem;
  display: inline-block;
  margin: 0 6px;
  background: #CCC;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.sboxs-pagination .swiper-pagination-bullet-active {
  background: var(--i_color)
}
@media screen and (max-width:1440px) {
  .fz140 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width:1366px) {
  .fz140 {
    font-size: 1rem;
  }
}
@media screen and (max-width:1200px) {
  .fz140 {
    font-size: 0.6rem;
  }
  .sboxs-prev,
  .sboxs-next {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  .sboxs_list .swiper-slide .img {
    width: 100%;
  }
  .sboxs_list .swiper-slide .txt {
    width: 100%;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
/* .zfx */
.zfx3 {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.zfx3 iconify-icon {
  font-size: 0.18rem;
  color: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.zfx3.br {
  border-radius: 1000px;
  overflow: hidden;
}
.zfx3.line {
  background: #fff;
  border: 1px solid var(--i_color);
}
.zfx3.line iconify-icon {
  color: var(--i_color);
}
.zfx3.line:hover {
  background: var(--i_color);
}
.zfx3.line:hover iconify-icon {
  color: #fff !important;
}
.zfx3.center {
  margin: 0 auto;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .zfx3 {
    width: 30px;
    height: 30px;
  }
  .zfx3 iconify-icon {
    font-size: 0.18rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
.hbox {
  position: relative;
}
.hoverbox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0%;
  position: relative;
  overflow: hidden;
}
.hoverbox .tit {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0.6rem;
  z-index: 99;
}
.hoverbox li {
  width: 25%;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.hoverbox li .img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  z-index: 9;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.hoverbox li .img:hover::before {
  height: 0;
}
.hoverbox li:hover h6 {
  display: block;
}
.hoverbox li {
  position: relative;
}
.hoverbox li .txt {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0.2rem;
  width: 100%;
  padding: 0 0.2rem;
  box-sizing: border-box;
  z-index: 10;
}
.hoverbox li h6 {
  display: none
}
.hoverbox li p {}
.hoverbox>img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hoverbox li:last-child {
  border-right: none;
}
.hoverbox li .img {
  position: relative;
  padding-bottom: 167%;
  overflow: hidden;
}
.hoverbox li .img>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 0;
}
.hoverbox li .txt {
  padding: 0 0.6rem;
  text-align: center;
  box-sizing: border-box;
}
.hoverbox li .txt .yxbtn {
  margin: 0 auto;
}
.hoverbox li .img:hover .txt {
  text-align: start;
}
@media screen and (max-width:1440px) {
  .hoverbox li .txt {
    transform: translate(0);
  }
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .tit h6 br {
    display: none;
  }
  .hoverbox li .txt {
    padding: 0 0.1rem;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 5px;
  }
  .hoverbox li .txt img {
    height: 0.4rem;
  }
  .hoverbox li .img:hover .txt {
    text-align: center;
  }
  .hoverbox li .img:hover h6 {
    display: none;
  }
  .hoverbox .tit {
    display: none;
  }
  .hoverbox li .txt p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0.1rem;
  }
  .hoverbox {}
  .hoverbox li {
    /* width: 100%; */
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
/* global */
.global_bac {
  box-sizing: border-box;
  padding: 0.8rem 0;
}
.global {}
/*  */
.gol_partner_box {
  margin-top: 0.4rem;
}
.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;
}
.gol_partner_list li {
  width: 6.5rem;
  max-width: 80%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition-property: transform;
  border-radius: 0.05rem;
  overflow: hidden;
}
.gol_partner_list li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .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: 66%;
}
.gol_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gol_partner_list li p {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.15rem 4%;
  background: rgba(255, 255, 255, .8);
  font-size: 0.16rem;
  color: #333;
}
.gol_partner_list .swiper-slide-active p {
  opacity: 1;
}
@media screen and (max-width:1400px) {}
@media screen and (max-width:1200px) {
  .global_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width:1024px) {}
@media screen and (max-width:960px) {}
@media screen and (max-width:767px) {
  .gol_partner_list li p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width:560px) {}
@media screen and (max-width:425px) {}
/* 指示器 */
.gol_partner .pt-pagination {
  background: #666;
  position: relative;
  width: 2rem;
  height: 0.03rem;
  display: block;
  margin-top: 0.6rem;
  margin-left: auto;
  margin-right: auto;
}
.gol_partner .pt-pagination span {
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: -0.03rem;
  width: 100%;
  border-radius: 0.03rem;
  height: 0.08rem;
  transform: translate(0, -50%);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
  .gol_partner .pt-pagination {
    height: 0.03rem;
    margin-top: 0.4rem;
  }
  .gol_partner .pt-pagination span {
    top: -0.02rem;
    border-radius: 0.02rem;
    height: 0.06rem;
  }
}
@media screen and (max-width:959px) {}
@media screen and (max-width:767px) {
  .gol_partner .pt-pagination {
    height: 0.01rem;
  }
  .gol_partner .pt-pagination span {
    top: -0.02rem;
    height: 0.04rem;
  }
}
@media screen and (max-width:560px) {}
/* 购买流程 */
.process_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 4%;
}
.process_list dt {
  width: 100%;
  position: relative;
}
.process_list dt:nth-child(even) {
  margin-top: 0.8rem;
}
.process_list dt::before {
  content: "";
  position: absolute;
  right: -0.7rem;
  top: 0.2rem;
  width: 1rem;
  height: 0.5rem;
}
.process_list dt:nth-child(odd)::before {
  background: url(static/imgs/111.png) no-repeat center;
  background-size: contain;
}
.process_list dt:nth-child(even)::before {
  background: url(static/imgs/222.png) no-repeat center;
  background-size: contain;
}
.process_list dt:last-child::before {
  display: none;
}
.process_list .icon {
  margin: 0 auto;
  margin-bottom: 0.4rem;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.process_list .icon img {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.process_list .icon::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.process_list .icon iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: var(--i_color3);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.process_list span {}
.process_list span p {
  font-size: 0.2rem;
  font-weight: bold;
  color: #333;
}
.process_list span h6 {
  margin-top: 0.18rem;
  font-size: 20px;
  color: #666;
}
.process_list dt:hover .icon img {
  filter: brightness(1000%) grayscale(100%);
}
.process_list dt:hover .icon::before {
  right: initial;
  left: 0;
  width: 100%;
}
.process_list dt:hover .icon iconify-icon {
  color: #fff;
}
.process_list dt:hover p {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .process_list dt .tc {
    text-align: start;
  }
  .process_list dt .icon img {
    height: 0.3rem;
  }
  .process_list {
    flex-wrap: wrap;
    gap: 0.24rem 0;
  }
  .process_list dt {
    margin-top: 0 !important;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .process_list dt::before {
    display: none;
  }
  .process_list .icon {
    flex-shrink: 0;
    width: 0.7rem;
    height: 0.7rem;
    margin: 0 0;
  }
  .process_list .icon iconify-icon {
    font-size: 0.36rem;
  }
  .process_list span {
    margin-left: 0.2rem;
  }
  .process_list span h6 {
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .process_list span p {
    font-size: 17px;
  }
}
@media screen and (max-width: 560px) {
  .process_list .icon {
    width: 0.5rem;
    height: 0.5rem;
  }
  .process_list .icon iconify-icon {
    font-size: 0.26rem;
  }
  .process_list span p {
    font-size: 16px;
  }
  .process_list span h6 {
    font-size: 14px;
  }
}
/* news */
.newscate_one {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.newscate_one a {
  display: table;
  padding: 0.15rem;
  width: 209px;
  text-align: center;
  border: 1px solid var(--i_color);
  font-weight: bold;
}

.newscate_one a:nth-child(1){
  border-right: none;
}

.newscate_one a:hover {
  background: var(--i_color);
  color: #fff;
}
.newscate_one a.active {
  background: var(--i_color);
  color: #fff;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .newscate_one a {
    width: 15%;
    padding: 0.05rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
.nlists {}
.nlists .p3_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2%;
}
.nlists .p3_list li {
  width: 32%;
  box-sizing: border-box;
  position: relative;
  border: 2px solid transparent;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.nlists .p3_list li .img {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
}
.nlists .p3_list li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.nlists .p3_list li .txt {
  padding: 0.15rem;
  box-sizing: border-box;
}
.nlists .p3_list li .txt p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.nlists .p3_list li .txt h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.nlists .p3_list li:hover img {
  -webkit-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}
.nlists .p3_list li:hover {
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;
}
.nlists .p3_list li:hover p {}
.wz4d {
  color: #4d4d4d;
  border-bottom: 2px solid var(--border_color);
}
.nlists .p3_list li .txt2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.nlists .p3_list li:hover {
  border: 1px solid var(--i_color);
}
.nlists .p3_list li:hover .txt2 {
  opacity: 1;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .nlists .p3_list li {
    width: 100%;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
/* ul>li左图右文 */
.csbox {}
.csbox .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: var(--bjs);
}
.csbox .wrap .left {
  width: 59.5%;
  padding: 0.6rem 0.7rem;
  box-sizing: border-box;
}
.csbox .wrap .left img {
  width: 100%;
}
.csbox .wrap .right {
  width: 40.5%;
}
.csbox .wrap .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .csbox .wrap .left {
    padding: 0.2rem;
  }
  .csbox .wrap .left {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .csbox .wrap .right {
    width: 100%;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
#wpforms-122 {
  --wpforms-field-size-input-height: 48px;
  --wpforms-button-background-color: var(--i_color);
  --wpforms-button-border-color: var(--i_color);
  --wpforms-page-break-color: var(--i_color);
}
#wpforms-122 {
  margin: 0;
  padding: 0;
}
#wpforms-form-122 {
  width: 100%;
  position: relative;
}

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

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

#wpforms-122 .wpforms-field-container .wpforms-field>input,
#wpforms-122 .wpforms-field-container textarea,
#wpforms-122 .wpforms-field-container select,
#wpforms-122 .wpforms-field-container .choices {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0;
  height: var(--wpforms-field-size-input-height);
}


#wpforms-122 .wpforms-field-container .wpforms-field>input::placeholder {
  color: #333;
}
#wpforms-122 .wpforms-field-container .wpforms-field>input,
#wpforms-122 .wpforms-field-container textarea,
#wpforms-122 .wpforms-field-container select {
  padding-left: 14px;
  padding-right: 14px;
  background: #fff;
  height: var(--wpforms-field-size-input-height);
  border: 1px solid var(--border_color);
}
#wpforms-122 .wpforms-field-container textarea {
  height: 1.5rem;
}
#wpforms-122 .wpforms-field-container fieldset ul {
  padding: 0 2px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
#wpforms-122 .wpforms-field-container select {
  cursor: pointer;
}
#wpforms-122 .wpforms-field-container .wpforms-datepicker-wrap {
  width: 310px;
}
#wpforms-122 .wpforms-field-container .wpforms-datepicker-wrap input {
  width: 100%;
  max-width: 100%;
}
#wpforms-122 .wpforms-field-container .wpforms-datepicker-clear {
  right: 10px;
}
#wpforms-122 .wpforms-field-container em.wpforms-error,
#wpforms-122 .wpforms-field-container .mailcheck-error {
  position: absolute;
  margin: 0 0;
  bottom: -2px;
}

#wpforms-122 .wpforms-field-container {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#wpforms-122-field_1-container,
#wpforms-122-field_2-container,
#wpforms-122-field_3-container,
#wpforms-122-field_4-container {
  width: 48.5% !important;
}
#wpforms-122 .wpforms-submit-container {
  width: 100%;
  margin: 0 auto;
}
#wpforms-122 .wpforms-submit-container button {
  width: 100%;
  background: var(--i_color);
  color: #fff;
  cursor: pointer;
  height: var(--wpforms-field-size-input-height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#wpforms-122 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
  display: none;
}
#wpforms-122 .wpforms-submit-container button:hover {
  opacity: 0.5;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {}
@media screen and (max-width:768px) {
  #wpforms-122 .wpforms-field-container>.wpforms-field {
    width: 100% !important;
    margin-bottom: 0.1rem;
  }
  #wpforms-122 {
    --wpforms-field-size-input-height: 42px;
  }
}
@media screen and (max-width:560px) {
  #wpforms-122 .wpforms-submit-container {
    width: 140px;
  }
  #wpforms-122 .wpforms-submit-container button {
    padding: 0;
  }
}
.iclist {}
.iclist ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}
.iclist ul li {
  width: 24%;
  box-sizing: border-box;
  padding: 0.3rem 0.2rem;
  position: relative;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  align-items: start;
}
.iclist ul li img {
  height: 0.5rem;
}
.iclist ul li span {
  width: 68%;
}
.iclist ul li iconify-icon {
  color: var(--i_color);
}
.iclist ul li p {
  margin-bottom: 0.05rem;
}
.iclist ul li h6 {}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .iclist ul {}
  .iclist ul li {
    width: 48%;
    box-sizing: border-box;
    padding: 0.2rem;
  }

  .iclist ul li span {
    width: 100%;
    margin-top: 0.2rem;
  }

  .iclist ul li .img {
    height: 0.3rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}

/* .zfx */
.zfx4 {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #e9e9e9;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.zfx4 iconify-icon {
  font-size: 0.6rem;
  color: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.zfx4.br {
  border-radius: 1000px;
  overflow: hidden;
}
.zfx4.line {
  background: transparent;
  border: 1px solid var(--i_color);
}
.zfx4.line iconify-icon {
  color: var(--i_color);
}
.zfx4.line:hover {
  background: var(--i_color);
}
.zfx4.line:hover iconify-icon {
  color: #fff;
}
.wz3d {
  color: #3d3d3d;
}
.zfx4.center {
  margin: 0 auto;
}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
  .zfx4 {
    width: 30px;
    height: 30px;
  }
  .zfx4 iconify-icon {
    font-size: 0.18rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}
.cmap {
  height: 6.2rem;
}
.cmap {}
.cmap iframe {
  height: 100%;
  width: 100%;
}

.cmap img {
	height: 100%;
	width: 100%;
  }
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {

  .cmap {
    height: 3.5rem;
  }
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}


















.hide {
	display: none;
}





/* search results list */

.in_search_list {

	margin-bottom: 0.2rem;

}

.in_search_list a {

	background: #F5F5F5 !important;

}

.in_search_list {

	overflow: hidden;

}

.in_search_list li {

	box-sizing: border-box;

	border: 1px solid var(--border_color);

	margin-bottom: 0.26rem;

}

.in_search_list a {

	display: -webkit-flex;

	display: flex;

	flex-wrap: wrap;

	align-items: center;

	padding: .2rem;

}

.in_search_list .img {

	width: 2.2rem;

	position: relative;

	overflow: hidden
}

.in_search_list .img::before {

	content: "";

	display: block;

	padding-bottom: 80%
}

.in_search_list .img img {

	position: absolute;

	top: 50%;

	left: 50%;

	transform: translate(-50%, -50%);

	width: 100%;

	height: 100%;

	object-fit: cover
}

.in_search_list .txt {

	width: calc(100% - 2.6rem);

	margin-left: auto;

	box-sizing: border-box;

}

.in_search_list h2 {

	font-size: 0.18rem;

	color: #212121;

	font-weight: bold;

	position: relative;

	overflow: hidden;

	text-overflow: ellipsis;

	display: -webkit-box;

	-webkit-box-orient: vertical;

	-webkit-line-clamp: 2;

}

.in_search_list h6 {

	margin: .1rem 0;

	font-size: 0.14rem;

	color: #666;

	overflow: hidden;

	text-overflow: ellipsis;

	display: -webkit-box;

	-webkit-box-orient: vertical;

	-webkit-line-clamp: 2;

}

.in_search_list i {

	display: inline-block;

	padding: .06rem .1rem;

	font-size: 0.13rem;

	color: var(--i_color);

	background: #EDEDED;

	-webkit-border-radius: .04rem;

	border-radius: .04rem;

	box-sizing: border-box;

}

.in_search_list li:hover {

	border-color: var(--i_color);

}

.in_search_list li:hover h2 {

	color: var(--i_color);

}

@media screen and (max-width:1024px) {

	.in_search_list h2 {

		font-size: 0.15rem;

	}

	.in_search_list h6 {

		font-size: 0.13rem;

	}

	.in_search_list i {

		font-size: 0.12rem;

	}

}

@media screen and (max-width:768px) {

	.in_search_list li {

		padding-bottom: 0.2rem;

		margin-bottom: 0.2rem;

		border: none;

		border-bottom: 1px solid var(--border_color);

	}

	.in_search_list a {

		padding: 0;

	}

	.in_search_list .img {

		width: 1.2rem;

	}

	.in_search_list .txt {

		width: calc(100% - 1.5rem);

	}

	.in_search_list .txt i {

		display: none;


	}


	.in_search_list h2 {

		font-size: 0.14rem;

	}

}

@media screen and (max-width:560px) {}


.vd_box {

	display: none;

	position: fixed;

	top: 52%;

	left: 50%;

	transform: translate(-50%, -50%);

	z-index: 2014;

	width: 60%;

	max-height: 90%;

}

.i_a_btn {

	background: var(--liner_color);

}

.vd_box::before {

	content: '';

	display: block;

	padding-bottom: 56.25%;

}

.close_v {

	position: absolute;

	top: -.2rem;

	right: -.2rem;

	width: 0.4rem;

	height: 0.4rem;

	background: var(--i_color);

	z-index: 2;

	-webkit-border-radius: 50%;

	border-radius: 50%;

	cursor: pointer;

}

.close_v::before {

	content: '+';

	position: absolute;

	top: 50%;

	left: 50%;

	font-size: 0.44rem;

	color: #FFF;

	-webkit-transform: translate(-50%, -50%) rotate(45deg);

	transform: translate(-50%, -50%) rotate(45deg)
}

.vd_box iframe {

	position: absolute;

	top: 0;

	right: 0;

	width: 100%;

	height: 100%;

	background: #000;

	object-fit: contain;

}

@media screen and (max-width:1024px) {

	.iabout .tit h6 {

		margin: 0 auto;

	}

	.iabout .tit p {

		text-align: center;

		margin: 0 auto;

	}

	.i_ab .btn {

		margin: 0 auto;

	}

	.vd_box {

		width: 80%;

	}

	.close_v::before {

		font-size: 0.4rem;

	}

}

@media screen and (max-width:768px) {
	.vd_box {
		width: 88%;
	}
	.close_v {
		top: -.15rem;
		right: -.15rem;
		width: 0.3rem;
		height: 0.3rem;
	}
	.close_v::before {
		font-size: 0.3rem;
	}
}
.i_tit {
	text-align: center;
}
.menu-item-object-language_switcher .trp-flag-image{
	display: none;
}
article h2{
  color: var(--i_color);
}
.titBox .fz18{
  text-transform: capitalize;
}
.swiper-slide video{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}