/*
Theme Name: website
Version: 1.0
Description: 安徽领聚数字作为Google中国区核心合作伙伴,拥有安徽省唯一的一家Google出海体验中心,为安徽本土化外贸企业出海提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：安徽领聚
*/
@charset "utf-8";

:root {
  --i_color: #d62b1e;
  /* 全局颜色 */
  --i_color2: #fff;

  /* 副颜色 */
  --top_h: .8rem;
  --header_height: .8rem;
  /* 顶部高度 */
  --border_color: rgba(51, 51, 51, 0.2);
  /* 默认边框颜色 */

  --title_fz: 0.4rem;
  /* 标题字体大小 */
  --contain-width: 1.6rem;
  /* 盒子左右间距 */
  --box-bottom: 0.95rem;
  /* 盒子与盒子之间距离 */
  --border_color: rgba(51, 51, 51, 0.12);
  /* 默认边框颜色 */
  --boxShadow: 0 2px 10px rgb(0 88 167 / 20%);
}

@media screen and (max-width: 1366px) {
  :root {
    --contain-width: 0.5rem;
    --box-bottom: 0.55rem;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    --top_h: 0.5rem;
    --header_height: 0.5rem;
    --title_fz: 0.3rem;
    --contain-width: 0.5rem;
    --box-bottom: 0.55rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

@media screen and (max-width: 425px) {
  :root {
    --title_fz: 0.2rem;
    --contain-width: 0.2rem;
    --box-bottom: 0.3rem;
  }
}

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

.wrap_l {
  display: block;
  box-sizing: border-box;
  padding-left: 8.35%;
}

.wrap02 {
  width: 1600px;
  max-width: 94vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1921px) {
  .wrap {
    width: 85vw;
    max-width: none;
  }
}
@media screen and (max-width: 1024px) {
  .wrap_l {
    padding-left: 3%;
  }
}

/* --------------------------------------------------header----------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2014;
  height: var(--top_h);
}

.top_cont {
  background: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
}

.top_cont .top {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}

/* @media screen and (max-width:1024px) {
	.top_cont{background: #373737;}
} */
/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-self: flex-end;
  height: 59%;
  padding-bottom: 0.19rem;
}

.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo img {
  max-height: 0.8rem;
}

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

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

@media screen and (max-width: 560px) {
  .logo img {
    max-height: 0.38rem;
  }
}
@media screen and (max-width: 425px) {
  header {
    background-color: #6b625f;
  }
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 0.8rem;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    gap: 0 0.72rem;
    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }

  .i_nav > li::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.1rem;
    width: 0;
    height: 3px;
    transform: translateX(-50%);
    background: var(--i_color2);
    -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: 18px;
    color: #fff;
    /* line-height: var(--top_h); */
    line-height: 0.32rem;
    white-space: nowrap;
    box-sizing: border-box;
    /* padding: 0 0.3rem; */
  }

  .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: #fff;
  }

  .i_nav > li > .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    min-width: 1.6rem;
    background: var(--i_color2);
    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
    font-size: 0;
    top: calc(100% + 0.15rem);
  }

  .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_color2);
    color: #979797;
  }

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

  .i_nav > li > a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: fixed;
    top: var(--top_h);
    left: 0;
    width: 100%;
    width: 100vw;
    max-height: calc(100vh - var(--top_h));
    background: #fff;
    overflow-y: auto;
    z-index: 2;
  }

  /*滚动条*/
  .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;
  }
}

/* 移动端导航按钮 */
.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: #d62b1e;
  border-radius: 0.1rem;
  transition: 0.5s;
}

.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #d62b1e;
  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;
  }
}

/* 导航下拉 */
.nav_dropdown {
  position: fixed;
  top: var(--top_h);
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2013;
}

.nav_dropdown_item {
  display: none;
  padding: 0.4rem 0;
}

.nav_dropdown_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 3%;
}

.nav_dropdown_list dt {
  width: 100%;
  max-width: 3.8rem;
}

.nav_p_cat_name a {
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 900;
}

.nav_dropdown_list ul {
  margin-top: 0.2rem;
}

.nav_dropdown_list li {
  position: relative;
  padding-left: 0.24rem;
}

.nav_dropdown_list li::before {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 24 24"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M24 0v24H0V0h24ZM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018Zm.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022Zm-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01l-.184-.092Z"%2F%3E%3Cpath fill="currentColor" d="M15.707 11.293a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 1 1-1.414-1.414l4.95-4.95l-4.95-4.95a1 1 0 0 1 1.414-1.414l5.657 5.657Z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}

.nav_dropdown_list li a {
  display: block;
  padding: 0.06rem 0;
  font-size: 0.15rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav_dropdown_list li:hover a {
  margin-left: 8px;
  color: var(--i_color);
}

.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: auto;
  gap: 0 0.3rem;
}

/* search */
.top_search_btn {
  display: none;
}

.search_cont {
  --search_height: 0.38rem;
}

.search_cont form {
  width: 2.1rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  border-radius: 1.08rem;
}

.search_ipt {
  width: calc(100% - var(--search_height));
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0.1rem 0 0.12rem;
  background: none;
  font-size: 14px;
  color: #fff;
}

.search_btn {
  font-size: 0;
  width: var(--search_height);
  height: var(--search_height);
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="%23999" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: 0.2rem;
  cursor: pointer;
}

@media screen and (max-width: 1366px) {
  .search_cont form {
    width: 1.6rem;
  }
}

@media screen and (max-width: 1200px) {
  .top_search_btn {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: var(--header_height);
    cursor: pointer;
    position: relative;
  }

  .top_search_btn iconify-icon {
    font-size: 0.24rem;
    color: #fff;
  }

  .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: transparent;
    box-sizing: border-box;
    padding: 0.2rem 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .search_cont.on {
    opacity: 1;
    visibility: visible;
    top: calc(var(--header_height) + 0.44rem);
    background-color: #c4c0bf;
  }

  .search_cont form {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-color: #999;
  }

  .search_ipt {
    font-size: 13px;
  }

  .search_btn {
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    height: 70%;
    padding-bottom: 0;
  }
  .top_language_btn::before {
    display: none;
  }
  .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;
  }
}
@media screen and (max-width: 768px) {
  .top_search_btn iconify-icon {
    color: #333;
  }
}
@media screen and (max-width: 425px) {
  .search_cont.on {
    top: calc(var(--header_height));
  }
}
.top_language {
  position: relative;
}

.top_language_btn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  padding-right: 0.2rem;
  cursor: pointer;
  position: relative;
}

.top_language_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.top_language_btn p {
  font-size: 18px;
  color: #fff;
}

.top_language_btn iconify-icon {
  display: none;
}

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

.language_list.on {
  opacity: 1;
  visibility: visible;
  top: var(--header_height);
}

.language_list dt > h6 {
  margin-bottom: 0.08rem;
  font-size: 0.17rem;
  font-weight: bold;
  white-space: nowrap;
}

.curr_lang {
  margin-bottom: 0.12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #eee;
}

.lang_list a {
  display: block;
  padding: 0.06rem 0;
}

.lang_list span img {
  display: none;
}

.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;
  font-size: 14px;
  position: relative;
}

.lang_list .trp-ls-language-name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.18rem;
  height: 0.18rem;
  box-sizing: border-box;
  border: 1px solid #aaa;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.lang_list .trp-ls-language-name::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.06rem;
  width: 0.06rem;
  height: 0.06rem;
  background: #006bb8;
  -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: #333;
}

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

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

@media screen and (max-width: 1200px) {
  .top_language_btn p {
    display: none;
  }

  .top_language_btn iconify-icon {
    display: block;
    font-size: 0.24rem;
    color: #fff;
  }
}

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

  .lang_list a {
    padding: 2px 0;
  }

  .lang_list .trp-ls-language-name {
    padding-left: 20px;
  }

  .lang_list .trp-ls-language-name::before {
    width: 14px;
    height: 14px;
  }

  .lang_list .trp-ls-language-name::after {
    left: 4px;
  }
}

@media screen and (max-width: 768px) {
  .top_language_btn iconify-icon {
    font-size: 22px;
    color: #333;
  }
  .language_list dt > h6 {
    font-size: 15px;
  }
}

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

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

/* 屏幕大于1024时滚动 */
.topContFixed {
  background-color: #6b625f;
}
/* --------------------顶部信息----------------- */
.top_info {
  width: 100%;
  height: 0.44rem;
  background-color: #232323;
}
.top_info_maxbox {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.top_info_maxbox_left {
  font-size: 0.14rem;
  color: #ffffff;
  height: 100%;
  display: flex;
  align-items: center;
}
.top_info_maxbox_right ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  height: 100%;
  color: #ffffff;
}

.top_info_maxbox_right ul li {
  display: flex;
  align-items: center;
  height: 100%;
}
.top_info_maxbox_right ul li img {
  margin-right: 0.1rem;
  width: 0.18rem;
  height: 0.18rem;
}
.top_info_maxbox_right ul li span {
  font-size: 0.14rem;
  color: #fff;
}
.top_info_maxbox_right ul li span a {
  font-size: 0.14rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .top_info_maxbox_left {
    font-size: 0.13rem;
  }
  .top_info_maxbox_right ul li img {
    margin-right: 0.05rem;
    width: 0.15rem;
    height: 0.15rem;
  }
  .top_info_maxbox_right ul li span {
    font-size: 0.13rem;
  }
  .top_info_maxbox_right ul li span a {
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 425px) {
  /* .top_info {
    display: none;
  } */
  .top_info_maxbox {
    display: block;
    padding: 0.05rem;
  }
  .top_info_maxbox_left {
    font-size: 0.12rem;
    height: auto;
  }
  .top_info_maxbox_right ul li span {
    font-size: 0.12rem;
  }
  .top_info_maxbox_right ul li span a {
    font-size: 0.12rem;
  }
  .top_info_maxbox_right ul li img {
    margin-right: 0.03rem;
    width: 0.13rem;
    height: 0.13rem;
  }
  .top_info {
    display: none;
  }
}
@media screen and (max-width: 375px) {
}
/* -------------------------------------------footer------------------------------------- */
footer {
  background: url(static/images/footer_bg.webp) no-repeat center/cover;
}

.footer_maxBox {
  height: 100%;
}

.footer_topMaxBox {
  color: #fff;
}

.footer_topMaxBox ul {
  display: flex;
  height: 100%;
}

.footer_topMaxBox > ul > li:nth-child(1) {
  flex: 2;
}
.footer_topMaxBox > ul > li:nth-child(2),
.footer_topMaxBox > ul > li:nth-child(3) {
  flex: 1;
}

.footer_topMaxBox ul li {
  position: relative;
}

.li_first::after,
.li_third::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.li_first::after {
  left: 0;
}

.li_second::before,
.li_second::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.li_second::before {
  left: 0;
}

.li_second::after {
  right: 0;
}

.li_third::after {
  right: 0;
}

.footer_topMaxBox > ul > li {
  padding: 0 0.3rem;
  box-sizing: border-box;
}
.li_max_box {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.li_max_box_title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0 0.35rem 0;
  display: flex;
  justify-content: space-between;
}

.li_max_box_title h3 {
  font-family: Arial;
  font-size: 0.4rem;
  font-weight: bold;
  line-height: 0.4688rem;
}
.li_max_box_title_logo {
  width: 100%;
  max-width: 3.48rem;
}

.li_max_box_title_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.li_max_box_title_share {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.li_max_box_title_share iconify-icon {
  font-size: 0.25rem;
  cursor: pointer;
}

.li_max_box_title_share iconify-icon:hover {
  color: #fff !important;
}

.li_max_box .li_max_box_ul_1 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0.5rem 0;
  box-sizing: border-box;
  flex: 1;
}
.li_max_box_ul_1 li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.li_max_box .li_max_box_ul_1 li h5 {
  font-size: 0.18rem;
  font-family: Arial;
  margin-bottom: 0.13rem;
  cursor: pointer;
}
.li_max_box .li_max_box_ul_1 li h6 {
  font-size: 0.18rem;
  font-family: Arial;
  margin-bottom: 0.13rem;
  cursor: pointer;
  color: #fff;
}
.li_max_box .li_max_box_ul_1 li h6 a {
  font-size: 0.18rem;
  font-family: Arial;
  margin-bottom: 0.13rem;
  cursor: pointer;
  color: #fff;
}

.li_max_box .li_max_box_ul_1 li h6 a:hover {
  text-decoration: underline;
}

.li_max_box .li_max_box_ul li a:hover {
  text-decoration: underline;
}

.li_second .li_max_box_ul,
.li_third .li_max_box_ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem 0;
  box-sizing: border-box;
  flex: 1;
}

.li_second .li_max_box .li_max_box_ul li a,
.li_third .li_max_box .li_max_box_ul li a {
  font-size: 0.16rem;
  font-family: Arial;
  color: #fff;
}

.footer_bottomMaxBox {
  padding: 0.5rem 0;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 0.16rem;
}
.footer_bottomMaxBox .wrap a {
  color: #fff;
  cursor: pointer;
}
.footer_bottomMaxBox .wrap a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1440px) {
  .li_max_box .li_max_box_ul_1 {
    padding: 0.4rem 0;
  }

  .footer_bottomMaxBox {
    padding: 0.4rem 0;
  }
}

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

@media screen and (max-width: 1024px) {
  .li_second,
  .li_third {
    display: none;
  }
  .li_first::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .li_first::before {
    right: 0;
  }
}

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

  .li_max_box_title_logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
  }

  .footer_topMaxBox > ul > li {
    padding: 0 0.2rem;
  }
  .li_max_box .li_max_box_ul_1 li h5 {
    font-size: 0.15rem;
  }
  .li_max_box .li_max_box_ul_1 li h6 {
    font-size: 0.15rem;
  }
  .li_max_box .li_max_box_ul_1 li h6 a {
    font-size: 0.15rem;
  }

  .li_max_box .li_max_box_ul_1 {
    padding: 0.2rem 0;
  }

  .footer_bottomMaxBox {
    font-size: 0.1rem;
    padding: 0.1rem 0;
  }

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

/* -----------------------------------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: 48%;
  /* 设置比例 */
  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;
}

.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: 19%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 71.45%;
}

.b_text1_text {
  font-size: 0.4rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 0.64rem;
}

.b_text1_btn {
  margin-top: 0.6rem;
}
.b_text1_btn a:hover {
  -webkit-transform: translate(0, -6px);
  transform: translate(0, -6px);
  box-shadow: 0 4px 0.1rem rgb(230 0 0 / 60%);
  border-color: #d62b1e;
  background: #d62b1e;
}
.b_text1_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
  font-family: Arial;
  color: #ffffff;
  background: #d62b1e;
  padding: 0.17rem 0.05rem 0.17rem 0.35rem;
  font-size: 0.16rem;
  font-weight: 400;
  width: 2rem;
  height: 0.5rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
}

.b_text1_btn a .banner_right_bg {
  width: 0.65rem;
  height: 0.42rem;
  object-fit: contain;
  position: relative;
}

@media screen and (max-width: 1440px) {
  .b_text1_text {
    font-size: 0.35rem;
  }
}

