@charset "utf-8";

:root {
  --i_color: #e60012;

  /* 全局颜色 */

  --i_color2: #212121;

  /* 副颜色 */

  --top_h: 1.1rem;

  --header_info_h: 0.3rem;

  /* 顶部信息 */

  /* 导航 */

  --header_height: 1.1rem;

  /* 导航总高度 */

  --header_top: 0.4rem;
  --border_color: #333;
}

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

@media screen and (max-width: 1024px) {
  :root {
    --top_h: 0.6rem;

    --header_height: 0.6rem;

    --header_top: 0rem;
  }
}

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

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

.wrap {
  width: 94vw;

  max-width: 1400px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_h {
  width: 94vw;

  max-width: 1696px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 13.59%;
}

.wrap_r {
  display: block;

  box-sizing: border-box;

  padding-right: 13.59%;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

@media screen and (min-width: 1921px) {
  .wrap {
    width: 85vw;

    max-width: none;
  }

  .wrap_h {
    width: 85vw;

    max-width: none;
  }
}

@media screen and (max-width: 1024px) {
  .wrap_l {
    padding-left: 3%;
  }

  .wrap_r {
    padding-left: 3%;
  }
}

@media screen and (max-width: 560px) {
  .wrap_l {
    padding: 3%;
  }
}

/* --------------------占位盒子----------------- */

.header_heightbox {
  top: var(--header_height);

  height: calc(var(--header_height));

  display: none;
}

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

.pd_header_box {
  display: block;
}

/* ----------------------------public_title------------------------------- */

.public_title {
}

.public_title h3 {
  color: var(--i_color2);

  font-weight: bold;

  margin-bottom: 0.25rem;

  text-align: center;

  position: relative;
}

.public_title h4 {
  color: #666666;

  text-align: center;
}

/* -----------------public_white_title---------------- */

.public_white_title h3,
.public_white_title h4 {
  color: #fff;
}

/* ---------------------public_btn------------------ */

.public_btn {
  display: flex;
}

.public_btn a {
  font-size: 0.2rem;

  color: var(--i_color);

  background: rgba(230, 0, 18, 0.16);

  padding: 0.13rem 0.12rem 0.13rem 0.24rem;

  box-sizing: border-box;

  border-radius: 2.3rem;

  display: flex;

  align-items: center;

  gap: 0.16rem;

  transition: all 0.45s ease;

  position: relative;

  overflow: hidden;
}

.public_btn a::before {
  content: "";

  display: block;

  width: 0%;

  height: 100%;

  background: var(--i_color);

  position: absolute;

  top: 0;

  left: 0;

  border-radius: 2.3rem;

  z-index: 0;

  transition: all 0.45s ease;
}

.public_btn_txt,
.public_btn_icon {
  position: relative;

  z-index: 1;
}

.public_btn_icon {
  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: var(--i_color);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.55s ease;
}

.public_btn_icon iconify-icon {
  font-size: 0.16rem;

  color: #fff;

  transition: all 0.55s ease;
}

.public_btn a:hover {
  color: #fff;
}

.public_btn a:hover::before {
  width: 100%;
}

.public_btn a:hover .public_btn_icon {
  background: #fff;
}

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

@media screen and (max-width: 1024px) {
  .public_btn a {
    font-size: 0.16rem;

    padding: 0.1rem 0.1rem 0.1rem 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .public_btn a {
    font-size: 0.14rem;

    padding: 0.08rem 0.08rem 0.08rem 0.16rem;
  }

  .public_btn_icon {
    width: 0.2rem;

    height: 0.2rem;
  }

  .public_btn_icon iconify-icon {
    font-size: 0.14rem;
  }
}

/* ----------------public_white_btn--------------------- */

.public_white_btn {
}

.public_white_btn a {
  background: #fff;

  color: var(--i_color2);
}

/* ------------------public_red_bg---------------- */

.public_red_bg {
  display: flex;
}

.public_red_bg a {
  font-size: 0.2rem;

  color: #fff;

  background: rgba(230, 0, 18, 0.16);

  padding: 0.13rem 0.12rem 0.13rem 0.24rem;

  box-sizing: border-box;

  border-radius: 2.3rem;

  display: flex;

  align-items: center;

  gap: 0.16rem;

  transition: all 0.45s ease;

  position: relative;

  overflow: hidden;
}

.public_red_bg a::before {
  content: "";

  display: block;

  width: 100%;

  height: 100%;

  background: var(--i_color);

  position: absolute;

  top: 0;

  right: 0;

  border-radius: 2.3rem;

  z-index: 0;

  transition: all 0.45s ease;
}

.public_btn_txt,
.public_btn_icon {
  position: relative;

  z-index: 1;
}

.public_btn_icon {
  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.55s ease;
}

.public_btn_icon iconify-icon {
  font-size: 0.16rem;

  color: var(--i_color);

  transition: all 0.55s ease;
}

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

.public_red_bg a:hover::before {
  width: 0%;
}

.public_red_bg a:hover .public_btn_icon {
  background: var(--i_color);
}

.public_red_bg a:hover .public_btn_icon iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .public_red_bg a {
    font-size: 0.16rem;

    padding: 0.1rem 0.1rem 0.1rem 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .public_red_bg a {
    font-size: 0.14rem;

    padding: 0.08rem 0.08rem 0.08rem 0.16rem;
  }

  .public_btn_icon {
    width: 0.2rem;

    height: 0.2rem;
  }

  .public_btn_icon iconify-icon {
    font-size: 0.14rem;
  }
}

/* --------------------------------------------------header----------------------------------------- */

header {
  position: fixed;

  top: var(--header_top);

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--header_height);

  transition: all 0.35s ease;

  background: transparent;
}

header.fixedHeader {
  background: #fff;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

  top: 0;
}

.top_cont {
  background: transparent;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  height: var(--top_h);
}

.top_cont .top {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: 100%;

  background: #fff;

  border-radius: 0.12rem;

  padding: 0 0.6rem;

  box-sizing: border-box;
}

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

	.top_cont{background: #373737;}

} */

/* logo */

.logo {
  display: -webkit-flex;

  height: 27.47%;
}

.logo a {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;

  position: relative;
}

.logo img {
  object-fit: contain;

  transition: transform 0.35s ease;

  transform-origin: left center;
}

header.fixedHeader .logo img {
  transform: scale(0.9);
}

@media screen and (max-width: 1440px) {
  .logo {
    height: 24%;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    display: -webkit-flex;

    height: 30%;
  }

  .top_cont .top {
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-radius: 0;
  }
}

@media screen and (max-width: 560px) {
  .logo img {
    max-height: 0.38rem;
  }

  .logo {
    padding-right: 0rem;

    border-right: none;
  }

  .top_cont .top {
    padding: 0 0.2rem;
  }
}

/* 导航 */

@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 0.7rem;

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.6rem;

    z-index: 2014;

    height: 100%;
  }

  .i_nav > li {
    position: relative;

    display: flex;

    align-items: center;
  }

  .i_nav > li::before {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    /* display: none; */
  }

  .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 > .active::before {
    width: 100%;
  }

  .i_nav > li > a {
    display: block;

    font-size: 0.2rem;

    color: #333;

    /* line-height: var(--top_h); */

    line-height: 0.32rem;

    white-space: nowrap;

    box-sizing: border-box;
  }

  .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 > .active > a {
    /* background-color: var(--i_color); */

    color: var(--i_color);
  }

  .i_nav > li > .sub-menu {
    display: none;

    position: absolute;

    left: 0;

    min-width: 1.6rem;

    background: #fff;

    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);

    font-size: 0;

    top: 100%;
  }

  .nav_dropdown_menu1 > .sub-menu,
  .nav_dropdown_menu2 > .sub-menu,
  .nav_dropdown_menu3 > .sub-menu,
  .nav_dropdown_menu4 > .sub-menu {
    display: none !important;
  }

  .i_nav > li > .sub-menu li {
    position: relative;

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

  .i_nav > li > .sub-menu a {
    display: block;

    padding: 0 0.16rem;

    font-size: 0.15rem;

    color: #333;

    line-height: 0.36rem;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    position: relative;
  }

  .i_nav > li > .sub-menu > li:hover > a {
    background: var(--i_color);

    color: #fff;
  }

  .i_nav .sub-menu .sub-menu {
    position: absolute;

    top: 0;

    left: 100%;

    background: #979797;

    min-width: 1.4rem;
  }

  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: rgb(255 255 255 / 15%);
  }

  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;

    color: #fff;
  }

  .i_nav .sub-menu .sub-menu li:hover {
    background: #acacac;
  }
}

@media screen and (max-width: 1440px) {
  .i_nav > li > a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1366px) {
  .i_nav > li > a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.38rem;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;

    position: fixed;

    top: calc(var(--header_height));

    left: 101%;

    width: 100%;

    width: 100vw;

    height: calc(100vh - var(--header_height));

    background: #fff;

    overflow-y: auto;

    z-index: 2;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    overflow: hidden;
  }

  .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: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);

    background-size: 0.24rem;
  }

  .i_nav > li > a {
    padding: 0 3%;

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

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

  .i_nav > li > .sub-menu li {
    position: relative;
  }

  .i_nav .sub-menu a {
    padding: 0 0.4rem;

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

  /* .i_nav .sub-menu li:not(:last-child) {

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

	} */

  .i_nav > li > .sub-menu b {
    position: absolute;

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;

    background-size: 0.16rem;
  }

  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;

    background-size: 0.16rem;
  }

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

  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 768px) {
  .i_nav {
    top: calc(var(--header_height));
  }
}

/* 移动端导航按钮 */

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

.top_r {
  --size: 0.24rem;
}

.top_r {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  margin-left: auto;

  gap: 0.26rem;

  height: 100%;
}

.top_r i {
  display: block;

  width: 1px;

  height: 0.25rem;

  background-color: #333;

  margin: 0 0.2rem;
}

@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;

    gap: 0.15rem;
  }
}

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

@media screen and (max-width: 560px) {
  .top_r {
    gap: 0.15rem;
  }
}

.separator_line {
  width: 0.01rem;

  height: 30%;

  display: flex;

  align-items: center;

  background: rgba(85, 72, 66, 0.4);
}

.search_cont,
.top_language {
  height: var(--top_h);

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  text-align: center;

  position: relative;
}

/* .top_search_ico iconify-icon,

.top_language_btn iconify-icon {

  font-size: var(--size);

  color: #333;

  cursor: pointer;

}



.top_search_ico iconify-icon:hover,

.top_search_ico.on iconify-icon,

.top_language_btn.on iconify-icon {

  color: var(--i_color);

} */

.top_search_ico,
.top_language_btn {
  display: flex;

  align-items: center;
}

.top_search_ico img,
.top_language img {
  width: 0.24rem;

  height: 0.24rem;

  object-fit: contain;
}

.top_language {
  position: relative;
}

.top_language_btn {
  padding: 0rem 0.18rem 0rem 0;

  position: relative;

  cursor: pointer;
}

.top_language_btn::before {
  content: "";

  position: absolute;

  top: 50%;

  right: 0;

  width: 0;

  height: 0;

  transform: translateY(-50%);

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;

  border-top: 6px solid #554842;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.top_language_btn.on::before {
  -webkit-transform: rotate(-180deg);

  transform: rotate(-180deg);

  border-top-color: var(--i_color);
}

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

.top_language_btn span {
  margin-left: 0.05rem;

  display: flex;

  align-items: center;
}

.language_list {
  opacity: 0;

  visibility: hidden;

  position: absolute;

  top: calc(var(--header_height) + 0.2rem);

  right: 0;

  background: #fff;

  min-width: 1.2rem;

  z-index: 2016;

  box-shadow: 0 8px 0.1rem rgb(0 0 0 / 10%);

  -webkit-transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    top 0.35s ease;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    top 0.35s ease;

  padding: 0.16rem 0.2rem;

  text-align: left;

  transform: translateY(-0.12rem);

  pointer-events: none;
}

.language_list.on {
  opacity: 1;

  visibility: visible;

  top: var(--top_h);

  transform: translateY(0);

  pointer-events: auto;
}

.language_list dt > h6 {
  margin-bottom: 0.08rem;

  font-size: 0.17rem;

  font-weight: bold;

  white-space: nowrap;
}

.curr_lang {
  margin-bottom: 0.12rem;

  padding-bottom: 0.12rem;

  border-bottom: 1px solid #eee;
}

.lang_list a {
  display: block;

  padding: 0.06rem 0;
}

.lang_list span img {
  display: none;
}

.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;

  font-size: 14px;

  position: relative;
}

.lang_list .trp-ls-language-name::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.18rem;

  height: 0.18rem;

  box-sizing: border-box;

  border: 1px solid #aaa;

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.lang_list .trp-ls-language-name::after {
  display: none;

  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0.06rem;

  width: 0.06rem;

  height: 0.06rem;

  background: var(--i_color);

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after {
  display: block;
}

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

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

	.language_list dt>h6{font-size: 16px;}

}

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

	.top_language_btn p{display: none;}

	.top_language_btn iconify-icon{display: block;}

	.language_list dt>h6{font-size: 15px;}

}

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

	.language_list dt>h6{font-size: 14px;}

	.language_list{-webkit-border-radius:6px; border-radius:6px;}

	.lang_list .trp-ls-language-name{font-size: 13px;}

} */

@media screen and (max-width: 1024px) {
  .top_search_ico img,
  .top_language img {
    width: 0.2rem;

    height: 0.2rem;
  }
}

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

@media screen and (max-width: 560px) {
  .top_search_ico img,
  .top_language img {
    width: 0.16rem;

    height: 0.16rem;
  }
}

/* search */

.top_search_btn {
  display: none;
}

.search_cont {
  --search_height: 0.46rem;

  position: relative;
}

/* .search_cont::before {

  content: "";

  position: absolute;

  top: 50%;

  right: -0.15rem;

  transform: translateY(-50%);

  width: 2px;

  height: 60%;

  background-color: #d1d4d5;

} */

.search_cont form {
  width: 2rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  box-sizing: border-box;

  overflow: hidden;

  background: transparent;

  border-radius: 1.08rem;

  opacity: 1;

  box-sizing: border-box;

  border: 1px solid rgba(33, 33, 33, 0.2);
}

.search_ipt {
  width: calc(100% - var(--search_height));

  height: var(--search_height);

  box-sizing: border-box;

  padding: 0 0.1rem 0 0.2rem;

  background: none;

  font-size: 0.18rem;

  color: #333;
}

