@charset "utf-8";

:root {
  --i_color: #a32124;

  /* 全局颜色 */

  --i_color2: #fff;

  /* 副颜色 */

  --top_h: 0.8rem;

  --header_info_h: 0.3rem;

  /* 顶部信息 */

  /* 导航 */

  --header_height: 1.1rem;

  /* 导航总高度 */
}

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

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

    --header_height: 0.8rem;
  }
}

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

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

#company_profile,
#company_advantage,
#company_environment,
#partners,
#qualification_certificate {
  scroll-margin-top: var(--header_height);
}
.viewer-backdrop {
  background-color: rgba(0, 0, 0, 0.65) !important;
}
.wrap {
  width: 94vw;

  max-width: 1400px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 8.35%;
}

.wrap_r {
  display: block;

  box-sizing: border-box;

  padding-right: 13.54%;
}

.wrap_h {
  width: 94vw;

  max-width: 1823px;

  margin-left: auto;

  margin-right: auto;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

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

    max-width: none;
  }

  .wrap_h {
    width: 85vw;

    max-width: none;
  }

  .wrap_r {
    width: 85vw;

    max-width: none;
  }
}

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

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

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

.header_heightbox {
  height: calc(var(--header_height));
}

@media screen and (max-width: 768px) {
  .header_heightbox {
    height: var(--header_height);
  }
}

/* ------------------------Paging -------------------------*/

.in_paging {
  --size: 30px;

  --border_radius: 5px;

  --curr_color: var(--i_color);

  box-sizing: border-box;
}

.in_paging ul {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  text-align: center;

  width: 100%;
}

.in_paging li {
  min-width: var(--size);

  margin: 0 4px;
}

.in_paging a,
.in_paging span {
  display: block;

  padding: 0 10px;

  height: var(--size);

  line-height: calc(var(--size) - 2px);

  font-size: 14px;

  color: #666;

  background: #fff;

  box-sizing: border-box;

  border: 1px solid #ccc;

  -webkit-border-radius: var(--border_radius);

  border-radius: var(--border_radius);

  overflow: hidden;
}

.in_paging ul li:not(:first-child):not(:last-of-type) a,
.in_paging ul li:not(:first-child):not(:last-of-type) span {
  border-radius: 50%;
}

.in_paging i {
  margin-top: 14px;

  width: 100%;

  font-size: 13px;

  color: #888;
}

.in_paging a:hover,
.in_paging .curr_page a,
.in_paging .curr_page span {
  border-color: var(--curr_color) !important;

  background: var(--curr_color);

  color: #fff !important;
}

/* --------------Button----------*/

.btn_box {
  display: table;
}

.btn_a {
  display: block;

  box-sizing: border-box;

  font-size: 0.18rem;

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

  color: var(--i_color);

  padding: 0.12rem 0.32rem;

  transition: all 0.35s ease;
}

.btn_a:hover {
  background-color: var(--i_color);

  color: #fff;
}

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

    padding: 0.06rem 0.2rem;
  }
}

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

    padding: 0.06rem 0.1rem;
  }
}

/* --------------other_button----------*/

.btn_box {
  display: table;
}

.other_button_a {
  display: block;

  box-sizing: border-box;

  font-size: 0.18rem;

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

  color: #fff;

  padding: 0.12rem 0.32rem;

  background: var(--i_color);

  transition: all 0.35s ease;
}

/* hover 触发动画 */

.other_button_a:hover {
  animation: darkFlash 1s ease;
}

/* 关键帧：先变深，再回到原色 */

@keyframes darkFlash {
  0% {
    background: var(--i_color);
  }

  50% {
    background: #821a1d; /* 变深 */
  }

  100% {
    filter: brightness(1);

    background: var(--i_color);
  }
}

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

    padding: 0.06rem 0.2rem;
  }
}

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

    padding: 0.06rem 0.1rem;
  }
}

/* ------------------title---------------- */

.title_box {
}

.title_box h2 {
  margin-bottom: 0.24rem;
}

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

@media screen and (max-width: 560px) {
  .title_box h2 {
    margin-bottom: 0.15rem;
  }
}

/* ---------------------------public_center------------------------------- */

.public_center {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.public_center h3 {
  text-align: center;
}

.public_center h4 {
  text-align: center;
}

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

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--header_height);

  background: #fff;

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

.header_maxbox {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.header_logo {
  width: 12.5%;

  display: flex;

  align-items: center;

  height: 100%;

  flex-shrink: 0;
}

.header_info {
  flex: 1;

  border-left: 1px solid #dedede;

  box-sizing: border-box;
}

.top_cont {
  background: #fff;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  height: var(--top_h);
}

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: 100%;
}

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

	.top_cont{background: #373737;}

} */

/* logo */

a.logo {
  display: block;

  height: 100%;
}

.logo img {
  max-height: 0.8rem;

  max-width: 100%;

  width: auto;

  height: auto;

  object-fit: contain;
}

@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: 768px) {
  .header_logo {
    width: 15.5%;
  }
}

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

  .header_logo {
    width: 25%;
  }
}

@media screen and (max-width: 320px) {
  .header_logo {
    width: 32%;
  }
}

/* 导航 */

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

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.8rem;

    z-index: 2014;

    height: 100%;
  }

  .i_nav > li {
    position: relative;

    display: flex;

    align-items: center;
  }

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

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    /* display: none; */
  }

  .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > .active::before {
    width: 100%;
  }

  .i_nav > li > a {
    display: block;

    font-size: 0.18rem;

    color: #333;

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

    line-height: 0.32rem;

    white-space: nowrap;

    box-sizing: border-box;
  }

  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > .active > a {
    /* background-color: var(--i_color); */

    color: var(--i_color);
  }

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

    position: absolute;

    left: 0;

    min-width: 1.6rem;

    background: var(--i_color2);

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

    font-size: 0;

    top: 100%;
  }

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

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

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

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

    padding: 0 0.16rem;

    font-size: 0.15rem;

    color: #333;

    line-height: 0.36rem;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    position: relative;
  }

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

    color: #fff;
  }

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

    top: 0;

    left: 100%;

    background: #979797;

    min-width: 1.4rem;
  }

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

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

    color: #fff;
  }

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

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

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

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

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

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

    position: fixed;

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

    left: 101%;

    width: 100%;

    width: 100vw;

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

    background: #fff;

    overflow-y: auto;

    z-index: 2;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

  .i_nav.active {
    opacity: 1;

    left: 0;
  }

  /*滚动条*/

  .i_nav::-webkit-scrollbar {
    width: 3px;

    height: 8px;
  }

  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

    background: #555;
  }

  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

    border-radius: 0;

    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;

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

    position: relative;
  }

  .i_nav > .menu-item-has-children span {
    display: block;

    position: absolute;

    top: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

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

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

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

    background-size: 0.24rem;
  }

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

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

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

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

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

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

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

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

	} */

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

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

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

    background-size: 0.16rem;
  }

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

    background-size: 0.16rem;
  }

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

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

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

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

/* 移动端导航按钮 */

.nav_menu {
  /* position: absolute;

	right: 0;

	top: 50%;

	transform: translateY(-50%); */

  position: relative;

  width: 22px;

  height: 16px;

  display: none;

  cursor: pointer;
}

.nav_menu i {
  display: block;

  width: 100%;

  height: 3px;

  position: absolute;

  top: 50%;

  margin-top: -2px;

  background: var(--i_color);

  border-radius: 0.1rem;

  transition: 0.5s;
}

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

  width: 100%;

  height: 3px;

  background: var(--i_color);

  position: absolute;

  left: 0;

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);

  top: 50%;

  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);

  top: 50%;

  margin-top: -2px;
}

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

    margin-left: 0rem;
  }
}

.top_r {
  --size: 0.24rem;
}

.top_r {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  margin-left: auto;

  gap: 0.15rem;

  height: 100%;
}

.top_r i {
  display: block;

  width: 1px;

  height: 0.25rem;

  background-color: #333;

  margin: 0 0.2rem;
}

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

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

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

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  text-align: center;

  position: relative;
}

/* .top_search_ico iconify-icon,

.top_language_btn iconify-icon {

  font-size: var(--size);

  color: #333;

  cursor: pointer;

}



.top_search_ico iconify-icon:hover,

.top_search_ico.on iconify-icon,

.top_language_btn.on iconify-icon {

  color: var(--i_color);

} */

.top_search_ico {
  display: flex;

  align-items: center;
}

.separator_line {
  height: 30%;

  width: 0.02rem;

  background: #666666;
}

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

  height: 0.2rem;

  object-fit: contain;
}

.top_language {
  position: relative;
}

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

  position: relative;

  cursor: pointer;
}

.top_language_btn::before {
  content: "";

  position: absolute;

  top: 44%;

  right: 0;

  width: 0;

  height: 0;

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;

  border-top: 6px solid #333;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

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

  transform: rotate(-180deg);

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

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

.language_list {
  opacity: 0;

  visibility: hidden;

  position: absolute;

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

  right: 0;

  background: #fff;

  min-width: 1.2rem;

  z-index: 2016;

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

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  padding: 0.16rem 0.2rem;

  text-align: left;
}

.language_list.on {
  opacity: 1;

  visibility: visible;

  top: var(--top_h);
}

.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 {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0.06rem;

  width: 0.06rem;

  height: 0.06rem;

  background: var(--i_color);

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

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

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

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

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

}

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

	.top_language_btn p{display: none;}

	.top_language_btn iconify-icon{display: block;}

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

}

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

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

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

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

} */

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

    height: 0.2rem;
  }

  .top_language_btn::before {
    display: none;
  }
}

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

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

    height: 0.16rem;
  }
}

/* search */

.top_search {
  --search_height: 0.38rem;
}

.top_search {
  visibility: hidden;

  opacity: 0;

  position: fixed;

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

  right: 0;

  width: 100%;

  padding: 0.2rem 0;

  background: #fff;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  z-index: 99;
}

.top_search.on {
  visibility: visible;

  opacity: 1;

  top: var(--header_height);

  box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
}

.top_search form {
  width: 90%;

  margin: 0 auto;

  max-width: 5rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  box-sizing: border-box;

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

  overflow: hidden;
}

.top_search_ipt {
  width: calc(100% - var(--search_height) * 2);

  height: var(--search_height);

  box-sizing: border-box;

  padding: 0 0 0 0.12rem;
}

.top_search_btn {
  font-size: 0;

  color: #fff;

  width: calc(var(--search_height) * 2);

  height: var(--search_height);

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

  background-size: 0.24rem;

  cursor: pointer;
}

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

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

/* -----------------------------------------顶部信息-------------------------- */

.top_info {
  background: var(--i_color);

  height: var(--header_info_h);

  display: flex;

  align-items: center;

  position: relative;
}

.top_info::before {
  position: absolute;

  width: 200%;

  height: 100%;

  background: var(--i_color);

  top: 0;

  left: 0;

  content: "";

  z-index: -1;
}

.ti_maxbox {
  display: flex;

  width: 100%;

  gap: 5%;

  justify-content: space-between;

  padding: 0 0.3rem;

  box-sizing: border-box;
}

.ti_info {
  flex-shrink: 0;
}

.ti_info ul {
  display: flex;

  gap: 0.38rem;
}

.ti_info ul li {
  height: 90%;

  display: flex;

  gap: 0.1rem;

  align-items: center;

  color: #fff;
}

.ti_info ul li a {
  display: block;

  height: 100%;

  font-weight: normal;

  color: #ffffff;

  display: flex;

  align-items: center;
}

.ti_info ul li img {
  width: 0.2rem;

  height: 0.2rem;

  object-fit: contain;
}

.ti_info ul li a:hover {
  text-decoration: underline;
}

.ti_media {
  display: flex;
}

.ti_media ul {
  display: flex;

  gap: 0.15rem;
}

.ti_media ul li {
  display: flex;

  align-items: center;
}

.ti_media ul li a {
  display: flex;

  align-items: center;

  justify-content: center;
}

.ti_media ul li a iconify-icon {
  font-size: 0.18rem;

  transition: all 0.35s ease;
}

.ti_media ul li a:hover iconify-icon {
  color: #fff !important;
}

@media screen and (max-width: 1024px) {
  .ti_maxbox {
    gap: 3%;
  }

  .ti_info ul {
    gap: 0.2rem;
  }

  .ti_info ul li:last-child {
    display: none;
  }
}

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

  .ti_media ul li a iconify-icon {
    font-size: 0.16rem;
  }

  .ti_media ul {
    margin-left: auto;
  }
}

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

@media screen and (max-width: 375px) {
  .ti_media .tim_span {
    margin-right: 0.2rem;
  }

  .ti_media ul {
    gap: 0.15rem;
  }
}

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

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

.footer_maxBox {
  height: 100%;

  box-sizing: border-box;

  position: relative;
}

.footer_topMaxBox {
  display: flex;

  justify-content: space-between;
}

.ft_left {
  width: 21.4%;

  display: flex;

  flex-direction: column;
}

.ftl_img {
  width: 71%;

  display: block;

  margin-bottom: 2rem;
}

.ftl_img img {
  width: 100%;

  object-fit: contain;
}

.ftl_media_box {
}