@media screen and (max-width: 1366px) {
  .b_text1_text {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 1200px) {
  .b_text1_text {
    font-size: 0.25rem;
    line-height: 0.54rem;
  }
  .b_text1 {
    top: 23%;
  }
  .b_text1_btn {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .banner-button-prev,
  .banner-button-next {
    display: none;
  }

  .banner-pagination {
    bottom: 0.1rem !important;
  }
  .b_text1_text {
    font-size: 0.2rem;
    line-height: 0.4rem;
  }
  .b_text1_btn a {
    gap: 0.1rem;
    padding: 0.13rem 0.05rem 0.13rem 0.2rem;
    font-size: 0.13rem;
    width: 1.5rem;
    height: 0.38rem;
  }
  .b_text1_btn a .banner_right_bg {
    width: 0.5rem;
    height: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .b_text1 {
    top: 28%;
  }
  .b_text1_text {
    font-size: 0.16rem;
    line-height: 0.28rem;
  }
  .b_text1_btn a {
    gap: 0.1rem;
    padding: 0.13rem 0.05rem 0.13rem 0.2rem;
    font-size: 0.13rem;
    width: 1.4rem;
    height: 0.35rem;
  }
  .b_text1_btn a .banner_right_bg {
    width: 0.4rem;
    height: 0.25rem;
  }

  .banner-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    display: inline-block;
    margin: 0 0.06rem;
    background: #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
  }
}

@media screen and (max-width: 425px) {
  .b_text1 {
    top: 22%;
    width: 80%;
  }
  .b_text1_btn {
    display: none;
  }
  .banner .swiper-slide {
    padding-bottom: 65%;
  }
}
@media screen and (max-width: 375px) {
  .b_text1 {
    top: 26%;
  }
}
@media screen and (max-width: 320px) {
  .b_text1_text {
    font-size: 0.1rem;
    line-height: 0.18rem;
  }
  .b_text1 {
    top: 33%;
  }
  .banner-pagination .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
    display: inline-block;
    margin: 0 0.03rem;
    background: #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
  }
}

/* --------------------------------Products Series---------------------- */
.home_products_series {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  padding-top: 0.75rem;
  box-sizing: border-box;
  margin-bottom: var(--box-bottom);
}

.home_products_series_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.home_products_series_top_left {
  width: 69%;
}

.home_products_series_top_left h3 {
  font-family: Arial;
  font-size: var(--title_fz);
  font-weight: bold;
  color: #333333;
  position: relative;
  width: fit-content;
}

.home_products_series_top_left h3::before {
  content: "";
  display: block;
  width: 50%;
  height: 0.04rem;
  background: #d62b1e;
  flex-shrink: 0;
  position: absolute;
  bottom: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.home_products_series_top_left h3 span {
  color: #d62b1e;
}

.home_products_series_top_left p {
  margin-top: 0.5rem;
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  color: #666666;
}

.home_products_series_top_right a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  font-family: Arial;
  color: #ffffff;
  background: #d62b1e;
  padding: 0.17rem 0.05rem 0.17rem 0.35rem;
  font-size: 0.16rem;
  font-weight: 400;
  width: fit-content;
  height: 0.5rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.home_products_series_top_right a:hover {
  -webkit-transform: translate(0, -6px);
  transform: translate(0, -6px);
  box-shadow: 0 4px 0.1rem rgb(230 0 0 / 60%);
  border-color: #d62b1e;
  background: #d62b1e;
}
.home_products_series_top_right a .banner_right_bg {
  width: 0.65rem;
  height: 0.42rem;
  object-fit: contain;
  position: relative;
}

.home_products_series_contain {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}

.home_products_series_contain_left {
  position: relative;
  width: 29.13%;
  cursor: pointer;
  border-radius: 0.08rem;
}
.home_products_series_contain_left a {
  display: block;
  width: 100%;
  height: 100%;
}

.home_products_series_contain_left a::before {
  content: "";
  display: block;
  padding-bottom: 154.9%;
}
/* 覆盖层 + 居中展示图片 */
.home_products_series_contain_left a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 1. 黑色半透明遮罩  */
  background: rgba(0, 0, 0, 0.55);
  /* 2. 中间的 hover 图片 */
  background-image: url("static/images/home_products_serices_hoverbg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20%; /* 可调整大小 */
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* 鼠标悬浮时显示 */
.home_products_series_contain_left a:hover::after {
  opacity: 1;
}

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

.home_products_series_contain_left h6 {
  position: absolute;
  top: 11%;
  left: 50%;
  font-family: Arial;
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 0.5rem;
  text-align: center;
  color: #d62b1e;
  transform: translateX(-50%);
  border-bottom: 2px solid #d62b1e;
  padding-bottom: 0.3rem;
  width: 79%;
}

.home_products_series_contain_left_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70.524%;
  object-fit: contain;
}
.home_products_series_contain_right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 3%;
  width: 69%;
  border-radius: 0.08rem;
}

.home_products_series_contain_right_card {
  width: 31.33%;
}

.home_products_series_contain_right_card a {
  display: block;
  width: 100%;
  position: relative;
}

/* 通过padding-bottom撑起正方形比例 */
.home_products_series_contain_right_card a::before {
  content: "";
  display: block;
  padding-bottom: 102%;
}
/* 覆盖层 + 居中展示图片 */
.home_products_series_contain_right_card a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 1. 黑色半透明遮罩  */
  background: rgba(0, 0, 0, 0.55);
  /* 2. 中间的 hover 图片 */
  background-image: url("static/images/home_products_serices_hoverbg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20%; /* 可调整大小 */
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* 鼠标悬浮时显示 */
.home_products_series_contain_right_card a:hover::after {
  opacity: 1;
}

/* 图片绝对定位填满容器 */
.home_products_series_contain_right_otherBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_products_series_contain_right_card h6 {
  font-family: Arial;
  font-size: 0.26rem;
  font-weight: bold;
  line-height: 0.32rem;
  color: #333333;
  position: absolute;
  top: 12%;
  left: 11%;
}
.home_products_series_contain_right_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 79%;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  /* .home_products_series_contain_right {
    gap: 0.2rem;
  } */
}

@media screen and (max-width: 1024px) {
  /* .home_products_series_contain {
    gap: 0.2rem;
  } */

  /* .home_products_series_contain_right {
    gap: 0.1rem;
  } */

  .home_products_series_top_left p {
    margin-top: 0.3rem;
    font-size: 0.16rem;
  }

  .home_products_series_top_right a {
    gap: 0.1rem;
    padding: 0.08rem 0.05rem 0.08rem 0.13rem;
    font-size: 0.16rem;
    height: 0.4rem;
  }

  .home_products_series_top_right a .banner_right_bg {
    width: 0.45rem;
    height: 0.34rem;
  }

  .home_products_series_contain_left h6 {
    padding-bottom: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .home_products_series_top {
    margin-bottom: 0.3rem;
  }

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

  .home_products_series_top_right a {
    gap: 0.1rem;
    padding: 0.05rem 0.05rem 0.05rem 0.13rem;
    font-size: 0.14rem;
    height: 0.4rem;
  }

  .home_products_series_top_right a .banner_right_bg {
    width: 0.4rem;
    height: 0.34rem;
  }

  .home_products_series_contain_left h6 {
    padding-bottom: 0.1rem;
    font-size: 0.3rem;
  }

  .home_products_series_contain_right_card h6 {
    font-size: 0.2rem;
    line-height: 0.3rem;
  }

  .home_products_series_contain_right_img {
    width: 97%;
    height: 65%;
  }
}
@media screen and (max-width: 425px) {
  .home_products_series {
    padding-top: 0.35rem;
  }
  .home_products_series_top {
    display: block;
  }

  .home_products_series_top_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .home_products_series_top_left p {
    margin-top: 0.25rem;
    font-size: 0.13rem;
    line-height: 0.2rem;
  }

  .home_products_series_top_right a {
    gap: 0.1rem;
    padding: 0.03rem 0.03rem 0.03rem 0.1rem;
    font-size: 0.12rem;
    height: 0.3rem;
  }

  .home_products_series_top_right a .banner_right_bg {
    width: 0.3rem;
    height: 0.3rem;
  }

  .home_products_series_top_right {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.1rem;
  }
  .home_products_series_contain {
    display: block;
  }
  .home_products_series_contain_left {
    position: relative;
    width: 100%;
    cursor: pointer;
    margin-bottom: 0.2rem;
  }
  .home_products_series_contain_left_topbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home_products_series_contain_left a::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .home_products_series_contain_right {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .home_products_series_contain_right_card {
    width: 100%;
  }
}

/* ---------------------------Second Hand Machinery Supplier--------------------------- */
.second_hand {
  width: 100%;
  padding: 0 3.125%;
  box-sizing: border-box;
  margin-bottom: var(--box-bottom);
}

.second_hand_maxbox {
  background: url(static/images/home_secondHand.webp) no-repeat center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.77rem 0 0.26rem 0;
  border-radius: 0.08rem;
}
.second_hand_leftbox {
  display: none;
}
.second_hand_centerbox {
  color: #ffffff;
}

.second_hand_centerbox h3 {
  font-family: Arial;
  font-size: 0.4rem;
  line-height: normal;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.04rem;
  text-align: center;
}

.second_hand_centerbox h6 {
  font-family: Arial;
  font-size: 0.18rem;
  line-height: 0.3rem;
  text-align: center;
}

.second_hand_rightbox {
  /* margin-left: auto; */
  position: absolute;
  right: 6.4%;
}
.second_hand_rightbox a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  font-family: Arial;
  color: #ffffff;
  background: #d62b1e;
  padding: 0.17rem 0.05rem 0.17rem 0.35rem;
  font-size: 0.16rem;
  font-weight: 400;
  width: fit-content;
  height: 0.5rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.second_hand_rightbox a:hover {
  -webkit-transform: translate(0, -6px);
  transform: translate(0, -6px);
  box-shadow: 0 4px 0.1rem rgb(230 0 0 / 60%);
  border-color: #d62b1e;
  background: #d62b1e;
}
.second_hand_rightbox a .banner_right_bg {
  width: 0.65rem;
  height: 0.42rem;
  object-fit: contain;
  position: relative;
}

@media screen and (max-width: 1366px) {
  .second_hand_centerbox h3 {
    font-size: 0.35rem;
    margin-bottom: 0.03rem;
  }

  .second_hand_centerbox h6 {
    font-size: 0.16rem;
  }

  .second_hand_rightbox a {
    gap: 0.18rem;
    padding: 0.17rem 0.05rem 0.17rem 0.3rem;
    font-size: 0.16rem;
    height: 0.5rem;
  }

  .second_hand_rightbox a .banner_right_bg {
    width: 0.6rem;
    height: 0.4rem;
  }
}

@media screen and (max-width: 1200px) {
  .second_hand_maxbox {
    padding: 0.6rem 0 0.26rem 0;
  }

  .second_hand_centerbox h3 {
    font-size: 0.3rem;
    margin-bottom: 0.03rem;
  }

  .second_hand_centerbox h6 {
    font-size: 0.16rem;
  }

  .second_hand_rightbox a {
    gap: 0.18rem;
    padding: 0.14rem 0.03rem 0.14rem 0.2rem;
    font-size: 0.15rem;
    height: 0.5rem;
  }

  .second_hand_rightbox a .banner_right_bg {
    width: 0.6rem;
    height: 0.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .second_hand_maxbox {
    padding: 0.55rem 0 0.26rem 0;
  }

  .second_hand_centerbox h3 {
    font-size: 0.25rem;
    margin-bottom: 0.03rem;
  }

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

  .second_hand_rightbox a {
    gap: 0.1rem;
    padding: 0.1rem 0.03rem 0.1rem 0.15rem;
    font-size: 0.15rem;
    height: 0.4rem;
  }

  .second_hand_rightbox a .banner_right_bg {
    width: 0.5rem;
    height: 0.3rem;
  }
  .second_hand_rightbox {
    right: 4.4%;
  }
}

@media screen and (max-width: 768px) {
  .second_hand_maxbox {
    padding: 0.5rem 0 0.26rem 0;
  }

  .second_hand_centerbox h3 {
    font-size: 0.18rem;
    margin-bottom: 0.02rem;
  }

  .second_hand_centerbox h6 {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }

  .second_hand_rightbox a {
    gap: 0.1rem;
    padding: 0.06rem 0.08rem;
    font-size: 0.12rem;
    height: 0.3rem;
    border-radius: 0.08rem;
  }

  .second_hand_rightbox a .banner_right_bg {
    display: none;
  }
  .second_hand_rightbox {
    right: 5%;
  }
}
@media screen and (max-width: 425px) {
  .second_hand_maxbox {
    position: relative;
  }
  .second_hand_leftbox {
    display: block;
    position: absolute;
    top: -0.25rem;
  }

  .second_hand_leftbox img {
    width: 50%;
    object-fit: cover;
  }
  .second_hand_maxbox {
    background: url(static/images/home_secondHand-yellowbg.webp) no-repeat
      center/cover;
    display: block;
    padding: 0.4rem 0 0.2rem 0;
  }
  .second_hand_centerbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .second_hand_centerbox h3 {
    font-size: 0.22rem;
    margin-bottom: 0.1rem;
  }
  .second_hand_centerbox h6 {
    font-size: 0.14rem;
    line-height: 0.2rem;
    width: 80%;
    text-align: center;
  }

  .second_hand_rightbox {
    position: relative;
    text-align: center;
    margin-top: 0.2rem;
  }
  .second_hand_rightbox a .banner_right_bg {
    display: none;
  }
  .second_hand_rightbox a {
    padding: 0.06rem 0.1rem;
    gap: 0.05rem;
  }
}

/* ---------------------------------------Customers Like--------------------------------- */
.home_customers_like {
  background: url(static/images/home_customersLike_bg.webp) no-repeat
    center/cover;
  padding: 0.3rem 0 0.6rem 0;
  box-sizing: border-box;
  margin-bottom: var(--box-bottom);
}

.home_customers_like_maxbox {
}

.home_customers_like_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 0.2rem auto;
  width: 86%;
}
.home_customers_like_title {
  margin-bottom: 0.5rem;
}
.home_customers_like_title h3 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font-family: Arial;
  font-size: var(--title_fz);
  font-weight: bold;
  text-transform: capitalize;
  color: #333333;
  text-align: center;
  margin-bottom: 0.5rem;
}
.home_customers_like_title h3::before {
  content: "";
  display: block;
  width: 50%;
  height: 0.04rem;
  background: #d62b1e;
  flex-shrink: 0;
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  transform: translateX(-50%);
}
.home_customers_like_title span {
  color: #d62b1e;
  margin-left: 0.1rem;
}
.home_customers_like_title p {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  color: #666666;
}
.home_customers_like_title .home_customers_like_title_phone a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  text-decoration: underline;
  font-size: 0.18rem;
  color: #d62b1e;
  cursor: pointer;
}
.home_customers_like_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  font-family: Arial;
  color: #ffffff;
  background: #d62b1e;
  padding: 0.17rem 0.05rem 0.17rem 0.35rem;
  font-size: 0.16rem;
  font-weight: 400;
  width: fit-content;
  height: 0.5rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
  margin-top: 0.2rem;
}
.home_customers_like_btn a:hover {
  -webkit-transform: translate(0, -6px);
  transform: translate(0, -6px);
  box-shadow: 0 4px 0.1rem rgb(230 0 0 / 60%);
  border-color: #d62b1e;
  background: #d62b1e;
}
.home_customers_like_btn a .banner_right_bg {
  width: 0.65rem;
  height: 0.42rem;
  object-fit: contain;
  position: relative;
}

.home_customers_like_list {
  position: relative;
  overflow: hidden;
  margin-top: 0.6rem;
}

.home_customers_like_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}

.home_customers_like_list .swiper-slide {
  flex-shrink: 0;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #ddd;
  -webkit-border-radius: 0.2rem;
  border-radius: 0.08rem;
  position: relative;
  overflow: hidden;
  padding: 0.18rem;
}
.home_customers_like_list .swiper-wrapper li {
  width: 24%;
}
.home_customers_like_list .swiper-wrapper li span {
  position: relative;
}
.home_customers_like_list .swiper-wrapper li span::before {
  content: "";
  display: block;
  padding-bottom: 75.5%;
}