.search_ipt::placeholder {
  font-size: 0.18rem;

  color: #999;

  font-weight: 400;

  opacity: 1;
}

.search_btn {
  font-size: 0;

  width: var(--search_height);

  height: var(--search_height);

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23333333' fill-opacity='0.5' d='M456.69%20421.39L362.6%20327.3a173.81%20173.81%200%200%200%2034.84-104.58C397.44%20126.38%20319.06%2048%20222.72%2048S48%20126.38%2048%20222.72s78.38%20174.72%20174.72%20174.72A173.81%20173.81%200%200%200%20327.3%20362.6l94.09%2094.09a25%2025%200%200%200%2035.3-35.3ZM97.92%20222.72a124.8%20124.8%200%201%201%20124.8%20124.8a124.95%20124.95%200%200%201-124.8-124.8Z'/%3E%3C/svg%3E")
    no-repeat center;

  background-size: 0.24rem;

  cursor: pointer;
}

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

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

  .search_cont {
    padding: 0.14rem 0;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .top_search_btn iconify-icon {
    font-size: 20px;
  }

  .top_search_btn {
    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    cursor: pointer;

    position: relative;
  }

  .top_search_btn iconify-icon {
    font-size: 0.2rem;

    color: #333;
  }

  .search_cont {
    --search_height: 0.4rem;
  }

  .search_cont {
    opacity: 0;

    visibility: hidden;

    position: fixed;

    top: calc(var(--header_height) + 0.2rem);

    left: 0;

    width: 100%;

    background: #f5f6f7;

    box-sizing: border-box;

    padding: 0.2rem 0;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    height: auto;
  }

  .search_cont.on {
    opacity: 1;

    visibility: visible;

    top: calc(var(--header_height) + var(--header_top));
  }

  .search_cont form {
    width: 90%;

    max-width: 500px;

    margin-left: auto;

    margin-right: auto;

    border-color: #979797;
  }

  .search_ipt {
    font-size: 13px;
  }

  .search_btn {
    background-color: transparent;
  }

  .search_ipt::placeholder {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 768px) {
  .search_cont.on {
    top: var(--header_height);
  }
}

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

/* -------------------------------------------footer------------------------------------- */

footer {
  background: url(https://lingjuimg.com/wp-content/uploads/FuLaiGe/2026/08/footer_bg.png)
    no-repeat center;

  background-size: cover;

  position: relative;
}

.footer_logo {
  width: 20%;

  position: absolute;

  left: 50%;

  top: 0;

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

.footer_section .wrap {
  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  position: relative;
}

.fs_title {
  display: flex;

  justify-content: center !important;
}

.fs_title h3 {
  font-weight: bold;

  color: var(--i_color2);
}

.Fs_left {
  width: 32.21%;

  box-sizing: border-box;
}

.Fs_left h4 {
  font-weight: bold;
}

.footer_contact {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  gap: 0.3rem 0;
}

.footer_contact li {
  width: 100%;

  display: flex;
}

.footer_contact iconify-icon {
  font-size: 0.22rem;

  margin-right: 0.12rem;
}

.fc_li_box {
  display: flex;

  gap: 0.1rem;

  flex-wrap: wrap;
}

.footer_contact a,
.footer_contact p {
  font-size: 0.18rem;

  transition: all 0.4s ease;
}

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

.Fs_right {
  width: 35.28%;

  box-sizing: border-box;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  gap: 0.2rem 2%;
}

.Fs_right h4 {
  font-weight: bold;

  color: var(--i_color2);
}

.Fsr_nav {
  display: flex;

  flex-direction: column;

  gap: 0.2rem 0;
}

.Fsr_nav a {
  font-size: 0.2rem;

  transition: all 0.4s ease;
}

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

.footer_social_media {
  width: 15.2%;

  box-sizing: border-box;

  position: absolute;

  left: 39%;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.footer_social_media h4 {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 2.2rem;
}

.footer_social_media h4 img {
  display: block;

  width: 100%;

  object-fit: contain;
}

.fsm_list {
  display: flex;

  justify-content: center;

  gap: 0 1.5vw;
}

.fsm_list a {
  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: transform 0.35s ease;
}

.fsm_list iconify-icon {
  font-size: 0.3rem;

  color: #969696;

  transition: all 0.4s ease;
}

.fsm_list a:hover {
  transform: translateY(-0.06rem);
}

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

.fm_QR {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.fm_QR img {
  width: 1.2rem;

  display: block;

  margin-bottom: 7px;
}

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

  .Fs_right {
    display: none;
  }

  .footer_contact {
    justify-content: flex-start;
  }

  .footer_contact a,
  .footer_contact p {
    font-size: 0.16rem;
  }

  .footer_social_media {
    width: 100%;

    position: static;

    left: auto;

    top: auto;

    transform: none;

    margin-top: 0.2rem;
  }

  .footer_social_media h4 {
    text-align: left;
  }

  .fsm_list {
    justify-content: flex-start;

    margin: 0.2rem 0;
  }

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

  .fm_QR {
    width: max-content;

    align-items: flex-start;
  }

  .fm_QR p {
    margin-left: auto;

    margin-right: auto;
  }
}

@media screen and (max-width: 560px) {
  .footer_logo {
    width: 45%;
  }

  .footer_contact {
    gap: 0.2rem 0;
  }

  .footer_contact li {
    width: 100%;
  }

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

  .footer_contact a,
  .footer_contact p {
    font-size: 0.14rem;
  }

  .fsm_list {
    gap: 0 3vw;
  }

  .fm_QR img {
    width: 0.8rem;
  }

  .footer_social_media h4 {
    width: 1.5rem;
  }

  .fs_title {
    margin-bottom: 0.2rem !important;
  }

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

.footer_bottom {
}

.f_cr {
  border-top: 1px solid rgb(102, 102, 102, 0.18);
}

.f_cr p,
.f_cr a {
  font-size: 0.14rem;

  color: #666;
}

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

@media (prefers-reduced-motion: reduce) {
  .fsm_list a:hover {
    transform: none;
  }

  .hwcu_panel,
  .hwcu_pic img,
  .hwcu_tab_indicator,
  .in_grid_show .img img {
    transition: none !important;
  }

  .video_btn:hover::after {
    animation: none;
  }

  .hl_logobox:hover img {
    transform: none;
  }
}

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

/* -----------------------------------home_banner------------------------------- */

.banner {
  width: 100%;

  overflow: hidden;

  position: relative;
}

.banner .swiper-container {
  margin: 0 auto;

  position: relative;

  overflow: hidden;

  list-style: none;

  padding: 0;
}

.banner .swiper-slide {
  /* height: 0; */

  padding-bottom: 47%;

  /* 设置比例 */

  position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.banner-pagination {
  display: block;

  text-align: center;

  bottom: 0.3rem !important;

  position: absolute;

  left: 50% !important;

  transform: translate(-50%, 0);

  z-index: 3;
}

.banner-pagination .swiper-pagination-bullet {
  width: 0.14rem;

  height: 0.14rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: #ccc;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.banner-button-prev,
.banner-button-next {
  display: block;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.6rem;

  height: 0.6rem;

  cursor: pointer;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  z-index: 3;
}

.banner-button-prev {
  left: -0.8rem;
}

.banner-button-next {
  right: -0.8rem;
}

.banner-button-prev iconify-icon,
.banner-button-next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.4rem;

  color: #666;
}

.banner-button-prev:hover iconify-icon,
.banner-button-next:hover iconify-icon {
  color: var(--i_color);
}

.banner:hover .banner-button-prev {
  left: 0;
}

.banner:hover .banner-button-next {
  right: 0;
}

.b_text1 {
  position: absolute;

  top: 24.55%;

  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  text-align: center;

  width: 57.91%;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.b_text1 h3 {
  color: var(--i_color);

  display: flex;

  align-items: center;

  gap: 0.2rem;

  margin-bottom: 0.25rem;

  font-weight: bold;
}

.b_text1 h3 p {
  color: #fff;

  padding: 0.1rem 0.12rem;

  box-sizing: border-box;

  background: var(--i_color);

  font-weight: bold;
}

.b_text1 h4 {
  font-weight: bold;

  color: #fff;

  margin-bottom: 0.2rem;
}

.b_text1 h5 {
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);

  color: #fff;

  font-weight: bold;
}

.b_text2 {
  position: absolute;

  top: 25%;

  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  text-align: center;

  width: 50%;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.b_text2 h3 {
  color: #fff;

  font-weight: bold;

  margin-bottom: 0.2rem;
}

.b_text2 h4 {
  color: #fff;
}
.b_text3 {
  position: absolute;
  top: 73%;
  left: 5%;
  z-index: 3;

  width: fit-content;
  display: flex;
  flex-direction: column;
}
.b_text3 h3 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.b_text3 h4 {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .b_text1 {
    width: 60%;
  }
}

@media screen and (max-width: 1366px) {
  .b_text1 {
    width: 62%;
  }
}

@media screen and (max-width: 1200px) {
  .b_text1 {
    top: 32%;
  }

  .b_text2 {
    top: 28%;
  }
}

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

  .banner-pagination {
    bottom: 0.1rem !important;
  }

  .b_text1 {
    top: 22%;
  }

  .b_text2 {
    top: 20%;
  }
}

@media screen and (max-width: 768px) {
  .b_text1 h5 {
    display: none;
  }

  .b_text1 {
    top: 25%;
  }

  .b_text1 h3 p {
    padding: 0.08rem 0.1rem;
  }
}

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

  .b_text2 {
    display: none;
  }
  .b_text3 {
    display: none;
  }
  .banner-pagination .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
  }
}

/* -----------------------------------home_banner_bottom_card------------------------------- */

.home_banner_bottom_card {
  background: #f6f6f6;

  padding: 0.3rem 0;
}

.hbbc_maxbox {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.hbbc_item {
  flex: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.16rem;

  position: relative;
}

.hbbc_item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 0.02rem;

  height: 0.4rem;

  background: var(--i_color2);

  opacity: 0.5;
}

.hbbc_icon {
  width: 0.48rem;

  flex-shrink: 0;

  display: block;

  position: relative;

  overflow: hidden;
}

.hbbc_icon::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.hbbc_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hbbc_item p {
  font-weight: bold;

  color: var(--i_color2);
}

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

  .hbbc_maxbox {
    flex-wrap: wrap;
  }

  .hbbc_item {
    flex: 0 0 50%;

    box-sizing: border-box;

    padding: 0.2rem 0.1rem;
  }

  .hbbc_item:nth-child(2n)::after {
    display: none;
  }

  .hbbc_item:nth-child(-n + 2)::after {
    height: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .hbbc_item {
    flex: 0 0 100%;

    justify-content: flex-start;

    padding: 0.1rem 0;
  }

  .hbbc_item:not(:last-child)::after {
    display: none;
  }

  .hbbc_icon {
    width: 0.35rem;
  }

  .home_banner_bottom_card {
    padding: 0.1rem;
  }
}

/* ------------------------热门产品------------------ */

.home_customer_favorites {
  position: relative;
}

.cf_bg {
  /* position: absolute;

  bottom: 0;

  left: 0; */
}

.hcf_maxbox {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hcf_title h4 {
  width: 70%;
}
.hcf_contain {
  position: relative;
  padding: 0 0.8rem;
  box-sizing: border-box;
}

.hcf_list {
  position: relative;

  overflow: hidden;

  box-sizing: border-box;
}

.hcf_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.hcf_list li {
  flex-shrink: 0;

  position: relative;
}

.hcf_item {
  display: block;

  background: #f5f5f5;

  padding: 0.24rem 0.24rem 0.3rem;

  box-sizing: border-box;

  text-align: center;

  transition: all 0.35s ease;
}

.hcf_pic {
  /* width: 4.02rem; */

  max-width: 100%;

  margin: 0 auto;

  display: block;

  position: relative;

  overflow: hidden;

  background: #fff;

  box-sizing: border-box;
}

.hcf_pic::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.hcf_pic img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hcf_item:hover .hcf_pic img {
  transform: scale(1.1);
}

.hcf_name {
  margin: 0.25rem 0 0.2rem;

  border-bottom: 0.01rem solid rgba(51, 51, 51, 0.2);

  padding-bottom: 0.2rem;

  transition: all 0.35s ease;
}

.hcf_name_txt {
  font-weight: bold;

  color: var(--i_color2);

  display: block;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: all 0.35s ease;
}

.hcf_btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 1.6rem;

  height: 0.4rem;

  padding: 0 0.24rem;

  border: 0.01rem solid var(--i_color2);

  border-radius: 0.4rem;

  color: var(--i_color2);

  box-sizing: border-box;

  transition: all 0.35s ease;
}

.hcf_item:hover .hcf_name_txt,
.hcf_item:hover .hcf_btn {
  color: var(--i_color);
}

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

.hcf_prev,
.hcf_next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.5rem;

  height: 0.5rem;

  background: #cfcfcf;

  border-radius: 50%;

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  transition: all 0.35s ease;
}

.hcf_prev {
  left: 0%;
}

.hcf_next {
  right: 0%;
}

.hcf_prev iconify-icon,
.hcf_next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.24rem;

  color: #fff;
}

.hcf_list .swiper-button-disabled {
  cursor: not-allowed;

  opacity: 0.7;
}

.hcf_prev:hover,
.hcf_next:hover {
  background: var(--i_color);
}

.hcf_pagination {
  display: none;

  margin-top: 0.3rem;

  text-align: center;
}

.hcf_pagination .swiper-pagination-bullet {
  width: 0.08rem;

  height: 0.08rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: #ccc;

  border-radius: 50%;

  outline: none;

  cursor: pointer;
}

.hcf_pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.hcf_bottom_btn {
  display: flex;

  justify-content: center;
}

@media screen and (max-width: 1440px) {
  .hcf_title h4 {
    width: 80%;
  }
}

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

  .hcf_prev,
  .hcf_next {
    width: 0.4rem;

    height: 0.4rem;
  }
  .hcf_title h4 {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .hcf_item {
    padding: 0.2rem 0.2rem 0.3rem;
  }

  .hcf_prev {
    left: 0.05rem;
  }

  .hcf_next {
    right: 0.05rem;
  }
}

@media screen and (max-width: 560px) {
  .hcf_prev,
  .hcf_next {
    top: 33%;
  }
  .hcf_contain {
    padding: 0;
  }
}

/* ------------------------Our Product Lines------------------ */

.home_our_product_lines {
  width: 100%;
}

.hopl_maxbox {
  overflow: hidden;
}

.hopl_title h4 {
}

.hopl_grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  grid-template-rows: 4.42rem 5.84rem;

  gap: 0.27rem 0.24rem;
}

.hopl_item {
  display: block;

  position: relative;

  overflow: hidden;
}

.hopl_item_large {
  grid-column: span 3;
}

.hopl_item_small {
  grid-column: span 2;
}

.hopl_pic {
  width: 100%;

  height: 100%;

  display: block;

  position: absolute;

  left: 0;

  top: 0;

  overflow: hidden;
}

.hopl_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hopl_item::after {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.55);

  opacity: 0;

  transition: all 0.35s ease;

  z-index: 1;
}