.ftl_media_box p {
  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.ftl_media_box dl {
  display: flex;

  gap: 0.3rem;
}

.ftl_media_box dl dt {
}

.ftl_media_box dl dt a {
  width: 0.44rem;

  height: 0.44rem;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

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

  transition: all 0.35s ease;
}

.ftl_media_box dl dt a iconify-icon {
  font-size: 0.22rem;

  transition: all 0.45s ease;

  transform-style: preserve-3d;
}

.ftl_media_box dl dt a:hover {
  background: var(--i_color);
}

.ftl_media_box dl dt a:hover iconify-icon {
  color: #fff !important;

  transform: rotateY(360deg);
}

.ft_right {
  width: 74.71%;
}

.ftr_ul {
  display: flex;

  gap: 0.3rem;

  box-sizing: border-box;

  padding-bottom: 0.3rem;

  border-bottom: #dadada 1px solid;

  margin-bottom: 0.4rem;
}

.ftr_ul > li {
  flex: 1;
}

.ftr_ul > li h3 {
  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.ftr_ul > li a {
  color: #333333;
}

.ftr_menu_ul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.ftr_menu_ul li {
}

.ftr_menu_ul li a {
  color: #333333;

  transform: translateX(-0.2rem);

  transition: all 0.45s ease;

  word-break: break-all;

  display: flex;

  align-items: center;
}

.ftr_menu_ul li a iconify-icon {
  opacity: 0;

  font-size: 0.18rem;

  margin-right: 0.05rem;
}

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

.ftr_menu_ul li a:hover {
  text-decoration: underline;

  transform: translateX(0);
}

.ftr_menu_ul li a:hover iconify-icon {
  opacity: 1;
}

.ftr_box {
  display: flex;

  justify-content: space-between;
}

.ftr_info {
  width: 74.5%;
}

.ftr_info h3 {
  font-weight: bold;

  color: #333333;

  margin-bottom: 0.1rem;
}

.ftr_info h4 {
  color: #333333;

  display: flex;

  align-items: flex-start;

  margin-bottom: 0.25rem;

  cursor: pointer;

  transition: all 0.35s ease;
}

.ftr_info h4 img {
  width: 0.22rem;

  height: 0.22rem;

  object-fit: contain;

  margin-right: 0.05rem;
}

.ftr_info h4:hover {
  text-decoration: underline;

  color: var(--i_color);
}

.ftr_info ul {
  display: flex;

  gap: 0.2rem 0.4rem;

  flex-wrap: wrap;
}

.ftr_info ul li {
  display: flex;

  align-items: center;
}

.ftr_info ul li img {
  width: 0.22rem;

  height: 0.22rem;

  object-fit: contain;
}

.ftr_info ul li a {
  color: #333333;

  transition: all 0.35s ease;

  margin: 0 0.05rem;
}

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

  text-decoration: underline;
}

.footer_whatsapp_pic {
  width: 1.4rem;

  flex-shrink: 0;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.footer_whatsapp_pic img {
  width: 100%;

  object-fit: contain;

  margin-bottom: 0.1rem;
}

.footer_whatsapp_pic p {
  color: #333333;

  text-align: center;
}

.footer_bottomMaxBox {
  padding: 0.25rem 0;

  background: var(--i_color);

  color: #fff;

  display: flex;

  align-items: center;

  font-size: 0.14rem;
}

.footer_bottomMaxBox .wrap a {
  color: #fff;

  cursor: pointer;
}

.footer_bottomMaxBox .wrap a:hover {
  text-decoration: underline;
}

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

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

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

  .ft_left {
    width: 100%;

    display: flex;

    flex-direction: row;

    margin-bottom: 0.3rem;
  }

  .ftl_img {
    width: 70%;

    margin-bottom: 0;
  }

  .ftl_img img {
    width: 30%;
  }

  .ft_right {
    width: 100%;
  }

  .ftr_info ul {
    gap: 0.2rem;
  }

  .ftr_ul {
    padding-bottom: 0.2rem;

    margin-bottom: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .ftr_ul > li:nth-child(3) {
    display: none;
  }

  .ftl_media_box dl {
    gap: 0.2rem;
  }

  .ftr_menu_ul {
    gap: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .footer_bottomMaxBox {
    font-size: 0.1rem;

    padding: 0.1rem 0;
  }

  .ftl_media_box dl dt a {
    width: 0.3rem;

    height: 0.3rem;
  }

  .ftl_media_box dl dt a iconify-icon {
    font-size: 0.14rem;
  }

  .ftl_media_box p {
    margin-bottom: 0.1rem;
  }

  .ftl_img img {
    width: 50%;
  }

  .ftr_ul {
    display: none;
  }

  .ftr_box {
    display: flex;

    justify-content: space-between;

    flex-direction: column;
  }

  .ftr_info {
    width: 100%;
  }

  .ftr_info ul {
    gap: 0.1rem;

    margin-bottom: 0.1rem;
  }

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

  .footer_whatsapp_pic img {
    width: 1rem;
  }

  .ftr_info h4 img {
    width: 0.16rem;

    height: 0.16rem;
  }

  .ftr_info ul li img {
    width: 0.16rem;

    height: 0.16rem;
  }
}

/* -----------------------------------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: 43.5%;

  /* 设置比例 */

  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.12rem;

  height: 0.12rem;

  display: inline-block;

  margin: 0 0.06rem;

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

  -webkit-border-radius: 2rem;

  border-radius: 2rem;

  outline: none;

  cursor: pointer;

  transition: width 0.5s ease;

  opacity: 1;
}

.banner-pagination .swiper-pagination-bullet-active {
  width: 0.35rem;

  background: url(static/images/swiper-pagination-active.webp) no-repeat center;

  background-size: contain;

  -webkit-border-radius: 0;

  border-radius: 0;
}

.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: 22.9%;

  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  width: 80%;
}

.b_text1 h3 {
  text-align: center;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.b_text1 h4 {
  text-align: center;

  color: #666666;

  margin-bottom: 1rem;
}

.b_btn1 {
  display: flex;

  justify-content: center;
}
.b_text3 {
  position: absolute;
  top: 17%;
  left: 13.54%;
  width: 38.28%;
}
.b_text3 h3 {
  color: #333333;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.b_text3 h3 span {
  color: #e9575a;
}
.b_text3 h4 {
  color: #333333;
  position: relative;
  padding-bottom: 0.4rem;
  margin-bottom: 0.5rem;
}
.b_text3 h4::before {
  content: "";
  display: block;
  background: linear-gradient(90deg, #a32124 0%, #a3212400 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 0.04rem;
}
.b_text3_ul {
  display: flex;
  width: 70%;
}
.b_text3_ul li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.b_text3_ul li span {
  width: 0.75rem;
  height: 0.75rem;
  background: linear-gradient(180deg, #f35f62 0%, #a32124 100%);
  border-radius: 0.07rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}
.b_text3_ul li span img {
  width: 50.6%;
  height: 50.6%;
  object-fit: contain;
}
.b_text3_ul li p {
  color: #333333;
  text-align: center;
}
.b_text2 {
  position: absolute;
  top: 13.85%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  width: 80%;
}
.b_text2 h3 {
  text-align: center;
  font-weight: bold;
  color: #333333;
  margin-bottom: 0.2rem;
}
.b_text2 h4 {
  text-align: center;
  color: #666666;
  margin-bottom: 0.3rem;
}
.b_btn2 {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .banner-pagination {
    left: 11% !important;
  }
  .b_text3 {
    top: 12%;
    left: 10%;
    width: 47%;
  }
  .b_text3 h4 {
    padding-bottom: 0.2rem;
    margin-bottom: 0.3rem;
  }
}

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

@media screen and (max-width: 1200px) {
  .b_text3_ul {
    width: 90%;
  }
  .b_text3_ul li span {
    width: 0.5rem;
    height: 0.5rem;
  }
}

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

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

    left: 50% !important;

    transform: translateX(-50%);

    text-align: center;
  }

  .b_text1 h4 {
    margin-bottom: 0.3rem;
  }
  .b_text3_ul {
    display: none;
  }
  .b_text3 h4::before {
    display: none;
  }
  .b_text2 h3 {
    margin-bottom: 0.1rem;
  }
  .b_text2 h4 {
    margin-bottom: 0.15rem;
  }
}

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

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

    height: 0.1rem;
  }

  .banner-pagination .swiper-pagination-bullet-active {
    width: 0.3rem;
  }
}

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

  .b_btn1 {
    display: none;
  }
  .b_text3 h4 {
    display: none;
  }
  .b_text3 {
    top: 12%;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    text-align: center;
  }
  .b_text2 {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .b_text1 h3 {
    font-size: 0.18rem;
  }
  .b_text3 {
    display: none;
  }
}

/* ------------------我们能做什么 ------------*/

.home_what_we_do {
  background: linear-gradient(180deg, #f7f7f7 31%, #f7f7f700 100%);
}

.hwwd_maxbox .title_box {
  margin-bottom: 0.5rem;
}

.hwwd_contain {
  margin-top: 0.1rem;
}

.hwwd_list {
  display: flex;

  gap: 0.25rem;
}

.hwwd_item {
  flex: 1;

  min-width: 0;
}

.hwwd_card {
  position: relative;

  height: 5.4rem;

  overflow: hidden;

  cursor: pointer;
}

.hwwd_default,
.hwwd_hover {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;

  transition: opacity 0.5s ease;
}

.hwwd_default {
  z-index: 2;

  padding: 0.4rem 0.3rem 0.6rem;

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

  opacity: 0;
}

.hwwd_hover {
  padding: 0.3rem;

  opacity: 1;

  pointer-events: none;
  z-index: 3;
}

.hwwd_hover_pic {
  position: absolute;

  inset: 0;

  z-index: 0;

  margin: 0;
}

.hwwd_hover_pic img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hwwd_hover::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background: rgba(0, 0, 0, 0.35);
}

.hwwd_hover_inner {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  width: 100%;
}

.hwwd_card:hover .hwwd_default {
  opacity: 0;
}

.hwwd_card:hover .hwwd_hover {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  z-index: 3;
}

.hwwd_icon {
  width: 0.56rem;

  height: 0.56rem;

  margin-bottom: 0.6rem;

  flex-shrink: 0;
}

.hwwd_icon img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: contain;
}

.hwwd_default .hwwd_title {
  text-align: center;

  line-height: 1.4;

  width: 50%;
}

.hwwd_line {
  position: absolute;

  bottom: 0rem;

  left: 50%;

  transform: translateX(-50%);

  width: 0.4rem;

  height: 0.03rem;

  background: var(--i_color);
}

.hwwd_hover .hwwd_title {
  margin: 1rem 0;

  line-height: 1.4;

  width: 50%;
}

.hwwd_desc {
  list-style: none;

  padding: 0;

  margin: 0;

  font-size: 0.18rem;

  line-height: 1.5;

  color: #fff;

  width: 70%;
}

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

  .hwwd_icon {
    width: 0.48rem;

    height: 0.48rem;

    margin-bottom: 0.2rem;
  }

  .hwwd_desc {
    font-size: 0.14rem;

    width: 80%;
  }

  .hwwd_hover .hwwd_title {
    margin: 0.6rem 0;
  }
}

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

    gap: 0.16rem;
  }

  .hwwd_card {
    height: 3rem;
  }
}

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

  .hwwd_hover .hwwd_title {
    margin: 0.3rem 0;
  }
}

/* --------------------------我们服务的行业--------------------- */

.home_industries_we_serve {
  background: #fff;
}

.hiws_contain {
  display: flex;

  align-items: stretch;
}

.hiws_left {
  width: 68.2%;

  flex-shrink: 0;
}

.hiws_pic_box {
  position: relative;

  width: 100%;

  padding-bottom: 75.09%;

  overflow: hidden;
}

.hiws_pic_list {
  position: absolute;

  inset: 0;
}

.hiws_pic_item {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: none;
}

.hiws_pic_item.active {
  display: block;
}

.hiws_pic {
  position: absolute;

  inset: 0;

  margin: 0;
}

.hiws_pic img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hiws_pic_txt {
  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 2;

  box-sizing: border-box;

  width: 80%;

  padding: 0.4rem 0.5rem 0.4rem 22%;
}

.hiws_pic_txt h3 {
  margin-bottom: 0.12rem;

  line-height: 1.5;
}

.hiws_pic_txt p {
  line-height: 1.6;
}

.hiws_right {
  flex: 1;

  min-width: 0;

  padding: 1rem 0 0 0.5rem;

  box-sizing: border-box;

  overflow: visible;

  z-index: 3;
}

.hiws_title {
  margin-bottom: 0.6rem;

  line-height: 1.3;
}

.hiws_tab_list {
  /* list-style: none;

  padding: 0;

  margin: 0; */

  display: flex;

  flex-direction: column;

  overflow: visible;

  gap: 0.1rem;
}

.hiws_tab_item {
  overflow: visible;
}

.hiws_tab_item + .hiws_tab_item {
  margin-top: 0.08rem;
}

.hiws_tab_link {
  display: flex;

  align-items: center;

  gap: 0.16rem;

  padding: 0.25rem 0.2rem;

  color: #333;

  box-sizing: border-box;

  width: 100%;

  transition:
    margin 0.35s ease,
    padding 0.35s ease,
    width 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.hiws_tab_icon {
  flex-shrink: 0;

  width: 0.28rem;

  height: 0.28rem;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: transform 0.35s ease;
}

.hiws_tab_icon img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: filter 0.35s ease;
}

.hiws_tab_name {
  flex: 1;

  min-width: 0;

  font-weight: bold;

  transition:
    transform 0.35s ease,
    color 0.35s ease,
    font-weight 0.35s ease;
}