.home_customers_like_list .swiper-wrapper li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* 覆盖层 + 居中展示图片 */
.home_customers_like_list .swiper-wrapper li span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 1. 黑色半透明遮罩  */
  background: rgba(0, 0, 0, 0.55);
  /* 2. 中间的 hover 图片 */
  background-image: url("static/images/home_products_serices_hoverbg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20%; /* 可调整大小 */
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* 鼠标悬浮时显示 */
.home_customers_like_list .swiper-wrapper li:hover span::after {
  opacity: 1;
}

.home_customers_like_list .swiper-wrapper li h3 {
  font-family: Arial;
  font-size: 0.22rem;
  font-weight: bold;
  line-height: 0.3rem;
  color: #333333;
  margin: 0.2rem 0 0.16rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制两行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_customers_like_list .swiper-wrapper li:hover h3 {
  color: var(--i_color);
}
.home_customers_like_list_bottom {
  border-top: #e5e5e5 1px solid;
  padding-top: 0.17rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home_customers_like_list .swiper-wrapper li h6 {
  font-family: Arial;
  font-size: 0.14rem;
  color: #333333;
}

.home_customers_like_list .swiper-wrapper li h6 i {
  color: #d62b1e;
  font-family: Arial;
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  margin: 0 0.08rem 0 0.06rem;
}

.home_customers_like_list .swiper-wrapper li h6 b {
  font-family: Arial;
  font-size: 0.14rem;
  font-weight: normal;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0em;

  color: #666666;
}

.home_customers_like_list .swiper-wrapper li h6 h7 {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  color: #333333;
  margin: 0 0.05rem;
}
.public-pagination {
  text-align: center;
}

.public-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 0.08rem !important;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.public-pagination .swiper-pagination-bullet-active {
  width: 0.1rem;
  height: 0.1rem;
  background: #d62b1e;
  background-size: contain;
  border-radius: 50%;
  -webkit-border-radius: 0.24rem;
  -moz-border-radius: 0.24rem;
  -ms-border-radius: 0.24rem;
  -o-border-radius: 0.24rem;
}

.public-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: calc(-0.04rem); /* top/right/bottom/left = -0.04rem */
  border: 1px solid rgba(214, 43, 30, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .home_customers_like_title {
    margin-bottom: 0.3rem;
  }
  .home_customers_like_list .swiper-wrapper li h3 {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .home_customers_like_btn a {
    gap: 0.1rem;
    padding: 0.08rem 0.05rem 0.08rem 0.13rem;
    font-size: 0.16rem;
    height: 0.4rem;
  }

  .home_customers_like_btn a .banner_right_bg {
    width: 0.45rem;
    height: 0.34rem;
  }
}

@media screen and (max-width: 768px) {
  .home_customers_like_btn a {
    gap: 0.1rem;
    padding: 0.05rem 0.05rem 0.05rem 0.13rem;
    font-size: 0.14rem;
    height: 0.4rem;
  }

  .home_customers_like_btn a .banner_right_bg {
    width: 0.4rem;
    height: 0.34rem;
  }
}

@media screen and (max-width: 425px) {
  .home_customers_like_list .swiper-wrapper li h3 {
    margin: 0.1rem 0;
    font-size: 0.18rem;
  }
  .home_customers_like_btn a {
    gap: 0.1rem;
    padding: 0.03rem 0.03rem 0.03rem 0.1rem;
    font-size: 0.12rem;
    height: 0.3rem;
  }

  .home_customers_like_btn a .banner_right_bg {
    width: 0.3rem;
    height: 0.3rem;
  }

  .home_customers_like_title p {
    margin-top: 0.25rem;
    font-size: 0.13rem;
    line-height: 0.2rem;
    margin-top: 0.15rem;
  }
  .home_customers_like_title {
    margin-bottom: 0.2rem;
  }
}

/* ----------------------------------Cooperative Partner-------------------- */
.cooperative_partner {
  background: url(static/images/home_cooperative_partner_bg.webp) no-repeat
    center/cover;
  padding-top: 0.97rem;
  /* margin-bottom: var(--box-bottom); */
}
.cooperative_partner_maxbox {
}

.cooperative_partner_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cooperative_partner_title {
  margin-bottom: 0.4rem;
}
.cooperative_partner_title h3 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font-family: Arial;
  font-size: var(--title_fz);
  font-weight: bold;
  text-transform: capitalize;
  color: #333333;
  text-align: center;
  margin-bottom: 0.6rem;
}
.cooperative_partner_title h3::before {
  content: "";
  display: block;
  width: 50%;
  height: 0.04rem;
  background: #d62b1e;
  flex-shrink: 0;
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  transform: translateX(-50%);
}
.cooperative_partner_title span {
  color: #d62b1e;
}
.cooperative_partner_title p {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  color: #666666;
}

.cooperative_partner_btn a {
  font-family: Arial;
  color: #d62b1e;
  font-size: 0.18rem;
  box-sizing: border-box;
}

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

.cooperative_partner_top_contain {
  display: flex;
  justify-content: space-between;
}
.cooperative_partner_top_contain .left {
  width: 37%;
}

.cooperative_partner_top_contain .left img {
  width: 100%;
}

.cooperative_partner_top_contain .right {
  width: 55.5%;
  overflow: hidden;
  padding-top: 0.85rem;
}

.cooperative_partner_top_contain .right .xj {
  position: relative;
  display: inline;
  color: #d62b1e;
  font-family: Arial;
  font-size: 0.84rem;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
}

.cooperative_partner_top_contain .right .xj::before {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.3rem;
  font-size: 0.48rem;
  font-weight: normal;
  color: #d62b1e;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cooperative_partner_top_contain .right .borbto a {
  color: #666666;
}

.cooperative_partner_top_contain .right .borbto a {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #222;
}

.m10 {
  margin: 0.1rem 0;
}

.i_blogs_list .swiper-slide {
  flex-shrink: 0;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.25s ease;
  -webkit-transition: box-shadow 0.25s ease;
  -moz-transition: box-shadow 0.25s ease;
  -ms-transition: box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
  /* width: 18% !important; */
}

.i_blogs_list li span {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.i_blogs_list li span::before {
  content: "";
  display: block;
  padding-bottom: 63%;
}

.i_blogs_list li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blogs_list_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
}

.blogs_list_pagination .swiper-pagination-bullet {
  width: 0.71rem;
  height: 0.02rem;
  display: inline-block;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: width 0.5s ease;
}

.blogs_list_pagination .swiper-pagination-bullet-active {
  width: 0.7rem;
  height: 0.02rem;
  background: #d62b1e;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .cooperative_partner_top_contain .right {
    padding-top: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .cooperative_partner {
    padding-top: 0.6rem;
  }
  .cooperative_partner_top_contain .left {
    width: 100%;
    margin-bottom: 0.2rem;
  }

  .cooperative_partner_top_contain .right {
    width: 100%;
  }
  .cooperative_partner_title {
    margin-bottom: 0.3rem;
  }
  .cooperative_partner_top_contain .right .xj {
    font-size: 0.6rem;
  }
  .cooperative_partner_top_contain .right .xj::before {
    font-size: 0.35rem;
  }
  .cooperative_partner_top_contain .right .borbto a {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .cooperative_partner {
    padding-top: 0.3rem;
  }

  .cooperative_partner_title {
    margin-bottom: 0.2rem;
  }

  .cooperative_partner_btn a {
    font-size: 0.15rem;
  }

  .cooperative_partner_title p {
    font-size: 0.15rem;
  }

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

  .cooperative_partner_top_contain .right {
    padding-top: 0.1rem;
  }

  .cooperative_partner_top_contain .right .xj {
    font-size: 0.3rem;
  }

  .cooperative_partner_top_contain .right .xj::before {
    font-size: 0.25rem;
    right: -0.2rem;
    top: -0.08rem;
  }
  .cooperative_partner_top_contain .right .borbto a {
    font-size: 0.16rem;
  }
  .m20 {
    margin: 0.1rem 0;
  }
}

/* -----------------------------------About Yuyi--------------------------------------- */

.about_yuyi {
  padding-top: 0.7rem;
  margin-bottom: var(--box-bottom);
}
.about_yuyi_maxbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about_yuyi_maxbox_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.2rem;
  width: 73%;
}
.about_yuyi_maxbox_title {
  /* margin-bottom: 0.4rem; */
  width: 100%;
  box-sizing: border-box;
}
.about_yuyi_maxbox_title h3 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font-family: Arial;
  font-size: var(--title_fz);
  font-weight: bold;
  text-transform: capitalize;
  color: #333333;
  text-align: center;
  margin-bottom: 0.5rem;
}
.about_yuyi_maxbox_title h3::before {
  content: "";
  display: block;
  width: 50%;
  height: 0.04rem;
  background: #d62b1e;
  flex-shrink: 0;
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  transform: translateX(-50%);
}
.about_yuyi_maxbox_title span {
  color: #d62b1e;
  margin-left: 0.1rem;
}
.about_yuyi_maxbox_title p {
  width: 100%;
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.24rem;
  text-align: center;
  letter-spacing: 0em;
  word-wrap: break-word;
  word-break: break-all;

  font-variation-settings: "opsz" auto;
  color: #666666;
}

.home_about_box {
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.home_about_left {
  width: 61%;
  overflow: hidden;
  border-radius: 0 1.6rem 0 0;
  position: relative;
}
.home_about_left::before {
  padding-bottom: 64%;
  content: "";
  display: block;
}
.home_about_left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_about_left i {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  background: url("static/images/home_about_video.webp") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
}

.i_v_btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
  animation: serv_one_border 2s 0s ease infinite;
}
.i_v_btn span {
  position: relative;
}

.i_v_btn span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
}
.i_v_btn span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
}
.i_v_btn span::before {
  animation: serv_one_border 1.5s 0s ease infinite;
}
.i_v_btn span::after {
  animation: serv_one_border 2.5s 0s ease infinite;
}