.hopl_info {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 0.3rem;

  box-sizing: border-box;

  text-align: center;

  opacity: 0;

  transition: all 0.35s ease;
}

.hopl_info h5 {
  font-weight: bold;

  color: #fff;

  margin-bottom: 0.16rem;
}

.hopl_info p {
  color: #fff;

  margin-bottom: 0.24rem;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.hopl_btn {
  display: inline-flex;

  align-items: center;

  gap: 0.12rem;

  background: #fff;

  color: var(--i_color2);

  padding: 0.1rem 0.1rem 0.1rem 0.2rem;

  border-radius: 2rem;

  font-weight: bold;

  box-sizing: border-box;
}

.hopl_btn_icon {
  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: var(--i_color);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;
}

.hopl_btn_icon iconify-icon {
  font-size: 0.16rem;

  color: #fff;
}

.hopl_item:hover::after,
.hopl_item:hover .hopl_info {
  opacity: 1;
}

.hopl_item:hover .hopl_pic img {
  transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .hopl_grid {
    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: auto;

    gap: 0.2rem;
  }

  .hopl_item_large,
  .hopl_item_small {
    grid-column: span 1;
  }

  .hopl_item {
    padding-bottom: 64.24%;
  }

  .hopl_item_small {
    padding-bottom: 129.49%;
  }
}

@media screen and (max-width: 768px) {
  .hopl_grid {
    grid-template-columns: 1fr;
  }

  .hopl_item {
    padding-bottom: 64.24%;
  }

  .hopl_item_small {
    padding-bottom: 129.49%;
  }
}

/* ----------------关于我们------------- */

.home_about_us {
}

.hau_maxbox {
  overflow: hidden;
}

.about_us_bac {
  box-sizing: border-box;

  position: relative;

  z-index: 2;

  overflow: hidden;
}

.about_us_bacImg {
  position: absolute;

  width: 100%;

  height: auto;

  bottom: 0;

  left: 0;

  z-index: -1;
}

.about_us {
}

.about_us_box {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;
}

.about_us_left {
  width: 42%;

  box-sizing: border-box;

  padding: 0 3%;
}

.about_us_left h3 {
  color: var(--i_color2);

  font-weight: bold;

  margin-bottom: 0.2rem;
}

.about_us_left h4 {
  display: flex;

  align-items: center;

  color: #666666;

  margin-bottom: 0.4rem;
}

.about_us_left h4 img {
  width: 2rem;

  object-fit: contain;

  margin-right: 0.2rem;
}

.about_us_left h5 {
  color: #666666;
}

.about_us_left h5 a {
  color: var(--i_color);

  transition: all 0.35s ease;
}

.about_us_left h5 a:hover {
  text-decoration: underline;
}

.about_us_right {
  width: 55.86%;

  position: relative;

  cursor: pointer;
}

.about_us_right::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #000000;

  opacity: 0.38;

  z-index: 1;

  pointer-events: none;
}

.about_us_right::after {
  content: "";

  display: block;

  padding-bottom: 63.5%;
}

.about_us_right .aur_img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.aur_corner {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 0.54rem;

  height: 0.54rem;

  background: var(--i_color);

  z-index: 2;
}

.video_btn {
  width: 1.86rem;

  height: 1.86rem;

  position: absolute;

  left: 50%;

  top: 50%;

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

  cursor: pointer;

  z-index: 2;

  transition: transform 0.35s ease;
}

.video_btn::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 50%;

  pointer-events: none;
}

@keyframes videoBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.38);
  }

  100% {
    box-shadow: 0 0 0 0.22rem rgba(230, 0, 18, 0);
  }
}

.video_btn::before {
  content: "";

  display: block;

  width: 100%;

  height: 100%;

  background: url(static/images/video_btn.webp) no-repeat center;

  background-size: contain;

  position: absolute;

  left: 50%;

  top: 50%;

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

  animation: rotate360 15s linear infinite;
}

.video_btn iconify-icon {
  font-size: 0.5rem;

  color: var(--i_color);
}

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

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media screen and (max-width: 1024px) {
  .video_btn {
    width: 1.4rem;

    height: 1.4rem;
  }

  .video_btn iconify-icon {
    font-size: 0.35rem;
  }
}

@media screen and (max-width: 560px) {
  .video_btn {
    width: 1rem;

    height: 1rem;
  }

  .video_btn iconify-icon {
    font-size: 0.25rem;
  }
}

.about_us_down {
  display: flex;

  align-items: center;

  margin-top: 0.4rem;

  padding-bottom: 0.4rem;

  box-sizing: border-box;

  gap: 3%;
}

.about_us_tt {
  width: 28.7%;

  background: var(--i_color);

  box-sizing: border-box;

  padding: 0.5rem 2% 0.35rem 4%;

  margin-left: -0.3rem;

  clip-path: polygon(0 0, 100% 14%, 100% 100%, 0% 100%);

  flex-shrink: 0;
}

.about_us_h4 {
  display: flex;

  gap: 0.2rem;

  align-items: center;
}

.about_us_tt .auf_text {
  width: 1.4rem;

  object-fit: contain;
}

.about_us_h4 .auf_right {
  height: 0.12rem;
}

.about_us_tt h5 {
  font-size: 0.18rem;

  color: #fff;

  font-weight: bold;

  margin-top: 0.2rem;
}

.about_us_info {
  width: 100%;
}

.about_us_info h3 {
  font-weight: 500;

  font-family: "DINPro";

  margin-bottom: 0.3rem;
}

.about_us_info h3 span {
  color: var(--i_color);
}

.about_us_info h4 {
  font-family: "DINPro";

  color: #666666;
}

@media screen and (max-width: 1440px) {
  .about_us_tt h4 {
  }

  .about_us_tt h5 {
    margin-top: 0.1rem;
  }
}

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

@media screen and (max-width: 1024px) {
  .about_us_left h4 {
    margin-bottom: 0.2rem;
  }

  .aur_corner {
    width: 0.4rem;

    height: 0.4rem;
  }
}

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

@media screen and (max-width: 767px) {
  .about_us_left {
    width: 100%;

    padding: 0 4%;
  }

  .about_us_right {
    width: 50%;

    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .about_us_right {
    width: 100%;
  }

  .about_us_down {
    display: none;
  }

  .about_us_left h4 img {
    width: 1rem;

    margin-right: 0.1rem;
  }

  .aur_corner {
    width: 0.35rem;

    height: 0.35rem;
  }
}

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

/* ----------------------合作伙伴--------------- */

.home_partner {
  background: url(static/images/home_partner_bg.webp) no-repeat center/cover;

  aspect-ratio: 1920 / 1080;

  position: relative;
}

.hp_maxbox {
}

.hpm_top {
}

.hpm_top .hpm_title {
  color: var(--i_color2);

  font-weight: bold;

  margin-bottom: 0.3rem;
}

.hpmt_info {
  display: flex;

  justify-content: space-between;
}

.hpmt_l {
  width: 66.35%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-shrink: 0;
}

.hpmt_num {
  width: 28.45%;

  padding: 0 0.6rem 0 0.25rem;

  box-sizing: border-box;

  border-right: rgba(33, 33, 33, 0.14) 2px solid;
}

.hpmt_num h3 {
  color: var(--i_color);

  font-weight: bold;

  font-family: "DINPro";
}

.hpmt_num h3 span {
  color: var(--i_color);

  font-weight: bold;
}

.hpmt_num h4 {
  color: #666666;
}

.hpmt_text {
  width: 100%;

  padding-left: 0.65rem;

  box-sizing: border-box;

  color: #666666;
}

.hpmt_r {
  justify-content: center;
}

.hpmt_logo {
  width: 100%;
}

.hl_logobox {
  position: absolute;

  animation: logoFloat 4.5s ease-in-out infinite;
}

.hl_logobox img {
  width: 100%;

  object-fit: contain;

  transition: transform 0.35s ease;
  border-radius: 50%;
}

.hl_logobox:hover img {
  transform: scale(1.08);
}

.hpmt_logo1 {
  top: 71%;

  left: 10%;

  animation-duration: 5s;

  animation-delay: 0s;
}

.hpmt_logo2 {
  top: 42%;

  left: 18%;

  animation-duration: 4.2s;

  animation-delay: -1.2s;
}

.hpmt_logo3 {
  top: 61%;

  left: 63%;

  animation-duration: 5.5s;

  animation-delay: -2.4s;
}

.hpmt_logo4 {
  top: 29%;

  left: 67%;

  animation-duration: 4.8s;

  animation-delay: -0.8s;
}

.hpmt_logo5 {
  top: 75%;

  left: 75%;

  animation-duration: 5.2s;

  animation-delay: -3s;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.18rem);
  }
}

@keyframes logoFloatSm {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.06rem);
  }
}

.hpmt_logo1 {
  width: 1.76rem;
}

.hpmt_logo2,
.hpmt_logo4,
.hpmt_logo5 {
  width: 2.22rem;
}

.hpmt_logo3 {
  width: 1.62rem;
}

@media screen and (max-width: 1440px) {
  .hpmt_logo1 {
    width: 1.5rem;
  }

  .hpmt_logo2,
  .hpmt_logo4,
  .hpmt_logo5 {
    width: 1.8rem;
  }

  .hpmt_logo3 {
    width: 1.4rem;
  }
}

@media screen and (max-width: 1200px) {
  .hpmt_logo1 {
    width: 1.3rem;
  }

  .hpmt_logo2,
  .hpmt_logo4,
  .hpmt_logo5 {
    width: 1.5rem;
  }

  .hpmt_logo3 {
    width: 1.1rem;
  }
}

@media screen and (max-width: 1024px) {
  .hpmt_logo1 {
    width: 1rem;
  }

  .hpmt_logo2,
  .hpmt_logo4,
  .hpmt_logo5 {
    width: 1.2rem;
  }

  .hpmt_logo3 {
    width: 0.9rem;
  }
}

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

  .hpmt_logo1 {
    width: 0.8rem;
  }

  .hpmt_logo2,
  .hpmt_logo4,
  .hpmt_logo5 {
    width: 1rem;
  }

  .hpmt_logo3 {
    width: 0.7rem;
  }
}

@media screen and (max-width: 560px) {
  .hl_logobox {
    animation-name: logoFloatSm;
  }

  .hpmt_logo1 {
    width: 0.35rem;
  }

  .hpmt_logo2,
  .hpmt_logo4,
  .hpmt_logo5 {
    width: 0.55rem;
  }

  .hpmt_logo3 {
    width: 0.4rem;
  }

  .hpm_top {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 375px) {
  .hpmt_logo1 {
    width: 0.3rem;
  }

  .hpmt_logo2,
  .hpmt_logo4,
  .hpmt_logo5 {
    width: 0.5rem;
  }

  .hpmt_logo3 {
    width: 0.3rem;
  }

  .hpm_top {
    padding: 0.2rem 0;
  }
}

/* ----------------------为什么选择我们--------------------- */

.home_why_choose_us {
  background: url(static/images/home_why_choose_us_bg.webp) no-repeat
    center/cover;
}

.hwcu_maxbox {
}

.hwcu_contain {
  margin-top: 0.5rem;
}

.hwcu_tabs {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  position: relative;

  margin-bottom: 0.8rem;

  padding: 0 0.4rem;
}

.hwcu_tabs::before {
  content: "";

  position: absolute;

  left: 0.4rem;

  right: 0.4rem;

  bottom: 0.12rem;

  height: 1px;

  background: rgba(255, 255, 255, 0.45);

  z-index: 0;
}

.hwcu_tab {
  position: relative;

  z-index: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  cursor: pointer;

  width: 20%;
}

.hwcu_tab_txt {
  color: #fff;

  margin-bottom: 0.2rem;

  transition: color 0.3s ease;
}

.hwcu_tab_dot {
  width: 0.28rem;

  height: 0.28rem;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  flex-shrink: 0;
}

.hwcu_tab_dot::before {
  content: "";

  width: 0.18rem;

  height: 0.18rem;

  border-radius: 50%;

  background: #fff;

  border: 0.04rem solid #8ec8e8;

  box-sizing: border-box;

  transition: all 0.3s ease;
}

.hwcu_tab.active .hwcu_tab_dot::before {
  width: 0.28rem;

  height: 0.28rem;

  border-width: 0.08rem;

  border-color: var(--i_color);

  background: #fff;
}

.hwcu_tab.active::after {
  display: none;
}

.hwcu_tab_indicator {
  position: absolute;

  top: calc(100% - 0.01rem);

  left: 0;

  width: 2px;

  height: 0.4rem;

  background: var(--i_color);

  transform: translateX(-50%);

  transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1);

  pointer-events: none;

  z-index: 2;

  opacity: 0;
}

.hwcu_tabs.is-ready .hwcu_tab_indicator {
  opacity: 1;
}

.hwcu_tab_indicator::after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: 0;

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

  width: 0.1rem;

  height: 0.1rem;

  border-radius: 50%;

  background: var(--i_color);
}

.hwcu_panels {
  position: relative;

  aspect-ratio: 1400 / 480;
}

.hwcu_panel {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: stretch;

  background: #fff;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  z-index: 0;

  transition:
    opacity 0.38s ease,
    transform 0.38s ease,
    visibility 0.38s ease;

  transform: translateX(0.15rem);
}

.hwcu_panel.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  z-index: 1;

  transform: translateX(0);
}

.hwcu_panel.is-hiding {
  opacity: 0;

  visibility: visible;

  pointer-events: none;

  z-index: 2;

  transform: translateX(-0.15rem);
}

.hwcu_panel.is-showing {
  opacity: 1;

  visibility: visible;

  pointer-events: none;

  z-index: 2;

  transform: translateX(0);
}

.hwcu_pic {
  width: 50%;

  flex-shrink: 0;

  height: 100%;

  overflow: hidden;
}

.hwcu_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform 0.5s ease,
    opacity 0.38s ease;

  transform: scale(1.04);
}

.hwcu_panel.active .hwcu_pic img,
.hwcu_panel.is-showing .hwcu_pic img {
  transform: scale(1);
}