.hiws_tab_arrow {
  flex-shrink: 0;

  font-size: 0.2rem;

  color: #999;

  margin-left: auto;

  transition: color 0.35s ease;
}

.hiws_tab_item.active .hiws_tab_link {
  width: calc(100% + 1rem);

  margin-left: -1rem;

  padding: 0.3rem 0.28rem 0.3rem 0.9rem;

  background: var(--i_color);

  color: #fff;
}

.hiws_tab_item.active .hiws_tab_icon,
.hiws_tab_item.active .hiws_tab_name {
  transform: translateX(-0.14rem);
}

.hiws_tab_item.active .hiws_tab_name {
  font-weight: bold;

  color: #fff;
}

.hiws_tab_item.active .hiws_tab_icon img {
  filter: brightness(0) invert(1);
}

.hiws_tab_item.active .hiws_tab_arrow {
  color: #fff;
}

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

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

    gap: 0.3rem;
  }

  .hiws_left {
    width: 100%;
  }

  .hiws_right {
    padding-left: 0;
  }

  .hiws_pic_txt {
    width: 90%;

    padding: 0.3rem;
  }

  .hiws_tab_item.active .hiws_tab_link {
    width: 100%;

    margin-left: 0;

    padding: 0.18rem 0.2rem 0.18rem 0.24rem;
  }

  .hiws_tab_item.active .hiws_tab_icon,
  .hiws_tab_item.active .hiws_tab_name {
    transform: translateX(-0.08rem);
  }

  .hiws_title {
    margin-left: 0.1rem;

    margin-bottom: 0.3rem;
  }

  .hiws_title {
    margin-bottom: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .hiws_pic_txt h3 {
    font-size: 0.24rem;
  }

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

  .hiws_title {
    font-size: 0.24rem;

    margin-bottom: 0.15rem;
  }

  .hiws_tab_link {
    gap: 0.1rem;

    padding: 0.1rem;
  }

  .hiws_tab_item.active .hiws_tab_link {
    padding: 0.1rem;
  }

  .hiws_tab_list {
    gap: 0rem;
  }

  .hiws_contain {
    gap: 0.15rem;
  }
}

@media screen and (max-width: 560px) {
  .hiws_pic_txt h3 {
    font-size: 0.2rem;
  }

  .hiws_pic_txt {
    padding: 0.2rem;
  }

  .hiws_right {
    padding: 0rem 0 0 0.1rem;
  }
}

@media screen and (max-width: 375px) {
  .hiws_pic_item.active .hiws_pic_txt p {
    display: none;
  }
}

/* -----------------------水处理解决方案----------------------- */

.home_water_treatment_solution {
  background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f700 99%);
}

.hwts_maxbox .title_box {
  margin-bottom: 0.5rem;
}

.hwts_contain {
  margin-top: 0.1rem;
}

.hwts_grid {
  list-style: none;

  padding: 0;

  margin: 0;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.hwts_item {
  min-width: 0;
}

.hwts_item_tall {
  grid-row: span 2;
}

.hwts_link {
  position: relative;

  display: block;

  overflow: hidden;

  height: 100%;
}

.hwts_link::before {
  content: "";

  display: block;

  width: 100%;
}

.hwts_item_short .hwts_link::before {
  padding-bottom: 83.14%;
}

.hwts_item_tall .hwts_link::before {
  display: none;
}

.hwts_link::after {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

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

  z-index: 1;

  pointer-events: none;
}

.hwts_pic {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  margin: 0;

  overflow: hidden;
}

.hwts_pic img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.hwts_item:hover .hwts_pic img {
  transform: scale(1.1);
}

.hwts_name {
  position: absolute;

  left: 50%;

  top: 80%;

  transform: translateX(-50%);

  z-index: 2;

  width: 86%;

  text-align: center;

  line-height: 1.4;

  pointer-events: none;
}

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

  .hwts_item_tall {
    grid-column: 1 / -1;

    grid-row: span 1;
  }

  .hwts_item_tall .hwts_link::before {
    display: block;

    padding-bottom: 50%;
  }
}

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

  .hwts_item_tall .hwts_link::before {
    padding-bottom: 60%;
  }
}

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

.home_popular_product {
}

.hpp_maxbox {
}

.hpp_contain {
}

.hpp_list {
  position: relative;

  overflow: hidden;

  padding-bottom: 0.3rem;

  box-sizing: border-box;
}

.hpp_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.hpp_list li {
  flex-shrink: 0;

  position: relative;
}

.hpp_list li a {
  background: #fafafa;

  padding: 0.65rem;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  align-items: center;

  position: relative;
}

.hpp_icon {
  width: 0.74rem;

  position: absolute;

  top: 5%;

  left: 5%;

  display: block;
}

.hpp_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  opacity: 0;

  transition: all 0.35s ease;
}

.hpp_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;
  margin-bottom: 0.1rem;
}

.hpp_pic::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.hpp_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hpp_list li a h3 {
  font-weight: bold;

  text-align: center;

  color: #333333;

  display: block;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  margin-bottom: 0.35rem;

  transition: all 0.35s ease;

  display: block;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  width: 100%;
}

.hppl_btn {
  width: 64%;

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

  display: flex;

  justify-content: center;

  align-items: center;

  color: var(--i_color);

  padding: 0.16rem 0;

  box-sizing: border-box;

  transition: all 0.35s ease;
}

.hpp_list li a:hover .hpp_icon img {
  opacity: 1;
}

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

.hpp_list li a:hover .hpp_pic img {
  transform: scale(1.1);
}

.hpp_list li a:hover .hppl_btn {
  color: #fff;

  border: transparent 1px solid;

  background: var(--i_color);
}

.hpp_prev,
.hpp_next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.4rem;

  height: 0.4rem;

  background: rgb(0 0 0 / 60%);

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  display: none;
}

.hpp_prev {
  left: 0;
}

.hpp_next {
  right: 0;
}

.hpp_prev iconify-icon,
.hpp_next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.3rem;

  color: #fff;
}

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

.hpp_prev:hover,
.hpp_next:hover {
  background: var(--i_color);
}

.hpp_pagination {
  text-align: center;
}

/* 进度条容器 */

.hpp_pagination.swiper-pagination-progressbar {
  height: 2px !important;

  background: #d6d6d6;

  border-radius: 4px;

  overflow: hidden;

  top: auto !important;

  bottom: 0rem !important;

  width: 12.8% !important;

  left: 50% !important;

  transform: translateX(-50%) !important;
}

/* 进度条填充 */

.hpp_pagination .swiper-pagination-progressbar-fill {
  background: var(--i_color) !important;

  border-radius: 4px;
}

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

@media screen and (max-width: 1024px) {
  .hpp_list li a {
    padding: 0.4rem 0.3rem 0.3rem 0.3rem;
  }
}

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

  .hpp_list li a {
    padding: 0.3rem 0.2rem 0.2rem 0.2rem;
  }

  .hppl_btn {
    width: 90%;

    padding: 0.05rem 0;

    font-size: 0.14rem !important;
  }

  .hpp_pagination.swiper-pagination-progressbar {
    width: 30% !important;
  }
}

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

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

.hau_maxbox {
}

.haum_top {
  margin-bottom: 0.5rem;
}

.haum_top .haum_title h3 {
  color: var(--i_color);

  position: relative;

  margin-bottom: 0.3rem;
}

.haum_top .haum_title h3::before {
  content: "";

  display: block;

  height: 0.03rem;

  width: 120%;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);
}

.haum_top .haum_title h4 {
  width: 80%;
}

.haum_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0 0.2rem;

  margin-bottom: 0.8rem;
}

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

  text-align: center;

  border-bottom: #dbdfe9 0.01rem solid;

  padding-bottom: 0.2rem;

  position: relative;

  cursor: pointer;
}

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

  display: block;

  width: 0.01rem;

  height: 50%;

  background: #dbdfe9;

  position: absolute;

  right: -0.1rem;

  top: 50%;

  transform: translateY(-50%);
}

.haum_contain ul li:nth-child(n + 4) {
  border-bottom: none;
}

.haum_contain ul li:nth-child(3)::before,
.haum_contain ul li:nth-child(6)::before {
  display: none;
}

.haum_contain ul li:hover h3 i {
  color: var(--i_color);
}

.haum_contain ul li h3 {
  font-family: Arial;

  font-weight: normal;

  transition: all 0.35s ease;

  color: #666666;
}

.haum_contain ul li h3 i {
  font-weight: bold;

  color: #333333;
}

.haum_contain ul li h4 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;

  display: flex;

  align-items: center;

  justify-content: center;
}

.haumc_info {
  display: flex;

  justify-content: space-between;
}

.haumci_info {
  width: 42%;
}

.haumci_info h3 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  margin-bottom: 0.6rem;
}

.haumci_btn {
  display: flex;
}

.haumci_pic {
  width: 51.73%;
}

.haumci_pic span {
  width: 100%;

  display: block;

  position: relative;
}

.haumci_pic span::before {
  content: "";

  display: block;

  padding-bottom: 60%;
}

.haumci_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.haumci_pic i {
  display: block;

  width: 0.68rem;

  height: 0.68rem;

  border-radius: 50%;

  cursor: pointer;

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

  background-size: contain;

  position: absolute;

  top: 50%;

  left: 50%;

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

.haumci_pic i:hover {
}

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

@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);
  }
}

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

  .haumci_info {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .haumci_pic {
    width: 100%;
  }

  .haumci_btn {
    justify-content: flex-end;
  }
}

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

  .haum_contain ul {
    margin-bottom: 0.3rem;
  }

  .haumci_pic i {
    width: 0.5rem;

    height: 0.5rem;
  }
}

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

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

  .haum_contain ul li:nth-child(n + 4) {
    border-bottom: #dbdfe9 0.02rem solid;
  }

  .haum_contain ul li:nth-child(3)::before,
  .haum_contain ul li:nth-child(6)::before {
    display: flex;
  }

  .haum_contain ul li:nth-child(2n)::before {
    display: none;
  }

  .haum_top .haum_title h4 {
    width: 100%;
  }

  .haum_contain ul li h4 img {
    width: 0.2rem;

    height: 0.2rem;
  }

  .haum_top {
    margin-bottom: 0.2rem;
  }

  .haumci_pic i {
    width: 0.45rem;

    height: 0.45rem;
  }
}

/* eject videos */