@keyframes serv_one_border {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
    -ms-transform: translate(-50%, -50%) scale(1.5);
    -o-transform: translate(-50%, -50%) scale(1.5);
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    -moz-transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes yuan {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.home_about_right {
  width: 58.5%;
  position: absolute;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0.8rem 7.6% 0.5rem 4.6%;
  background-color: #f3f3f3;
  border-radius: 0.15rem 0.15rem 0 0;
}
.home_about_right h3 {
  font-size: 0.44rem;
  color: #d62b1e;
  font-weight: bold;
}
.home_about_right h4 {
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #333;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* 限制显示 4 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home_about_right ul {
  display: flex;
  margin-bottom: 0.43rem;
}

.home_about_right ul li {
  width: 33%;
  border-left: 1px solid rgba(51, 51, 51, 0.2);
  padding-left: 0.25rem;
  box-sizing: border-box;
  cursor: pointer;
}
.home_about_right ul li p {
  font-size: 0.6rem;
  font-weight: 500;
  color: #333333;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.home_about_right ul li:hover p,
.home_about_right ul li:hover p::after {
  color: #d62b1e;
}

.home_about_right ul li p::after {
  content: "+";
  font-size: 0.24rem;
  color: #333333;
}

.home_about_right ul li span {
  font-size: 0.18rem;
  line-height: 0.24rem;
  font-weight: normal;
  color: #333333;
}

.home_about_list {
  width: 100%;
  overflow: hidden;
}
.home_about_pagination {
  text-align: center;
}

.home_about_pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 0.08rem !important;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.home_about_pagination .swiper-pagination-bullet-active {
  width: 0.1rem;
  height: 0.1rem;
  background: #d62b1e;
  background-size: contain;
  border-radius: 50%;
  -webkit-border-radius: 0.24rem;
  -moz-border-radius: 0.24rem;
  -ms-border-radius: 0.24rem;
  -o-border-radius: 0.24rem;
}

.home_about_pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: calc(-0.04rem); /* top/right/bottom/left = -0.04rem */
  border: 1px solid rgba(214, 43, 30, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

.home_about_logo {
  position: absolute !important;
  top: -0.2rem !important;
  left: auto !important;
  right: 10% !important;
  width: 31%;
  height: auto;
  z-index: -1;
}

@media screen and (max-width: 1440px) {
  .home_about_right ul {
    margin-bottom: 0.4rem;
  }
  .home_about_right h3 {
    font-size: 0.32rem;
  }
  .home_about_right h4 {
    font-size: 0.16rem;
    margin-top: 0.15rem;
    margin-bottom: 0.4rem;
  }
  .home_about_left {
    border-radius: 0 1.4rem 0 0;
  }
  .home_about_right {
    padding: 0.45rem 12% 0.45rem 4%;
  }
  .home_about_bac {
    padding: 0.8rem 0;
  }
  .home_about_logo {
    top: -0.1rem !important;
  }
}
@media screen and (max-width: 1200px) {
  .home_about_box {
    margin-top: 0.5rem;
  }
  .home_about_right h3 {
    font-size: 0.28rem;
  }
  .home_about_left {
    border-radius: 0 1.2rem 0 0;
  }
  .home_about_bac {
    padding: 0.6rem 0;
  }
  .home_about_right {
    padding: 0.2rem 5% 0.2rem 4%;
  }
  .home_about_logo {
    right: 18% !important;
    width: 23% !important;
  }
  .home_about_right ul {
    margin-bottom: 0.3rem;
  }
  .home_about_right ul li {
    padding-left: 0.1rem;
  }

  .home_about_right ul li p {
    font-size: 0.45rem;
  }

  .home_about_right ul li span {
    font-size: 0.15rem;
  }
  .home_about_logo {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .home_about_right h3 {
    font-size: 0.24rem;
  }
  .home_about_left {
    border-radius: 0 1rem 0 0;
  }
  .about_yuyi_maxbox_title p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 960px) {
  .home_about_right h3 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .about_yuyi_maxbox_top {
    width: 80%;
  }
  .about_yuyi_maxbox_title {
    margin-bottom: 0;
  }
  .home_about_left {
    width: 100%;
  }
  .home_about_left i {
    width: 0.6rem;
    height: 0.6rem;
    left: 50%;
  }
  .home_about_right {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
  }
  .home_about_box {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .home_about_right {
    padding: 0.6rem 4%;
  }
  .home_about_right h3 {
    font-size: 0.24rem;
  }
  .home_about_right h3 br {
    display: none;
  }
  .home_about_box {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
  .about_yuyi {
    padding-top: 0.35rem;
  }
  .home_about_right {
    padding: 0.4rem 4%;
  }

  .home_about_right h4 {
    font-size: 0.13rem;
    margin-top: 0.15rem;
    margin-bottom: 0.25rem;
  }

  .home_about_right ul li p {
    font-size: 0.3rem;
  }

  .home_about_right ul li span {
    font-size: 0.13rem;
    line-height: 0.2rem;
  }
}
/* eject videos */
.vd_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}
.vd_box_area {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2014;
  width: 60%;
  max-height: 90%;
}
.vd_box_area::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.close_v {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--i_color);
  z-index: 2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.close_v::before {
  content: "+";
  position: absolute;
  top: 46%;
  left: 53%;
  font-size: 0.44rem;
  color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.vd_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .vd_box_area {
    width: 80%;
  }
  .close_v::before {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .vd_box_area {
    width: 88%;
  }
  .close_v {
    top: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}

/* ---------------------------------------Our Advantages----------------------------------- */
.our_advantages {
  padding: 0.8rem 0;
  position: relative;
  width: 100%;
  margin-bottom: var(--box-bottom);
}
.our_advantages_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.our_advantages_bg::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 33%;
}
.our_advantages_bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our_advantages_maxBox {
  position: relative;
}
.our_advantages_contain {
  background-color: #fff;
  border-top: 6px solid #d62b1e;
  margin-top: 0.5rem;
}

.our_advantages_contain {
  /* position: absolute; */
}

.our_advantages_contain ul {
  display: flex;
}

.our_advantages_contain ul li {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 0.35rem 0.6rem 0.35rem;
  margin-top: 0.6rem;
  box-sizing: border-box;
  cursor: pointer;
}

.our_advantages_contain ul li:hover h3 {
  color: #d62b1e;
}
.our_advantages_contain_topdiv img {
  filter: grayscale(100%) brightness(40%);
  transition: all 0.3s ease;
}

.our_advantages_contain ul li:hover .our_advantages_contain_topdiv img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(91%) saturate(1858%)
    hue-rotate(357deg) brightness(96%) contrast(94%);
}
.our_advantages_maxBox ul li:nth-child(even) {
  background-color: #f4f4f4;
}

.our_advantages_contain ul li img {
  width: 0.84rem;
  height: 0.84rem;
  object-fit: cover;
}

.our_advantages_contain ul li h3 {
  font-family: Arial;
  font-size: 0.22rem;
  font-weight: bold;
  line-height: 0.26rem;
  color: #333333;
  text-align: center;
}

.our_advantages_contain ul li h6 {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.28rem;
  color: #666666;
  text-align: center;
}

.our_advantages_contain_topdiv {
  position: relative;
  width: 100%;
}
.our_advantages_contain_topdiv::before {
  content: "";
  display: block;
  padding-bottom: 56%;
}
.our_advantages_contain_topdiv img {
  position: absolute;
  bottom: 0;
  left: 50%;
  object-fit: cover;
  transform: translateX(-50%);
}
@media screen and (max-width: 1440px) {
  .our_advantages_bg::before {
    padding-bottom: 41%;
  }
}
@media screen and (max-width: 1200px) {
  .our_advantages_contain ul li {
    gap: 0.2rem;
    padding: 0 0.2rem 0.6rem 0.2rem;
    margin-top: 0.6rem;
  }
  .our_advantages_bg::before {
    padding-bottom: 50%;
  }
  .our_advantages_contain ul li h3 {
    font-size: 0.2rem;
  }

  .our_advantages_contain ul li h6 {
    font-size: 0.15rem;
    line-height: 0.22rem;
  }
}

@media screen and (max-width: 1024px) {
  .our_advantages_contain ul {
    display: flex;
    flex-wrap: wrap;
  }
  .our_advantages_contain ul li {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0 0.35rem 0.6rem 0.35rem;
    margin-top: 0.6rem;
    box-sizing: border-box;
  }
  .our_advantages_contain ul li:nth-child(n + 4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .our_advantages_contain ul li {
    gap: 0.2rem;
    padding: 0 0.2rem 0.5rem 0.2rem;
    margin-top: 0.6rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 425px) {
  .our_advantages {
    padding: 0.4rem 0;
  }
  .our_advantages_contain ul li {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 0.1rem 0.3rem 0.1rem;
    margin-top: 0;
    box-sizing: border-box;
    margin-bottom: 0.1rem;
  }
  .our_advantages_bg::before {
    padding-bottom: 129%;
  }
  .our_advantages_contain ul li img {
    width: 0.44rem;
    height: 0.44rem;
    object-fit: cover;
  }

  .our_advantages_maxBox ul li:nth-child(even) {
    background-color: transparent;
  }

  .our_advantages_contain ul li:nth-child(4n + 2),
  .our_advantages_contain ul li:nth-child(4n + 3) {
    background-color: #f4f4f4;
  }

  .our_advantages_contain ul li h3 {
    font-size: 0.16rem;
  }

  .our_advantages_contain ul li h6 {
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
}

@media screen and (max-width: 320px) {
  .our_advantages_contain ul li {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0 0.1rem 0.3rem 0.1rem;
    margin-top: 0;
    box-sizing: border-box;
    margin-bottom: 0.1rem;
  }
  .our_advantages_contain ul li img {
    width: 0.3rem;
    height: 0.3rem;
    object-fit: cover;
  }
  .our_advantages_contain ul li h3 {
    font-size: 0.16rem;
    line-height: 0.2rem;
  }
  .our_advantages_bg::before {
    padding-bottom: 179%;
  }
}

/* ----------------------------Follow Our News--------------------------  */
.Follow_Our_News {
  background: #f3f3f3;
  padding: 0.7rem 0 0.5rem 0;
  /* margin-bottom: var(--box-bottom); */
}
.Follow_Our_News_contain {
  width: 100%;
  /* padding: 0.1rem; */
  box-sizing: border-box;
}
.Follow_Our_News_contain ul {
  display: flex;
  justify-content: space-between;
}
.Follow_Our_News_contain ul li {
  width: 31.68%;
  overflow: hidden;
}
.new_pic {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.new_pic::before {
  content: "";
  display: block;
  padding-bottom: 68%;
}

.new_pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.new_info {
  padding: 0.24rem 0 0 0;
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.new_info h6 {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  margin-bottom: 0.27rem;
  color: #999999;
  padding: 0 0.17rem;
}

.new_info h3 {
  font-family: Arial;
  font-size: 0.2rem;
  font-weight: bold;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0em;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.28rem;
  padding: 0 0.17rem;
}
.new_info span {
  font-family: Arial;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.24rem;
  letter-spacing: 0em;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0 0.17rem 0.2rem 0.17rem;
}
.new_btn {
  width: 100%;
  display: flex;
  align-items: center;
  height: 0.5rem;
  justify-content: space-between;
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.28rem;
  letter-spacing: 0em;
  color: #d62b1e;
  padding: 0 0.17rem;
  box-sizing: border-box;
}
.new_btn img {
  width: 0.23rem;
  height: 0.07rem;
}
.Follow_Our_News_contain ul li:hover .new_btn {
  background-color: #d62b1e;
  color: #fff;
}

.Follow_Our_News_contain ul li:hover .rightbg {
  content: url(static/images/home_news_rightbg_white.webp);
}

.Follow_Our_News_contain ul li:hover .new_pic img {
  transform: scale(1.08);
}

@media screen and (max-width: 1024px) {
  .home_products_series_top {
    margin-bottom: 0.2rem;
  }
  .new_info {
    padding: 0.2rem 0 0 0;
  }
  .new_info h6 {
    font-size: 0.15rem;
    margin-bottom: 0.13rem;
    padding: 0 0.1rem;
  }
  .new_info h3 {
    font-size: 0.18rem;
    margin-bottom: 0.2rem;
    padding: 0 0.1rem;
  }

  .new_info span {
    font-size: 0.13rem;
    line-height: 0.2rem;
    margin: 0 0.1rem 0.2rem 0.1rem;
  }
  .new_btn {
    height: 0.4rem;
    font-size: 0.15rem;
    line-height: 0.28rem;
    padding: 0 0.1rem;
  }
}

@media screen and (max-width: 425px) {
  .Follow_Our_News {
    padding: 0.35rem 0 0.5rem 0;
  }
  .Follow_Our_News_contain ul {
    flex-wrap: wrap;
  }
  .Follow_Our_News_contain ul li {
    width: 48%;
    margin-bottom: 0.1rem;
  }
  .new_info {
    padding: 0.1rem 0 0 0;
  }
  .new_info h3 {
    font-size: 0.15rem;
    margin-bottom: 0.1rem;
    padding: 0 0.1rem;
  }
  .new_btn {
    height: 0.4rem;
    font-size: 0.13rem;
    line-height: 0.2rem;
    padding: 0 0.1rem;
  }
}

@media screen and (max-width: 375px) {
  .Follow_Our_News_contain ul li {
    width: 100%;
    margin-bottom: 0.1rem;
  }
}

/* ---------------------------------------products_banner--------------------------------------- */
.products-banner {
  width: 100%;
  position: relative;
}

.products-banner::before {
  content: "";
  display: block;
  padding-bottom: 29.5%;
}

.products-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/* 黑色半透明遮罩 + 中间文字 */
.products-banner::after {
  content: "Products"; /* 显示的文字 */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* 遮罩透明度可调 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 768px) {
  .products-banner::before {
    content: "";
    display: block;
    padding-bottom: 36.5%;
  }
  .products-banner::after {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
  .products-banner::before {
    content: "";
    display: block;
    padding-bottom: 59.5%;
  }
  .products-banner::after {
    font-size: 0.3rem;
  }
}
/* ---------------------------------------Breadcrumb--------------------------------------- */
.in_position {
  box-sizing: border-box;
  padding: 0.2rem 0;
  background: #fff;
  position: relative;
}

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

.in_position a {
  display: block;
  font-size: 0.16rem;
  color: #333333;
  position: relative;
  line-height: 0.2rem;
}

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

.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.18rem;
  height: 0.18rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}

.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}

.in_position a:last-child {
  color: #d62b1e !important;
}

.in_position a:hover {
  color: #d62b1e;
}

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

  .in_position a {
    font-size: 14px;
  }
}

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

  .in_position a {
    font-size: 13px;
  }
}
/* ---------------------------------------products.html--------------------------------- */
/* ---------------------------------------products--------------------------------------- */
.products_bac {
  box-sizing: border-box;
  margin-top: var(--box-bottom);
  background-color: #fff;
  padding-bottom: 1rem;
}

.products {
  display: flex;
  gap: 0.52rem;
}

.products_left {
  width: 3.22rem;
  box-sizing: border-box;
}

.products_left_all {
  background: rgba(214, 43, 30, 0.05);

  padding: 0.34rem 0.3rem;
}

.products_left_h2 {
  font-size: 0.2rem;
  text-transform: capitalize;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  background: #d62b1e;
  box-sizing: border-box;
  padding: 0.2rem;
  font-weight: bold;
  margin-bottom: 0.1rem;
}

.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;
  gap: 0.2rem;
}

.list li {
  position: relative;
}

/* .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;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
}

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

.list .list_a a {
  display: block;
  font-size: 0.18rem;
  color: #222;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 110%;
  transition: all 0.3s ease;
}

.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: 0.2rem 0.08rem 0 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: #222;
  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: #d62b1e;
  opacity: 0;
  transition: all 0.3s ease;
}

.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: #d62b1e;
  transform: translate(-50%, -50%) rotate(180deg);
}

.list_active .list_a a {
  color: #d62b1e;
}

.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_dl dt a:hover {
  color: #d62b1e;
}

.list_dl_active a {
  color: #d62b1e !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.2rem;
  }

  .products_left_h2 {
    color: #fff;
    box-sizing: border-box;
    padding: 0.15rem 0;
  }

  .list {
    padding-bottom: 0.2rem;
  }

  .products_left_all {
    padding: 0.2rem;
  }
}

@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_right {
  flex: 1;
}

.products_right_top {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.products_right_top_title {
  color: #333333;
  font-family: Roboto;
  font-weight: 600;
  font-size: var(--title_fz);
}

.products_right_top_des {
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #666666;
}

.products_right_contain_excavatorList {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.35rem;
  row-gap: 0.4rem;
  width: 100%;
}

.products_right_contain_excavatorList_card {
  padding: 0.17rem 0.15rem;
  width: calc((100% - 0.96rem) / 3);
  /* 间距按实际需求调整 */
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 0.04rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}

.products_right_contain_excavatorList_card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.products_right_contain_excavatorList_card_top {
  position: relative;
  overflow: hidden;
}

.products_right_contain_excavatorList_card_top::before {
  content: "";
  display: block;
  padding-bottom: 72%;
}

.products_right_contain_excavatorList_card_top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* 覆盖层 + 居中展示图片 */
.products_right_contain_excavatorList_card_top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 1. 黑色半透明遮罩  */
  background: rgba(0, 0, 0, 0.55);
  /* 2. 中间的 hover 图片 */
  background-image: url("static/images/home_products_serices_hoverbg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20%; /* 可调整大小 */
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

/* 鼠标悬浮时显示 */
.products_right_contain_excavatorList_card:hover
  .products_right_contain_excavatorList_card_top::after {
  opacity: 1;
}
.products_right_contain_excavatorList_card:hover
  .products_right_contain_excavatorList_card_center_name {
  color: #d62b1e;
}
.products_right_contain_excavatorList_card_center {
  margin: 0 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.15rem;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  padding: 0.16rem 0 0.15rem 0;
}

.products_right_contain_excavatorList_card_center_top {
  font-size: 0.16rem;
  color: #666666;
}

.products_right_contain_excavatorList_card_center_name {
  font-size: 0.22rem;
  font-weight: 600;
  color: #333333;
  line-height: 0.26rem;

  /* ⭐ 两行省略号核心代码 */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 最多显示 2 行 */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 0.55rem;
}

.products_right_contain_excavatorList_card_bottom {
  padding: 0.18rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.products_right_contain_excavatorList_card_bottom_price {
  font-weight: 400;
  font-size: 0.14rem;
  color: #333;
}

.products_right_contain_excavatorList_card_bottom_price_span {
  font-weight: 600;
  font-size: 0.18rem;
  color: #d62b1e;
}

.products_right_contain_excavatorList_card_bottom_unit_span {
  font-weight: 400;
  font-size: 0.14rem;
  color: #666;
}

.products_right_contain_excavatorList_card_bottom_unit {
  font-size: 0.14rem;
  color: #333333;
}
.products_right_contain_excavatorList_card_bottom_unit i {
  font-size: 0.18rem;

  color: #333333;
}
@media screen and (max-width: 1200px) {
  .products_left_h2 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .products_left {
    margin-bottom: 0.2rem;
  }

  .products {
    display: block;
  }

  .products_right_top_title {
    display: flex;
    justify-content: center;
  }

  .products_right_top_des {
    display: flex;
    justify-content: center;
  }

  .products_right_contain_excavatorList_card_center_name {
    font-size: 0.2rem;
    line-height: 0.25rem;
    height: 0.49rem;
  }

  .products_right_contain_excavatorList_card_bottom_price {
    font-size: 0.16rem;
  }

  .products_right_contain_excavatorList_card_bottom_unit {
    font-size: 0.16rem;
  }

  .products_right_contain_excavatorList_card_bottom_price_span {
    font-size: 0.17rem;
  }

  .products_right_contain_excavatorList_card_bottom_unit_span {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 768px) {
  .products_right_top_des {
    font-size: 0.16rem;
    line-height: 0.25rem;
  }
  .products_right_contain_excavatorList_card {
    width: calc(50% - 0.1rem);
  }

  .products_right_contain_excavatorList_card_center {
    margin: 0 0.15rem;
    gap: 0.1rem;
    padding: 0.1rem 0 0.1rem 0;
  }

  .products_right_contain_excavatorList_card_bottom {
    padding: 0.1rem 0.15rem;
    gap: 0.05rem;
  }
}

@media screen and (max-width: 425px) {
  .products_right_top_des {
    font-size: 0.15rem;
    line-height: 0.22rem;
  }

  .products_right_contain_excavatorList_card {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .products_right_top_des {
    font-size: 0.13rem;
    line-height: 0.18rem;
  }

  .products_right_contain_excavatorList_card_center {
    margin: 0 0.1rem;
  }

  .products_right_contain_excavatorList_card_bottom {
    padding: 0.1rem;
  }
}

/* Number of pages */
.in_page_box {
  text-align: center;
  overflow: hidden;
  margin-top: 0.7rem;
}

.in_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.in_page_right .in_page {
  justify-content: flex-end;
}

.in_page_left .in_page {
  justify-content: flex-start;
}

.in_page li {
  min-width: 0.32rem;
  margin: 0 0.04rem;
}

.in_page a,
.in_page span {
  display: block;
  padding: 0 0.12rem;
  line-height: 0.32rem;
  font-size: 0.14rem;
  color: #333;
  background: #f2f2f2;
  -webkit-border-radius: 0.05rem;
  border-radius: 0.05rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.in_page > i {
  margin-top: 0.14rem;
  width: 100%;
  font-size: 0.13rem;
  color: #888;
  display: none;
}

/* .in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
  background: #d62b1e;
  color: #fff !important;
} */
.in_page a:hover,
.in_page .curr_page a,
.in_page .curr_page span {
  border-color: var(--i_color) !important;
  background: var(--i_color);
  color: #fff !important;
}
@media screen and (max-width: 1024px) {
  .in_page_box {
    margin-top: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  .in_page li {
    min-width: 0.28rem;
  }

  .in_page a,
  .in_page span {
    line-height: 0.28rem;
    padding: 0 0.1rem;
  }

  .in_page_box {
    margin-top: 0.4rem;
  }
}

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

/* productsDetail.html */
/* single_grid */
.single_grid_bac {
  box-sizing: border-box;
  padding: 0.4rem 0 0.8rem 0;
}
.single_grid {
  display: flex;
  flex-wrap: wrap;
}
.single_grid_left {
  width: 40%;
}

/* 轮播图宽度 */
.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 #d8d8d8;
  position: relative;
  overflow: hidden;
}
.in_grid_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
}
.in_grid_show .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingrid-pagination {
  display: block;
  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);
}
.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%;
  border-radius: 0.04rem;
  overflow: hidden;
  border: 1px solid #d8d8d8;
}
.in_grid_show .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img:before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.in_grid_show .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_grid_list_box {
  margin-top: 0.3rem;
  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: 75%;
}
.in_grid_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.in_grid_list .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.55);
}
.swiper-slide-thumb-active .img::after {
  background: rgba(255, 255, 255, 0);
}

/* 左右箭头 */

.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.34rem;
  height: 0.34rem;
  z-index: 999;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.ingrid-button-prev iconify-icon,
.ingrid-button-next iconify-icon {
  font-size: 0.3rem;
  color: #333;
  transition: all 0.3s ease;
}
.ingrid-button-prev {
  left: 0%;
}

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

.ingrid-button-prev:hover,
.ingrid-button-next:hover {
  background-color: #d62b1e;
}
.ingrid-button-prev:hover iconify-icon,
.ingrid-button-next:hover iconify-icon {
  color: #fff;
}

.single_grid_share {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
  box-sizing: border-box;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #e5e5e5;
}
.single_grid_share p {
  font-size: 0.18rem;
  color: #666;
  font-weight: bold;
  margin-right: 0.1rem;
}
.single_grid_dl {
  display: flex;
  gap: 0.1rem;
}
.single_grid_dl dt {
}
.single_grid_dl dt a {
}
.single_grid_dl dt a iconify-icon {
  font-size: 0.22rem;
  color: #999;
  transition: all 0.3s ease;
}
.single_grid_dl dt a iconify-icon:hover {
  color: #d62b1e;
  transform: translateY(-5px);
}

/* single_tags */
.single_tags_bac {
  margin-top: 0.2rem;
}
.single_tags {
  display: flex;
}
.single_tags p {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
  flex-shrink: 0;
  margin-right: 0.1rem;
  margin-top: 0.1rem;
}
.single_tags_a {
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.single_tags a {
  display: inline-block;
  font-size: 0.16rem;
  color: #666;
  box-sizing: border-box;
  padding: 0.12rem 0.2rem;
  background-color: #f3f3f3;
  transition: all 0.3s ease;
}
.single_tags a:hover {
  color: #fff;
  background-color: #d62b1e;
}
.single_grid_right {
  width: 60%;
  box-sizing: border-box;
  padding-left: 3%;
}
.single_grid_right .single_grid_right_h2 {
  font-size: 0.18rem;
  color: #666;
  box-sizing: border-box;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #d62b1e;
}
.single_grid_right .single_grid_right_h2 span {
  font-size: 0.18rem;
  color: #d62b1e;
}
.single_grid_right h1 {
  font-size: 0.28rem;
  color: #333;
  font-weight: bold;
  margin: 0.2rem 0;
}
.single_grid_right article {
}
.single_grid_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  box-sizing: border-box;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  margin-top: 0.4rem;
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 1440px) {
  .single_grid_right h1 {
    font-size: 0.26rem;
    margin: 0.15rem 0;
  }
}
@media screen and (max-width: 1200px) {
  .single_grid_right h1 {
    font-size: 0.24rem;
  }
  .single_grid_bac {
    padding: 0.4rem 0 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .single_tags a {
    font-size: 0.14rem;
    padding: 0.1rem 0.15rem;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .single_grid_left {
    width: 100%;
  }
  .single_grid_right {
    width: 100%;
    margin-top: 0.4rem;
    padding-left: 0%;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* editor */
.editor_bac {
  box-sizing: border-box;
  border-top: 0.56rem solid #f1f1f1;
  padding: 0.4rem 0;
}
.editor {
  display: flex;
  flex-wrap: wrap;
}
.editor_left {
  width: 76.25%;
  box-sizing: border-box;
  padding-right: 3%;
}
.editor_right {
  width: 23.75%;
}
.editor_ul {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
}
.editor_ul li {
  font-size: 0.24rem;
  color: #666;
  font-weight: bold;
  text-transform: capitalize;
  box-sizing: border-box;
  display: inline-block;
  padding: 0.12rem 0.3rem;
  transition: all 0.3s ease;
}
.editor_ul li.current {
  background-color: var(--i_color);
  color: #fff;
}

.editor_dl {
  box-sizing: border-box;
  padding: 0.4rem 0;
}
.editor_dl dt {
}
.editor_dl dt article {
}
.editor_right {
  width: 23.75%;
}
.editor_right_contact {
  background: url("static/imgs/editor_right.webp") center no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 0.4rem;
}
.editor_right_contact h3 {
  font-size: 0.36rem;
  color: #ac1e23;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 0.15rem;
  text-transform: capitalize;
  margin-bottom: 0.2rem;
}
.editor_right_contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.7rem;
  height: 0.03rem;
  background-color: var(--i_color);
}
.editor_right_ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.editor_right_ul li {
}
.editor_right_ul li a {
  font-size: 0.16rem;
  line-height: 162.5%;
  color: #333;
  transition: all 0.3s ease;
}
.editor_right_ul li a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .editor_ul li {
    font-size: 0.22rem;
    padding: 0.1rem 0.3rem;
  }
  .editor_right_contact h3 {
    font-size: 0.32rem;
  }
  .editor_bac {
    border-top: 0.5rem solid #f1f1f1;
  }
}
@media screen and (max-width: 1200px) {
  .editor_ul li {
    font-size: 0.2rem;
  }
  .editor_right_contact h3 {
    font-size: 0.28rem;
  }
  .editor_bac {
    border-top: 0.4rem solid #f1f1f1;
  }
}
@media screen and (max-width: 1024px) {
  .editor_ul li {
    font-size: 0.18rem;
  }
  .editor_right {
    display: none;
  }
  .editor_left {
    width: 100%;
    padding-right: 0%;
  }
  .editor_bac {
    border-top: 0.3rem solid #f1f1f1;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}
.home_about_dl {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.home_about_dl dt {
  background: #fff6f6;
  box-sizing: border-box;
  padding: 0.2rem;
  position: relative;
  width: calc((100% - 1rem) / 3);
}
.home_about_dl dt img {
  width: 0.88rem;
  margin: 0 auto;
  display: block;
}
.home_about_dl dt p {
  font-size: 0.18rem;
  color: #d62b1e;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0.05rem;
}
@media screen and (max-width: 1440px) {
  .home_about_dl dt img {
    width: 1rem;
  }
  .home_about_dl {
    gap: 0.3rem;
  }
  .home_about_dl dt {
    width: calc((100% - 0.6rem) / 3);
  }
  .home_about_dl dt p {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 767px) {
  .home_about_dl dt img {
    width: 0.8rem;
  }
  .home_about_dl {
    gap: 0.2rem;
  }
  .home_about_dl dt {
    width: calc((100% - 0.4rem) / 3);
  }
}
@media screen and (max-width: 560px) {
  .home_about_dl dt img {
    width: 0.6rem;
  }
  .home_about_dl dt {
    width: calc((100% - 0.2rem) / 2);
  }
}
@media screen and (max-width: 425px) {
}

/* home_btn */

.home_btn {
}
.home_btn_center {
  display: flex;
  justify-content: center;
}
.home_btn a,
.home_btn span {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.03rem 0.05rem 0.03rem 0.2rem;

  background-color: #d62b1e;
  border: 1px solid #d62b1e;

  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
}
.home_btn a:hover {
  -webkit-transform: translate(0, -6px);
  transform: translate(0, -6px);
  box-shadow: 0 4px 0.1rem rgb(230 0 0 / 60%);
  border-color: #d62b1e;
  background: #d62b1e;
}
.home_btn a::after,
.home_btn span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  top: 0;
  transition: all 0.5s ease;
  left: -50%;
  transform: translateX(-50%) rotate(-45deg);
  z-index: -1;
}
.home_btn a::before,
.home_btn span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  top: 0;
  transition: all 0.5s ease;
  right: -50%;
  transform: translateX(50%) rotate(-45deg);
  z-index: -1;
}

.home_btn_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.home_btn_flex p {
  font-size: 0.16rem;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
}
.home_btn_flex p a {
  font-size: 0.16rem;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
}
.home_btn_flex img {
  width: 0.65rem;
  height: 0.45rem;
  object-fit: cover;
}

/* .home_btn a:hover,
.home_btn span:hover {
  border: 1px solid #d62b1e;
}
.home_btn a:hover::after,
.home_btn span:hover::after {
  transform: translateX(-50%) rotate(0deg);
  left: 50%;
}
.home_btn a:hover::before,
.home_btn span:hover::before {
  transform: translateX(50%) rotate(0deg);
  right: 50%;
} */

.home_btn_white {
}
.home_btn_white a {
  background: transparent;
  border: 1px solid #fff !important;
}
.home_btn_white a::after,
.home_btn_white a::before {
  background: #fff;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1200px) {
  .home_btn a,
  .home_btn span {
    padding: 0.12rem 0.25rem;
  }
  .home_btn_flex p {
    font-size: 0.16rem;
  }
  .home_btn_flex p a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .home_btn_flex img {
    width: 0.5rem;
    height: 0.3rem;
    object-fit: cover;
  }
  .home_btn a,
  .home_btn span {
    padding: 0.1rem 0.1rem;
  }
  .home_about_dl dt img {
    width: 0.8rem;
  }
  .home_about_dl dt p {
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .home_btn a,
  .home_btn span {
    padding: 0.05rem 0.1rem;
  }
  .home_btn_flex p {
    font-size: 0.13rem;
  }
  .home_btn_flex p a {
    font-size: 0.13rem;
  }
  .home_btn_flex img {
    width: 0.4rem;
    height: 0.2rem;
    object-fit: cover;
  }
  .home_btn_flex {
    gap: 0.05rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* ----------------------------------emptyBox---------------------------------- */
.emptyBox {
  width: 100%;
  height: 0.6rem;
  background: #f1f1f1;
}

/* ------------------------------------------productsDetail_otherContain------------------------------------------ */
.productsDetail_otherContain {
  box-sizing: border-box;
  /* margin-bottom: var(--box-bottom); */
  /* padding: 0 var(--contain-width); */
  background-color: #fff;
  padding: 0.8rem 0;
}

.productsDetail_otherContain .wrap {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.productsDetail_otherContain_leftBox {
  flex: 1;
}
.productsDetail_otherContain_detailedDescription {
  width: 100%;
}
.productsDetail_otherContain_detailedDescription_btn {
  background: #f3f3f3;
  margin-bottom: 0.1rrem;
}
.productsDetail_otherContain_detailedDescription_btn a {
  display: inline-block;
  padding: 0.13rem 0.82rem;
  border-top: #d62b1e 2px solid;
  box-sizing: border-box;
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: bold;
  color: #d62b1e;
  background-color: #fff;
}
.productsDetail_otherContain_detailedDescription_contain {
  min-height: 4rem;
}
.productsDetail_otherContain_video {
  width: 100%;
}
.productsDetail_otherContain_video_btn {
  font-family: Arial;
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.3rem;
  color: #333333;
  margin-bottom: 0.1rem;
}

.productsDetail_otherContain_video_contain {
  min-height: 4rem;
}

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

@media screen and (max-width: 425px) {
  .productsDetail_otherContain_detailedDescription_btn a {
    padding: 0.1rem 0.4rem;
    font-size: 0.15rem;
  }
  .productsDetail_otherContain_video_btn {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }
  .productsDetail_otherContain_video_contain iframe {
    width: 100% !important;
  }
}

.productsDetail_otherContain_rightBox {
  width: 20%;
}

.productsDetail_otherContain_rightBox {
  width: 3.22rem;
  box-sizing: border-box;
}

.productsDetail_otherContain_rightBox_all {
  background: rgba(214, 43, 30, 0.05);

  padding: 0.34rem 0.3rem;
}

.productsDetail_otherContain_rightBox_h2 {
  font-size: 0.2rem;
  text-transform: capitalize;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  background: #d62b1e;
  box-sizing: border-box;
  padding: 0.2rem;
  font-weight: bold;
  margin-bottom: 0.1rem;
}

.productsDetail_otherContain_rightBox_h2 iconify-icon {
  color: #fff;
  font-size: 0.34rem;
  margin-left: 0.1rem;
  font-weight: bold;
  margin-bottom: 2px;
  display: none;
}

.productsDetail_otherContain_rightBox_list {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 0.2rem;
}

.productsDetail_otherContain_rightBox_list li {
  position: relative;
}

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

.productsDetail_otherContain_rightBox_list_a {
  box-sizing: border-box;
  padding: 0.2rem 0.2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
}

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

.productsDetail_otherContain_rightBox_list
  .productsDetail_otherContain_rightBox_list_a
  a {
  font-size: 0.18rem;
  color: #222;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 110%;
  transition: all 0.3s ease;
}

.productsDetail_otherContain_rightBox_list
  .productsDetail_otherContain_rightBox_list_a
  i {
  width: 0.5rem;
  height: 0.55rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  cursor: pointer;
}

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

.productsDetail_otherContain_rightBox_list_dl {
  padding: 0.2rem 0.08rem 0 0.08rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 0.2rem;
}

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

.productsDetail_otherContain_rightBox_list_dl dt a {
  font-size: 0.16rem;
  color: #222;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  padding: 0rem 0.2rem;
}

.productsDetail_otherContain_rightBox_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: #d62b1e;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.productsDetail_otherContain_rightBox_list_active {
}

.productsDetail_otherContain_rightBox_list_active
  .productsDetail_otherContain_rightBox_list_a::after {
  width: 100%;
  left: 0;
  right: auto;
}

.productsDetail_otherContain_rightBox_list_active
  .productsDetail_otherContain_rightBox_list_a
  i
  iconify-icon {
  color: #d62b1e;
  transform: translate(-50%, -50%) rotate(180deg);
}

.productsDetail_otherContain_rightBox_list_active
  .productsDetail_otherContain_rightBox_list_a
  a {
  color: #d62b1e;
}

.productsDetail_otherContain_rightBox_list_dl_active a::after,
.productsDetail_otherContain_rightBox_list_dl_active a::before {
  opacity: 1 !important;
  left: 0 !important;
}

.productsDetail_otherContain_rightBox_list_dl dt a:hover::after {
  opacity: 1 !important;
  left: 0 !important;
}

.productsDetail_otherContain_rightBox_list_dl dt a:hover {
  color: #d62b1e;
}

.productsDetail_otherContain_rightBox_list_dl_active a {
  color: #d62b1e !important;
}

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

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

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

@media screen and (max-width: 1024px) {
  .productsDetail_otherContain .wrap {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .productsDetail_otherContain_rightBox {
    width: 100%;
  }

  .productsDetail_otherContain_rightBox_h2 iconify-icon {
    display: block;
  }

  .productsDetail_otherContain_rightBox_h2 {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
  }

  .productsDetail_otherContain_rightBox_h2 {
    margin-bottom: 0;
  }

  .productsDetail_otherContain_rightBox_list {
    margin-top: 0.2rem;
  }

  .productsDetail_otherContain_rightBox_h2 {
    box-sizing: border-box;
    padding: 0.15rem 0;
  }

  .productsDetail_otherContain_rightBox_list {
    padding-bottom: 0.2rem;
  }

  .productsDetail_otherContain_rightBox_all {
    padding: 0.2rem;
  }
}

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

@media screen and (max-width: 768px) {
  .productsDetail_otherContain_rightBox_list_a {
    padding: 0.08rem 0.15rem;
  }

  .productsDetail_otherContain_rightBox_list
    .productsDetail_otherContain_rightBox_list_a
    a {
    font-size: 0.15rem;
  }

  .productsDetail_otherContain_rightBox_h2 {
    font-size: 0.2rem;
  }

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

@media screen and (max-width: 560px) {
  .productsDetail_otherContain {
    padding: var(--box-bottom) 0;
  }

  .productsDetail_otherContain_rightBox_list
    .productsDetail_otherContain_rightBox_list_a
    a {
    font-size: 0.13rem;
  }

  .productsDetail_otherContain_rightBox_list
    .productsDetail_otherContain_rightBox_list_a
    i
    iconify-icon {
    font-size: 0.2rem;
  }

  .productsDetail_otherContain_rightBox_h2 {
    font-size: 0.18rem;
  }

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

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

/* ------------------------------------------single_two------------------------------------------ */
.single_two_bac {
  background: #f6f6f6;
  box-sizing: border-box;
  padding: 0.56rem var(--contain-width);
  margin-bottom: var(--box-bottom);
}

.single_two {
}

.bottom_single_tags {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  box-sizing: border-box;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.bottom_single_tags p {
  font-size: 0.18rem;
  color: #333333;
  font-family: "bold";
  line-height: 0.42rem;
}

.bottom_single_tags a {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.1rem 0.12rem;
  font-size: 0.16rem;
  color: #333;
}

.bottom_single_tags a:hover {
  color: #d62b1e;
}

.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: #333333;
  text-transform: capitalize;
  margin-right: 0.1rem;
  font-weight: bold;
}

.sx span {
  font-size: 0.16rem;
  color: #333333;
  transition: all 0.3s ease;
}

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

.sx .sx_left:hover span {
  color: #d62b1e !important;
}
.sx .sx_left:hover p {
  color: #d62b1e !important;
}

.sx .sx_left:hover iconify-icon {
  color: #d62b1e !important;
}

.sx .sx_right:hover iconify-icon {
  color: #d62b1e !important;
}
.sx .sx_right:hover p {
  color: #d62b1e !important;
}
.sx .sx_right:hover span {
  color: #d62b1e !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) {
}

@media screen and (max-width: 425px) {
  .bottom_single_tags {
    gap: 0;
    padding-bottom: 0.1rem;
    margin-bottom: 0.2rem;
  }
}

/* -------------------- -----Related Products--------------- */
.related_products {
  padding-top: 0.7rem;
}
.related_products_maxbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.related_products_contain {
  margin-top: 0.2rem;
  position: relative;
  overflow: hidden;
  padding: 0.1rem;
  box-sizing: border-box;
  width: 100%;
}

.related_products_contain .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  padding: 0.05rem;
}

.related_products_contain .swiper-slide {
  flex-shrink: 0;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0 8px 0px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.25s ease;
  -webkit-transition: box-shadow 0.25s ease;
  -moz-transition: box-shadow 0.25s ease;
  -ms-transition: box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
  padding: 0.18rem;
}
.related_products_contain ul li a span {
  position: relative;
}

.related_products_contain ul li a span::before {
  content: "";
  display: block;
  padding-bottom: 72.5%;
}
.related_products_contain ul li a span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related_products_contain ul li a span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 1. 黑色半透明遮罩  */
  background: rgba(0, 0, 0, 0.55);
  /* 2. 中间的 hover 图片 */
  background-image: url("static/images/home_products_serices_hoverbg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20%; /* 可调整大小 */
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* 鼠标悬浮时显示 */
.related_products_contain ul li:hover a span::after {
  opacity: 1;
}

.related_products_contain ul li:hover h3 {
  color: #d62b1e;
}
.related_products_contain ul li a h3 {
  margin: 0.2rem 0 0.16rem 0;
  font-family: Arial;
  font-size: 0.22rem;
  font-weight: bold;
  line-height: 0.3rem;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.related_products_contain_bottom {
  border-top: #e5e5e5 1px solid;
  padding: 0.16rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.related_products_contain_bottom h6 {
  font-family: Arial;
  font-size: 0.14rem;
  font-weight: normal;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0em;

  color: #333333;
}
.related_products_contain_bottom h6 i {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: bold;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  color: #d62b1e;
  margin: 0 0.05rem;
}
.related_products_contain_bottom h6 b {
  color: #666666;
}

.related_products_contain_bottom h6 h7 {
  font-size: 0.18rem;
}
.related_products_box {
  padding: 0.3rem 0.18rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.related_products_box h3 {
  font-family: Arial;
  font-size: 0.22rem;
  font-weight: bold;
  line-height: 0.3rem;
  text-align: center;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related_products_box span {
  position: relative;
}

.related_products_box span::before {
  content: "";
  display: block;
  padding-bottom: 72.5%;
}

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

.related_products_box h6 {
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
  padding: 0.13rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.related_products_box h6 b {
  font-family: Arial;
  font-size: 0.14rem;
  color: #999999;
}

.related_products_box h6 i {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: bold;
  color: #d62b1e;
  margin: 0 0.05rem;
}

/* 覆盖层 + 居中展示图片 */
.related_products_box span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 1. 黑色半透明遮罩  */
  background: rgba(0, 0, 0, 0.55);
  /* 2. 中间的 hover 图片 */
  background-image: url("static/images/home_products_serices_hoverbg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20%; /* 可调整大小 */
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* 鼠标悬浮时显示 */
.related_products_box:hover span::after {
  opacity: 1;
}

.related_products_box:hover h3 {
  color: #d62b1e;
}

.related-pagination {
  text-align: center;
}

.related-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 0.08rem !important;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.related-pagination .swiper-pagination-bullet-active {
  width: 0.1rem;
  height: 0.1rem;
  background: #d62b1e;
  background-size: contain;
  border-radius: 50%;
  -webkit-border-radius: 0.24rem;
  -moz-border-radius: 0.24rem;
  -ms-border-radius: 0.24rem;
  -o-border-radius: 0.24rem;
}

.related-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: calc(-0.04rem); /* top/right/bottom/left = -0.04rem */
  border: 1px solid rgba(214, 43, 30, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .related_products_contain {
    margin-top: 0;
  }
  .related_products {
    padding-top: 0.4rem;
  }
  .related_products_contain ul li a h3 {
    font-size: 0.2rem;
    line-height: 0.25rem;
  }
}
@media screen and (max-width: 425px) {
  .related_products_box {
    padding: 0.2rem 0.18rem;
  }
  .related_products_box h3 {
    font-size: 0.2rem;
    line-height: 0.25rem;
  }
}

/* ---------------------------------------aboutUs-banner--------------------------------------- */
.aboutUs_banner {
  width: 100%;
  position: relative;
}

.aboutUs_banner::before {
  content: "";
  display: block;
  padding-bottom: 29.5%;
}

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

/* 黑色半透明遮罩 + 中间文字 */
.aboutUs_banner::after {
  content: "About Us"; /* 显示的文字 */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* 遮罩透明度可调 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 768px) {
  .aboutUs_banner::before {
    content: "";
    display: block;
    padding-bottom: 36.5%;
  }
  .aboutUs_banner::after {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
  .aboutUs_banner::before {
    content: "";
    display: block;
    padding-bottom: 59.5%;
  }
  .aboutUs_banner::after {
    font-size: 0.3rem;
  }
}
/* --------------------------our_services-------------------- */
.our_services {
  width: 100%;
  position: relative;
  margin-bottom: var(--box-bottom);
}

.our_services_bgbox {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.our_services_bgbox::before {
  padding-bottom: 38.7%;
  content: "";
  display: block;
}

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

.our_services_maxbox {
  padding: 1.37rem 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  background: transparent;
}

.our_services_contain {
  margin-top: 0.55rem;
  border-top: #d62b1e 0.06rem solid;
  box-sizing: border-box;
  width: 100%;
  padding: 0.66rem 0.48rem 0.6rem 0.48rem;
  background: #fff;
  z-index: 2;
}

.our_services_contain ul {
  display: flex;
  gap: 0.3rem;
}

.our_services_contain ul li {
  width: calc((100% - 0.6rem) / 3);
}
.our_services_contain ul li:hover h3 {
  color: #d62b1e;
}
.our_services_contain ul li:hover .our_services_contain_liDiv img {
  transform: scale(1.1);
}
.our_services_contain_liDiv {
  position: relative;
  width: 100%;
  margin-bottom: 0.38rem;
  overflow: hidden;
}
.our_services_contain_liDiv::before {
  content: "";
  display: block;
  padding-bottom: 66.5%;
}
.our_services_contain_liDiv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.our_services_contain ul li h3 {
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.26rem;
  text-align: center;
  color: #333333;
  margin-bottom: 0.2rem;
}
.our_services_contain ul li h6 {
  padding: 0 0.1rem;
  font-family: Arial;
  font-size: 0.18rem;
  line-height: 0.26rem;
  text-align: center;
  color: #666666;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}

@media screen and (max-width: 1024px) {
  .our_services_contain_liDiv {
    margin-bottom: 0.3rem;
  }
  .our_services_contain ul li h3 {
    font-size: 0.2rem;
    line-height: 0.25rem;
    margin-bottom: 0.1rem;
  }
  .our_services_contain ul li h6 {
    font-size: 0.15rem;
    line-height: 0.2rem;
  }
  .our_services_bgbox::before {
    padding-bottom: 59.7%;
  }
}

@media screen and (max-width: 768px) {
  .our_services_maxbox {
    padding: 0.5rem 0 0 0;
  }
  .our_services_bgbox::before {
    padding-bottom: 58%;
  }
  .our_services_contain {
    margin-top: 0.55rem;
    padding: 0.4rem 0.4rem 0.6rem 0.4rem;
  }
  .our_services_contain_liDiv {
    margin-bottom: 0.15rem;
  }
  .our_services_contain ul li h3 {
    font-size: 0.18rem;
  }
  .our_services_contain ul li h6 {
    font-size: 0.13rem;
  }
}

@media screen and (max-width: 425px) {
  .our_services_bgbox::before {
    padding-bottom: 100%;
  }
  .our_services_contain {
    margin-top: 0.2rem;
    padding: 0.3rem 0.2rem 0.4rem 0.2rem;
  }

  .our_services_contain ul {
    display: flex;
    flex-wrap: wrap;
  }

  .our_services_contain ul li {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .our_services_bgbox::before {
    padding-bottom: 120%;
  }
}
@media screen and (max-width: 320px) {
  .our_services_bgbox::before {
    padding-bottom: 150%;
  }
}

/* ---------------------------Machinery Brand---------------------------- */
.machinery_brand {
  margin-bottom: var(--box-bottom);
}
.machinery_brand_maxbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.machinery_brand_contain {
  margin-top: 0.2rem;
  position: relative;
  overflow: hidden;
  padding: 0.1rem;
  box-sizing: border-box;
  width: 100%;
}

.machinery_brand_contain .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  padding: 0.05rem;
}

.machinery_brand_contain .swiper-slide {
  flex-shrink: 0;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.25s ease;
  -webkit-transition: box-shadow 0.25s ease;
  -moz-transition: box-shadow 0.25s ease;
  -ms-transition: box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
}

.machinery_brand_contain ul li span {
  position: relative;
}
.machinery_brand_contain ul li span::before {
  content: "";
  display: block;
  padding-bottom: 57%;
}
.machinery_brand_contain ul li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.machinery-pagination {
  text-align: center;
}

.machinery-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 0.08rem !important;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.machinery-pagination .swiper-pagination-bullet-active {
  width: 0.1rem;
  height: 0.1rem;
  background: #d62b1e;
  background-size: contain;
  border-radius: 50%;
  -webkit-border-radius: 0.24rem;
  -moz-border-radius: 0.24rem;
  -ms-border-radius: 0.24rem;
  -o-border-radius: 0.24rem;
}

.machinery-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: calc(-0.04rem); /* top/right/bottom/left = -0.04rem */
  border: 1px solid rgba(214, 43, 30, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

/* ------------------------------Company Environment---------------------- */
.envs_swipers {
  position: relative;
  background: linear-gradient(180deg, #f6f6f6 0%, rgba(235, 235, 235, 0) 100%);
  margin-bottom: var(--box-bottom);
}
.envs_swipers_topbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.envs_swipers .tit {
  position: relative;
}
.envs_swipers .tit > img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0.1rem;
}
.envs_swipers .envs_list {
  position: relative;
  overflow: hidden;
  perspective: 1500px;
}
.envs_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.envs_list .swiper-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #d8d8d8;
  perspective: 1000px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.envs_list .swiper-slide .img {
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
  border: 1px solid #d8d8d8;
}
.envs_list .swiper-slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.envs_list .swiper-slide .txt {
  padding: 0.2rem;
  box-sizing: border-box;
  border-top: 1px solid var(--i_color);
  border: 1px solid #d8d8d8;
}
.envs_list .swiper-slide .txt p {
}
.envs_list .swiper-slide .txt h6 {
}
.envs_list .swiper-slide:hover img {
  -webkit-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}
.envs_list .swiper-slide-active {
  perspective: 1000px;
  -webkit-clip-path: polygon(0% 5%, 100% 5%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 5%, 100% 5%, 100% 100%, 0% 100%);
}
.envs_list .swiper-slide-prev {
  transform: rotateY(30deg);
  perspective: 1000px;
  -webkit-clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 100%);
}
.envs_list .swiper-slide-next {
  transform: rotateY(-30deg);
  perspective: 1000px;
  -webkit-clip-path: polygon(0% 5%, 100% 0%, 100% 100%, 0% 100%);
}
.envs_list .swiper-slide-active .img {
}

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

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

.envs-pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
}
.envs-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.envs-pagination .swiper-pagination-bullet-active {
  background: #d62b1e;
}

@media screen and (max-width: 1440px) {
  .envs_swipers .tit > img {
    display: none;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .envs-prev,
  .envs-next {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}
.envs_swipers_btn {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.zfx.line {
  background: transparent;
  border: 1px solid rgba(51, 51, 51, 0.16);
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.zfx.line iconify-icon {
  color: #333;
}
.zfx.line:hover {
  border-color: #d62b1e;
}
.zfx.line:hover iconify-icon {
  color: #d62b1e !important ;
}
.zfx.center {
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .zfx {
    width: 30px;
    height: 30px;
  }
  .zfx iconify-icon {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .zfx.line {
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
}

/* ----------------------------------Welcomes Your Consultation------------------- */
.abousUs_Consultation {
  margin-bottom: var(--box-bottom);
}
.abousUs_Consultation_maxbox {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 0.4rem;
  box-sizing: border-box;
}
.abousUs_Consultation_maxbox_left {
  width: 50%;
}
.abousUs_Consultation_maxbox_left .abousUs_Consultation_firstspan {
  background: #d62b1e;
  width: 0.56rem;
  height: 0.56rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.6rem;
}

.abousUs_Consultation_maxbox_left h3 {
  font-family: Arial;
  font-size: 0.34rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;
  color: #333333;
  margin: 0.5rem 0 0 0.6rem;
}

.abousUs_Consultation_maxbox_left h4 {
  font-family: Arial;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.24rem;
  letter-spacing: 0px;
  color: #666666;
  margin: 0.5rem 0 0 0.6rem;
}

.abousUs_Consultation_maxbox_left h5 {
  background: #fff2f1;
  padding: 0.11rem 0.13rem;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.abousUs_Consultation_maxbox_left h5 img {
  width: 0.14rem;
  height: 0.14rem;
  object-fit: contain;
  margin-right: 0.1rem;
}

.abousUs_Consultation_maxbox_left h5 span {
  font-size: 0.16rem;
  font-weight: normal;
  color: #d62b1e;
}

.abousUs_Consultation_maxbox_left h6 {
  background: #fff2f1;
  padding: 0.11rem 0.13rem;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.2rem 0 0.6rem 0;
}
.abousUs_Consultation_maxbox_left h6 img {
  width: 0.15rem;
  height: 0.15rem;
  object-fit: contain;
  margin-right: 0.1rem;
}

.abousUs_Consultation_maxbox_left h6 span {
  font-size: 0.16rem;
  font-weight: normal;
  color: #d62b1e;
}
.abousUs_Consultation_maxbox_right {
  width: 50%;
  padding: 0.8rem 0.6rem 0.6rem 0.6rem;
  box-sizing: border-box;
}

#wpforms-190 {
  --wpforms_input_height: 48px;
  --wpforms_textarea_height: 120px;
  --wpforms_input_font_size: 16px;
}
#wpforms-190 {
  margin: 0;
  padding: 0;
}
#wpforms-form-190 {
  width: 100%;
  position: relative;
}

/* 字段样式 */
#wpforms-190 .wpforms-field-container > .wpforms-field {
  width: 100%;
  padding: 0 1px 20px;
  margin: 0 0 6px;
  overflow-x: initial !important;
  position: relative;
}
#wpforms-190 label.wpforms-field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}
#wpforms-190 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}
#wpforms-190 .wpforms-field-container .wpforms-field > input,
#wpforms-190 .wpforms-field-container textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 14px !important;
  margin: 0 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  font-size: var(--wpforms_input_font_size);
  line-height: 1.4;
}
#wpforms-190 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);
}
#wpforms-190 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);
}
#wpforms-190 input::placeholder,
#wpforms-190 textarea::placeholder {
  color: #aaa;
  font-size: var(--wpforms_input_font_size);
  line-height: 1.4;
}

#wpforms-190 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-190 .wpforms-field-container textarea:hover,
#wpforms-190 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-190 .wpforms-field-container textarea:focus {
  border-color: var(--i_color);
}

/* 验证错误提示 */
#wpforms-190 label.wpforms-error,
#wpforms-190 em.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
  color: #d63637;
}

/* 隐藏 Label 标签 */
#wpforms-190 .wpforms-field-container .wpforms-field-label {
  height: 0;
  font-size: 0;
  margin: 0 0;
}
#wpforms-190 .wpforms-field-container .wpforms-required-label {
  position: absolute;
  top: 4px;
  left: 6px;
  font-size: 16px;
  font-weight: bold;
}

/* 输入框水平排列，一行两个 */
#wpforms-190 .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#wpforms-190-field_1,
#wpforms-190-field_2,
#wpforms-190-field_3,
#wpforms-190-field_4,
#wpforms-190-field_5 {
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2) !important;
}
#wpforms-190-field_1-container,
#wpforms-190-field_2-container,
#wpforms-190-field_3-container,
#wpforms-190-field_4-container {
  width: 49% !important;
}

/* 提交按钮样式 */
#wpforms-190 .wpforms-submit-container {
  width: 220px;
  padding: 0 0;
  position: relative;
  overflow: hidden;
}
#wpforms-190 .wpforms-submit-container button {
  width: 100%;
  height: 44px;
  font-size: 15px;
  color: #fff;
  background: var(--i_color);
}
#wpforms-190 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-190 .wpforms-submit-container button:hover {
  background: #851a12;
}
.hide {
  display: none !important;
}
@media screen and (max-width: 1440px) {
}

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

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

@media screen and (max-width: 1024px) {
  #wpforms-190 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }
  .abousUs_Consultation_maxbox_right {
    width: 100%;
    padding: 0.6rem;
    box-sizing: border-box;
  }
}

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

@media screen and (max-width: 767px) {
  #wpforms-190 .wpforms-field:nth-child(1),
  #wpforms-190 .wpforms-field:nth-child(2) {
    margin-right: 0rem;
  }

  #wpforms-190 .wpforms-field:nth-child(1),
  #wpforms-190 .wpforms-field:nth-child(2),
  #wpforms-190 .wpforms-field:nth-child(3) {
    width: 100%;
  }

  #wpforms-190 {
    --input_height: 0.5rem;
  }
}

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

@media screen and (max-width: 425px) {
}
@media screen and (max-width: 425px) {
  .abousUs_Consultation_maxbox_right {
    padding: 0.2rem;
    box-sizing: border-box;
  }

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

@media screen and (max-width: 1024px) {
  .abousUs_Consultation_maxbox {
    display: block;
  }
  .abousUs_Consultation_maxbox_left {
    width: 100%;
    box-sizing: border-box;
  }

  .abousUs_Consultation_maxbox_left .abousUs_Consultation_firstspan {
    margin-left: 0.2rem;
  }
  .abousUs_Consultation_maxbox_left h3 {
    font-size: 0.3rem;
    margin: 0.3rem 0.2rem 0 0.2rem;
  }
  .abousUs_Consultation_maxbox_left h4 {
    margin: 0.3rem 0.2rem 0 0.2rem;
  }
  .abousUs_Consultation_maxbox_left h5 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 425px) {
  .abousUs_Consultation_maxbox_left .abousUs_Consultation_firstspan {
    background: #d62b1e;
    width: 0.4rem;
    height: 0.4rem;
  }
  .abousUs_Consultation_maxbox_left h3 {
    font-size: 0.25rem;
  }
  .abousUs_Consultation_maxbox_left h4 {
    margin: 0.2rem 0.2rem 0 0.2rem;
    font-size: 0.15rem;
  }
  .abousUs_Consultation_maxbox_left h5 {
    margin-top: 0.4rem;
  }
  .abousUs_Consultation_maxbox_left h5 span {
    font-size: 0.14rem;
  }
  .abousUs_Consultation_maxbox_left h6 span {
    font-size: 0.14rem;
  }
}

/* ---------------------------------------products_banner--------------------------------------- */
.news_banner {
  width: 100%;
  position: relative;
}

.news_banner::before {
  content: "";
  display: block;
  padding-bottom: 29.5%;
}

.news_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/* 黑色半透明遮罩 + 中间文字 */
.news_banner::after {
  content: "NEWS"; /* 显示的文字 */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* 遮罩透明度可调 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.06rem;
}

@media screen and (max-width: 768px) {
  .news_banner::before {
    content: "";
    display: block;
    padding-bottom: 36.5%;
  }
  .news_banner::after {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
  .news_banner::before {
    content: "";
    display: block;
    padding-bottom: 59.5%;
  }
  .news_banner::after {
    font-size: 0.3rem;
  }
}
/* --------------------------------news.html------------------------------------ */

.news_maxbox {
  padding-bottom: 0.6rem;
}

.news_nav {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding-top: 0.17rem;
  padding-bottom: 0.17rem;
  display: flex;
  gap: 0.6rem;
  box-sizing: border-box;
  position: relative;
}

.news_nav li {
  position: relative;
  cursor: pointer;
  padding-bottom: 0.1rem;
  font-family: Arial;
  font-size: 18px;
  color: #333333;
}

.news_nav li.active {
  color: #d62b1e;
}

.news_nav li:hover {
  color: #d62b1e;
}
.news_nav li.active::after,
.news_nav li:hover::after {
  transform: scaleX(1);
}
/* 激活效果的底线 */
.news_nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 3px;
  background-color: #d62b1e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 激活时展开到100% */
.news_nav li.active::after {
  transform: scaleX(1);
}

.new_box {
  padding-top: 0.5rem;
}
.new_box ul {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.new_box ul li {
  width: calc((100% - 2 * 0.5rem) / 3);
  cursor: pointer;
  overflow: hidden;
}

.new_box ul li span {
  position: relative;
  overflow: hidden;
  display: block;
}
.new_box ul li span::before {
  content: "";
  display: block;
  padding-bottom: 74.4%;
}
.new_box ul li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.new_box_info {
  padding: 0.25rem 0.2rem;
  background: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  box-shadow: 0 0 0.08rem rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.new_box ul li:hover h3 {
  color: #d62b1e;
}

.new_box ul li:hover h6 {
  color: #d62b1e;
}

.new_box ul li:hover h6 img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7319%)
    hue-rotate(2deg) brightness(93%) contrast(104%);
}

.new_box ul li:hover span img {
  transform: scale(1.1);
}
.new_box ul li h3 {
  font-family: Arial;
  font-size: 0.24rem;
  font-weight: bold;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制显示两行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new_box ul li h4 {
  font-family: Arial;
  font-size: 0.24rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  color: #222222;
  margin: 0.3rem 0 0.24rem 0;
}

.new_box ul li h5 {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.24rem;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 限制显示两行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new_box ul li h6 {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.28rem;
  letter-spacing: 0em;
  color: #333333;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
}
.new_box ul li h6 img {
  margin-left: 0.1rem;
  filter: grayscale(100%) brightness(0);
}

@media screen and (max-width: 1024px) {
  .new_box ul {
    gap: 0.3rem;
  }
  .new_box ul li {
    width: calc((100% - 2 * 0.3rem) / 3);
  }
  .new_box_info {
    padding: 0.2rem 0.15rem;
  }
  .new_box ul li h3 {
    font-size: 0.2rem;
  }
  .new_box ul li h4 {
    font-size: 0.18rem;
    margin: 0.2rem 0 0.2rem 0;
  }
  .new_box ul li h5 {
    font-size: 0.16rem;
    line-height: 0.2rem;
  }
  .new_box ul li h6 {
    font-size: 0.16rem;
    line-height: 0.2rem;
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .new_box ul {
    gap: 0.2rem;
  }
  .new_box ul li {
    width: 100%;
  }
  .new_box_info {
    padding: 0.2rem 0.15rem;
  }
  .new_box ul li h3 {
    font-size: 0.18rem;
  }
  .new_box ul li h4 {
    font-size: 0.16rem;
    margin: 0.18rem 0 0.18rem 0;
  }
  .new_box ul li h5 {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }
  .new_box ul li h6 {
    font-size: 0.14rem;
    line-height: 0.2rem;
    margin-top: 0.2rem;
  }
  .new_box ul li h6 img {
    width: 0.2rem;
    height: 0.06rem;
  }
}

@media screen and (max-width: 425px) {
  .news_nav {
    padding-bottom: 0.1rem;
    gap: 0.3rem;
  }
  .news_nav li::after {
    bottom: -0.1rem;
  }
}
/* ------------------------service_banner---------------------- */
.service_banner {
  width: 100%;
  position: relative;
}

.service_banner::before {
  content: "";
  display: block;
  padding-bottom: 29.5%;
}

.service_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/* 黑色半透明遮罩 + 中间文字 */
.service_banner::after {
  content: "Service"; /* 显示的文字 */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* 遮罩透明度可调 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 768px) {
  .service_banner::before {
    content: "";
    display: block;
    padding-bottom: 36.5%;
  }
  .service_banner::after {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
  .service_banner::before {
    content: "";
    display: block;
    padding-bottom: 59.5%;
  }
  .service_banner::after {
    font-size: 0.3rem;
  }
}
/* -------------------------------Our Service------------------------- */
.facilities_bac {
  box-sizing: border-box;
  padding: 1rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 0%, #fcebe9 100%);
  margin-bottom: var(--box-bottom);
}
.facilities {
  display: flex;
  flex-wrap: wrap;
}
.facilities_left {
  width: 50%;
  box-sizing: border-box;
  padding-right: 6.5%;
}

.facilities_left_top {
}

.facilities_left_top_title {
  font-family: Arial;
  font-size: var(--title_fz);
  font-weight: bold;
  position: relative;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.facilities_left_top_title::before {
  content: "";
  display: block;
  width: 50%;
  height: 0.04rem;
  background: #d62b1e;
  flex-shrink: 0;
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  transform: translateX(-50%);
}
.facilities_left_top_title span {
  color: #333333;
}
.facilities_left_top_title i {
  color: #d62b1e;
  margin-left: 0.1rem;
  font-weight: bold;
}

.facilities_left_top_des {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #666666;
}

.facilities_dl {
  margin-top: 0.5rem;
}
.facilities_dl dt {
  border-radius: 0.05rem;
  overflow: hidden;
  position: relative;
}
.facilities_dl dt::after {
  content: "";
  display: block;
  padding-bottom: 72%;
}
.facilities_dl dt img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facilities_right {
  width: 50%;
  border-left: 0.03rem solid rgba(153, 153, 153, 0.4);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.facilities_ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.facilities_ul li {
  box-sizing: border-box;
  opacity: 0.6;
  padding: 0.3rem 0 0.3rem 8.4%;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.facilities_ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.03rem;
  transform: translate(0, -50%);
  width: 0.03rem;
  background-color: #d62b1e;
  height: 0%;
  transition: all 0.3s ease;
}
.facilities_ul li h3 {
  font-size: 0.26rem;
  color: #3d3d3d;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.facilities_ul li h4 {
  font-size: 0.18rem;
  color: #333;
  line-height: 155%;
}

.facilities_ul li.current {
  opacity: 1;
}
.facilities_ul li.current::after {
  height: 100%;
}
.facilities_ul li.current h3 {
  color: #d62b1e;
}
@media screen and (max-width: 1440px) {
  .facilities_bac {
    padding: 0.8rem 0;
  }
  .facilities_dl {
    margin-top: 0.4rem;
  }
  .facilities_ul li h3 {
    font-size: 0.24rem;
  }
  .facilities_ul li {
    padding: 0.3rem 0 0.2rem 5.4%;
  }
}
@media screen and (max-width: 1200px) {
  .facilities_bac {
    padding: 0.6rem 0;
  }
  .facilities_dl {
    margin-top: 0.3rem;
  }
  .facilities_ul li h3 {
    font-size: 0.22rem;
    margin-bottom: 0.05rem;
  }
  .facilities_ul li h4 {
    font-size: 0.16rem;
  }
  .facilities_ul li {
    padding: 0.2rem 0 0.2rem 8.4%;
  }
  .facilities_left_top_des {
    font-size: 0.16rem;
    line-height: 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .facilities_ul li h3 {
    font-size: 0.2rem;
  }
  .facilities_ul li h4 {
    font-size: 0.14rem;
  }
  .facilities_left_top_title {
    margin-bottom: 0.4rem;
  }
  .facilities_ul li {
    padding: 0.15rem 0 0.15rem 8.4%;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
  .facilities_left {
    width: 100%;
    padding-right: 0%;
  }
  .facilities_right {
    width: 100%;
    margin-top: 0.4rem;
  }
  .facilities_ul li {
    padding: 0.2rem 0 0.2rem 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .facilities_ul li {
    padding: 0.15rem;
  }
  .facilities_left_top_des {
    font-size: 0.15rem;
    line-height: 0.25rem;
  }
}
@media screen and (max-width: 425px) {
}

/* -----------------------------Service Advantages--------------------------- */
.service_advantages {
  padding: 0.6rem 0;
  margin-bottom: var(--box-bottom);
}
.adv_service_ul {
  display: flex;
  gap: 0.12rem;
  margin-top: 0.6rem;
  overflow: hidden;
}

.adv_service_ul li {
  flex-grow: 1;
  width: 24%;
  height: 6.3rem;
  position: relative;
  transition: all 0.7s ease;
  z-index: 2;
}

.adv_service_ul li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;

  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.adv_service_ul li.adv_service_active {
  flex-grow: 1000 !important;
}

.adv_service_ul li.adv_service_active::before {
  opacity: 0;
}

.adv_service_ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.1rem;
}

.adv_service_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.3rem 0.22rem;
  z-index: 3;
  border-radius: 0 0 0.1rem 0.1rem;
}
.adv_service_text h6 {
  font-family: Arial;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-align: center;
  width: 100%;
}
.adv_service_text h3 {
  font-size: 0.24rem;
  color: #fff;
  line-height: 0.3rem;
  min-height: 0.7rem;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 0.1rem;
  box-sizing: border-box;
  padding-bottom: 0.1rem;
  text-align: center;
}

.adv_service_text h4 {
  display: none;
  font-size: 0.18rem;
  color: #fff;
  line-height: 30px;
  width: 40vw;
  /* line-height: 150%; */
}

.adv_service_ul li.adv_service_active .adv_service_text {
  background: transparent;
}
.adv_service_ul li.adv_service_active .adv_service_text h6 {
  font-family: Arial;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0em;
  color: #fff;
  text-align: left;
}
.adv_service_ul li.adv_service_active .adv_service_text h3 {
  min-height: unset;
  text-align: left;
}

.adv_service_ul li.adv_service_active .adv_service_text h4 {
  display: block;

  animation: opPrevIn 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965) alternate;
}

.adv_service_ul li.adv_service_active::after {
  height: 100% !important;
}

@media screen and (max-width: 1440px) {
  .our-advantages {
    padding: 0.3rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .adv_service_text {
    padding: 0.15rem 0.1rem;
  }
  .adv_service_text h6 {
    font-size: 0.6rem;
    font-weight: 600;
  }
  .adv_service_ul li.adv_service_active .adv_service_text h6 {
    font-size: 0.6rem;
    font-weight: 600;
  }
  .adv_service_text h3 {
    font-size: 0.22rem;
  }
  .adv_service_ul li.adv_service_active .adv_service_text h3 {
    font-size: 0.22rem;
  }
  .adv_service_text h4 {
    font-size: 0.18rem;
    line-height: 28px;
  }
}

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

  .adv_service_ul li {
    width: 100%;
  }
  .adv_service_text h3 {
    font-size: 0.2rem;

    line-height: 0.25rem;

    min-height: 0.6rem;
  }

  .adv_service_text h4 {
    font-size: 0.14rem;

    /* width: 43vw; */
  }

  .adv_service_ul li {
    height: 4rem;
  }

  .our-advantages-top-des {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 425px) {
  .adv_service_text h6 {
    display: none;
  }
  .our-advantages {
    padding: 0.2rem 0;
  }
  .our-advantages-top {
    gap: 0.1rem;
  }
  .our-advantages-top-des {
    font-size: 0.13rem;
  }

  .adv_service_text h3 {
    font-size: 0.15rem;
    line-height: 0.25rem;
    min-height: 0.6rem;
  }

  .adv_service_text h4 {
    font-size: 0.13rem;
    line-height: 20px;
    /* width: 43vw; */
  }

  .adv_service_ul {
    margin-top: 0.3rem;
  }

  .adv_service_ul li {
    height: 3rem;
  }
}

@media screen and (max-width: 320px) {
  .adv_service_ul li.adv_service_active .adv_service_text h4 {
    display: none;
  }
  .adv_service_ul li.adv_service_active .adv_service_text h3 {
    display: none;
  }
  .our-advantages-top-des {
    font-size: 0.12rem;
  }

  .adv_service_text h3 {
    font-size: 0.13rem;
    line-height: 0.25rem;
    min-height: 0.6rem;
    padding: 0;
  }

  .adv_service_ul li {
    height: 2rem;
  }
}

/* ----------------------------Global Customers------------------------------- */
.global_customers {
  background: #f6f6f6;
  padding: 0.6rem 0;
  margin-bottom: var(--box-bottom);
}
.environmental_display_list {
  position: relative;
  overflow: hidden;
}

.environmental_display_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}

.environmental_display_list .swiper-slide {
  flex-shrink: 0;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #ddd;
  -webkit-border-radius: 0.2rem;
  border-radius: 0.2rem;
  position: relative;
  overflow: hidden;
}

/* 文字样式 */
.environmental_display_list .swiper-slide .img-des {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  font-family: Arial;
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #333333;
  background: rgba(243, 243, 243, 0.85);
  min-height: 0.6rem;
  display: none;
}
.environmental_display_list .swiper-slide:hover .img-des {
  padding: 0.1rem;
  box-sizing: border-box;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.environmental_display_list .swiper-slide:hover span img {
  transform: scale(1.2);
}

.environmental_display_list li span {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.environmental_display_list li span::before {
  content: "";
  display: block;
  padding-bottom: 63.5%;
}

.environmental_display_list li span img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.environmental_pagination {
  text-align: center;
}

.environmental_pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 0.08rem !important;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.environmental_pagination .swiper-pagination-bullet-active {
  width: 0.1rem;
  height: 0.1rem;
  background: #d62b1e;
  background-size: contain;
  border-radius: 50%;
  -webkit-border-radius: 0.24rem;
  -moz-border-radius: 0.24rem;
  -ms-border-radius: 0.24rem;
  -o-border-radius: 0.24rem;
}

.environmental_pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: calc(-0.04rem); /* top/right/bottom/left = -0.04rem */
  border: 1px solid rgba(214, 43, 30, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .environmental_display_list .swiper-slide .img-des {
    font-size: 0.16rem;
    line-height: 0.28rem;
    min-height: 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .environmental_display_top {
    margin-bottom: 0.5rem;
  }
  .environmental_display_list .swiper-slide .img-des {
    font-size: 0.14rem;
    line-height: 0.2rem;
    min-height: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .environmental_display_top_des {
    font-size: 0.15rem;
    line-height: 0.2rem;
  }
}

@media screen and (max-width: 425px) {
  .environmental_display_top {
    margin-bottom: 0.4rem;
  }

  .environmental_display_top_des {
    font-size: 0.15rem;
    line-height: 0.2rem;
  }

  .environmental_display_top_title {
    padding: var(--box-bottom) 0 0.24rem 0;
  }
}

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

  .environmental_display_top_des {
    font-size: 0.12rem;
    line-height: 0.18rem;
  }
}

/* ------------------------------------how_buy------------------------ */
.how_buy_bac {
  box-sizing: border-box;
  padding: 0.7rem 0;
  margin-bottom: var(--box-bottom);
}
.how_buy {
}
.how_buy_ul {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
.how_buy_ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.how_buy_ul li:hover h3 {
  color: #d62b1e;
}
.how_buy_ul li img {
  width: 0.8rem;
  height: 0.8rem;
  object-fit: contain;
}
.how_buy_ul li h3 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  margin: 0.3rem 0;
}
.how_buy_ul li h4 {
  font-size: 0.2rem;
  color: #666;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .how_buy_ul {
    gap: 0.6rem;
  }
  .how_buy_ul li img {
    width: 0.7rem;
    height: 0.7rem;
  }
  .how_buy_ul li h3 {
    font-size: 0.22rem;
    margin: 0.25rem 0;
  }
  .how_buy_ul li h4 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1200px) {
  .how_buy_bac {
    padding: 0.6rem 0;
  }
  .how_buy_ul {
    gap: 0.4rem;
  }
  .how_buy_ul li img {
    width: 0.6rem;
    height: 0.6rem;
  }
  .how_buy_ul li h3 {
    font-size: 0.2rem;
    margin: 0.2rem 0;
  }
  .how_buy_ul li h4 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
  .how_buy_ul {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  .how_buy_ul li {
    width: calc((100% - 0.4rem) / 3);
    box-sizing: border-box;
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .how_buy_ul li h4 {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .how_buy_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
  .how_buy_ul li img {
    width: 0.5rem;
    height: 0.5rem;
  }
  .how_buy_ul li h3 {
    font-size: 0.18rem;
    margin: 0.1rem 0;
  }
}
@media screen and (max-width: 425px) {
}

/* -----------------------------------------faq------------------------------- */
.faq_bac {
  box-sizing: border-box;
  padding: 0.8rem 0;
  margin-bottom: var(--box-bottom);
}
.faq {
}

.faq_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.faq_ul li {
}
.faq_q {
  background-color: #fff;
  border: 1px solid rgba(51, 51, 51, 0.2);
  box-sizing: border-box;
  padding: 0.2rem 0.3rem;
  border-radius: 0rem;
  display: flex;
  display: -webkit-flex;
  cursor: pointer;
}
.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;
  display: flex;
  align-items: center;
}
.faq_a .faq_a_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 {
  font-size: 0.2rem;
  color: #222;
  font-weight: bold;
  width: calc(100% - 0.72rem);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.faq_a {
  display: flex;
  display: -webkit-flex;
  box-sizing: border-box;
  padding: 0.2rem 0.3rem;
  border: 1px solid rgba(51, 51, 51, 0.2);
}
.faq_a i {
  color: #333333;
}
.faq_a p {
  width: calc(100% - 0.4rem);
  font-size: 0.16rem;
  color: #333;
  line-height: 0.28rem;
}
.faq_q h3 {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}
.faq_q h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 0.2rem;
  background-color: #333;
  transition: all 0.3s ease;
}
.faq_q h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 0.2rem;
  background-color: #333;
}
.faq_ul li.on .faq_q h3::after {
  height: 0 !important;
  background-color: #fff !important;
}
.faq_ul li.on .faq_q h3::before {
  background-color: #fff !important;
}
.faq_ul li.on .faq_q {
  background-color: #d62b1e;
}
.faq_ul li.on .faq_q i {
  color: #fff;
  display: flex;
  align-items: center;
}
.faq_ul li.on .faq_q h2 {
  color: #fff !important;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1440px) {
  .faq_q h2 {
    font-size: 0.2rem;
    /* padding-left: 0.15rem; */
  }
  .faq_a p {
    /* padding-left: 0.15rem; */
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .faq_bac {
    padding-bottom: 0.6rem;
  }
  .faq_q {
    padding: 0.15rem 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .faq_q h2 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 768px) {
  .faq_q h2 {
    font-size: 0.18rem;
    /* padding-left: 0.1rem; */
  }
  .faq_a p {
    /* padding-left: 0.15rem; */
    font-size: 0.14rem;
    line-height: 0.24rem;
  }
  .faq_q {
    padding: 0.2rem 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .faq_q {
    padding: 0.2rem;
  }
  .faq_a {
    padding: 0.2rem 0.3rem 0 0.3rem;
  }
  .faq_ul i {
    width: 0.3rem;
    height: 0.3rem;
  }
  .faq_q h2 {
    width: calc(100% - 0.3rem);
  }
  .faq_a p {
    width: calc(100% - 0.3rem);
  }
  .faq_ul i {
    font-size: 0.16rem;
  }
  .faq_ul {
    gap: 0.2rem;
  }
}
@media screen and (max-width: 425px) {
  .faq_q {
    padding: 0.1rem 0.2rem;
  }
  .home_customers_like_title .home_customers_like_title_phone a {
    font-size: 0.13rem;
  }
}

/* ---------------------------------contactUs.html--------------------------------- */
/* ------------------------contactUs_banner---------------------- */
.contactUs_banner {
  width: 100%;
  position: relative;
}

.contactUs_banner::before {
  content: "";
  display: block;
  padding-bottom: 29.5%;
}

.contactUs_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/* 黑色半透明遮罩 + 中间文字 */
.contactUs_banner::after {
  content: "CONTACT US"; /* 显示的文字 */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* 遮罩透明度可调 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 768px) {
  .contactUs_banner::before {
    content: "";
    display: block;
    padding-bottom: 36.5%;
  }
  .contactUs_banner::after {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
  .contactUs_banner::before {
    content: "";
    display: block;
    padding-bottom: 59.5%;
  }
  .contactUs_banner::after {
    font-size: 0.3rem;
  }
}
/* --------------------Our Contact Information-------------------- */
.our_contact_information {
  width: 100%;
  margin-bottom: var(--box-bottom);
}
.our_contact_information_tag {
  font-family: Arial;
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.5rem;
  color: #d62b1e;
  border-bottom: 1px dashed #d4d4d4;
}
.our_contact_information_contain {
  display: flex;
  gap: 0.2rem;
  justify-content: space-between;
}

.our_contact_information_contain_left {
  width: 46%;
}

.our_contact_information_contain_left_ul {
  border-bottom: #d8d8d8 1px solid;
  padding: 0.5rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.our_contact_information_contain_left_ul li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  cursor: pointer;
}
.our_contact_information_contain_left_ul li:hover h6 a {
  color: #d62b1e;
  text-decoration: underline;
}
.our_contact_information_contain_left_ul li h3 {
  font-family: Arial;
  font-size: 0.2rem;
  font-weight: bold;
  color: #333333;
}
.our_contact_information_contain_left_ul li h6,
.our_contact_information_contain_left_ul li h6 a {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  color: #333333;
}
.our_contact_information_contain_Media {
  padding: 0.3rem 0;
}
.our_contact_information_contain_Media_topul {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}
.our_contact_information_contain_Media_uldiv {
  display: flex;
  flex-direction: column;
}

.our_contact_information_contain_Media_uldiv span {
  font-family: Arial;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.28rem;
  letter-spacing: 0em;
  color: #666666;
}

.our_contact_information_contain_Media_uldiv img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.our_contact_information_contain_Media_bottomul {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.our_contact_information_contain_Media_bottomul li span {
  font-family: Arial;
  font-size: 0.18rem;
  font-weight: bold;
  color: #333333;
}

.our_contact_information_contain_Media_bottomul li a iconify-icon,
.our_contact_information_contain_Media_bottomul li a iconify-icon svg {
  font-size: 0.28rem !important;
}
.contain_Media_a {
  width: 0.28rem;
  height: 0.28rem;
  display: block;
}

.our_contact_information_contain_Media_bottomul li a:hover iconify-icon {
  color: #d62b1e !important;
}

.our_contact_information_contain_right {
  flex: 1;
  padding: 0.6rem 0.4rem;
  box-sizing: border-box;
}

#wpforms-200 {
  --wpforms_input_height: 48px;
  --wpforms_textarea_height: 120px;
  --wpforms_input_font_size: 16px;
}
#wpforms-200 {
  margin: 0;
  padding: 0;
}
#wpforms-form-200 {
  width: 100%;
  position: relative;
}

/* 字段样式 */
#wpforms-200 .wpforms-field-container > .wpforms-field {
  width: 100%;
  padding: 0 1px 30px;
  margin: 0 0 6px;
  overflow-x: initial !important;
  position: relative;
}
#wpforms-200 label.wpforms-field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}
#wpforms-200 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}
#wpforms-200 .wpforms-field-container .wpforms-field > input,
#wpforms-200 .wpforms-field-container textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 14px !important;
  margin: 0 0;
  border: 1px solid #ccc;
  background: #fff;
  font-size: var(--wpforms_input_font_size);
  line-height: 1.4;
}
#wpforms-200 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);
}
#wpforms-200 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);
}
#wpforms-200 input::placeholder,
#wpforms-200 textarea::placeholder {
  color: #aaa;
  font-size: var(--wpforms_input_font_size);
  line-height: 1.4;
}

#wpforms-200 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-200 .wpforms-field-container textarea:hover,
#wpforms-200 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-200 .wpforms-field-container textarea:focus {
  border-color: var(--i_color);
}

/* 验证错误提示 */
#wpforms-200 label.wpforms-error,
#wpforms-200 em.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
  color: #d63637;
}

/* 隐藏 Label 标签 */
/* #wpforms-200 .wpforms-field-container .wpforms-field-label {
  height: 0;
  font-size: 0;
  margin: 0 0;
} */
#wpforms-200 .wpforms-field-container .wpforms-required-label {
  position: absolute;
  top: 35px;
  left: 6px;
  font-size: 16px;
  font-weight: bold;
}

/* 输入框水平排列，一行两个 */
#wpforms-200 .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#wpforms-200-field_1-container,
#wpforms-200-field_2-container,
#wpforms-200-field_3-container {
  width: 100% !important;
}

/* 提交按钮样式 */
#wpforms-200 .wpforms-submit-container {
  width: 100%;
  padding: 0 0;
  position: relative;
  overflow: hidden;
}
#wpforms-200 .wpforms-submit-container button {
  width: 100%;
  height: 44px;
  font-size: 15px;
  color: #fff;
  background: var(--i_color);
}
#wpforms-200 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-200 .wpforms-submit-container button:hover {
  background: #851a12;
}

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

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

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

@media screen and (max-width: 1024px) {
  .our_contact_information_contain {
    display: block;
  }
  .our_contact_information_contain_left {
    width: 100%;
  }
  .our_contact_information_contain_right {
    width: 100%;
  }
  #wpforms-200 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }
}

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

@media screen and (max-width: 768px) {
  #wpforms-200 .wpforms-field:nth-child(1),
  #wpforms-200 .wpforms-field:nth-child(2) {
    margin-right: 0rem;
  }

  #wpforms-200 .wpforms-field:nth-child(1),
  #wpforms-200 .wpforms-field:nth-child(2),
  #wpforms-200 .wpforms-field:nth-child(3) {
    width: 100%;
  }

  #wpforms-200 {
    --input_height: 0.5rem;
  }
  .our_contact_information_contain_right {
    padding: 0.6rem 0.2rem;
  }
}

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

@media screen and (max-width: 425px) {
  /* 输入框水平排列，一行两个 */
  #wpforms-200 .wpforms-field-container {
    display: block;
    justify-content: space-between;
  }
  #wpforms-200-field_1-container,
  #wpforms-200-field_2-container,
  #wpforms-200-field_3-container {
    width: 100% !important;
  }
  .our_contact_information_contain_left_ul {
    padding: 0.3rem 0;
    gap: 0.3rem;
  }
  .our_contact_information_tag {
    font-size: 0.2rem;
  }
  .our_contact_information_contain_left_ul li h3 {
    font-size: 0.18rem;
  }
  .our_contact_information_contain_left_ul li h6,
  .our_contact_information_contain_left_ul li h6 a {
    font-size: 0.16rem;
  }
  .our_contact_information_contain_right {
    padding: 0.4rem 0.1rem;
  }
}

/* ---------------------------------contact_map------------------------------- */
.contact_map_bac {
  box-sizing: border-box;
}

.contact_map {
  height: 5.8rem;
}

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

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

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

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

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

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

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

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