.hwcu_info {
  width: 50%;

  box-sizing: border-box;

  padding: 0.55rem 0.6rem 0.45rem;

  display: flex;

  flex-direction: column;

  min-height: 0;

  overflow: hidden;
}

.hwcu_info h4 {
  color: var(--i_color2);

  font-weight: bold;

  margin-bottom: 0.28rem;
}

.hwcu_info p {
  color: #666;

  line-height: 1.6;

  flex: 1;
}

.hwcu_info .public_btn {
  margin-top: 0.4rem;
}

@media screen and (max-width: 1024px) {
  .hwcu_tabs {
    padding: 0 0.2rem;

    margin-bottom: 0.7rem;
  }

  .hwcu_tabs::before {
    left: 0.2rem;

    right: 0.2rem;
  }

  .hwcu_info {
    padding: 0.35rem 0.3rem 0.3rem;
  }

  .hwcu_info h4 {
    margin-bottom: 0.16rem;
  }

  .hwcu_info .public_btn {
    margin-top: 0.24rem;
  }
}

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

    margin-bottom: 0.12rem;
  }

  .hwcu_panels {
    aspect-ratio: auto;

    min-height: 0;
  }

  .hwcu_panel {
    position: relative;

    inset: auto;

    display: none;

    flex-direction: column;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
  }

  .hwcu_panel.active {
    display: flex;
  }

  .hwcu_pic,
  .hwcu_info {
    width: 100%;
  }

  .hwcu_pic {
    aspect-ratio: 700 / 480;

    height: auto;
  }

  .hwcu_tab.active::after {
    height: 0.3rem;
  }

  .hwcu_tab_indicator {
    height: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .hwcu_contain {
    margin-top: 0.3rem;
  }

  .hwcu_tabs {
    padding: 0;

    margin-bottom: 0.4rem;
  }

  .hwcu_tabs::before {
    left: 0;

    right: 0;

    bottom: 0.08rem;
  }

  .hwcu_tab_txt {
    font-size: 0.12rem;

    margin-bottom: 0.08rem;
  }

  .hwcu_tab_dot {
    width: 0.18rem;

    height: 0.18rem;
  }

  .hwcu_tab_dot::before {
    width: 0.12rem;

    height: 0.12rem;

    border-width: 0.03rem;
  }

  .hwcu_tab.active .hwcu_tab_dot::before {
    width: 0.18rem;

    height: 0.18rem;

    border-width: 0.05rem;
  }

  .hwcu_tab_indicator::after {
    width: 0.05rem;

    height: 0.05rem;
  }

  .hwcu_info {
    padding: 0.15rem 0.2rem 0.2rem;
  }

  .hwcu_info h4 {
    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 375px) {
  .hwcu_tabs::before {
    bottom: 0.09rem;
  }
}

/* ------------------------新闻----------------------- */

.home_news {
}

.hn_maxbox {
}

.hnm_top {
}

.hnm_top .hnm_title {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-bottom: 0.4rem;

  border-bottom: 1px solid #e5e5e5;
}

.hnm_top .hnm_title h3 {
  margin-bottom: 0;
}

.hn_contain {
  display: flex;

  justify-content: space-between;

  align-items: stretch;

  margin-top: 0.4rem;

  gap: 0.8rem;
}

.hn_news {
  width: 70.36%;

  max-width: 9.85rem;

  flex-shrink: 0;
}

.hn_item {
  display: flex;

  align-items: stretch;

  padding: 0.35rem 0;

  border-bottom: 1px solid #e5e5e5;

  transition: all 0.35s ease;
}

.hn_item:first-child {
  padding-top: 0;
}

.hn_item:last-child {
  border-bottom: none;

  padding-bottom: 0;
}

.hn_pic {
  width: 3.98rem;

  flex-shrink: 0;

  aspect-ratio: 398 / 256;

  overflow: hidden;
}

.hn_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.hn_item:hover .hn_pic img {
  transform: scale(1.06);
}

.hn_info {
  width: 100%;

  padding-left: 0.35rem;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;
}

.hn_date {
  color: #999;

  margin-bottom: 0.16rem;
}

.hn_info h4 {
  color: var(--i_color2);

  font-weight: bold;

  line-height: 1.4;

  margin-bottom: 0.16rem;

  transition: color 0.3s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.hn_item:hover .hn_info h4 {
  color: var(--i_color);
}

.hn_info p {
  color: #666;

  line-height: 1.7;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.hn_more {
  color: var(--i_color);

  font-weight: bold;

  margin-top: 0.2rem;

  transition: all 0.3s ease;
}

.hn_video {
  width: 23.93%;

  max-width: 3.35rem;

  flex-shrink: 0;

  background: #f5f5f5;

  box-sizing: border-box;

  padding: 0.3rem 0.3rem 0.35rem;
}

.hn_video h4 {
  color: var(--i_color);

  font-weight: bold;

  text-align: center;

  margin-bottom: 0.24rem;
}

.hnv_list {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.hnv_item {
  position: relative;

  width: 100%;

  aspect-ratio: 275 / 204;

  overflow: hidden;

  cursor: pointer;
}

.hnv_item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #000;

  opacity: 0.38;

  z-index: 1;

  pointer-events: none;

  transition: opacity 0.35s ease;
}

.hnv_item:hover::before {
  opacity: 0.5;
}

.hnv_img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.hnv_item:hover .hnv_img {
  transform: scale(1.05);
}

.hnv_play {
  position: absolute;

  left: 50%;

  top: 50%;

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

  width: 0.35rem;

  height: 0.35rem;

  z-index: 2;
}

.hnv_play::before,
.hnv_play::after {
  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

  width: 100%;

  height: 100%;

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 50%;

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

  opacity: 0.7;

  pointer-events: none;

  animation: hnvRipple 2.4s ease-out infinite;
}

.hnv_play::after {
  animation-delay: 1.2s;
}

.hnv_play img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: relative;

  z-index: 1;

  transition: transform 0.35s ease;
}

@keyframes hnvRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);

    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.85);

    opacity: 0;
  }
}

@media screen and (max-width: 1200px) {
  .hn_contain {
    gap: 0.4rem;
  }

  .hn_pic {
    width: 3.2rem;
  }

  .hn_info {
    padding-left: 0.24rem;
  }
}

@media screen and (max-width: 1024px) {
  .hn_pic {
    width: 2.8rem;
  }

  .hn_video {
    padding: 0.2rem;
  }

  .hnv_play {
    width: 0.42rem;

    height: 0.42rem;
  }
}

@media screen and (max-width: 768px) {
  .hn_contain {
    flex-direction: column;

    gap: 0.3rem;
  }

  .hn_news,
  .hn_video {
    width: 100%;

    max-width: none;
  }

  .hn_pic {
    width: 42%;
  }

  .hnv_list {
    flex-direction: row;
  }

  .hnv_item {
    width: 50%;
  }
}

@media screen and (max-width: 560px) {
  .hn_item {
    flex-direction: column;

    padding: 0.24rem 0;
  }

  .hn_pic {
    width: 100%;
  }

  .hn_info {
    padding: 0.16rem 0 0;
  }

  .hnv_list {
    flex-direction: column;
  }

  .hnv_item {
    width: 100%;
  }

  .hnv_play {
    width: 0.4rem;

    height: 0.4rem;
  }

  .hnm_top .hnm_title {
    padding-bottom: 0.2rem;
  }
}

/* 底部表单 */

.Bottom_Form {
  background: linear-gradient(
    180deg,
    #fdf3f300 -3%,

    #fdf3f3 49%,

    #fdf3f300 102%
  );

  border-radius: 0.8rem 0.8rem 0px 0px;

  overflow: hidden;
}

.Bottom_Form .wrap {
  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 0.3rem 0;
}

.Bottom_Form_left {
  width: 36%;

  box-sizing: border-box;
}

.Bottom_Form_left h2 {
  font-weight: bold;
}

.Bottom_Form_left h2 span {
  color: var(--i_color);
}

.bfl_list {
  display: flex;

  flex-direction: column;

  gap: 0.3rem 0;
}

.bfl_list li {
  display: flex;

  align-items: center;

  gap: 0 0.12rem;

  color: #666666;
}

.bfl_list li::before {
  content: "";

  display: block;

  width: 8px;

  height: 8px;

  background-color: var(--i_color);

  border-radius: 50%;
}

.Bottom_Form_right {
  width: 57%;

  box-sizing: border-box;
}

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

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

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

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

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

@media screen and (max-width: 560px) {
  .Bottom_Form_left h2 {
    padding: 0 0.15rem;
  }
}

/* ----------------------------------public_banner---------------------------------- */

.public_banner {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.public_banner::before {
  content: "";

  display: block;

  padding-bottom: 28.65%;
}

.public_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transform: scale(1.2);

  animation: scaleIn 1.8s ease-out forwards;
}