.vd_box {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

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

/* ----------------------项目案例---------------------- */

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

.hpc_maxbox {
}

.hpc_top {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.hpc_top h3 {
  color: #333333;

  font-weight: bold;
}

.hpc_btn {
  display: flex;

  gap: 0.1rem;
}

.hpc_contain {
}

.hpc_list {
  position: relative;

  overflow: hidden;

  padding: 0.5rem 0;
}

.hpc_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.hpc_list li {
  flex-shrink: 0;

  position: relative;

  display: flex;

  align-items: center;
}

.hpc_box {
  position: relative;

  width: 100%;

  height: 100%;

  background: #fff;

  box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.2);

  border-radius: 0.4rem 0px;

  padding: 1rem 0.75rem 0.6rem 0.67rem;

  box-sizing: border-box;
}

.hpci_icon {
  position: absolute;

  top: -0.5rem;

  left: 0.6rem;

  width: 1rem;

  height: 1rem;

  background: var(--i_color);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 0.2rem 0 0.2rem 0;
}

.hpci_icon img {
  width: 70%;

  height: 70%;

  object-fit: contain;
}

.hpc_info {
  width: 55.35%;

  z-index: 2;

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  cursor: pointer;
}

.hpc_info h3 {
  color: #333333;

  font-weight: bold;

  margin-bottom: 0.2rem;
}

.hpc_info h4 {
  color: #666666;

  margin-bottom: 0.5rem;

  display: -webkit-box;

  -webkit-line-clamp: 4;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hpci_btn {
  display: flex;

  justify-content: space-between;
}

.hpci_btn img {
  width: 1.4rem;

  object-fit: contain;
}

.hpc_pic {
  width: 52%;

  margin-left: auto;
}

.hpc_pic span {
  position: relative;

  display: block;

  width: 100%;

  border-radius: 0.5rem 0 0.5rem 0;

  overflow: hidden;
}

.hpc_pic span::before {
  content: "";

  display: block;

  padding-bottom: 83.5%;
}

.hpc_pic span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.hpc_prev,
.hpc_next {
  width: 0.5rem;

  height: 0.5rem;

  background: #fff;

  z-index: 3;

  cursor: pointer;

  border: 1px solid #e5e5e5;

  display: flex;

  justify-content: center;

  align-items: center;
}

.hpc_prev {
}

.hpc_next {
}

.hpc_prev iconify-icon,
.hpc_next iconify-icon {
  font-size: 0.2rem;

  color: #333;
}

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

.hpc_prev:hover,
.hpc_next:hover {
  background: var(--i_color);
}

.hpc_prev:hover iconify-icon,
.hpc_next:hover iconify-icon {
  color: #fff !important;
}

@media screen and (max-width: 1200px) {
  .hpci_icon {
    top: -0.2rem;

    left: 0.6rem;

    width: 0.6rem;

    height: 0.6rem;
  }

  .hpc_box {
    padding: 0.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .hpc_box {
    padding: 0.3rem;
  }

  .hpci_icon {
    top: -0.25rem;

    left: 0.6rem;

    width: 0.45rem;

    height: 0.45rem;
  }

  .hpc_prev,
  .hpc_next {
    width: 0.4rem;

    height: 0.4rem;
  }

  .hpc_list {
    padding: 0.2rem 0;
  }
}

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

    position: relative;

    left: 0;

    top: 0;

    transform: translateY(0);

    margin-bottom: 0.2rem;
  }

  .hpc_box {
    box-shadow: none;
  }

  .hpc_list li {
    flex-direction: column;
  }

  .hpc_pic {
    width: 90%;

    margin-left: 0;
  }

  .hpc_pic span {
    border-radius: 0;
  }
}

@media screen and (max-width: 560px) {
  .hpc_prev,
  .hpc_next {
    width: 0.35rem;

    height: 0.35rem;
  }

  .hpc_prev iconify-icon,
  .hpc_next iconify-icon {
    font-size: 0.16rem;
  }

  .hpci_icon {
    top: -0.2rem;

    left: 0.5rem;

    width: 0.4rem;

    height: 0.4rem;
  }

  .hpc_info h4 {
    margin-bottom: 0.3rem;
  }

  .hpc_pic {
    width: 100%;
  }
}

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

.home_news {
}

.hn_maxbox {
}

.hnm_top {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.hnm_top h3 {
  color: #333333;

  font-weight: bold;
}

.hnm_contain {
  margin-top: 0.1rem;
}

.hnm_list {
  position: relative;

  overflow: hidden;

  padding-bottom: 0.36rem;

  box-sizing: border-box;
}

.hnm_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.hnm_list li {
  flex-shrink: 0;

  position: relative;

  height: auto;
}

.hnm_card {
  display: block;

  box-sizing: border-box;
}

.hnm_pic {
  position: relative;

  display: block;

  overflow: hidden;

  margin: 0 0 0.24rem;
}

.hnm_pic::before {
  content: "";

  display: block;

  padding-bottom: 65.6%;
}

.hnm_pic img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.35s ease;
}

.hnm_title {
  color: #333;

  line-height: 1.4;

  margin-bottom: 0.12rem;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: color 0.35s ease;
}

.hnm_desc {
  line-height: 1.6;

  margin-bottom: 0.2rem;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.hnm_date {
  display: block;

  margin-bottom: 0.24rem;
}

.hnm_arrow {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.4rem;

  height: 0.4rem;

  border: 1px solid #d6d6d6;

  background: #fff;

  color: #666;

  transition: all 0.35s ease;
}

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

  color: #333;

  transition: all 0.35s ease;
}

.hnm_card:hover .hnm_pic img {
  transform: scale(1.05);
}

.hnm_card:hover .hnm_title {
  color: var(--i_color);
}

.hnm_card:hover .hnm_arrow {
  background: var(--i_color);

  border-color: var(--i_color);

  color: #fff;
}

.hnm_card:hover .hnm_arrow iconify-icon {
  color: #fff;
}

.hnm_pagination {
  position: absolute;

  text-align: center;
}

/* 进度条容器 */

.hnm_pagination.swiper-pagination-progressbar {
  height: 2px !important;

  background: #d6d6d6;

  border-radius: 4px;

  overflow: hidden;

  top: auto !important;

  bottom: 0rem !important;

  width: 12.8% !important;

  left: 50% !important;

  transform: translateX(-50%) !important;
}

/* 进度条填充 */

.hnm_pagination .swiper-pagination-progressbar-fill {
  background: var(--i_color) !important;

  border-radius: 4px;
}

@media screen and (max-width: 560px) {
  .hnm_pic {
    margin: 0 0 0.15rem;
  }

  .hnm_title {
    margin-bottom: 0.1rem;
  }

  .hnm_desc {
    margin-bottom: 0.1rem;
  }

  .hnm_date {
    margin-bottom: 0.15rem;
  }

  .hnm_arrow {
    width: 0.3rem;

    height: 0.3rem;
  }

  .hnm_arrow iconify-icon {
    font-size: 0.16rem;
  }

  .hnm_pagination.swiper-pagination-progressbar {
    width: 20% !important;
  }
}

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

.home_form {
  z-index: 1;

  position: relative;
}

.hide {
  display: none !important;
}

#wpforms-179 {
  --wpforms_input_height: 52px;

  --wpforms_textarea_height: 88px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  width: 100%;
}

#wpforms-179 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

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

  /* padding: 0 1px 20px; */

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: #4b4e52;
}

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

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

  border: 1px solid transparent;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #fff;

  font-family: Arial;
}

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

  background: #4b4e52;
}

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

  background: #4b4e52;
}

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

  height: var(--wpforms_select_height);

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

  background-size: 0.3rem;
}

#wpforms-179-field_1::placeholder,
#wpforms-179-field_2::placeholder,
#wpforms-179-field_3::placeholder,
#wpforms-179-field_4::placeholder,
#wpforms-179-field_5::placeholder,
#wpforms-179-field_6::placeholder,
#wpforms-179-field_7::placeholder {
  color: #e9e9e9;

  opacity: 1;
}

#wpforms-179 input::placeholder,
#wpforms-179 textarea::placeholder,
#wpforms-179 select::placeholder {
  color: #e9e9e9;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-179 select:invalid {
  color: #e9e9e9;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 输入框水平排列，一行两个 */

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

#wpforms-179-field_7-container {
  width: 100% !important;
}

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: flex-start;

  /* margin-left: auto;







  margin-right: auto; */
}

#wpforms-179 .wpforms-submit-container button {
  width: 30%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

  border: none;

  font-family: Arial;

  border-radius: 0;

  border: transparent 1px solid;

  box-sizing: border-box;
}

#wpforms-179 .wpforms-submit-container img {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-179 .wpforms-submit-container button:hover {
  animation: darkFlash 1s ease;
}

/* 关键帧：先变深，再回到原色 */

@keyframes darkFlash {
  0% {
    background: var(--i_color);
  }

  50% {
    background: #821a1d; /* 变深 */
  }

  100% {
    filter: brightness(1);

    background: var(--i_color);
  }
}

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

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

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

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

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

  #wpforms-179 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }

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

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

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

@media screen and (max-width: 768px) {
  #wpforms-179 {
    --input_height: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-179-field_1-container,
  #wpforms-179-field_2-container,
  #wpforms-179-field_3-container,
  #wpforms-179-field_4-container {
    width: 100% !important;
  }

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

  #wpforms-179 {
    /* --wpforms_input_height: 48px;



    --wpforms_textarea_height: 120px;



    --wpforms_input_font_size: 14px; */

    width: 100%;
  }

  #wpforms-179 .wpforms-submit-container button {
    height: 0.4rem;

    font-size: 0.16rem;
  }

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

  #wpforms-179 .wpforms-submit-container {
    margin: 0 auto 0;
  }

  .contact_form {
    padding: 0.3rem 0;
  }
}

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

/* ==================== 内页 ==================== */

/* 内页banner */

.page_banner {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.page_banner::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 26.13%;
}

.page_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

.page_banner h2 {
  position: absolute;

  left: 50%;

  top: 50%;

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

.page_banner i {
  display: block;

  width: 0.46rem;

  height: 9px;

  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .page_banner h2 p {
    padding-bottom: 0;
  }

  .page_banner i {
    display: none;
  }
}

/* Breadcrumb */

.in_position {
  padding: 0.2rem 0;

  position: relative;
}

.in_position .wrap {
  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

.in_position a {
  display: block;

  font-size: 15px;

  color: #333;

  position: relative;

  line-height: 20px;
}

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

.in_position a:first-child::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 16px;

  height: 16px;

  background: url(static/imgs/home.webp) no-repeat center;

  background-size: contain;
}

.in_position a:not(:last-child):after {
  content: ">";

  margin: 0 4px;

  color: #555;
}

.in_position a:last-child {
  color: var(--i_color) !important;
}

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

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

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

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

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

/* --------------------------------------------  解决方案列表页面 */

/* 解决方案列表 */

.Solution_box {
}

.Solution_list {
}

.Solution_item {
}

.Solution_item:hover .Solution_info h3 {
  color: var(--i_color);
}

.Solution_item a {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.2rem 0;

  justify-content: space-between;
}

.Solution_img {
  width: 47.86%;

  position: relative;

  overflow: hidden;
}

.Solution_img::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 76.42%;
}

.Solution_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

.Solution_info {
  width: 47.29%;

  box-sizing: border-box;
}

.Solution_info > img {
  width: 0.8rem;

  display: block;
}

.Solution_info h3 {
  border-bottom: 1px solid #d8d8d8;

  transition: all 0.35s ease;
}

.Solution_info p {
  display: -webkit-box;

  -webkit-line-clamp: 5;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.Solution_item:nth-child(even) {
  background-color: #f7f7f7;
}

.Solution_item:nth-child(even) a {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .Solution_info > img {
    width: 0.6rem;
  }

  .Solution_info h3 {
    margin-top: 0.1rem;

    padding-bottom: 0.1rem;
  }

  .Solution_info p {
    margin: 0.2rem 0;

    font-size: 0.16rem;
  }

  .Solution_img,
  .Solution_info {
    width: 100%;
  }

  .Solution_info {
    order: -1;
  }
}

@media screen and (max-width: 560px) {
  .Solution_info > img {
    width: 0.4rem;
  }
}

/* --------------------------------------------  解决方案列表页面 */

/* 钢铁工业 */

.steel_industry {
}

.si_span {
  width: 100%;

  display: block;

  position: relative;

  border-radius: 4px;

  overflow: hidden;
}

.si_span::before {
  content: "";

  display: block;

  padding-bottom: 38%;
}

.steel_industry img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.Industrial_top {
  background-color: #f4f4f4;
}

.Industrial_list {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 0.1rem 1.4rem;
}

.Industrial_item {
  box-sizing: border-box;

  padding: 0.3rem 0;

  position: relative;

  cursor: pointer;
}

.Industrial_item::before {
  content: "";

  display: block;

  width: 0;

  height: 2px;

  background-color: var(--i_color);

  position: absolute;

  right: 0;

  bottom: 0;

  transition: all 0.4s ease;
}

.Industrial_item.active {
  color: var(--i_color);

  font-weight: bold;
}

.Industrial_item:hover::before,
.Industrial_item.active::before {
  width: 100%;

  left: 0;

  right: auto;
}

.Industrial_bottom {
  position: relative;

  overflow: hidden;
}

.Industrial_bottom img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.4s ease;

  opacity: 0;
}

.Industrial_bottom img.active {
  opacity: 1;
}

.Industrial_content {
  width: 40.5%;

  box-sizing: border-box;

  display: none;
}

.Industrial_content h2 {
  width: 80%;
}

.Industrial_content i {
  display: block;

  width: 0.38rem;

  height: 6px;

  background-color: #333;
}

.Industrial_content.active {
  display: block;
}
.Water_challenges .Water_list,
.Typical_Process_Flow .wrap > img,
.System_advantages .R_contentBox,
.Application_scenarios .Application_list,
.Recommended_equipment .Recommended_equipment_list,
.solution_tab_title {
  display: none;
}

.solution_tab_title.active {
  display: block;
}

.Water_challenges .Water_list.active {
  display: flex;
}

.Typical_Process_Flow .wrap > img.active {
  display: block;
}

.System_advantages .R_contentBox.active {
  display: block;
}

.Application_scenarios .Application_list.active {
  display: flex;
}

.Recommended_equipment .Recommended_equipment_list.active {
  display: block;
}
@media screen and (max-width: 1024px) {
  .Industrial_list {
    gap: 0.1rem 0.4rem;
  }

  .Industrial_item {
    padding: 0.2rem 0;

    font-size: 0.16rem;
  }

  .Industrial_content {
    width: 100%;
  }
}

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

    padding: 0.1rem 0;
  }
  .solution_tab_title.active {
    display: none;
  }
}

/* 案例研究 */

.Case_Studies {
  background: linear-gradient(180deg, #f7f7f7 23%, #ffffff00 47%);
}

.Case_Studies_list {
  position: relative;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

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

  position: relative;
}

.Case_item {
  display: block;
}

.Case_img {
  width: 100%;

  position: relative;

  border-radius: 4px;

  overflow: hidden;
}

.Case_img::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 80%;
}

.Case_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.Case_text {
  width: 90%;

  box-sizing: border-box;

  border-radius: 0.1rem;

  padding: 0.24rem;

  background-color: #fff;

  margin-top: -10%;
}

.Case_text h6 {
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.Case_item:hover .Case_img img {
  -webkit-transform: scale(1.05, 1.05);

  transform: scale(1.05, 1.05);
}

.Case_item:hover .Case_text {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Case_item:hover .Case_text h4 {
  color: var(--i_color);
}

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

.Case_Studies-pagination {
  display: block;

  text-align: center;
}

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

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

@media screen and (max-width: 1024px) {
  .Case_text {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}

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

  .Case_text h4 {
    font-size: 0.16rem;
  }
}

/* --------------------------------------------  解决方案详情页面 */
.solution_tab_panel {
  display: none;
}

.solution_tab_panel.active {
  display: block;
}
/* 水资源挑战 */

.Water_challenges {
}

.Water_list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.28rem 2%;
}

.Water_item {
  width: 49%;

  box-sizing: border-box;

  position: relative;

  border-radius: 4px;

  overflow: hidden;
}

.Water_item::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 50.3%;
}