@keyframes scaleIn {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

/* ---------------------------------------products.html--------------------------------- */

/* ---------------------------------------products--------------------------------------- */

.products_bac {
  box-sizing: border-box;

  background-color: #fff;

  padding: 0.6rem 0;
}

.products {
  display: flex;

  gap: 0.6rem;
}

.products_left {
  width: 23%;

  box-sizing: border-box;
}

.products_left_all {
  background-color: #fafafa;

  padding: 0.34rem 0.3rem;
}

.products_left_h2 {
  font-size: 0.26rem;

  text-transform: capitalize;

  box-sizing: border-box;

  color: var(--i_color2);

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  font-weight: bold;

  border-bottom: 1px solid #e5e5e5;
}

.products_left_h2 iconify-icon {
  color: #fff;

  font-size: 0.34rem;

  margin-left: 0.1rem;

  font-weight: bold;

  margin-bottom: 2px;

  display: none;
}

.list {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;
}

.list li {
  position: relative;

  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

/* .list li::after{

	content: '';

	position: absolute;

	bottom: 0;

	left: 50%;

	transform: translate(-50%,0);

	width: 100%;

	height: 1px;

	background-color: rgba(51, 51, 51, 0.2);

} */

.list_a {
  box-sizing: border-box;

  padding: 0.2rem 0.2rem 0.2rem 0;

  position: relative;

  z-index: 2;

  overflow: hidden;
}

.list_a::after {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  background-color: #fff;

  width: 0;

  height: 100%;

  transition: all 0.5s ease-in-out;

  z-index: -1;

  display: none;
}

.list .list_a a {
  font-size: 0.18rem;

  color: #222;

  font-weight: bold;

  box-sizing: border-box;

  line-height: 110%;

  transition: all 0.3s ease;

  display: block;
}

.list .list_a i {
  width: 0.5rem;

  height: 0.55rem;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 0;

  cursor: pointer;
}

.list .list_a i iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.24rem;

  color: #222;

  transition: all 0.3s ease;
}

.list_dl {
  padding: 0rem 0.08rem 0.2rem 0.08rem;

  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  gap: 0.2rem;
}

.list_dl dt {
  box-sizing: border-box;
}

.list_dl dt a {
  font-size: 0.16rem;

  color: #666;

  display: block;

  transition: all 0.3s ease;

  position: relative;

  box-sizing: border-box;

  padding: 0rem 0.2rem;
}

.list_dl dt a::after {
  content: "";

  position: absolute;

  left: -0.1rem;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.07rem;

  height: 0.07rem;

  background-color: var(--i_color);

  opacity: 0;

  transition: all 0.3s ease;

  border-radius: 50%;
}

.list_dl dt a:hover::after,
.list_dl dt a:hover::before {
  opacity: 1;
}

.list_active {
}

.list_active .list_a::after {
  width: 100%;

  left: 0;

  right: auto;
}

.list_active .list_a i iconify-icon {
  color: var(--i_color);

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

.list_active .list_a a {
  color: var(--i_color);

  display: block;
}

.list_dl_active a::after,
.list_dl_active a::before {
  opacity: 1 !important;

  left: 0 !important;
}

.list_dl dt a:hover::after {
  opacity: 1 !important;

  left: 0 !important;
}

.list_active .list_dl {
}

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

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

@media screen and (max-width: 1200px) {
  .products_left_h2 {
    font-size: 0.28rem;
  }
}

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

  .products_left_h2 iconify-icon {
    display: block;
  }

  .products_left_h2 {
    display: flex;

    display: -webkit-flex;

    align-items: center;

    justify-content: center;
  }

  .products_left_h2 {
    margin-bottom: 0;
  }

  .list {
    margin-top: 0.1rem;
  }

  .products_left_h2 {
    color: #fff;

    background-color: var(--i_color);

    box-sizing: border-box;

    padding: 0.15rem 0;
  }

  .list {
    padding-bottom: 0.2rem;
  }

  .products_left_all {
    padding: 0.2rem;
  }

  .products {
    display: flex;

    flex-direction: column;

    gap: 0.3rem;
  }
}

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

@media screen and (max-width: 767px) {
  .products_left_h2 {
    font-size: 0.2rem;
  }

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

@media screen and (max-width: 560px) {
  .products_left_h2 {
    font-size: 0.18rem;
  }

  .products_left_h2 iconify-icon {
    font-size: 0.25rem;
  }
}

@media screen and (max-width: 425px) {
  .products_bac {
    box-sizing: border-box;

    background-color: #fff;

    padding: 0.3rem 0;
  }
}

.products_right {
  flex: 1;
}

.products_right_top {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;

  margin-bottom: 0.2rem;
}

.products_right_top_title {
  color: var(--i_color2);

  font-weight: bold;

  padding-bottom: 0.2rem;

  border-bottom: #e5e5e5 1px solid;
}

.products_right_top_des {
  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #666666;
}

.products_right_contain_excavatorList {
  width: 100%;
}

.pel_list {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 0.2rem;

  width: 100%;
}

.pel_list > li {
  min-width: 0;
}

.pel_item {
  display: flex;
  flex-direction: column;

  background: #f5f5f5;

  padding: 0.12rem 0.12rem 0.24rem 0.12rem;

  box-sizing: border-box;

  text-align: center;

  transition: all 0.35s ease;

  height: 100%;
}

.pel_pic {
  width: 100%;

  max-width: 100%;

  margin: 0 auto;

  display: block;

  position: relative;

  overflow: hidden;

  background: #fff;

  box-sizing: border-box;
}

.pel_pic::before {
  content: "";

  padding-bottom: 100%;

  display: block;
}

.pel_pic img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: all 0.35s ease;
}

.pel_item:hover .pel_pic img {
  transform: scale(1.1);
}

.pel_info {
  margin: 0.25rem 0.2rem 0.2rem;

  border-bottom: 0.01rem solid rgba(51, 51, 51, 0.2);

  padding-bottom: 0.2rem;

  transition: all 0.35s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pel_title {
  font-weight: bold;

  color: var(--i_color2);

  line-height: 1.3;

  transition: all 0.35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pel_cate {
  margin-top: 0.08rem;

  color: #999;

  line-height: 1.4;

  transition: all 0.35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pel_btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 1.6rem;

  height: 0.4rem;

  padding: 0 0.24rem;

  border: 0.01rem solid var(--i_color2);

  border-radius: 0.4rem;

  color: var(--i_color2);

  box-sizing: border-box;

  transition: all 0.35s ease;
}

.pel_item:hover .pel_title,
.pel_item:hover .pel_btn {
  color: var(--i_color);
}

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

@media screen and (max-width: 1024px) {
  .pel_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pel_pic {
    width: 100%;

    height: auto;

    aspect-ratio: 1 / 1;
  }
}

@media screen and (max-width: 560px) {
  .pel_list {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .pel_item {
    padding: 0.2rem 0.2rem 0.3rem;
  }
}

/* ------------------------------productDetail.html------------------------- */

/* single_grid */

.single_grid_bac {
  box-sizing: border-box;

  background: url(static/images/pd_top_bg.webp) no-repeat center/cover;
}

.single_grid {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  position: relative;

  gap: 5%;
}

.single_grid_left {
  width: 36%;
}

/* 轮播图宽度 */

.in_grid_cont {
  --sm_pic_width: 17%;
}

.in_grid_cont {
  position: relative;

  overflow: hidden;
}

.in_grid_cont:before {
  content: "";

  display: block;

  padding-bottom: 80.4%;
}

/* 底部缩略图 */

.in_grid_list_box {
  position: absolute;

  top: 0;

  left: 0;

  width: var(--sm_pic_width);

  height: 100%;

  box-sizing: border-box;

  padding: 40px 0;
}

.in_grid_list {
  height: 100%;

  overflow: hidden;
}

.in_grid_list .swiper-slide {
  cursor: pointer;
}

.in_grid_list .img {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  border: 1px solid transparent;

  position: relative;

  overflow: hidden;

  z-index: 2;
}

.in_grid_list .img::after {
  content: "";

  display: block;

  inset: 0;

  background: #f1f2ed;

  position: absolute;

  top: 0;

  left: 0;

  z-index: -1;
}

.in_grid_list .img img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.in_grid_list .swiper-slide-thumb-active .img {
  /* border: 2px solid #d62b1e; */
}

.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);

  -webkit-filter: brightness(100%);
}

.ingrid-button-prev.swiper-button-disabled,
.ingrid-button-next.swiper-button-disabled {
  cursor: not-allowed;

  opacity: 0.1;
}

/* 轮播图 */

.in_grid_show_box {
  position: absolute;

  top: 0;

  right: 0;

  width: calc(100% - var(--sm_pic_width) - 20px);

  height: 100%;

  box-sizing: border-box;

  padding: 0 0;

  margin: 0 auto;
}

.in_grid_show {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.in_grid_show .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  height: 100%;

  z-index: 1;
}

.in_grid_show .swiper-slide {
  height: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_show .img {
  width: 100%;

  height: 100%;

  position: relative;

  overflow: hidden;

  background: #f1f2ed;
}

.in_grid_show .img img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.ingrid-pagination {
  position: absolute;

  top: 0.2rem;

  right: 0.2rem;

  width: 0.5rem;

  height: 0.5rem;

  background-color: rgba(1, 167, 255, 0.15);

  border-radius: 50%;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  font-size: 0.18rem;

  color: var(--i_color);

  display: none;
}

.ingrid-pagination .swiper-pagination-bullet {
  width: 8px;

  height: 8px;

  display: inline-block;

  margin: 0 4px;

  background: #e5e5e5;

  -webkit-border-radius: 50%;

  -moz-border-radius: 50%;

  -o-border-radius: 50%;

  border-radius: 50%;

  outline: none;
}

.ingrid-pagination .swiper-pagination-bullet-active {
  position: relative;

  background: var(--i_color);
}

.in_grid_cont:before {
  display: none;
}

.in_grid_show_box {
  position: initial;

  width: 100%;

  overflow: hidden;
}

.in_grid_show .img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.in_grid_show .img:before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.in_grid_show .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  transition: transform 0.55s ease;
}

.in_grid_show .swiper-slide-active .img:hover img {
  transform: translate(-50%, -50%) scale(1.06);
}

.in_grid_list .img {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.in_grid_list .swiper-slide-thumb-active .img {
  box-shadow: 0 0.04rem 0.12rem rgba(230, 0, 18, 0.15);
}

.in_grid_list .swiper-slide:not(.swiper-slide-thumb-active):hover .img {
  border-color: rgba(230, 0, 18, 0.35);
}

.in_grid_list_box {
  margin-top: 0.16rem;

  padding: 0 0;

  position: relative;

  width: 100%;

  height: initial;
}

.in_grid_list {
  width: calc(100% - 1rem);

  margin: 0 auto;
}

.in_grid_list_box .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  z-index: 1;
}

.in_grid_list_box .swiper-slide {
  height: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_list .img {
  height: auto;

  border-radius: 0.04rem;
}

.in_grid_list .img:before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.in_grid_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  object-fit: contain;
}

.swiper-slide-thumb-active .img {
  border: 1px solid var(--i_color);
}

/* 左右箭头 */

.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.48rem;

  height: 0.48rem;

  z-index: 999;

  cursor: pointer;

  outline: none;

  transition: all 0.3s ease;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  background: transparent;
}

.ingrid-button-prev iconify-icon,
.ingrid-button-next iconify-icon {
  font-size: 0.26rem;

  color: #666;

  transition: all 0.3s ease;
}

.ingrid-button-prev {
  left: 0%;
}

.ingrid-button-next {
  right: 0%;
}

.ingrid-button-prev:hover,
.ingrid-button-next:hover {
}

.ingrid-button-prev:hover iconify-icon,
.ingrid-button-next:hover iconify-icon {
  color: var(--i_color);
}

.single_grid_right {
  flex: 1;

  box-sizing: border-box;
  padding-top: 0.5rem;
}

.sgr_top h1 {
  font-weight: bold;

  color: var(--i_color2);

  padding-bottom: 0.15rem;

  border-bottom: #cdced0 2px solid;

  margin-bottom: 0.2rem;
}

.pd_article p {
  font-size: 0.18rem;

  line-height: 1.7;

  color: #666;
}

.sgr_btnbox {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem;

  margin: 1.5rem 0 0.3rem 0;

  border-bottom: 1px solid #e5e5e5;

  padding-bottom: 0.3rem;
  box-sizing: border-box;
}

.sgr_media_box ul {
  display: flex;

  gap: 0.15rem;
}

.sgr_media_box ul li {
  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.22rem;

  color: #666;

  display: flex;

  align-items: center;
}

.sgr_media_box ul li a {
  display: flex;

  align-items: center;
}

.sgr_media_box ul li a iconify-icon {
  font-size: 0.2rem;
}

.sgr_media_box ul li a:hover iconify-icon {
  color: var(--i_color) !important;
}
@media screen and (max-width: 1200px) {
  .sgr_btnbox {
    margin: 0.8rem 0 0.3rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .single_grid {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .single_grid_left {
    width: 80%;

    margin-bottom: 0.2rem;
  }

  .single_grid_right {
    width: 100%;
    padding-top: 0;
  }

  .ingrid-button-prev,
  .ingrid-button-next {
    width: 0.4rem;

    height: 0.4rem;
  }
  .sgr_btnbox {
    margin: 0.6rem 0 0.3rem 0;
  }
}

@media screen and (max-width: 560px) {
  .ingrid-button-prev,
  .ingrid-button-next {
    width: 0.25rem;

    height: 0.25rem;
  }

  .ingrid-button-prev iconify-icon,
  .ingrid-button-next iconify-icon {
    font-size: 0.16rem;
  }

  .in_grid_list {
    width: calc(100% - 0.8rem);
  }

  .sgr_btnbox {
    gap: 0.2rem;

    margin: 0.2rem 0;

    border-bottom: 1px solid #e5e5e5;

    padding-bottom: 0.2rem;
  }
}

/* --------------------------------productDetail_nav------------------------- */

.productDetail_nav {
  position: sticky;

  top: 1rem;

  z-index: 99;

  transition: background-color 0.3s ease;
}

.productDetail_nav.is-stuck {
  background: #f2f2f2;
}

.pdn_sticky_sentinel {
  height: 1px;

  margin-top: -1px;

  pointer-events: none;

  visibility: hidden;
}

.pdn_maxbox {
  display: flex;

  border-bottom: #e5e5e5 1px solid;
}

.pdn_maxbox ul {
  display: flex;

  gap: 0 0.6rem;

  flex-wrap: wrap;
}

.pdn_maxbox ul li {
  padding: 0.25rem 0;

  box-sizing: border-box;

  font-family: "Montserrat";

  font-size: 0.18rem;

  font-weight: 500;

  color: #333333;

  position: relative;

  cursor: pointer;

  transition: all 0.5s ease;
}

.pdn_maxbox ul li::before {
  content: "";

  display: block;

  width: 0;

  height: 0.02rem;

  background: var(--i_color);

  position: absolute;

  left: 50%;

  bottom: 0;

  transform: translateX(-50%);

  transition: all 0.5s ease;
}

.pdn_maxbox ul li.active a {
  color: var(--i_color);
}

.pdn_maxbox ul li.active::before {
  width: 100%;
}

.pdn_maxbox ul li a {
  transition: color 0.3s ease;
}

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

.pdn_maxbox ul li:hover::before {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .pdn_maxbox ul li {
    padding: 0.15rem 0;

    font-size: 0.16rem;
  }

  .productDetail_nav {
    top: 0.7rem;
  }
}

@media screen and (max-width: 768px) {
  .pdn_maxbox ul {
    gap: 0 0.3rem;
  }

  .pdn_maxbox ul li {
    padding: 0.14rem 0;
  }

  .productDetail_nav {
    top: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  .pdn_maxbox ul {
    gap: 0 0.3rem;
  }
}

#pd_description,
#pd_technical_specification,
#pd_faqs {
  scroll-margin-top: calc(var(--header_height) + 0.68rem);
}

@media screen and (max-width: 1024px) {
  #pd_description,
  #pd_technical_specification,
  #pd_faqs {
    scroll-margin-top: calc(0.7rem + 0.46rem);
  }
}

@media screen and (max-width: 768px) {
  #pd_description,
  #pd_technical_specification,
  #pd_faqs {
    scroll-margin-top: calc(0.5rem + 0.42rem);
  }
}

/* --------详情编辑器内容--------- */

.pd_description {
}

.pdc_maxbox {
}

/* -----------------技术规格----------- */

.pd_technical_specification {
}

.pdts_maxbox {
}

.pdts_title {
  color: var(--i_color2);
  font-size: 0.24rem !important;
  font-weight: bold;
}

/* -------------------faq------------------- */

.pd_faq {
}

.pdf_maxbox {
}

.pdac_faq {
}

.pdfm_title {
  color: var(--i_color);

  font-weight: bold;
}

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0rem;
}

.faq_ul li {
  position: relative;

  border-radius: 0.06rem;

  overflow: hidden;

  border-bottom: #e8e8e8 1px solid;
}

.faq_ul li span {
  position: absolute;

  right: 0;

  top: 0;

  display: block;

  width: 21%;

  opacity: 0;

  pointer-events: none;
}

.faq_ul li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.faq_q {
  background-color: #fff;

  box-sizing: border-box;

  padding: 0.2rem 0rem;

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  align-items: center;
  justify-content: space-between;
}

.faq_ul i {
  border-radius: 0rem;

  display: block;

  color: #333333;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  font-size: 0.2rem;

  font-weight: bold;
}

.faq_q h2 {
  width: calc(100% - 0.72rem);

  box-sizing: border-box;

  font-size: 0.24rem;

  font-weight: normal;

  color: var(--i_color2);

  font-weight: bold;
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0rem 0.3rem 0.2rem 0rem;

  /* background: var(--i_color); */
}

.faq_a p {
  width: 84%;

  font-size: 0.18rem;

  color: #666;

  line-height: 1.5;

  font-weight: normal;
}

.faq_q h3 {
  width: 0.24rem;

  height: 0.24rem;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  transition: all 0.3s ease;

  position: relative;

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

  border-radius: 50%;
}

.faq_q h3::after {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 2px;

  height: 0.12rem;

  background-color: var(--i_color2);

  transition: all 0.3s ease;
}

.faq_q h3::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

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

  height: 2px;

  width: 0.12rem;

  background-color: var(--i_color2);
}

.faq_ul li.on .faq_q h3::after {
  height: 0 !important;

  background-color: var(--i_color2) !important;
}

.faq_ul li.on .faq_q h3::before {
  background-color: var(--i_color) !important;
}

.faq_ul li.on .faq_q {
  /* background-color: var(--i_color); */
}

.faq_ul li.on .faq_q h3 {
  border-color: var(--i_color);
}

.faq_ul li.on .faq_q h2 {
}

.faq_ul li.on span {
  opacity: 1;
}

.faq_ul li.on .faq_q .faq_Q {
  background: #fff !important;

  color: var(--i_color) !important;
}

@media screen and (max-width: 1440px) {
  .faq_q h2 {
    font-size: 0.2rem;
  }

  .faq_a p {
    font-size: 0.16rem;
  }
}

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