.Water_item::after {
  content: "";

  display: block;

  width: 100%;

  height: 100%;

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

  position: absolute;

  left: 0;

  top: 0;
}

.Water_item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.4s ease;
}

.Water_item p {
  position: absolute;

  left: 50%;

  bottom: 16%;

  transform: translateX(-50%);

  z-index: 2;
}

.Water_item:hover img {
  -webkit-transform: scale(1.05, 1.05);

  transform: scale(1.05, 1.05);
}

@media screen and (max-width: 768px) {
  .Water_list {
    gap: 0.15rem 2%;
  }

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

@media screen and (max-width: 560px) {
  .Water_list {
    gap: 0.06rem 2%;
  }

  .Water_item p {
    width: 80%;

    text-align: center;

    font-size: 0.12rem;
  }
}

/* 典型流程图 */

.Typical_Process_Flow {
  background-color: #f7f7f7;
}

.Typical_Process_Flow img {
  display: block;

  width: 100%;
}

/* 系统优势 */

.System_advantages {
}

.R_contentBox {
  width: 100%;

  position: relative;

  padding-bottom: 1.5rem;

  z-index: 20;
}

.Rc_list {
  width: 100%;

  display: flex;

  position: relative;

  flex-wrap: wrap;

  gap: 1.5rem 54.7%;

  padding-top: 1.5rem;

  z-index: 20;
}

.Rc_list li {
  width: 22.65%;

  cursor: pointer;

  z-index: 20;

  position: relative;
}

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

  display: block;

  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

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

  border-radius: 0.1rem;

  display: none;
}

@media screen and (min-width: 769px) {
  .Rc_list li:nth-child(3) {
    order: 4;
  }

  .Rc_list li:nth-child(4) {
    order: 3;
  }

  .Rc_list li:nth-child(1),
  .Rc_list li:nth-child(4) {
    text-align: right;
  }
}

.Rc_pic {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 50%;

  left: 50%;

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

  z-index: -1;

  border-radius: 0.1rem;

  display: none;
}

.Rc_list li h4 {
  font-size: 0.3rem;

  font-weight: bold;

  transition: all 0.4s;

  position: relative;

  z-index: 10;
}

.Rc_list li p {
  transition: all 0.4s;

  position: relative;

  z-index: 10;
}

.Rc_list li span {
  color: #656668;

  transition: all 0.4s;

  position: relative;

  z-index: 10;
}

@media screen and (min-width: 769px) {
  .Rc_list .Rc_black h4,
  .Rc_list .Rc_black p,
  .Rc_list .Rc_black span {
    color: var(--i_color);
  }
}

.Rc_imgs {
  width: 580px;

  height: 580px;

  border-radius: 50%;

  position: absolute;

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  box-sizing: border-box;

  border: 6px solid #fff;
}

.Rc_imgs::before {
  width: 125%;

  height: 125%;

  content: "";

  display: block;

  background: url(static/imgs/Indicator_Arrow.webp) no-repeat center center;

  background-size: cover;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));

  transition: all 0.4s;

  z-index: 5;
}

.Rc_imgs .Rc_imgBox {
  width: 100%;

  height: 100%;

  position: relative;

  overflow: hidden;
}

.Rc_imgs .Rc_imgBox img {
  width: 100%;

  height: 100%;

  border-radius: 50%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  opacity: 0;

  transition: all 0.6s;
}

.Rc_imgs .Rc_imgBox .imgBlock {
  opacity: 1;
}

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

  .Rc_imgs {
    width: 480px;

    height: 480px;
  }
}

@media screen and (max-width: 1366px) {
  .Rc_imgs {
    width: 450px;

    height: 450px;
  }
}

@media screen and (max-width: 1200px) {
  .R_contentBox {
    padding-bottom: 0.2rem;
  }

  .R_contentBox > img {
    bottom: 0;
  }

  .Rc_imgs {
    width: 400px;

    height: 400px;
  }
}

@media screen and (max-width: 1024px) {
  .wrap > h3::before {
    display: none;
  }

  .Rc_list {
    padding-top: 0;
  }

  .Rc_imgs {
    width: 300px;

    height: 300px;

    top: 10%;
  }

  .Rc_imgs::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .R_contentBox {
    padding-bottom: 0;
  }

  .Rc_imgs {
    display: none;
  }

  .Rc_list {
    gap: 0.3rem 10%;
  }

  .Rc_list li {
    width: 100%;

    padding: 0.4rem 0.2rem;

    box-sizing: border-box;
  }

  .Rc_list li span {
    color: #fff;
  }

  .Rc_list li::before {
    display: block;
  }

  .Rc_pic {
    display: block;
  }

  .Rc_list li h4 {
    display: none;
  }

  .Rc_list li p {
    color: #fff;
  }
}

@media screen and (max-width: 560px) {
  .Rc_list li p {
    font-size: 0.15rem;
  }

  .Rc_list li span {
    font-size: 0.12rem;
  }
}

/* 应用场景 */

.Application_scenarios {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background: url(static/imgs/Application_scenarios_Ba.webp) no-repeat center;
}

.as_title {
  position: absolute;

  left: 50%;

  top: 5%;

  transform: translateX(-50%);

  color: #fff;

  font-weight: bold;
}

.Application_list {
  display: flex;

  flex-wrap: wrap;

  position: relative;
}

.app_item {
  width: 33.33%;

  height: 8.97rem;

  box-sizing: border-box;

  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.app_item::before {
  content: "";

  display: block;

  width: 1px;

  height: 100%;

  position: absolute;

  left: 0;

  bottom: 0;

  background: linear-gradient(0deg, #ffffff99 0%, #ffffff00 100%);
}

.app_item:last-child::after {
  content: "";

  display: block;

  width: 1px;

  height: 100%;

  position: absolute;

  right: 0;

  bottom: 0;

  background: linear-gradient(0deg, #ffffff99 0%, #ffffff00 100%);
}

.app_item i {
  display: block;

  width: 100%;

  height: 0;

  position: absolute;

  left: 0;

  bottom: 0;

  background: linear-gradient(180deg, #a3212400 0%, #a3212480 100%);

  transition: all 0.8s ease;
}

.app_text {
  display: flex;

  flex-direction: column;

  align-items: center;

  transition: all 0.4s ease;
}

.app_text p {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.app_text p::before {
  content: "";

  display: block;

  width: 1px;

  height: 0.5rem;

  background-color: rgba(255, 255, 255, 0.4);
}

.app_text p::after {
  content: "";

  display: block;

  width: 1px;

  height: 0.5rem;

  background-color: rgba(255, 255, 255, 0.4);
}

.app_text h4 {
  width: 65%;
}

.app_item:hover i {
  height: 100%;
}

.app_item:hover .app_text {
  margin-bottom: 2.58rem;
}

.app_item:hover .app_text h4 {
  font-weight: bold;
}

@media screen and (max-width: 1440px) {
  .app_item {
    height: 8rem;
  }
}

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

  .app_item:hover .app_text {
    margin-bottom: 1.5rem;
  }
}

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

  .app_item:hover .app_text {
    margin-bottom: 0.8rem;
  }

  .app_text h4 {
    width: 80%;
  }
}

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

@media screen and (max-width: 560px) {
  .app_item {
    width: 50%;

    height: auto;
  }

  .app_item:last-child::after,
  .app_item::before {
    display: none;
  }

  .app_text {
    box-sizing: border-box;

    margin-bottom: 0;

    padding: 0.2rem 0;
  }

  .app_item:hover .app_text {
    margin-bottom: 0;
  }

  .app_text h4 {
    margin-top: 0.2rem;
  }

  .app_text p::before,
  .app_text p::after {
    display: none;
  }

  .app_text h4 {
    font-size: 0.16rem;
  }

  .as_title {
    display: none;
  }
}

/* 推荐设备 */

.Recommended_equipment {
}

.Recommended_equipment_list {
  position: relative;

  overflow: hidden;

  padding: 0 0 0.6rem 0;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

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

  position: relative;
}

.Re_item {
  display: block;

  box-sizing: border-box;

  background-color: #fafafa;

  padding: 0.77rem 0.7rem 0.66rem 0.7rem;

  border-radius: 4px;

  position: relative;
}

.logo_icon {
  width: 16.6%;

  position: absolute;

  left: 5%;

  top: 5.3%;

  opacity: 0;

  z-index: 10;

  transition: all 0.4s ease;
}

.Re_img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.Re_img::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 100%;
}

.Re_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.Re_item p {
  margin-top: 0.24rem;

  margin-bottom: 0.36rem;
}

.Re_item:hover .logo_icon {
  opacity: 1;
}

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

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

/* .Recommended_equipment-pagination {

  width: 13%;

  position: relative;

  background: #d8d8d8;

  height: 2px;

  overflow: hidden;

}



.Recommended_equipment-pagination span {

  background: var(--i_color);

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  transform: scale(0);

  transform-origin: left top;

} */

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

/* 进度条容器 */

.Recommended_equipment-pagination.swiper-pagination-progressbar {
  height: 2px !important;

  background: #d6d6d6;

  border-radius: 4px;

  overflow: hidden;

  top: auto !important;

  bottom: 0rem !important;

  width: 12.8% !important;

  left: 50% !important;

  transform: translateX(-50%) !important;
}

/* 进度条填充 */

.Recommended_equipment-pagination .swiper-pagination-progressbar-fill {
  background: var(--i_color) !important;

  border-radius: 4px;
}

@media screen and (max-width: 1024px) {
  .Re_item {
    padding: 0.3rem;
  }
}

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

  .Re_item p {
    margin: 0.15rem 0;

    font-size: 0.16rem;
  }

  .Recommended_equipment_list {
    padding: 0 0 0.3rem 0;
  }
}

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

/* 产品列表 */

.product_section {
  border-top: 1px solid #ededed;

  overflow: hidden;
}

.product_section .wrap {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  gap: 0.2rem 0;
}

.product_section_left {
  width: 21.58%;

  box-sizing: border-box;
}

.catList_aside {
  box-sizing: border-box;

  background: #fff;

  position: relative;
}

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

    padding-right: 0;

    background: none;
  }

  .catList_aside::before {
    display: none;
  }

  .catList_show {
    width: 100%;
  }
}

.cat_nav {
  position: relative;
}

.cat_nav_tit {
  margin-bottom: 0.26rem;
}

.cat_nav_tit h4 {
}

.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
}

.cat_nav_list li {
  position: relative;

  border-bottom: 1px solid #ddd;
}

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

.cat_fold_tit {
  padding: 0 0.2rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  gap: 0 0.2rem;

  -webkit-border-radius: 6px;

  border-radius: 6px;
}

.cat_fold_tit a {
  padding: 0.14rem 0;

  width: 100%;

  font-size: 0.18rem;

  font-weight: bold;
}

.cat_fold_tit iconify-icon {
  margin-left: auto;

  flex-shrink: 0;

  font-size: 0.24rem;

  cursor: pointer;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

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

.active .cat_fold_tit {
  background: var(--i_color);
}

.active .cat_fold_tit a {
  color: #fff;
}

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

  -webkit-transform: rotate(-180deg);

  transform: rotate(-180deg);
}

.cat_fold_sub {
  display: none;

  padding: 0.1rem 0.2rem;
}

.cat_fold_sub a {
  display: block;

  padding: 0.1rem 0;

  font-size: 0.18rem;

  color: #666;

  position: relative;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

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

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0;

  height: 1px;

  background: var(--i_color);

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.cat_fold_sub a:hover::before,
.cat_fold_sub .active a::before {
  width: 0.16rem;
}

.cat_fold_sub a:hover,
.cat_fold_sub .active a {
  padding-left: 0.24rem;

  color: var(--i_color);
}

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

  .cat_nav {
    width: 100%;

    padding: 0 0;

    background: none;
  }

  .cat_nav_tit {
    padding: 14px 28px;

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    align-items: center;

    position: relative;

    z-index: 2;

    background: var(--i_color);

    -webkit-border-radius: 6px;

    border-radius: 6px;
  }

  .cat_nav_tit h4 {
    font-size: 20px;

    color: #fff;
  }

  .cat_nav_tit iconify-icon {
    display: block;

    margin-left: auto;

    font-size: 26px;

    color: #fff;
  }

  .active .cat_fold_tit {
    background: none;
  }

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

  .active .cat_fold_tit iconify-icon {
    color: var(--i_color);

    -webkit-transform: rotate(-180deg);

    transform: rotate(-180deg);
  }

  .cat_fold_sub {
    padding: 0 20px;
  }

  .cat_nav_list {
    display: none;

    box-sizing: border-box;

    padding: 30px 30px 30px;

    -webkit-border-radius: 0 0 6px 6px;

    border-radius: 0 0 6px 6px;
  }

  .cat_nav_list li {
    border-top: none;

    border-bottom: 1px solid rgb(0 88 167 / 10%);
  }

  .cat_nav_list li.active {
    border-color: rgb(0 88 167 / 10%);
  }

  .cat_fold_tit {
    -webkit-border-radius: 6px;

    border-radius: 6px;

    padding: 0 0;
  }

  .cat_fold_tit a {
    padding: 12px 0;

    font-size: 17px;
  }

  .cat_fold_sub p {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .cat_nav_tit {
    padding: 12px 20px;
  }

  .cat_nav_tit h4 {
    font-size: 18px;
  }

  .cat_nav_tit iconify-icon {
    font-size: 22px;
  }

  .cat_nav_list {
    padding: 20px 30px;
  }

  .cat_fold_tit a {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  .cat_nav_tit h4 {
    font-size: 16px;
  }

  .cat_fold_tit a {
    font-size: 15px;
  }

  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }

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

.catSide_contact {
  padding: 0.4rem 0.24rem 0.3rem 0.24rem;

  background-size: cover;

  background: url(static/imgs/catside-contact-bg.webp) no-repeat center;

  background-size: cover;

  position: relative;
}

.catSide_contact::before {
  content: "";

  display: block;

  width: 4px;

  height: 0.36rem;

  background-color: var(--i_color);

  position: absolute;

  left: 0;
}

.catSide_contact > h3 {
  font-size: 0.24rem;

  font-weight: bold;

  position: relative;
}

.catSide_contact ul {
}

.catSide_contact li {
}

.catSide_contact a {
  font-size: 0.18rem;

  transition: all 0.4s ease;
}

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

.cc_social_media_list {
  display: flex;

  gap: 0 0.24rem;
}

.cc_social_media_list iconify-icon {
  color: var(--i_color);

  font-size: 0.24rem;

  transition: all 0.4s ease;
}

.cc_social_media_list iconify-icon:hover {
  transform: translateY(-3px);
}

@media screen and (max-width: 1024px) {
  .catSide_contact {
    display: none !important;
  }
}

.product_section_right {
  width: 75.72%;

  box-sizing: border-box;

  padding-left: 0.56rem;

  position: relative;
}

.product_section_right::before {
  content: "";

  display: block;

  width: 200%;

  height: 100%;

  position: absolute;

  left: 0;

  top: 0;

  background-color: #f7f7f7;

  z-index: -1;
}

.product_list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.25rem 2%;
}

.product_item {
  width: 32%;

  box-sizing: border-box;
}

.product_item a {
  display: block;

  box-sizing: border-box;

  background-color: #fff;
}

.product_img {
  width: 100%;

  position: relative;

  background-color: #fff;

  overflow: hidden;
}

.product_img::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 100%;
}