@media screen and (max-width: 1200px) {
  .faq_q {
    padding: 0.15rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .faq_q h2 {
    font-size: 0.18rem;
  }

  .faq_a p {
    font-size: 0.14rem;
  }

  .faq_q h3 {
    width: 0.2rem;

    height: 0.2rem;
  }

  .faq_q h3::after {
    height: 0.1rem;
  }

  .faq_q h3::before {
    width: 0.1rem;
  }
}

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

@media screen and (max-width: 768px) {
  .faq_q h2 {
    font-size: 0.16rem;

    /* padding-left: 0.1rem; */
  }

  .faq_a p {
    /* padding-left: 0.1rem; */
  }

  .faq_q {
    padding: 0.2rem 0;
  }

  .pdcd_faq {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 560px) {
  .faq_q {
    padding: 0.2rem 0;
  }

  .faq_a {
    padding: 0.1rem 0.3rem 0.2rem 0.2rem;
  }

  .faq_ul i {
    width: 0.3rem;

    height: 0.3rem;
  }

  .faq_q h2 {
    width: calc(100% - 0.5rem);
  }

  .faq_a p {
    width: calc(100% - 0.3rem);
  }

  .faq_ul {
    gap: 0.1rem;
  }

  .faq_q .faq_Q,
  .faq_a .faq_A {
    width: 0.25rem;

    height: 0.25rem;
  }

  .pd_faqs {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 425px) {
  .faq_q {
    padding: 0.1rem 0;
  }
}

/* ------------------------------------------single_two------------------------------------------ */

.single_two_bac {
  background: #f7f7f7;

  box-sizing: border-box;

  padding: 0.3rem 0;
}

.single_two {
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.15rem;

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.bottom_single_tags p {
  font-size: 0.2rem;

  font-weight: 600;

  color: #666666;
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  font-size: 0.16rem;

  font-weight: normal;

  color: var(--i_color);

  padding: 0.1rem 0.14rem;

  background: #fff;

  border-radius: 2.3rem;

  transition: all 0.35s ease;
}

.bottom_single_tags a:hover {
  color: #fff;

  background: var(--i_color);
}

.sx {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;
}

.sx > div {
  width: 48%;
}

.sx_left {
}

.sx a {
  display: block;

  width: 100%;

  display: flex;

  display: -webkit-flex;

  align-items: center;
}

.sx iconify-icon {
  font-size: 0.22rem;

  transition: all 0.3s ease;
}

.sx .sx_left iconify-icon {
  margin-right: 0.1rem;
}

.sx .sx_right iconify-icon {
  margin-left: 0.1rem;
}

.sx p {
  font-size: 0.18rem;

  color: var(--i_color2);

  text-transform: capitalize;

  margin-right: 0.1rem;

  font-weight: bold;
}

.sx span {
  font-size: 0.18rem;

  color: var(--i_color2);

  transition: all 0.3s ease;

  font-weight: bold;
}

.sx_right a {
  justify-content: flex-end;
}

.sx .sx_left:hover iconify-icon,
.sx .sx_right:hover iconify-icon,
.sx .sx_left:hover p,
.sx .sx_left:hover span,
.sx .sx_right:hover span,
.sx .sx_right:hover p {
  color: var(--i_color) !important;
}

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

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

@media screen and (max-width: 1200px) {
  .bottom_single_tags a {
    padding: 0.08rem 0.1rem;

    font-size: 0.14rem;
  }

  .bottom_single_tags {
    align-items: center;
  }
}

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

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

@media screen and (max-width: 768px) {
  .sx {
    gap: 0.2rem 0;
  }

  .sx > div {
    width: 100%;
  }

  .sx a {
    flex-wrap: wrap;
  }

  .sx_right a {
    justify-content: normal;
  }

  .sx .sx_left span,
  .sx .sx_right span {
    font-size: 0.12rem;
  }

  .sx .sx_left iconify-icon,
  .sx .sx_right iconify-icon {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .bottom_single_tags p {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

  .sx p {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 425px) {
  .bottom_single_tags {
    gap: 0.1rem;

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }
}

/* ------------------推荐产品--------------------- */

.productsDetail_related_products {
}

.pdrp_maxbox {
}

.pdrp_list {
  position: relative;

  overflow: hidden;
}

.pdrp_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.pdrp_list li {
  flex-shrink: 0;

  position: relative;
}

.pdrp_item {
  display: block;

  background: #f5f5f5;

  padding: 0.24rem;

  box-sizing: border-box;

  text-align: center;

  transition: all 0.35s ease;
}

.pdrp_pic {
  width: 100%;

  margin: 0 auto;

  display: block;

  position: relative;

  overflow: hidden;

  background: #fff;

  box-sizing: border-box;
}

.pdrp_pic::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.pdrp_pic img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: all 0.35s ease;
}

.pdrp_item:hover .pdrp_pic img {
  transform: scale(1.1);
}

.pdrp_info {
  margin: 0.25rem 0 0.2rem;

  border-bottom: 0.01rem solid rgba(51, 51, 51, 0.2);

  padding-bottom: 0.2rem;

  transition: all 0.35s ease;
}

.pdrp_title {
  font-weight: bold;

  color: #212121;

  line-height: 1.3;

  transition: all 0.35s ease;
}

.pdrp_cate {
  margin-top: 0.08rem;

  color: #999;

  line-height: 1.4;

  transition: all 0.35s ease;
}

.pdrp_btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 1.6rem;

  height: 0.4rem;

  padding: 0 0.24rem;

  border: 0.01rem solid #212121;

  border-radius: 0.4rem;

  color: #212121;

  box-sizing: border-box;

  transition: all 0.35s ease;
}

.pdrp_item:hover .pdrp_title,
.pdrp_item:hover .pdrp_btn {
  color: var(--i_color);
}

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

.pdrp_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

.pdrp_pagination .swiper-pagination-bullet {
  width: 0.72rem;

  height: 0.02rem;

  display: inline-block;

  margin: 0 6px;

  background: #ccc;

  border-radius: 0;

  outline: none;

  cursor: pointer;
}

.pdrp_pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .pdrp_pagination .swiper-pagination-bullet {
    width: 0.4rem;
  }
}

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

/* ----------------------news.html----------------- */

.news_maxbox {
}

.nm_box {
}

.nmb_tab {
  display: flex;

  justify-content: flex-start;

  padding-bottom: 0.2rem;

  align-items: stretch;

  border-bottom: 1px solid #e8e8e8;
}

.nmb_tab ul {
  display: flex;

  gap: 0.6rem;
}

.nmb_tab ul li {
  position: relative;

  display: flex;

  align-items: center;
}

.nmb_tab ul li a {
  font-weight: bold;
}

.nmb_tab ul li::before {
  content: "";

  display: block;

  width: 0%;

  height: 0.02rem;

  background: var(--i_color);

  position: absolute;

  bottom: -0.21rem;

  left: 50%;

  transform: translateX(-50%);

  transition: all 0.35s ease;
}

.nmb_tab ul li.active a,
.nmb_tab ul li:hover a {
  color: var(--i_color);
}

.nmb_tab ul li:hover::before,
.nmb_tab ul li.active::before {
  width: 100%;
}

.nmb_list {
  margin-top: 0.1rem;
}

.nmb_item {
  display: flex;

  align-items: flex-start;

  gap: 0.5rem;

  padding: 0.4rem 0;

  border-bottom: 1px solid #e5e5e5;

  transition: all 0.35s ease;
}

.nmb_date {
  flex-shrink: 0;

  color: #999;

  line-height: 1.4;

  padding-top: 0.04rem;
}

.nmb_pic {
  width: 35%;

  flex-shrink: 0;

  position: relative;

  overflow: hidden;
}

.nmb_pic::before {
  content: "";

  display: block;

  padding-bottom: 57.96%;
}

.nmb_pic img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.nmb_item:hover .nmb_pic img {
  transform: scale(1.06);
}

.nmb_info {
  flex: 1;

  min-width: 0;

  display: flex;

  flex-direction: column;
}

.nmb_title {
  color: #212121;

  font-weight: bold;

  line-height: 1.4;

  margin-bottom: 0.16rem;

  transition: color 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.nmb_item:hover .nmb_title {
  color: var(--i_color);
}

.nmb_des {
  color: #666;

  line-height: 1.6;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.nmb_more {
  color: var(--i_color);

  font-weight: bold;

  margin-top: 0.4rem;

  transition: all 0.35s ease;
}

@media screen and (max-width: 1024px) {
  .nmb_pic {
    width: 40%;
  }

  .nmb_more {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .nmb_tab ul {
    gap: 0.3rem;
  }

  .nmb_item {
    flex-wrap: wrap;

    gap: 0.2rem;

    padding: 0.3rem 0;
  }

  .nmb_date {
    width: 100%;

    padding-top: 0;
  }

  .nmb_pic {
    width: 100%;
  }

  .nmb_more {
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .nmb_tab {
    padding-bottom: 0.15rem;
  }

  .nmb_tab ul li::before {
    bottom: -0.16rem;
  }

  .nmb_tab ul {
    gap: 0.2rem;
  }

  .nmb_title {
    margin-bottom: 0.1rem;
  }
}

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

/* ------------------contact.html------------------- */

.contact_form {
  position: relative;

  overflow: hidden;
}

.cf_bg {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 35.5%;
}

.cf_bg img {
  width: 100%;

  object-fit: contain;
}

.cf_maxbox {
  display: flex;

  justify-content: space-between;

  gap: 9%;
}

.cfm_l {
  width: 40.71%;

  flex-shrink: 0;
}

.cfm_l h3 {
  font-weight: bold;

  color: var(--i_color2);

  padding-bottom: 0.1rem;

  margin-bottom: 0.6rem;

  position: relative;
}

.cfm_l h3::before {
  content: "";

  display: block;

  background: var(--i_color);

  width: 10%;

  height: 0.03rem;

  position: absolute;

  bottom: 0;

  left: 0;
}

.cfm_l h4 {
  color: #666666;
}

.cfm_r {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .cf_maxbox {
    flex-direction: column;
  }

  .cfm_l {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .cfm_l h3 {
    margin-bottom: 0.3rem;
  }

  .cf_bg {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .cfm_l h3 {
    margin-bottom: 0.2rem;
  }
}

/* -----------------客户信息---------------- */

.contact_info {
  overflow: hidden;
}

.ci_maxbox {
  display: flex;

  gap: 6%;
}

.cim_l {
  width: 55%;
}

.cim_l h3 {
  padding-bottom: 0.25rem;

  border-bottom: 1px solid #d6d6d6;

  font-weight: bold;

  position: relative;

  margin-bottom: 0.4rem;
}

.cim_l h3::before {
  content: "";

  display: block;

  width: 15%;

  height: 0.03rem;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  left: 0;
}

.cim_l ul {
  display: flex;

  flex-direction: column;

  gap: 0.4rem;
}

.cim_l ul li {
  display: flex;

  align-items: center;

  gap: 0.3rem;

  cursor: pointer;
}

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

.cim_l ul li span {
  width: 0.64rem;

  height: 0.64rem;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 1px solid #d6d6d6;

  flex-shrink: 0;
}

.cim_l ul li span img {
  width: 62.5%;

  object-fit: contain;

  transition: transform 0.5s ease;

  transform-style: preserve-3d;
}

.cim_l ul li:hover span img {
  transform: rotateY(180deg);
}

.cim_info {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.cim_a_box {
  display: flex;

  gap: 0.1rem;
}

.cim_info p {
  color: #666666;
}

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

.cim_r {
  width: 100%;
}

.cim_media_box {
  padding: 0.3rem 0;

  border-top: 1px solid #d6d6d6;
}

.cim_media_box p {
  color: #666666;

  margin-bottom: 0.2rem;
}

.cim_media_box dl {
  display: flex;

  gap: 0.3rem;
}

.cim_media_box dl dt {
}

.cim_media_box dl dt a {
  width: 0.64rem;

  height: 0.64rem;

  border-radius: 50%;

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

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.35s ease;
}

.cim_media_box dl dt a iconify-icon {
  font-size: 0.3rem;

  color: var(--i_color2);

  transition: all 0.35s ease;
}

.cim_media_box dl dt a:hover {
  border-color: var(--i_color);
}

.cim_media_box dl dt a:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .ci_maxbox {
    flex-direction: column;
  }

  .cim_l {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .cim_l ul li span {
    width: 0.5rem;

    height: 0.5rem;
  }

  .cim_l ul {
    gap: 0.3rem;
  }

  .cim_l h3 {
    padding-bottom: 0.2rem;

    margin-bottom: 0.3rem;
  }

  .cim_media_box dl dt a {
    width: 0.5rem;

    height: 0.5rem;
  }

  .cim_media_box dl dt a iconify-icon {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 560px) {
  .cim_l ul li span {
    width: 0.4rem;

    height: 0.4rem;
  }

  .cim_l ul li {
    gap: 0.2rem;
  }

  .cim_info {
    gap: 0.1rem;
  }

  .cim_l ul {
    gap: 0.2rem;
  }

  .cim_l h3 {
    padding-bottom: 0.15rem;

    margin-bottom: 0.2rem;
  }

  .cim_media_box dl dt a {
    width: 0.4rem;

    height: 0.4rem;
  }

  .cim_media_box dl dt a iconify-icon {
    font-size: 0.2rem;
  }

  .cim_media_box {
    padding: 0.2rem 0;
  }

  .cim_l {
    margin-bottom: 0;
  }
}

/* ---------------------------------contact_map------------------------------- */

.contact_map_bac {
  height: 100%;
}

.contact_map {
  height: 100%;
}

.contact_map #simpleMap,
.contact_map .fluid-width-video-wrapper,
.contact_map iframe {
  width: 100%;
  height: 100% !important;
}
.contact_map {
  position: relative;
  overflow: hidden;
}

.contact_map iframe {
  display: block;
}

/* 遮罩拦截拖动 */
.contact_map_drag_mask {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact_map_zoom {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.contact_map_zoom_btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: #fff;
  color: #666;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.contact_map_zoom_btn + .contact_map_zoom_btn {
  border-top: 1px solid #e0e0e0;
}

.contact_map_zoom_btn:hover {
  background: #f5f5f5;
  color: #333;
}

/* 标记点下方 FLAG（地图禁拖后固定在默认标记位置） */
.contact_map_flag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 8px);
  padding: 2px 10px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #e53935;
  color: #e53935;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
}

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

@media screen and (max-width: 1024px) {
  .contact_map {
    height: 4.5rem;
  }
}

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

@media screen and (max-width: 768px) {
  .contact_map {
    height: 4rem;
  }
}

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

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

/* ---------------------service.html------------------- */

.service_top_card {
}

.stc_maxbox {
  overflow: hidden;
}

.stc_contain {
  display: flex;

  align-items: stretch;
}

.stc_pic {
  width: 41.93%;

  flex-shrink: 0;

  position: relative;

  overflow: hidden;
}

.stc_pic::before {
  content: "";

  display: block;

  padding-bottom: 89.27%;
}

.stc_pic img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.stc_info {
  flex: 1;

  min-width: 0;

  background: #f8f8f8;

  padding: 0.5rem 0.6rem;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.stc_title {
  font-weight: bold;

  color: var(--i_color2);

  padding-bottom: 0.24rem;

  border-bottom: 1px solid #e5e5e5;

  margin-bottom: 0.24rem;
}

.stc_des {
  color: #666;

  line-height: 1.8;

  margin-bottom: 0.3rem;
}

@media screen and (max-width: 1024px) {
  .stc_contain {
    flex-direction: column;
  }

  .stc_pic {
    width: 100%;
  }

  .stc_info {
    padding: 0.4rem 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .stc_info {
    padding: 0.3rem 0.24rem;
  }
}

/* ----------------------非定制标准---------------- */

.service_customization {
}

.sc_maxbox {
}

.scm_title h3,
.scm_title h4 {
  text-align: left;
}

.scm_list {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.scm_list > li {
  min-width: 0;
}

.scm_item {
  display: block;

  text-align: center;

  transition: all 0.35s ease;
}

.scm_pic {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.scm_pic::before {
  content: "";

  display: block;

  padding-bottom: 71.11%;
}

.scm_pic img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.scm_item:hover .scm_pic img {
  transform: scale(1.06);
}

.scm_num {
  margin-top: 0.24rem;

  display: flex;

  align-items: baseline;

  justify-content: center;

  gap: 0.06rem;
}

.scm_num_val {
  font-weight: bold;

  color: var(--i_color2);

  line-height: 1;

  transition: color 0.35s ease;
}

.scm_num_unit {
  color: var(--i_color2);

  font-weight: 500;

  transition: color 0.35s ease;
}

.scm_line {
  display: block;

  width: 0.6rem;

  height: 0.02rem;

  background: var(--i_color2);

  margin: 0.16rem auto;

  transition: background 0.35s ease;
}

.scm_des {
  color: #666;
}

.scm_item:hover .scm_num_val,
.scm_item:hover .scm_num_unit {
  color: var(--i_color);
}

.scm_item:hover .scm_line {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .scm_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .scm_list {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .scm_num {
    margin-top: 0.2rem;
  }

  .scm_line {
    margin: 0.1rem auto;
  }
}

/* -------------------全球服务--------------- */

.service_global_services {
  background: #f7f9fb;
}

.sgs_maxbox {
}

.sgs_top {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.sgs_l {
  width: 62%;
}

.sgs_l h3 {
  font-weight: 900;

  line-height: normal;

  letter-spacing: 0;

  font-variation-settings: "opsz" auto;

  color: transparent;

  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 0.015rem var(--i_color);
}

.sgs_l h4 {
  font-weight: bold;

  color: var(--i_color);

  margin-bottom: 0.2rem;
}

.sgs_l h5 {
  color: #666666;
}

.sgs_r h3,
.sgs_r h3 span {
  font-weight: bold;

  color: var(--i_color2);
}

.sgs_r h4 {
  color: #666666;
}

.sgs_conatin {
  width: 100%;

  position: relative;
}

.sgs_conatin::before {
  content: "";

  display: block;

  padding-bottom: 52%;
}

.sgs_conatin img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

@media screen and (max-width: 560px) {
  .sgs_top {
    flex-direction: column;
  }

  .sgs_l {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .sgs_r {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
  }
}

/* -------------------质量检验---------------------- */

.service_quality_inspection {
}

.sqi_maxbox {
}

.sqi_title {
  padding-bottom: 0.4rem;

  border-bottom: 1px solid #e5e5e5;
}

.sqi_list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.sqi_item {
  padding: 0.4rem;

  box-sizing: border-box;

  transition: all 0.35s ease;

  cursor: pointer;
}

.sqi_item:nth-child(odd) {
  border-right: 1px solid #e5e5e5;
}

.sqi_inner {
  display: flex;

  align-items: flex-start;

  gap: 0.16rem;
}

.sqi_icon {
  width: 0.64rem;

  height: 0.64rem;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f5f5f5;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: background 0.35s ease;
}

.sqi_icon img {
  width: 46.87%;

  height: 46.87%;

  object-fit: contain;

  transition: all 0.5s ease;

  transform-style: preserve-3d;
}

.sqi_info {
  flex: 1;

  min-width: 0;
}

.sqi_name {
  font-weight: bold;

  color: #212121;

  line-height: 1.4;

  margin-bottom: 0.12rem;

  transition: color 0.35s ease;
}

.sqi_des {
  color: #666;

  line-height: 1.6;
}

.sqi_item:hover .sqi_icon {
  background: rgba(230, 0, 18, 0.1);
}

.sqi_item:hover .sqi_icon img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(7426%)
    hue-rotate(357deg) brightness(95%) contrast(115%);

  transform: rotateY(180deg);
}

.sqi_item:hover .sqi_name {
  color: var(--i_color);
}

@media screen and (max-width: 768px) {
  .sqi_list {
    grid-template-columns: 1fr;
  }

  .sqi_item {
    padding: 0.3rem 0;

    border-right: none;

    border-bottom: 1px solid #e5e5e5;
  }

  .sqi_item:nth-child(odd) {
    border-right: none;
  }

  .sqi_item:last-child {
    border-bottom: none;
  }

  .sqi_icon {
    width: 0.5rem;

    height: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sqi_icon {
    width: 0.4rem;

    height: 0.4rem;
  }

  .sqi_title {
    padding-bottom: 0.2rem;
  }

  .sqi_item {
    padding: 0.2rem 0;
  }
}

/* faq */

.service_faq {
}

.sf_maxbox {
}

.sfm_title h4 {
  width: 40%;
}

.sfm_title h4 a {
  color: var(--i_color);
}

.sfm_title h4 a:hover {
  text-decoration: underline;
}

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

/* -----------------------about.html------------------ */

.aboutUs_company_info {
  background: url(static/images/aboutUs_company_bg.webp) no-repeat center/cover;
}

.auci_maxbox {
}

.auci_top {
  display: flex;

  justify-content: space-between;

  gap: 12%;
}

.aucim_l {
  width: 30%;

  flex-shrink: 0;
}

.aucim_l h3 {
  font-weight: bold;

  color: var(--i_color);

  margin-bottom: 0.15rem;
}

.aucim_l h4 {
  color: var(--i_color2);

  font-weight: bold;

  margin-bottom: 0.5rem;
}

.aucim_r {
  width: 100%;
}

.aucim_r span {
  color: #666666;

  display: block;
}

.auci_img {
  width: 100%;
}

.auci_img img {
  width: 100%;

  object-fit: contain;
}

.auci_data {
  margin-top: -0.5rem;
}

.auci_data ul {
  display: flex;
}

.auci_data ul li {
  width: calc(100% / 3);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.15rem;
}

.auci_data ul li h3 {
  display: flex;

  gap: 0.1rem;
}
.auci_data ul li:nth-child(2) h3 {
  margin-left: 0.5rem;
}
.auci_data ul li h3 span {
  color: var(--i_color);

  display: block;

  font-weight: bold;
}

.auci_data ul li h3 sup {
  color: var(--i_color2);
}

.auci_data ul li h4 {
  color: #666666;
}
@media screen and (max-width: 1366px) {
  .auci_data ul li:nth-child(2) h3 {
    margin-left: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .auci_data ul li:nth-child(2) h3 {
    margin-left: 0rem;
  }
}
@media screen and (max-width: 768px) {
  .auci_top {
    flex-direction: column;
  }

  .aucim_l {
    width: 100%;

    align-items: center;

    margin-bottom: 0.3rem;
  }

  .aucim_l h3,
  .aucim_l h4,
  .aucim_l .auci_btn {
    display: flex;

    justify-content: center;
  }

  .aucim_l h4 {
    margin-bottom: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .aucim_l {
    margin-bottom: 0.2rem;
  }

  .auci_data ul {
    flex-wrap: wrap;

    gap: 0.2rem;
  }

  .auci_data {
    margin-top: 0;
  }

  .auci_data ul li {
    width: 100%;
  }

  .auci_data ul li h3 {
    gap: 0.05rem;
  }
}

/* -----------------------发展历史---------------------- */

.aboutUs_development_history {
  background: url(static/images/adh_bg.webp) no-repeat center/cover;
}

.adh_maxbox {
}

.course_info {
  width: 100%;

  margin-bottom: 0.6rem;
}

.course_info_item {
  width: 100%;

  display: none;

  transition: all 0.4s;
}

.course_info .active {
  display: block;
}

.course_info_box {
  display: flex;

  flex-wrap: wrap;

  gap: 0.4rem 0;

  justify-content: space-between;
}

.course_info_txt {
  width: 43%;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  position: relative;
}

.cit_year {
  font-family: "DINPro";

  font-size: 2rem;

  font-weight: bold;

  line-height: normal;

  text-align: center;

  letter-spacing: 0px;

  background: linear-gradient(180deg, #ffffff 19%, #ffffff00 81%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

.course_info_txt h6 {
  display: flex;

  color: #fff;

  z-index: 1;
}

.course_info_img {
  width: 51%;

  position: relative;

  overflow: hidden;
}

.course_info_img::before {
  content: "";

  padding-bottom: 57.7%;

  display: block;
}

.course_info_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.course_years_box {
  position: relative;

  padding: 0 1rem;
}

.course_list {
  overflow: hidden;
}

.course_list .swiper-wrapper {
  display: -webkit-flex;

  display: flex;

  position: relative;

  width: 100%;
}

.course_list .swiper-slide {
  flex-shrink: 0;

  position: relative;
}

.course_item {
  display: flex;

  flex-direction: column;

  align-items: center;

  overflow: hidden;

  padding: 0.2rem 0;
}

.course_item p {
  color: #fff;
}

.course_list ul li.swiper-slide-active .course_item p {
  color: var(--i_color);

  font-weight: bold;
}

.course_item h6 {
  width: 100%;

  height: 1px;

  background-color: #c1c1c1;

  margin-top: 0.2rem;

  position: relative;
}

.course_item h6::before {
  content: "";

  display: block;

  width: 0.14rem;

  height: 0.14rem;

  border-radius: 50%;

  background-color: #c1c1c1;

  position: absolute;

  top: 50%;

  left: 50%;

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

  transition: all 0.4s ease;
}

.course_item h6::after {
  content: "";

  display: block;

  width: 0;

  height: 0;

  border-radius: 50%;

  border: 2px solid #c1c1c1;

  position: absolute;

  top: 50%;

  left: 50%;

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

  transition: all 0.4s ease;
}

.course_list .swiper-slide-active h6::before {
  width: 0.36rem;

  height: 0.36rem;

  background-color: #fff;
}

.course_list .swiper-slide-active h6::after {
  width: 0.2rem;

  height: 0.2rem;

  border-color: var(--i_color);
}

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

.course-prev,
.course-next {
  position: absolute;

  top: 40%;

  width: 0.55rem;

  height: 0.55rem;

  border-radius: 50%;

  background: #686869;

  z-index: 3;

  cursor: pointer;

  outline: none;

  -webkit-user-select: none;

  user-select: none;
}

.course-prev {
  left: 0;
}

.course-next {
  right: 0;
}

.course-prev iconify-icon,
.course-next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.26rem;

  color: #fff;
}

.course_list .swiper-button-disabled {
  cursor: not-allowed;
}

.course-prev:hover,
.course-next:hover {
  background: var(--i_color);
}

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

  .course_btns {
    display: flex;

    justify-content: space-between;

    gap: 0 0.2rem;

    margin-top: 0.2rem;
  }

  .course-prev,
  .course-next {
    width: 0.35rem;

    height: 0.35rem;

    position: relative;
  }

  .course_info {
    margin-bottom: 0.4rem;
  }

  .course_info_txt,
  .course_info_img {
    width: 100%;
  }

  .course_info_img::before {
    padding-bottom: 40%;
  }

  .course_info_txt h6 {
    font-weight: 150;
  }

  .course_info_txt h6::before {
    display: none;
  }

  .cit_year {
    font-size: 2rem;
  }

  .cit_year {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .cit_year {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 560px) {
  .course_info {
    margin-bottom: 0.25rem;
  }

  .course_info_txt h6 {
    font-size: 0.14rem;
  }

  .course_info_box {
    gap: 0.25rem 0;
  }

  .cit_year {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 375px) {
  .cit_year {
    font-size: 0.6rem;
  }
}

/* -------------------工厂图---------------- */

.aboutUs_factory_real_shots {
}

.aufrs_maxbox {
}

.aufrs_contain {
}

.aufrs_list {
  position: relative;

  overflow: hidden;
}

.aufrs_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.aufrs_list li {
  flex-shrink: 0;

  position: relative;
}

.aufrs_list li span {
  display: block;

  position: relative;
}

.aufrs_list li span::before {
  content: "";

  display: block;

  padding-bottom: 67.5%;
}

.aufrs_list li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.aufrs_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

.aufrs_pagination .swiper-pagination-bullet {
  width: 0.72rem;

  height: 0.02rem;

  display: inline-block;

  margin: 0 6px;

  background: #ccc;

  border-radius: 0;

  outline: none;

  opacity: 1;

  cursor: pointer;
}

.aufrs_pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 768px) {
  .aufrs_pagination .swiper-pagination-bullet {
    width: 0.5rem;
  }

  .aufrs_pagination {
    margin-top: 0.2rem;
  }
}

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

/* ----------------我们的企业客户---------------- */

.aboutUs_corporate_clients {
  background: url(static/images/aocc_bg.webp) no-repeat center/cover;
}

.acc_maxbox {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.acc_l {
  width: 43.21%;
}

.acc_title h3,
.acc_title h4 {
  text-align: left;
}

.acc_r {
  width: 53.64%;
}

.acc_r ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.87rem 0.38rem;
}

.acc_r ul li {
  width: calc((100% - 2 * 0.38rem) / 3);
}

.acc_r ul li span {
  position: relative;

  display: block;

  width: 100%;
}

.acc_r ul li span::before {
  content: "";

  display: block;

  padding-bottom: 51.1%;
}

.acc_r ul li span img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}

@media screen and (max-width: 1024px) {
  .acc_r ul {
    gap: 0.5rem 0.2rem;
  }

  .acc_r ul li {
    width: calc((100% - 2 * 0.2rem) / 3);
  }
}

@media screen and (max-width: 768px) {
  .acc_maxbox {
    flex-direction: column;
  }

  .acc_l {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .acc_title h3,
  .acc_title h4 {
    text-align: center;
  }

  .acc_l .public_red_bg {
    display: flex;

    justify-content: center;
  }

  .acc_r {
    width: 100%;
  }
}

/* WOW 滚动动效优化 */

.wow {
  animation-duration: 0.8s;

  animation-fill-mode: both;
}

/* ---------------页面底部表单---------------- */

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

   WPForms 公共样式

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

#wpforms-146,
#wpforms-150,
#wpforms-152,
#wpforms-154,
#wpforms-156,
#wpforms-157 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 124px;

  --wpforms_input_font_size: 20px;

  --wpforms_select_height: 60px;

  margin: 0;

  padding: 0;
}

/* 表单主体 */

#wpforms-form-146,
#wpforms-form-150,
#wpforms-form-152,
#wpforms-form-154,
#wpforms-form-156,
#wpforms-form-157 {
  width: 100%;

  position: relative;
}

/* 字段基础样式 */

#wpforms-146 .wpforms-field,
#wpforms-150 .wpforms-field,
#wpforms-152 .wpforms-field,
#wpforms-154 .wpforms-field,
#wpforms-156 .wpforms-field,
#wpforms-157 .wpforms-field {
  padding: 0;

  clear: both;
}

/* 字段样式 */

#wpforms-146 .wpforms-field-container > .wpforms-field,
#wpforms-150 .wpforms-field-container > .wpforms-field,
#wpforms-152 .wpforms-field-container > .wpforms-field,
#wpforms-154 .wpforms-field-container > .wpforms-field,
#wpforms-156 .wpforms-field-container > .wpforms-field,
#wpforms-157 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

/* 必填标记 */

#wpforms-146 .wpforms-field-container .wpforms-required-label,
#wpforms-150 .wpforms-field-container .wpforms-required-label,
#wpforms-152 .wpforms-field-container .wpforms-required-label,
#wpforms-154 .wpforms-field-container .wpforms-required-label,
#wpforms-156 .wpforms-field-container .wpforms-required-label,
#wpforms-157 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

/* 输入框、文本域、下拉框 */

#wpforms-146 .wpforms-field-container .wpforms-field > input,
#wpforms-146 .wpforms-field-container textarea,
#wpforms-146 .wpforms-field-container select,
#wpforms-150 .wpforms-field-container .wpforms-field > input,
#wpforms-150 .wpforms-field-container textarea,
#wpforms-150 .wpforms-field-container select,
#wpforms-152 .wpforms-field-container .wpforms-field > input,
#wpforms-152 .wpforms-field-container textarea,
#wpforms-152 .wpforms-field-container select,
#wpforms-154 .wpforms-field-container .wpforms-field > input,
#wpforms-154 .wpforms-field-container textarea,
#wpforms-154 .wpforms-field-container select,
#wpforms-156 .wpforms-field-container .wpforms-field > input,
#wpforms-156 .wpforms-field-container textarea,
#wpforms-156 .wpforms-field-container select,
#wpforms-157 .wpforms-field-container .wpforms-field > input,
#wpforms-157 .wpforms-field-container textarea,
#wpforms-157 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border: 1px solid #fff;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;
}

/* input */

#wpforms-146 .wpforms-field-container .wpforms-field > input,
#wpforms-150 .wpforms-field-container .wpforms-field > input,
#wpforms-152 .wpforms-field-container .wpforms-field > input,
#wpforms-154 .wpforms-field-container .wpforms-field > input,
#wpforms-156 .wpforms-field-container .wpforms-field > input,
#wpforms-157 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;
}

/* textarea */

#wpforms-146 .wpforms-field-container textarea,
#wpforms-150 .wpforms-field-container textarea,
#wpforms-152 .wpforms-field-container textarea,
#wpforms-154 .wpforms-field-container textarea,
#wpforms-156 .wpforms-field-container textarea,
#wpforms-157 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;
}

/* select */

#wpforms-146 .wpforms-field-container select,
#wpforms-150 .wpforms-field-container select,
#wpforms-152 .wpforms-field-container select,
#wpforms-154 .wpforms-field-container select,
#wpforms-156 .wpforms-field-container select,
#wpforms-157 .wpforms-field-container select {
  border: #d6d6d6 1px solid;

  height: var(--wpforms_select_height);

  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 12px center;

  background-size: 0.3rem;
}

/* placeholder */

#wpforms-146 input::placeholder,
#wpforms-146 textarea::placeholder,
#wpforms-146 select::placeholder,
#wpforms-150 input::placeholder,
#wpforms-150 textarea::placeholder,
#wpforms-150 select::placeholder,
#wpforms-152 input::placeholder,
#wpforms-152 textarea::placeholder,
#wpforms-152 select::placeholder,
#wpforms-154 input::placeholder,
#wpforms-154 textarea::placeholder,
#wpforms-154 select::placeholder,
#wpforms-156 input::placeholder,
#wpforms-156 textarea::placeholder,
#wpforms-156 select::placeholder,
#wpforms-157 input::placeholder,
#wpforms-157 textarea::placeholder,
#wpforms-157 select::placeholder {
  color: #000;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

/* select 默认状态 */

#wpforms-146 select:invalid,
#wpforms-150 select:invalid,
#wpforms-152 select:invalid,
#wpforms-154 select:invalid,
#wpforms-156 select:invalid,
#wpforms-157 select:invalid {
  color: #212121;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

/* hover / focus */

#wpforms-146 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-146 .wpforms-field-container textarea:hover,
#wpforms-146 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-146 .wpforms-field-container textarea:focus,
#wpforms-150 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-150 .wpforms-field-container textarea:hover,
#wpforms-150 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-150 .wpforms-field-container textarea:focus,
#wpforms-152 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-152 .wpforms-field-container textarea:hover,
#wpforms-152 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-152 .wpforms-field-container textarea:focus,
#wpforms-154 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-154 .wpforms-field-container textarea:hover,
#wpforms-154 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-154 .wpforms-field-container textarea:focus,
#wpforms-156 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-156 .wpforms-field-container textarea:hover,
#wpforms-156 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-156 .wpforms-field-container textarea:focus,
#wpforms-157 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-157 .wpforms-field-container textarea:hover,
#wpforms-157 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-157 .wpforms-field-container textarea:focus {
  border: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

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

   错误提示

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

#wpforms-146 label.wpforms-error,
#wpforms-146 em.wpforms-error,
#wpforms-150 label.wpforms-error,
#wpforms-150 em.wpforms-error,
#wpforms-152 label.wpforms-error,
#wpforms-152 em.wpforms-error,
#wpforms-154 label.wpforms-error,
#wpforms-154 em.wpforms-error,
#wpforms-156 label.wpforms-error,
#wpforms-156 em.wpforms-error,
#wpforms-157 label.wpforms-error,
#wpforms-157 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

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

   隐藏 Label

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

#wpforms-146 .wpforms-field-label,
#wpforms-150 .wpforms-field-label,
#wpforms-152 .wpforms-field-label,
#wpforms-154 .wpforms-field-label,
#wpforms-156 .wpforms-field-label,
#wpforms-157 .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0;
}

/* 必填星号 */

#wpforms-146 .wpforms-required-label,
#wpforms-150 .wpforms-required-label,
#wpforms-152 .wpforms-required-label,
#wpforms-154 .wpforms-required-label,
#wpforms-156 .wpforms-required-label,
#wpforms-157 .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

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

   布局

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

#wpforms-146 .wpforms-field-container,
#wpforms-150 .wpforms-field-container,
#wpforms-152 .wpforms-field-container,
#wpforms-154 .wpforms-field-container,
#wpforms-156 .wpforms-field-container,
#wpforms-157 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

/* 前4个字段两列 */

#wpforms-146-field_1-container,
#wpforms-146-field_2-container,
#wpforms-146-field_3-container,
#wpforms-146-field_4-container,
#wpforms-150-field_1-container,
#wpforms-150-field_2-container,
#wpforms-150-field_3-container,
#wpforms-150-field_4-container,
#wpforms-152-field_1-container,
#wpforms-152-field_2-container,
#wpforms-152-field_3-container,
#wpforms-152-field_4-container,
#wpforms-154-field_1-container,
#wpforms-154-field_2-container,
#wpforms-154-field_3-container,
#wpforms-154-field_4-container,
#wpforms-156-field_1-container,
#wpforms-156-field_2-container,
#wpforms-156-field_3-container,
#wpforms-156-field_4-container,
#wpforms-157-field_1-container,
#wpforms-157-field_2-container,
#wpforms-157-field_3-container,
#wpforms-157-field_4-container {
  width: 49% !important;
}

/* 第5个字段100% */

#wpforms-146-field_5-container,
#wpforms-150-field_5-container,
#wpforms-152-field_5-container,
#wpforms-154-field_5-container,
#wpforms-156-field_5-container,
#wpforms-157-field_5-container {
  width: 100% !important;
}

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

   提交按钮

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

#wpforms-146 .wpforms-submit-container,
#wpforms-150 .wpforms-submit-container,
#wpforms-152 .wpforms-submit-container,
#wpforms-154 .wpforms-submit-container,
#wpforms-156 .wpforms-submit-container,
#wpforms-157 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-146 .wpforms-submit-container button,
#wpforms-150 .wpforms-submit-container button,
#wpforms-152 .wpforms-submit-container button,
#wpforms-154 .wpforms-submit-container button,
#wpforms-156 .wpforms-submit-container button,
#wpforms-157 .wpforms-submit-container button {
  width: 100%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

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

  font-family: Arial;

  border-radius: 2rem;

  box-sizing: border-box;
}

#wpforms-146 .wpforms-submit-container button:hover,
#wpforms-150 .wpforms-submit-container button:hover,
#wpforms-152 .wpforms-submit-container button:hover,
#wpforms-154 .wpforms-submit-container button:hover,
#wpforms-156 .wpforms-submit-container button:hover,
#wpforms-157 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

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

   平板

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

@media screen and (max-width: 1024px) {
  #wpforms-146,
  #wpforms-150,
  #wpforms-152,
  #wpforms-154,
  #wpforms-156,
  #wpforms-157 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-146-field_1-container,
  #wpforms-146-field_2-container,
  #wpforms-146-field_3-container,
  #wpforms-146-field_4-container,
  #wpforms-146-field_5-container,
  #wpforms-146-field_6-container,
  #wpforms-150-field_1-container,
  #wpforms-150-field_2-container,
  #wpforms-150-field_3-container,
  #wpforms-150-field_4-container,
  #wpforms-150-field_5-container,
  #wpforms-150-field_6-container,
  #wpforms-152-field_1-container,
  #wpforms-152-field_2-container,
  #wpforms-152-field_3-container,
  #wpforms-152-field_4-container,
  #wpforms-152-field_5-container,
  #wpforms-152-field_6-container,
  #wpforms-154-field_1-container,
  #wpforms-154-field_2-container,
  #wpforms-154-field_3-container,
  #wpforms-154-field_4-container,
  #wpforms-154-field_5-container,
  #wpforms-154-field_6-container,
  #wpforms-156-field_1-container,
  #wpforms-156-field_2-container,
  #wpforms-156-field_3-container,
  #wpforms-156-field_4-container,
  #wpforms-156-field_5-container,
  #wpforms-156-field_6-container,
  #wpforms-157-field_1-container,
  #wpforms-157-field_2-container,
  #wpforms-157-field_3-container,
  #wpforms-157-field_4-container,
  #wpforms-157-field_5-container,
  #wpforms-157-field_6-container {
    width: 100% !important;
  }

  #wpforms-146 .wpforms-submit-container button,
  #wpforms-150 .wpforms-submit-container button,
  #wpforms-152 .wpforms-submit-container button,
  #wpforms-154 .wpforms-submit-container button,
  #wpforms-156 .wpforms-submit-container button,
  #wpforms-157 .wpforms-submit-container button {
    width: 100%;
  }
}

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

   手机

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

@media screen and (max-width: 560px) {
  #wpforms-146 .wpforms-submit-container,
  #wpforms-150 .wpforms-submit-container,
  #wpforms-152 .wpforms-submit-container,
  #wpforms-154 .wpforms-submit-container,
  #wpforms-156 .wpforms-submit-container,
  #wpforms-157 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-146 .wpforms-submit-container button,
  #wpforms-150 .wpforms-submit-container button,
  #wpforms-152 .wpforms-submit-container button,
  #wpforms-154 .wpforms-submit-container button,
  #wpforms-156 .wpforms-submit-container button,
  #wpforms-157 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}

/* -------------------contact表单----------------- */

#wpforms-167 {
  --wpforms_input_height: 90px;

  --wpforms_textarea_height: 157px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 90px;

  margin: 0;

  padding: 0;
}

#wpforms-form-167 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;

  clear: both;
}

/* 字段样式 */

#wpforms-167 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-167
  .wpforms-field-container
  #wpforms-167-field_2-container
  .wpforms-required-label {
  top: 30px !important;
}

#wpforms-167 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-167 .wpforms-field-container .wpforms-field > input,
#wpforms-167 .wpforms-field-container textarea,
#wpforms-167 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border-bottom: 1px solid rgba(51, 51, 51, 0.2);

  border-top: none;

  border-left: none;

  border-right: none;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;
}

#wpforms-167 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;
}

#wpforms-167 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;
}

#wpforms-167 .wpforms-field-container select {
  border-bottom: #d6d6d6 1px solid;

  border-top: none;

  border-left: none;

  border-right: none;

  height: var(--wpforms_select_height);

  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 12px center;

  background-size: 0.3rem;
}

#wpforms-167 input::placeholder,
#wpforms-167 textarea::placeholder,
#wpforms-167 select::placeholder {
  color: #666;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-167 select:invalid {
  color: #666;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-167 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-167 .wpforms-field-container textarea:hover,
#wpforms-167 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-167 .wpforms-field-container textarea:focus {
  border-bottom: var(--i_color) 1px solid;

  border-top: none;

  border-left: none;

  border-right: none;

  outline: none;

  box-shadow: none;
}

/* 错误提示 */

#wpforms-167 label.wpforms-error,
#wpforms-167 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏Label */

#wpforms-167 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0;
}

#wpforms-167 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 布局 */

#wpforms-167 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-167-field_1-container,
#wpforms-167-field_2-container,
#wpforms-167-field_3-container,
#wpforms-167-field_4-container,
#wpforms-167-field_5-container {
  width: 100% !important;
}

/* 提交按钮 */

#wpforms-167 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: flex-start;
}

#wpforms-167 .wpforms-submit-container button {
  width: 20%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

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

  font-family: Arial;

  box-sizing: border-box;
}

#wpforms-167 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  #wpforms-167 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-167-field_1-container,
  #wpforms-167-field_2-container,
  #wpforms-167-field_3-container,
  #wpforms-167-field_4-container,
  #wpforms-167-field_5-container,
  #wpforms-167-field_6-container {
    width: 100% !important;
  }

  #wpforms-167 .wpforms-submit-container button {
    width: 100%;
  }

  #wpforms-167
    .wpforms-field-container
    #wpforms-167-field_2-container
    .wpforms-required-label {
    top: 10px !important;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-167 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-167 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}