.product_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.product_item p {
  margin-top: 0.14rem;
  padding: 0 0.1rem;
  margin-bottom: 0.34rem;
  box-sizing: border-box;
}

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

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

    padding-left: 0;

    padding-top: 0;
  }

  .product_section_right::before {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .product_list {
    gap: 0.06rem 2%;
  }

  .product_item {
    width: 49%;
  }
}

/* 产品表单 */

.Product_Form {
}

.Product_Form_box {
  box-sizing: border-box;

  background: url(static/imgs/Product_Form_Ba.webp) no-repeat center;

  background-size: cover;

  border-radius: 0.1rem;

  padding: 0.5rem 0.9rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 0.2rem 0;
}

.Product_Form_left {
  width: 31.56%;

  box-sizing: border-box;
}

.Product_Form_right {
  width: 58.2%;

  box-sizing: border-box;
}

#wpforms-182 {
  --wpforms_input_height: 52px;

  --wpforms_textarea_height: 88px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  width: 100%;
}

#wpforms-182 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

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

  /* padding: 0 1px 20px; */

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: #4b4e52;
}

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

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

  border: 1px solid transparent;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #fff;

  font-family: Arial;
}

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

  background: #4b4e52;
}

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

  background: #4b4e52;
}

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

  height: var(--wpforms_select_height);

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

  background-size: 0.3rem;
}

#wpforms-182-field_1::placeholder,
#wpforms-182-field_2::placeholder,
#wpforms-182-field_3::placeholder,
#wpforms-182-field_4::placeholder,
#wpforms-182-field_5::placeholder,
#wpforms-182-field_6::placeholder,
#wpforms-182-field_7::placeholder {
  color: #e9e9e9;

  opacity: 1;
}

#wpforms-182 input::placeholder,
#wpforms-182 textarea::placeholder,
#wpforms-182 select::placeholder {
  color: #e9e9e9;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-182 select:invalid {
  color: #e9e9e9;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 输入框水平排列，一行两个 */

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

#wpforms-182-field_7-container {
  width: 100% !important;
}

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: flex-start;

  /* margin-left: auto;







  margin-right: auto; */
}

#wpforms-182 .wpforms-submit-container button {
  width: 30%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

  border: none;

  font-family: Arial;

  border-radius: 0;

  border: transparent 1px solid;

  box-sizing: border-box;
}

#wpforms-182 .wpforms-submit-container img {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

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

  color: var(--i_color);

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

  box-sizing: border-box;
}

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

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

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

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

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

  #wpforms-182 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }

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

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

  .Product_Form_box {
    padding: 0.3rem;
  }
}

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

@media screen and (max-width: 768px) {
  #wpforms-182 {
    --input_height: 0.5rem;
  }

  .Product_Form_left,
  .Product_Form_right {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-182-field_1-container,
  #wpforms-182-field_2-container,
  #wpforms-182-field_3-container,
  #wpforms-182-field_4-container {
    width: 100% !important;
  }

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

  #wpforms-182 {
    /* --wpforms_input_height: 48px;



    --wpforms_textarea_height: 120px;



    --wpforms_input_font_size: 14px; */

    width: 100%;
  }

  #wpforms-182 .wpforms-submit-container button {
    height: 0.4rem;

    font-size: 0.16rem;
  }

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

  #wpforms-182 .wpforms-submit-container {
    margin: 0 auto 0;
  }

  .Product_Form_box {
    padding: 0.2rem;
  }
}

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

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

/* 产品简述 */

.Product_Overview {
}

.Product_Overview .wrap {
  gap: 30px;
}

/* atlas */

.p_atlas {
  width: 44.29%;

  box-sizing: border-box;

  position: relative;
}

.p_atlas_list {
  width: 100%;

  box-sizing: border-box;

  border: 3px solid #f7f7f7;

  background: #fff;

  margin-left: auto;

  margin-right: auto;

  position: relative;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

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

  font-size: 0;

  position: relative;

  overflow: hidden;
}

.p_atlas_list .swiper-slide::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.p_atlas_list .swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 50%;

  top: 50%;

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

/* thumbnail */

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

  box-sizing: border-box;

  padding: 0 2px;

  margin: 0.2rem auto 0;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

.p_thumbnail_list .swiper-slide {
  box-sizing: border-box;

  border-radius: 4px;

  border: 1px solid #e5e5e5;

  flex-shrink: 0;

  background: #fff;

  position: relative;

  overflow: hidden;

  cursor: pointer;

  opacity: 0.5;
}

.p_thumbnail_list figure {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.p_thumbnail_list figure::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.p_thumbnail_list figure img {
  position: absolute;

  left: 50%;

  top: 50%;

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

  width: 100%;

  height: 100%;

  object-fit: contain;
}

.p_thumbnail_list .swiper-slide-thumb-active {
  opacity: 1;

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

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

  top: 50%;

  transform: translate(0, -50%);

  width: 0.36rem;

  height: 0.36rem;

  z-index: 3;

  cursor: pointer;

  outline: none;

  -webkit-user-select: none;

  user-select: none;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  z-index: 3;
}

.thumbnail-prev {
  left: 0;
}

.thumbnail-next {
  right: 0;
}

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

  top: 50%;

  left: 50%;

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

  font-size: 0.3rem;

  color: #444;
}

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

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

.thumbnail-pagination {
  position: absolute;

  top: 0.1rem;

  right: 0.1rem;

  text-align: center;

  padding: 2px 6px;

  z-index: 2;

  display: none;
}

.thumbnail-pagination,
.thumbnail-pagination span {
  font-size: 14px;

  color: #666;
}

.thumbnail-pagination .swiper-pagination-current {
  font-size: 0.22rem;

  color: var(--i_color);
}

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

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

  .thumbnail-pagination {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .p_atlas {
    margin-bottom: 40px;
  }

  .p_atlas_list {
    width: 100%;
  }

  .thumbnail-prev iconify-icon,
  .thumbnail-next iconify-icon {
    font-size: 30px;
  }
}

.p_right {
  width: 51%;

  box-sizing: border-box;
}

.p_right article {
  border-top: 1px solid rgba(51, 51, 51, 0.2);

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

.pi_operate {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;

  gap: 0.2rem 0;
}

.Details_btns {
  display: flex;

  gap: 0 0.24rem;
}

.p_share {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 0 0.1rem;
}

.p_share > p {
  font-size: 0.18rem;

  color: #acacac;

  font-weight: bold;
}

.p_share dl {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 0 0.2rem;
}

.p_share dt {
}

.p_share a {
}

.p_share a iconify-icon {
  font-size: 0.26rem;

  color: #b2b2b2;

  transition: all 0.4s ease;
}

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

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

  .p_share a iconify-icon {
    font-size: 22px;
  }
}

@media screen and (max-width: 560px) {
  .p_share > p {
    font-size: 15px;
  }

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

/* 产品介绍 */

.Product_Introduction {
}

.Introduction_title {
  background-color: #f7f7f7;
}

/* 产品详情FAQ */

.faqList {
}

.faqList li {
  margin-bottom: 0.3rem;

  padding: 0 0.2rem 0.2rem;

  border-bottom: 1px solid #d8d8d8;
}

.faqList .que {
  font-size: 0.24rem;

  font-weight: 600;

  line-height: 1.6;
}

.faqList .ans {
  margin-top: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .faqList li {
    padding-left: 0;

    padding-right: 0;
  }

  .faqList .que {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .faqList .ans {
    margin-top: 10px;
  }
}

@media screen and (max-width: 560px) {
  .faqList .que {
    font-size: 16px;
  }
}

.pBottom {
  background: #f6f6f6;
}

.p_tags {
  padding-bottom: 0.2rem;

  border-bottom: 1px solid rgb(0 0 0 / 10%);

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: baseline;

  gap: 0.16rem 0;
}

.p_tags > p {
  margin-right: 0.14rem;

  font-size: 0.18rem;

  font-weight: bold;
}

.p_tags a {
  display: block;

  padding: 8px 0.2rem;

  margin-right: 0.2rem;

  font-size: 0.16rem;

  background: #fff;

  border-radius: 4px;

  transition: all 0.4s ease;
}

.p_tags a:hover {
  background: var(--i_color);

  color: #fff;
}

@media screen and (max-width: 1024px) {
  .p_tags > p {
    font-size: 16px;
  }

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

@media screen and (max-width: 768px) {
  .p_tags {
    gap: 12px 0;
  }
}

.p_view_other {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  justify-content: space-between;

  align-items: center;

  gap: 0 4%;
}

.p_view_other li {
  max-width: 46%;

  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  gap: 0 0.14rem;

  align-items: center;
}

.p_view_other a {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  gap: 0 0.2rem;
}

.p_view_other span {
  flex-shrink: 0;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;
}

.p_view_other span iconify-icon {
  font-size: 0.22rem;

  color: #333;
}

.p_view_other p {
  font-size: 0.18rem;

  font-weight: 600;

  color: #333;

  line-height: 1.5;
}

.p_view_other p b {
  font-size: 0.18rem;

  font-weight: 600;

  color: #333;
}

.p_view_other li:hover iconify-icon,
.p_view_other li:hover p,
.p_view_other li:hover p b {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .p_view_other span iconify-icon {
    font-size: 20px;
  }

  .p_view_other p,
  .p_view_other p b {
    font-size: 15px;
  }
}

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

    gap: 12px 0;
  }

  .p_view_other li {
    max-width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .p_view_other span {
    top: -1px;
  }

  .p_view_other span iconify-icon {
    font-size: 18px;
  }
}

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

/* 关于公司 */

.About_Company {
}

.Ac_list {
  box-sizing: border-box;

  background: url(static/imgs/Earth.webp) no-repeat center;

  background-size: cover;

  display: flex;

  flex-wrap: wrap;

  gap: 0.7rem 0;
}

.Ac_item {
  width: 33.33%;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.data_num {
  display: flex;

  align-items: baseline;
}

.data_name {
  display: flex;

  align-items: center;

  gap: 0 8px;
}

.data_name img {
  width: 0.24rem;
}

@media screen and (max-width: 1024px) {
  .Ac_list {
    gap: 0.3rem 0;
  }
}

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

  .data_name {
    margin-top: 0.1rem;
  }
}

/* 宣传视频 */

.Promotional_video {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.Promotional_video::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 35.85%;
}

.Promotional_video img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.video_btn {
  position: absolute;

  top: 50%;

  left: 50%;

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

  display: flex;

  flex-direction: column;

  align-items: center;
}

.Promotional_video_btn {
  width: 1.4rem;

  height: 1.4rem;

  position: relative;
}

.Promotional_video_btn .icon {
  display: block;

  position: relative;

  top: 50%;

  left: 50%;

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

  width: 0.8rem;

  height: 0.8rem;

  background: rgb(255 255 255 / 80%);

  -webkit-border-radius: 50%;

  border-radius: 50%;

  cursor: pointer;

  z-index: 3;
}

.Promotional_video_btn iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.36rem;

  color: var(--i_color);
}

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

  position: absolute;

  top: 50%;

  left: 50%;

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

  border: 1px solid rgb(255 255 255 / 100%);

  border-radius: 50%;

  opacity: 0;

  animation: serv_one_border 1.6s 0s ease infinite;
}

.o_line:before {
  width: 50%;

  height: 50%;
}

.o_line:after {
  width: 60%;

  height: 60%;
}

@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);
  }
}

@media screen and (max-width: 1024px) {
  .Promotional_video_btn {
    width: 120px;

    height: 120px;
  }

  .Promotional_video_btn .icon {
    width: 60px;

    height: 60px;
  }
}

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

    height: 0.8rem;
  }

  .Promotional_video_btn .icon {
    width: 0.4rem;

    height: 0.4rem;
  }

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

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

/* 公司优势 */

/* 公司优势 */

.Company_Advantages {
}

.home_advantage_ul {
  display: flex;

  gap: 0.24rem;
}

.home_advantage_ul li {
  width: 16.7%;

  flex-grow: 1;

  position: relative;

  border-radius: 0.2rem 0 0.2rem 0;

  overflow: hidden;

  transition: all 0.5s ease;

  background: #f5f5f5;

  isolation: isolate;
}

.home_advantage_ul li:not(.home_advantage_active) .home_advantage_img {
  opacity: 0;

  visibility: hidden;
}

.home_advantage_ul li::after {
  content: "";

  position: absolute;

  top: 0;

  left: 50%;

  width: 0;

  transform: translate(-50%, 0);

  height: 0.06rem;

  background-color: var(--i_color);

  transition: all 0.8s ease;

  opacity: 0;
}

.home_advantage_active::after,
.home_advantage_active::before {
  width: 100% !important;

  opacity: 1 !important;
}

.home_advantage_active {
  flex-grow: 1000 !important;

  border-radius: 0 !important;

  background: transparent;
}

.home_advantage_active .home_advantage_img {
  opacity: 1;

  visibility: visible;
}

.home_advantage_active .home_advantage_area {
  background: transparent;
}

.home_advantage_img {
  position: relative;
}

.home_advantage_img img {
  width: 100%;

  height: 6.1rem;

  display: block;

  object-fit: cover;
}

.home_advantage_img::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.home_advantage_area {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  box-sizing: border-box;

  padding: 0.45rem 4% 0.7rem 4%;

  display: flex;

  flex-direction: column;

  align-items: center;

  z-index: 3;

  justify-content: space-between;

  border-radius: inherit;

  background: linear-gradient(
    to top,

    rgba(240, 240, 240, 1),
    rgba(255, 255, 255, 1),
    rgba(240, 240, 240, 1)
  );
}

.home_advantage_area::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 51%;

  height: 100%;

  background: linear-gradient(
    to top,

    rgba(240, 240, 240, 1),
    rgba(255, 255, 255, 1),
    rgba(240, 240, 240, 1)
  );

  z-index: -1;

  opacity: 0;

  transition: all 0.8s ease;
}

.home_advantage_area::before {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  width: 51%;

  height: 100%;

  opacity: 0;

  background: linear-gradient(
    to top,

    rgba(240, 240, 240, 1),
    rgba(255, 255, 255, 1),
    rgba(240, 240, 240, 1)
  );

  z-index: -1;

  transition: all 0.8s ease;
}

.home_advantage_area h3 {
  font-weight: bold;

  font-size: 0.24rem;

  color: #666;

  box-sizing: border-box;

  padding: 0.6rem 0;

  position: relative;

  text-align: center;

  transition: all 0.3s ease;
}

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

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translate(-50%, 0);

  width: 0.01rem;

  height: 0.5rem;

  background: rgba(51, 51, 51, 0.3);

  transition: all 0.3s ease;
}

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

  position: absolute;

  top: 0;

  left: 50%;

  transform: translate(-50%, 0);

  width: 0.01rem;

  height: 0.5rem;

  background: rgba(51, 51, 51, 0.3);

  transition: all 0.3s ease;
}

.home_advantage_area h4 {
  font-weight: bold;

  color: #333;

  font-size: 0.22rem;

  line-height: 150%;

  text-align: center;

  transition: all 0.3s ease;

  width: 10vw;
}

.home_advantage_i {
  display: block;

  width: 0.72rem;

  height: 0.72rem;

  border-radius: 9px 0px 9px 0px;

  background: linear-gradient(180deg, #f35f62 0%, #a32124 100%);

  display: flex;

  justify-content: center;

  align-items: center;

  transition: all 0.3s ease;
}

.home_advantage_i img {
  width: 0.4rem;

  height: 0.4rem;

  object-fit: contain;
}

.home_advantage_text {
  position: absolute;

  bottom: -2.1rem;

  left: 50%;

  transform: translate(-50%, 0);

  width: 100%;

  box-sizing: border-box;

  padding: 0.3rem 4%;

  background: linear-gradient(180deg, #00000000 0%, #000000 100%);

  transition: all 0.7s ease;

  opacity: 0;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.home_advantage_text h5 {
  font-weight: 600;

  font-size: 0.24rem;

  color: #fff;

  text-align: center;

  width: 32vw;

  text-transform: capitalize;
}

.home_advantage_text h6 {
  font-size: 0.16rem;

  color: #fff;

  line-height: 166%;

  margin-top: 0.1rem;

  text-align: center;

  width: 32vw;
}

.home_advantage_active .home_advantage_area h3 {
  color: #fff !important;
}

.home_advantage_active .home_advantage_area h3::after,
.home_advantage_active .home_advantage_area h3::before {
  background: #fff !important;
}

.home_advantage_active .home_advantage_area::after,
.home_advantage_active .home_advantage_area::before {
  width: 0;

  opacity: 0;
}

.home_advantage_active .home_advantage_area h4 {
  width: 50%;

  font-size: 0.28rem;

  color: #fff;
}

.home_advantage_active .home_advantage_area i {
  opacity: 0;
}

.home_advantage_active .home_advantage_text {
  bottom: 0 !important;

  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .home_advantage_area h4 {
    font-size: 0.22rem;
  }

  .home_advantage_img img {
    height: 5.8rem;
  }

  .home_advantage_text h6 {
    font-size: 0.16rem;

    width: 35vw;
  }

  .home_advantage_text h5 {
    font-size: 0.28rem;

    width: 35vw;
  }
}

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

@media screen and (max-width: 1200px) {
  .home_advantage_area h4 {
    font-size: 0.2rem;

    width: 13vw;
  }

  .home_advantage_i img {
    width: 0.4rem;

    height: 0.4rem;
  }

  .home_advantage_i {
    width: 0.7rem;

    height: 0.7rem;
  }

  .home_advantage_img img {
    height: 5.2rem;
  }

  .home_advantage_text h5 {
    font-size: 0.24rem;
  }

  .home_advantage_bac {
    padding: 0.6rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .home_advantage_area h4 {
    font-size: 0.2rem;
  }

  .home_advantage_i img {
    width: 0.35rem;

    height: 0.35rem;
  }

  .home_advantage_i {
    width: 0.6rem;

    height: 0.6rem;
  }

  .home_advantage_img img {
    height: 4.8rem;
  }

  .home_advantage_text h5 {
    font-size: 0.22rem;
  }

  .home_advantage_active .home_advantage_area h4 {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 960px) {
  .home_advantage_area h4 {
    font-size: 0.2rem;
  }

  .home_advantage_img img {
    height: 4.4rem;
  }
}

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

  .home_advantage_ul {
    flex-wrap: wrap;
  }

  .home_advantage_ul li {
    width: 100% !important;
  }

  .home_advantage_area h3 {
    font-size: 0.2rem;

    padding: 0.4rem 0;
  }

  .home_advantage_area h3::after,
  .home_advantage_area h3::before {
    width: 1px;

    height: 0.3rem;
  }

  .home_advantage_text h6 {
    width: 87vw;
  }

  .home_advantage_text h5 {
    width: 87vw;
  }

  .home_advantage_text h5 {
    font-size: 0.2rem;
  }

  .home_advantage_area h4 {
    width: 87vw;
  }

  .home_advantage_area {
    padding: 0.4rem 4%;
  }
}

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

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

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

/* 公司环境 */

.Company_Environment {
}

.Environment_list {
  position: relative;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

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

  position: relative;

  overflow: hidden;
}

.Environment_list .swiper-slide::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 75%;
}

.Environment_list .swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

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

.Environment-pagination {
  display: block;

  text-align: center;
}

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

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

/* 品牌选择 */

.Brand_Selection {
  background: url(static/imgs/Brand_Selection.webp) no-repeat center;

  background-size: cover;
}

.Brand_Selection .wrap {
  padding: 2rem 0;
}

.Brand_num {
  display: flex;

  background: linear-gradient(180deg, #f35f62 0%, #a32124 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  text-fill-color: transparent;

  align-items: flex-end;
}

.Brand_num p {
  font-size: 0.75rem;
}

.line {
  width: 0.96rem;

  height: 0.96rem;
}

.line i {
  display: block;

  width: 1px;

  height: 100%;

  background-color: #999;

  transform: rotate(-135deg);
}

@media screen and (max-width: 1440px) {
  .Brand_Selection .wrap {
    padding: 1.5rem 0;
  }
}

@media screen and (max-width: 1200px) {
  .Brand_Selection .wrap {
    padding: 1rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .Brand_Selection .wrap {
    padding: 0.6rem 0;
  }

  .Brand_num p {
    font-size: 0.4rem;
  }

  .line {
    width: 0.6rem;

    height: 0.6rem;
  }

  .Brand_Selection h2 {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .Brand_num p {
    font-size: 0.3rem;
  }

  .line {
    display: none;
  }
}

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

  .Brand_Selection h2 {
    font-size: 0.16rem;
  }
}

/* 合作品牌 */

.Partner_Brands {
}

.Brands_list {
  position: relative;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

.Brands_list .swiper-slide {
  width: 100%;

  flex-shrink: 0;

  position: relative;

  overflow: hidden;
}

.Brands_list .swiper-slide::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 41%;
}

.Brands_list .swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

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

.Brands-pagination {
  display: block;

  text-align: center;
}

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

  height: 0.08rem;

  display: inline-block;

  margin: 0 6px;

  background: #ccc;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  outline: none;

  cursor: pointer;
}

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

/* 荣誉证书 */

.Certificate_Honor {
  background: url(static/imgs/Certificate_Honor_Ba.webp) no-repeat center;

  background-size: cover;
}

.Honor_box {
  position: relative;
}

.Honor_list {
  position: relative;

  overflow: hidden;
}

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

  display: flex;

  position: relative;

  width: 100%;
}

.Honor_list .swiper-slide {
  box-sizing: border-box;

  flex-shrink: 0;

  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.Honor_list .swiper-slide::before {
  content: "";

  display: block;

  width: 0;

  height: 2px;

  background-color: var(--i_color);

  position: absolute;

  left: 50%;

  bottom: 0;

  transform: translateX(-50%);

  transition: all 0.4s ease;
}

.Honor_img {
  width: 73.15%;

  position: relative;

  overflow: hidden;
}

.Honor_img::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 142%;
}

.Honor_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.Honor_list .swiper-slide:hover p {
  color: var(--i_color);
}

.Honor_list .swiper-slide:hover::before {
  width: 100%;
}

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

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

  top: 40%;

  transform: translate(0, -50%);

  width: 0.5rem;

  height: 0.5rem;

  box-sizing: border-box;

  border-radius: 50%;

  border: 1px solid #ebebeb;

  z-index: 3;

  cursor: pointer;

  outline: none;

  -webkit-user-select: none;

  user-select: none;

  color: #333;

  transition: all 0.4s ease;
}

.Honor-prev {
  left: -4%;
}

.Honor-next {
  right: -4%;
}

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

  top: 50%;

  left: 50%;

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

  font-size: 0.3rem;
}

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

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

  color: #fff;
}

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

.Honor-pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

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

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

@media screen and (max-width: 1440px) {
  .Honor-prev {
    left: 0;
  }

  .Honor-next {
    right: 0;
  }
}

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

@media screen and (max-width: 768px) {
  .Honor_list .swiper-slide {
    padding-bottom: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .Honor_list .swiper-slide {
    padding-bottom: 0;
  }

  .Honor_list .swiper-slide::before {
    display: none;
  }
}

/* 高效宣传 */

.Effective_publicity {
  margin-bottom: 0.6rem;
}

.Effective_box {
  box-sizing: border-box;

  border-radius: 0.1rem;

  background: url(static/imgs/Effective_box.webp) no-repeat center;

  background-size: cover;

  padding-left: 0.2rem;

  padding-right: 0.2rem;
}

@media screen and (max-width: 1440px) {
  .Effective_publicity {
    margin-bottom: 1.6rem;
  }
}

@media screen and (max-width: 1366px) {
  .Effective_publicity {
    margin-bottom: 1.4rem;
  }
}

@media screen and (max-width: 1200px) {
  .Effective_publicity {
    margin-bottom: 1.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .Effective_publicity {
    margin-bottom: 0.6rem;
  }
}

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

/* --------------------------------------------  服务页面 */

.service_banner h2 i {
  background-color: var(--i_color);
}

/* 头部介绍 */

.Head_Introduction {
  background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f700 100%);
}

.Head_Introduction .wrap {
  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 0.3rem 0;
}

.Hi_left {
  width: 36%;

  box-sizing: border-box;
}

.Hi_right {
  width: 54.5%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.Hi_right::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 63%;
}

.Hi_right img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
  .Hi_left,
  .Hi_right {
    width: 100%;
  }
}

/* 服务优势 */

.Service_advantages {
}

.Service_list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem 2%;
}

.Service_item {
  width: 32%;

  box-sizing: border-box;
}

.Service_img {
  width: 100%;

  position: relative;

  border-radius: 8px;

  overflow: hidden;
}

.Service_img::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 80%;
}

.Service_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.Service_item:hover .Service_img img {
  -webkit-transform: scale(1.05, 1.05);

  transform: scale(1.05, 1.05);
}

@media screen and (max-width: 768px) {
  .Service_item {
    width: 49%;
  }
}

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

  .Service_item p {
    margin-top: 0.1rem;

    font-size: 0.14rem;
  }
}

/* 服务内容 */

.Service_Content {
  display: flex;

  flex-wrap: wrap;
}

.Service_left {
  width: 40%;

  box-sizing: border-box;

  background: url(static/imgs/Service_left.webp) no-repeat center;

  background-size: cover;

  padding-left: 13.5vw;
}

.Service_left_content {
  box-sizing: border-box;

  padding-top: 1.78rem;

  padding-bottom: 3.37rem;

  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.Service_left_list {
  display: flex;

  flex-direction: column;

  gap: 0.5rem 0;
}

.Service_tit {
  box-sizing: border-box;

  color: rgba(255, 255, 255, 0.6);

  transition: all 0.4s ease;

  position: relative;

  padding-left: 0.7rem;
}

.Service_tit::before {
  content: "";

  display: block;

  width: 3px;

  height: 12px;

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

  position: absolute;

  left: -2px;

  top: 50%;

  transform: translateY(-50%);
}

.Service_left_list h6 {
  display: none;
}

.Service_left_list .active .Service_tit::before {
  background-color: var(--i_color);
}

.Service_left_list .active .Service_tit {
  color: #fff;
}

/* service_right */

.Service_right {
  box-sizing: border-box;

  width: 60%;

  background: url(static/imgs/Service_right.webp) no-repeat center;

  background-size: cover;

  position: relative;
}

.Service_right_item {
  box-sizing: border-box;

  width: 42.45%;

  padding: 1rem 0.78rem 1.5rem 0.6rem;

  background: url(static/imgs/Service_right_item.webp) no-repeat center;

  background-size: cover;

  position: absolute;

  left: 2%;

  top: 50%;

  transform: translateY(-50%);

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

  opacity: 0;
}

.Service_right_item i {
  display: block;

  width: 0.34rem;

  height: 4px;

  background-color: #fff;
}

.Service_right_item.active {
  opacity: 1;

  left: 0;
}

.Service_right_item {
  opacity: 0;

  visibility: hidden;

  transition: all 0.5s ease;
}

.Service_right_item.active {
  opacity: 1;

  visibility: visible;
}

.Service_left_list li {
  transition: all 0.4s ease;
}

@media screen and (max-width: 1440px) {
  .Service_left {
    padding-left: 3vw;
  }

  .Service_left_content {
    padding-top: 1.5rem;

    padding-bottom: 1.5rem;
  }

  .Service_right_item {
    width: 60%;

    padding: 0.6rem 0.3rem;
  }
}

@media screen and (max-width: 1200px) {
  .Service_left_content {
    padding-top: 1rem;

    padding-bottom: 1rem;
  }
}

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

  .Service_left {
    width: 100%;

    padding-right: 3vw;
  }

  .Service_left_content {
    border: none;
  }

  .Service_tit {
    padding-left: 0.2rem;

    color: #fff;
  }

  .Service_left_list h6 {
    display: block;

    margin-top: 0.12rem;
  }

  .Service_tit::before {
    background-color: var(--i_color);
  }

  .Service_right {
    display: none;
  }
}

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

  .Service_left_list {
    gap: 0.3rem 0;
  }
}

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

/* 服务FAQ */

.Service_FAQ {
}

.Service_FAQ .title_box a {
  display: block;
}

.Service_FAQ .title_box a:hover {
  text-decoration: underline;
}

.serFAQ_list {
}

ul.serFAQ_list {
}

.serFAQ_list li {
  margin-bottom: 0.2rem;
}

.serFAQ_list li.active {
}

.serFAQ_list .tit {
  padding: 0.2rem 0.2rem;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  gap: 0 0.2rem;

  background: #f6f7f9;

  cursor: pointer;
}

.serFAQ_list .QA {
  flex-shrink: 0;

  display: table;

  width: 0.34rem;

  height: 0.34rem;

  background: #fff;

  position: relative;

  border-radius: 50%;
}

.serFAQ_list .QA i {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.18rem;

  color: #777;
}

/* .serFAQ_list .QA.active{background: #FFF;}

.serFAQ_list .QA.active i{color: var(--i_color);} */

.serFAQ_list .tit p {
  font-size: 0.18rem;

  font-weight: 600;
}

.serFAQ_list .tit em {
  flex-shrink: 0;

  margin-left: auto;

  display: table;

  width: 0.3rem;

  height: 0.3rem;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E")
    no-repeat center;

  background-size: 0.26rem;
}

.serFAQ_list .active .tit em {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E")
    no-repeat center;

  background-size: 0.26rem;
}

.serFAQ_list .txt {
  display: none;
}

.serFAQ_list .txt_box {
  padding: 0.2rem 0.2rem 0.3rem;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  gap: 0 0.2rem;
}

.serFAQ_list .txt_box .QA {
  background: var(--i_color);
}

.serFAQ_list .txt_box .QA i {
  color: #fff;
}

.serFAQ_list .txt article {
  font-size: 0.16rem;

  line-height: 1.6;
}

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

  .service_faq_bac {
    box-sizing: border-box;

    padding: 0.6rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .serFAQ_list .QA {
    width: 30px;

    height: 30px;
  }

  .serFAQ_list .tit p {
    font-size: 16px;

    line-height: 1.5;
  }

  .serFAQ_list .txt article {
    font-size: 14px;
  }
}

@media screen and (max-width: 560px) {
  .serFAQ_list .tit {
    padding: 12px 16px;
  }

  .serFAQ_list .txt_box {
    padding: 20px 16px 20px;
  }

  .serFAQ_list .tit p {
    font-size: 15px;
  }

  .serFAQ_list .tit em,
  .serFAQ_list .active .tit em {
    background-size: 20px;
  }
}

/* --------------------------------------------  新闻列表页面 */

/* 新闻分类 */

.News_Categories {
}

.nc_list {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 0.1rem 1rem;

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

.nc_list li {
  padding-bottom: 0.26rem;

  position: relative;
}

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

  display: block;

  width: 0;

  height: 2px;

  background: var(--i_color);

  position: absolute;

  left: 0;

  bottom: 0;

  transition: all 0.4s ease;
}
.nc_list li:hover a,
.nc_list li.active a {
  color: var(--i_color);
}

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

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

  .nc_list li {
    padding-bottom: 0.1rem;
  }

  .nc_list a {
    font-size: 0.16rem;
  }
}

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

/* 新闻列表 */

.new_box {
}

.new_list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.48rem 3%;
}

.new_item {
  width: 31.33%;

  box-sizing: border-box;
}

.new_img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.new_img::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 66%;
}

.new_img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.btn_more {
  box-sizing: border-box;

  width: 0.5rem;

  height: 0.5rem;

  border: 1px solid #e5e5e5;

  color: #333;

  font-size: 0.24rem;
}

.new_item:hover .new_img img {
  -webkit-transform: scale(1.05, 1.05);

  transform: scale(1.05, 1.05);
}

.new_item:hover h5 {
  color: var(--i_color);
}

.new_item:hover .btn_more {
  background-color: var(--i_color);

  color: #fff;
}

@media screen and (max-width: 768px) {
  .new_list {
    gap: 0.3rem 3%;
  }
}

@media screen and (max-width: 560px) {
  .new_list {
    gap: 0.1rem 3%;
  }

  .new_item {
    width: 48.5%;
  }

  .new_item h5 {
    margin: 0.1rem 0;
  }

  .new_item h6 {
    margin: 0.1rem 0;
  }

  .btn_more {
    width: 0.3rem;

    height: 0.3rem;

    font-size: 0.2rem;
  }
}

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

/* 联系我们 */

.Contact_Us {
}

.contact__list {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  gap: 0.44rem 3%;
}

.contact__list li {
  width: 48.5%;

  box-sizing: border-box;

  padding: 0.3rem;

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

  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  gap: 0 0.44rem;

  position: relative;
}

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

  position: absolute;

  top: 0;

  left: 0;

  width: 3px;

  height: 100%;

  background: var(--i_color);
}

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

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

.contact__list .icon {
  flex-shrink: 0;

  position: relative;
}

.contact__list .icon::before {
  opacity: 0;

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 126%;

  height: 126%;

  background: #000;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  background: linear-gradient(180deg, #ac282b1a 0%, #ac282b00 100%);
}

.contact__list .icon i {
  display: block;

  width: 0.9rem;

  height: 0.9rem;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  position: relative;
}

.contact__list .icon i::before {
  opacity: 0;

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(180deg, #f35f62 0%, #a32124 100%);

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.contact__list .icon iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.5rem;

  color: var(--i_color);
}

.contact__list span {
  width: 100%;
}

.contact__list a,
.contact__list p {
  font-size: 0.2rem;
}

.contact__list h4 {
  padding-top: 0.16rem;

  margin-top: 0.16rem;

  border-top: 1px solid #eee;

  font-size: 0.18rem;

  color: #888;
}

.contact__list li:hover .icon::before {
  opacity: 1;
}

.contact__list li:hover .icon i::before {
  opacity: 1;
}

.contact__list li:hover .icon iconify-icon {
  color: #fff;
}

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

.contact__list .icon::before,
.contact__list .icon i::before,
.contact__list .icon iconify-icon {
  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

@media screen and (max-width: 1024px) {
  .contact__ .wrap > img {
    margin-bottom: -8%;
  }

  .contact__list {
    gap: 30px 0;
  }

  .contact__list li {
    width: 100%;

    padding: 24px 30px;

    gap: 0 30px;
  }

  .contact__list .icon::before {
    opacity: 1;
  }

  .contact__list .icon i {
    width: 60px;

    height: 60px;
  }

  .contact__list .icon i::before {
    opacity: 1;
  }

  .contact__list .icon iconify-icon {
    font-size: 26px;

    color: #fff;
  }

  .contact__list a,
  .contact__list p {
    font-size: 17px;
  }

  .contact__list h4 {
    font-size: 15px;
  }
}

@media screen and (max-width: 560px) {
  .contact__list {
    gap: 20px 0;
  }

  .contact__list li {
    padding: 20px 30px;
  }

  .contact__list .icon i {
    width: 44px;

    height: 44px;
  }

  .contact__list .icon iconify-icon {
    font-size: 22px;
  }

  .contact__list a,
  .contact__list p {
    font-size: 15px;
  }

  .contact__list h4 {
    padding-top: 10px;

    margin-top: 10px;

    font-size: 14px;
  }
}

/* 联系我们表单 */

.Contact_form {
}

.C_formBox {
  box-sizing: border-box;

  padding: 0.5rem;

  border-radius: 0.15rem;

  background-color: #f7f7f7;
}

#wpforms-185 {
  --wpforms_input_height: 52px;

  --wpforms_textarea_height: 88px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  width: 100%;
}

#wpforms-185 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

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

  /* padding: 0 1px 20px; */

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

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

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

  border: 1px solid #fff;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #fff;

  font-family: Arial;
}

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

  background: #fff;
}

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

  background: #fff;
}

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

  height: var(--wpforms_select_height);

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

  background-size: 0.3rem;
}

#wpforms-185-field_1::placeholder,
#wpforms-185-field_2::placeholder,
#wpforms-185-field_3::placeholder,
#wpforms-185-field_4::placeholder,
#wpforms-185-field_5::placeholder,
#wpforms-185-field_6::placeholder,
#wpforms-185-field_7::placeholder {
  color: #999;

  opacity: 1;
}

#wpforms-185 input::placeholder,
#wpforms-185 textarea::placeholder,
#wpforms-185 select::placeholder {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-185 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 输入框水平排列，一行两个 */

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

#wpforms-185-field_7-container {
  width: 100% !important;
}

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  /* margin-left: auto;







  margin-right: auto; */
}

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

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

  border: none;

  font-family: Arial;

  border-radius: 0;

  border: transparent 1px solid;

  box-sizing: border-box;
}

#wpforms-185 .wpforms-submit-container img {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-185 .wpforms-submit-container button:hover {
  animation: darkFlash 1s ease;
}

/* 关键帧：先变深，再回到原色 */

@keyframes darkFlash {
  0% {
    background: var(--i_color);
  }

  50% {
    background: #821a1d; /* 变深 */
  }

  100% {
    filter: brightness(1);

    background: var(--i_color);
  }
}

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

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

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

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

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

  #wpforms-185 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }

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

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

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

@media screen and (max-width: 768px) {
  #wpforms-185 {
    --input_height: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-185-field_1-container,
  #wpforms-185-field_2-container,
  #wpforms-185-field_3-container,
  #wpforms-185-field_4-container {
    width: 100% !important;
  }

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

  #wpforms-185 {
    /* --wpforms_input_height: 48px;



    --wpforms_textarea_height: 120px;



    --wpforms_input_font_size: 14px; */

    width: 100%;
  }

  #wpforms-185 .wpforms-submit-container button {
    height: 0.4rem;

    font-size: 0.16rem;
  }

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

  #wpforms-185 .wpforms-submit-container {
    margin: 0 auto 0;
  }

  .contact_form {
    padding: 0.3rem 0;
  }

  .C_formBox {
    padding: 0.25rem;
  }
}

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