/*
Theme Name: Huote
Version: 1.0
Description: Custom WordPress theme for Hebei Hot Furniture bed furniture website.
Author: Hebei Hot Furniture
*/
@charset "utf-8";

@font-face {
  font-family: "Montserrat";
  src: url("./static/font/Montserrat-Light.ttf") format("ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Montserrat";
  src: url("./static/font/Montserrat-Regular.ttf") format("ttf");
  font-weight: 400;
}

* {
  box-sizing: border-box;
  line-height: 150%;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: min(16px, 18px);
}

:root {
  --i_color: #F5A623;
  --i_color2: #111111;
  --bc_color: #F7F4EF;
  --text_color: #222222;
  --text_gray: #666666;
  --border_color: rgba(0, 0, 0, 0.12);
  --i_shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --header_height: 0.68rem;
}

@media screen and (max-width: 1440px) {
  :root {
    --header_height: 0.8rem;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.6rem;
    --border_color: rgb(0 0 0 / 6%);
  }
}

.wrap {
  width: 73%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_l {
  margin-left: 13.5%;
}

.wrap_r {
  margin-right: 13.5%;
}

@media screen and (max-width: 1600px) {
  .wrap {
    width: 83.33%;
    max-width: 1600px;
  }
}

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

@media screen and (max-width: 1600px) {
  .wrap_l {
    margin-left: 8.335%;
  }

  .wrap_r {
    margin-right: 8.335%;
  }
}

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

  .wrap_l,
  .wrap_r {
    margin-left: 4%;
    margin-right: 4%;
  }
}

.top_wrap {
  width: 88.54%;
  margin: 0 auto;
  max-width: 1700px;
}

@media screen and (max-width: 1440px) {
  .top_wrap {
    width: 92%;
  }
}

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

.language {
  position: relative;
  height: var(--header_height);
  display: flex;
  align-items: center;
}

.language p {
  font-size: 18px;
  color: #333;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

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

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

.language p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.3rem;
  height: 0.3rem;
  background: url(static/images/language.svg) no-repeat center;
  background-size: contain;
}

.language p::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  /* 这将创建一个朝下的三角形 */
  border-color: #333 transparent transparent transparent;
  /* 黑色在顶部，其余为透明 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.language p.on::before {
  border-top-color: var(--i_color);
}

.language_list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 1.5rem;
  right: 0;
  background: #fff;
  z-index: 2016;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.16rem 0.2rem;
}

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

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

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

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

.lang_list span img {
  display: none;
}

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

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

.lang_list .trp-ls-language-name::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.06rem;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--i_color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

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

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

/* header */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2014;
  background: #fff;
  border-radius: 6px;
}

@media screen and (max-width: 1024px) {
  header {
    top: 0;
  }
}

.top_cont {
  position: relative;
}

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

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

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}

.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

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

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

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

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    z-index: 2015;
    gap: 0 0.5rem;
  }

  .i_nav>li {
    position: relative;
  }

  .i_nav>li>a {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    display: block;
    font-size: 16px;
    color: #333;

    line-height: var(--header_height);
  }

  .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 .curr>a {
    color: var(--i_color) !important;
  }

  .i_nav>li.menu-item-has-children>a {
    padding-right: 24px;
  }

  .i_nav>.menu-item-has-children>a::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: url("static/images/arrow_down_hollow_hei.svg") no-repeat center;
    background-size: 100%;
  }


  .i_nav .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    background-color: var(--bc_color);
    text-align: center;
    border-top: 2px solid var(--i_color);
  }

  .i_nav .sub-menu li {
    position: relative;
    padding: 0 0.3rem;
    border-bottom: 1px solid var(--border_color);
  }

  .i_nav .sub-menu a {
    color: #333;
    display: block;
    font-size: 0.17rem;
    line-height: 0.44rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }

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

  .i_nav .sub-menu>li:hover>a {
    color: #fff;
  }

  /* 箭头 */
  .i_nav .sub-menu li.menu-item-has-children {
    position: relative;
  }

  .i_nav .sub-menu li.menu-item-has-children::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='m19 12l12 12l-12 12'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
  }

  /* 三级 */

  .i_nav .sub-menu ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--bc_color);
    text-align: center;
    z-index: 100;
    border-top: 2px solid var(--i_color);
    /* 保持和二级菜单风格一致 */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    /* 可选：增加阴影易于分辨 */
  }
}

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

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

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

  /*滚动条*/
  .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;
    box-sizing: border-box;
    background: url(static/images/arrow_down_hollow_hei.svg) no-repeat center;
    background-size: 0.18rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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

  .i_nav>li>a {
    display: block;
    padding: 0 0.2rem;
    font-size: 14px;
    color: #222;
    line-height: 0.4rem;
  }

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

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

  .i_nav .sub-menu a {
    display: block;
    padding: 0 0.4rem;
    font-size: 0.15rem;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }

  .i_nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border_color);
  }
}

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

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}

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

.top_r {
  margin-left: 0.7rem;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}

.top_search_ico {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #ddd;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .top_search_ico {
    width: 36px;
    height: 36px;
  }
}

.top_search_ico iconify-icon {
  font-size: 0.22rem;
  color: #333;
}

/* search main */
.top_search {
  --search_height: 0.38rem;
}

.top_search {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.16rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
}

.top_search.on {
  visibility: visible;
  opacity: 1;
  top: 100%;
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}

.top_search form {
  width: 80%;
  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(static/images/search.svg) no-repeat center;
  background-size: 0.24rem;
  cursor: pointer;
}

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

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

  .top_r {
    margin-left: auto;
  }

  .top_search_ico {
    margin-right: 0.2rem;
  }

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

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

  .top_search {
    padding: 0.12rem 0;
  }
}

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

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

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

header,
.top_cont,
.logo,
.i_nav>li,
.top_r {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.bottom_radio {
  border-radius: 0 0 40px 40px;
}

@media screen and (max-width: 1440px) {
  .bottom_radio {
    border-radius: 0 0 30px 30px;
  }
}

/* 首页banner */
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner .swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 2;
}

.banner .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}

.banner .swiper-slide {
  height: 0;
  padding-bottom: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .banner .swiper-slide {
    padding-bottom: 50vh;
  }
}

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

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

.banner .swiper-slide video {
  position: absolute;
  left: -50px;
  top: 0;
  width: calc(100% + 100px);
  height: 102% !important;
  object-fit: contain;
  z-index: 2;
}

.banner-button-prev,
.banner-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  background: rgb(0 0 0 / 30%);
  font-size: 24px;
  color: #fff;
  z-index: 999;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.banner-button-prev {
  left: -50px;
}

.banner-button-next {
  right: -50px;
}

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

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

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

.banner-pagination {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0.2rem;
  text-align: center;
  z-index: 2;
}

.banner-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin: 0 6px;
  background: #999;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

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

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

  .banner-button-prev,
  .banner-button-next {
    width: 42px;
    height: 42px;
  }

  .banner-button-prev iconify-icon,
  .banner-button-next iconify-icon {
    font-size: 20px;
  }


}

/* banner文字 */
.hot_banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hot_banner .banner_img {
  position: absolute;
  inset: 0;
}

.hot_banner .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 8s ease;
}

.swiper-slide-active .banner_img img {
  transform: scale(1.08);
}

.hot_banner .banner_mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .88) 0%,
      rgba(0, 0, 0, .72) 35%,
      rgba(0, 0, 0, .28) 70%,
      rgba(0, 0, 0, .1) 100%);
}

.hot_banner .wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hot_banner .banner_content {
  max-width: 7.2rem;
}

.hot_banner .banner_content span {
  display: inline-flex;
  align-items: center;
  gap: .12rem;
  margin-bottom: .2rem;
  font-size: .16rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--i_color);
}

.hot_banner .banner_content span::before {
  content: "";
  width: .5rem;
  height: 1px;
  background: var(--i_color);
}

.hot_banner .banner_content h3 {
  margin: 0;
  font-size: .68rem;
  line-height: 1.15;
  font-weight: 700;
  max-width: 8rem;
  color: #fff;
}

.hot_banner .banner_content p {
  margin-top: .25rem;
  max-width: 6.5rem;
  font-size: .19rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
}

.hot_banner .banner_btn {
  display: flex;
  gap: .18rem;
  margin-top: .45rem;
}

.hot_banner .banner_btn a {
  height: .56rem;
  padding: 0 .35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .16rem;
  font-weight: 600;
  transition: .35s;
}

.hot_banner .banner_btn a:first-child {
  background: var(--i_color);
  color: #fff;
}

.hot_banner .banner_btn a:first-child:hover {
  transform: translateY(-3px);
  background: #b9894b;
}

.hot_banner .banner_btn a:last-child {
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
}

.hot_banner .banner_btn a:last-child:hover {
  background: #fff;
  color: var(--i_color2);
}

.hot_banner .banner_data {
  display: flex;
  gap: .6rem;
  margin-top: .55rem;
}

.hot_banner .banner_data li {
  position: relative;
}

.hot_banner .banner_data li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -.3rem;
  transform: translateY(-50%);
  width: 1px;
  height: .45rem;
  background: rgba(255, 255, 255, .2);
}

.hot_banner .banner_data strong {
  display: block;
  font-size: .34rem;
  font-weight: 700;
  color: var(--i_color);
  line-height: 1;
}

.hot_banner .banner_data p {
  margin-top: .08rem;
  font-size: .14rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

@media screen and (max-width:1440px) {
  .hot_banner .banner_content h3 {
    font-size: .56rem;
  }
}

/* 平板端 */
@media (max-width: 1200px) {
  .hot_banner .banner_content {
    max-width: 6.2rem;
  }

  .hot_banner .banner_content h3 {
    font-size: .4rem;
    max-width: 6.5rem;
  }

  .hot_banner .banner_content p {
    max-width: 5.8rem;
    font-size: .17rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hot_banner .banner_data {
    display: none;
  }

  .hot_banner .banner_btn {
    flex-direction: column;
    align-items: flex-start;
    margin-top: .28rem;
  }

  .hot_banner .banner_btn a {
    width: 100%;
    max-width: 2.6rem;
    height: .48rem;
    font-size: .14rem;
  }

  .hot_banner .banner_btn a:last-child {
    display: none;
  }

}


/* 手机横屏 / 小平板 */
@media (max-width: 768px) {
  .hot_banner .banner_content {
    max-width: 100%;
    padding: 0 .2rem;
  }

  .hot_banner .banner_content span {
    font-size: .13rem;
    letter-spacing: 1px;
    margin-bottom: .16rem;
  }

  .hot_banner .banner_content span::before {
    width: .35rem;
  }

  .hot_banner .banner_content h3 {
    font-size: .34rem;
    line-height: 1.18;
    max-width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hot_banner .banner_content p {
    margin-top: .2rem;
    max-width: 100%;
    font-size: .16rem;
    line-height: 1.7;
  }


}


/* 手机端 */
@media (max-width: 480px) {
  .hot_banner .banner_content {
    padding: 0 .16rem;
  }

  .hot_banner .banner_content span {
    font-size: .12rem;
    gap: .1rem;
  }

  .hot_banner .banner_content span::before {
    width: .28rem;
  }

  .hot_banner .banner_content h3 {
    font-size: .3rem;
  }

  .hot_banner .banner_content p {
    font-size: .15rem;
    line-height: 1.65;
  }


}


/* 超小屏 */
@media (max-width: 360px) {
  .hot_banner .banner_content h3 {
    font-size: .24rem;
  }

  .hot_banner .banner_content p {
    font-size: .14rem;
  }

  .hot_banner .banner_content span {
    display: none;
  }
}

/* -------------------底部-------------------------- */
footer {
  background: var(--i_color2);
  color: rgba(255, 255, 255, .78);
}

.f_cont {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.25fr;
  gap: .55rem;
}

.f_logo {
  display: block;
  max-width: 1.8rem;
}

.f_logo img {
  max-width: 100%;
  object-fit: contain;
}

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

.f_tit {
  position: relative;
  margin-bottom: .25rem;
  padding-bottom: .15rem;
  color: #fff;
  font-size: .2rem;
  font-weight: 700;
}

.f_tit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: .45rem;
  height: 2px;
  background: var(--i_color);
}

.f_contact_list li,
.f_menu li {
  margin-bottom: .12rem;
}

.f_menu ul ul {
  display: none
}

.f_contact_list a,
.f_menu a {
  color: rgba(255, 255, 255, .72);
  font-size: .15rem;
  line-height: 1.6;
  transition: .3s;
}

.f_contact_list a:hover,
.f_menu a:hover {
  color: var(--i_color);
  padding-left: .06rem;
}

.f_form p {
  margin-bottom: .22rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

.f_media {
  display: flex;
  gap: .12rem;
}

.f_media a {
  width: .42rem;
  height: .42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  transition: .3s;
}

.f_media a iconify-icon {
  font-size: .2rem;
}

.f_media a:hover {
  background: var(--i_color);
  border-color: var(--i_color);
  transform: translateY(-3px);
}

.f_cr {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: .22rem 0;
}

.f_cr .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .2rem;
}

.f_cr p,
.f_cr a {
  color: rgba(255, 255, 255, .6);
  font-size: .14rem;
}

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

.f_form .wpforms-container {
  margin: 0;
}

.f_form .wpforms-field {
  padding: 0;
  margin-bottom: .12rem;
}

.f_form input[type="email"],
.f_form input[type="text"] {
  width: 100%;
  height: .48rem;
  padding: 0 .16rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
}

.f_form input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.f_form button,
.f_form input[type="submit"] {
  width: 100%;
  height: .5rem;
  background: var(--i_color) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.f_form button:hover,
.f_form input[type="submit"]:hover {
  background: #b9894b !important;
}

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

  .f_menu {
    display: none
  }
}

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

  .f_cr .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

div.wpforms-container-full input[type="text"]:focus {
  box-shadow: none !important;
}

div.wpforms-container-full .wpforms-form label.wpforms-error,
div.wpforms-container-full .wpforms-form em.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 0;
}

.wpforms-hidden {
  display: none;
}

/* -----------------公用样式----------------- */
.i_tit {
  text-align: center;
  max-width: 8rem;
  margin: 0 auto .6rem;
  position: relative;
  z-index: 10;
}

.i_tit span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  margin-bottom: .15rem;
  font-size: .16rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--i_color);
}

.i_tit span::before,
.i_tit span::after {
  content: "";
  width: .45rem;
  height: 1px;
  background: var(--i_color);
}

.i_tit h2 {
  margin-bottom: .2rem;
  color: var(--i_color2);
  font-size: .52rem;
  line-height: 1.2;
  font-weight: 700;
}

.i_tit p {
  max-width: 6rem;
  margin: 0 auto;
  font-size: .18rem;
  line-height: 1.8;
  color: #666;
}

.i_tit.left {
  text-align: left;
  margin: 0 0 .6rem;
}

.i_tit.left p {
  margin: 0;
}

.i_tit.left span::after {
  display: none;
}

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

  .i_tit {
    margin-bottom: .5rem;
  }

  .i_tit h2 {
    font-size: .42rem;
  }

  .i_tit p {
    font-size: .17rem;
  }

}

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

  .i_tit {
    margin-bottom: .4rem;
  }

  .i_tit span {
    font-size: .14rem;
    letter-spacing: 1px;
  }

  .i_tit span::before,
  .i_tit span::after {
    width: .25rem;
  }

  .i_tit h2 {
    font-size: .34rem;
  }

  .i_tit p {
    font-size: .15rem;
    line-height: 1.7;
  }

}

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

.row_tit .i_tit {
  margin: 0
}

.bc {
  background: var(--bc_color);
}

.i_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .12rem;
  min-width: 2rem;
  height: .58rem;
  padding: 0 .35rem;

  background: var(--i_color);
  color: #fff;

  font-size: .16rem;
  font-weight: 600;

  transition: .35s;
  position: relative;
  overflow: hidden;
}

.i_btn:hover {
  transform: translateY(-3px);
  background: #b9894b;
  color: #fff;
}

.i_btn.line {
  background: transparent;
  border: 1px solid var(--i_color2);
  color: var(--i_color2);
}

.i_btn.line:hover {
  background: var(--i_color2);
  color: #fff;
}

.more {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.more iconify-icon {
  font-size: 24px;
  transition: all 0.4s ease;
}

.more:hover {
  background: var(--theme-color, #c89b5c);
  transform: translateX(6px);
}

.more:hover iconify-icon {
  transform: translateX(3px);
}

/* --------------------内页-------------------------------- */
.in_banner {
  width: 100%;
  position: relative;
}

.in_banner .img {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.in_banner .img::after {
  content: "";
  display: block;
  padding-bottom: 31.25%;
}

.in_banner .img img {
  width: 101%;
  height: 101%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 959px) {
  .in_banner .img::after {
    padding-bottom: 30vh;
  }
}

/* Breadcrumb */
.in_position {
  position: relative;
}

.in_position .wrap {
  padding: 0.2rem 0;
  display: -webkit-flex;
  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.34rem;
}

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

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

.in_tit {
  padding-top: 0.2rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  border-bottom: 1px solid var(--border_color);
}

.in_tit h6 {
  font-size: 0.36rem;
  font-weight: 400;
  color: var(--i_color);
  text-transform: capitalize;
}

@media screen and (max-width: 1440px) {
  .in_tit h6 {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .in_tit h6 {
    font-size: 0.24rem;
  }
}

.p_decription {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.p_decription .img {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
}

.p_decription .img::before {
  content: "";
  display: block;
  padding-bottom: 62.625%;
}

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

.p_decription .txt {
  width: 47%;
}

.p_decription .text {
  color: #333;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}

.p_decription .text * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}

.p_decription .text::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.p_decription .text::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.p_decription .text::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .p_decription .text {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }

  .p_decription .text * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}

@media screen and (max-width: 1024px) {
  .p_decription .text {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }

  .p_decription .text * {
    font-size: 14px;
    line-height: 20px;
  }
}

.p_decription h6 {
  font-weight: 400;
  color: var(--i_color);
  padding-bottom: 0.1rem;
  font-size: 0.36rem;
  position: relative;
}

.p_decription h6::after {
  content: "";
  width: 60px;
  height: 5px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 1440px) {
  .p_decription h6 {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .p_decription h6 {
    font-size: 0.22rem;
  }

  .p_decription .txt,
  .p_decription .img {
    width: 100%;
  }
}

.c_name {
  font-size: 0.28rem;
  color: #333;
  font-weight: 400;
}

.in_products {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p_nav {
  width: 28%;
  margin-right: auto;
  padding: 0.2rem;
  background-color: var(--bc_color);
}

.p_nav .tit h5 {
  font-size: 0.24rem;
}

.p_nav .tit {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid var(--border_color);
  margin-bottom: 0.1rem;
}

@media screen and (max-width: 1440px) {
  .p_nav .tit h5 {
    font-size: 0.24rem;
  }
}

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

  .p_nav .tit {
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
}

/* 折叠面板 */

.p_menu_list {
  border-radius: 2px;
  font-size: 0.16rem;
}

.p_menu_list li {
  position: relative;
  list-style: none;
}

.p_menu_list li a {
  display: block;
  padding: 0.16rem 0.2rem;
  line-height: 1.4;
  text-transform: capitalize;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.p_menu_list>li>a {
  font-weight: bold;
  color: #222;
}

.p_menu_list a::after {
  content: "";
  width: 4px;
  height: 0;
  background: var(--i_color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.p_menu_list ul {
  display: none;
  overflow: hidden;
  padding: 0;
}

.p_menu_list>li>ul>li.active>a,
.p_menu_list>li>ul>li:hover>a {
  color: var(--i_color) !important;
  padding-left: 0.3rem;
}

.p_menu_list li.active>a::after,
.p_menu_list li:hover>a::after {
  height: 60%;
  opacity: 1;
  left: 0.1rem;
}

.p_menu_list ul li a {
  padding-left: 0.4rem;
  font-size: 0.15rem;
  color: #555;
}

.p_menu_list ul ul li a {
  padding-left: 0.5rem;
  font-size: 0.14rem;
  color: #666;
}

.p_menu_list ul ul li:hover>a {
  color: #222 !important;
  text-decoration: underline;
}

.p_menu_list li.active>ul {
  display: block;
}

.p_menu_list span {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 0.5rem;
  /* 增大点击区域 */
  height: 0.5rem;
  font-size: 0.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: all 0.3s ease;
}

.p_nav .img {
  width: 70%;
  margin: 0 auto;
}

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

@media screen and (max-width: 1024px) {
  .p_nav {
    width: 100%;
    margin-bottom: 0.4rem;
    padding: 0.12rem 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .p_menu_list li a {
    padding: 0.1rem;
    font-size: 14px;
  }

  .p_menu_list ul li a {
    font-size: 13px;
  }
}

@media screen and (max-width: 560px) {
  .p_nav {
    max-height: 300px;
    overflow-y: auto;
  }

  .p_nav .tit {
    display: none;
  }
}

.in_c_name h1 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
}

@media screen and (max-width: 1440px) {
  .in_c_name h1 {
    font-size: 0.28rem;
  }
}

@media screen and (max-width: 1024px) {
  .in_c_name h1 {
    font-size: 0.22rem;
  }
}

.in_c_name article {
  margin: 0.1rem 0 0.2rem;
  color: #666;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-height: calc(0.24rem * 6);
  overflow-y: auto;
  padding-right: 2%;
}

.in_c_name article * {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}

.in_c_name article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.in_c_name article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.in_c_name article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .in_c_name article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 6);
  }

  .in_c_name article * {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 560px) {
  .in_c_name article {
    line-height: 20px;
    max-height: calc(20px * 8);
  }
}

.in_p_r {
  margin-left: auto;
  width: 68%;
}

.in_p_r a {
  position: relative;
}

.in_p_list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.in_p_list li {
  width: calc(100% / 3 - 2%);
  margin-right: 3%;
  margin-bottom: 0.36rem;
  overflow: hidden;
}

.in_p_list li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .in_p_list {
    justify-content: space-between;
  }

  .in_p_list li {
    width: 49%;
    margin-right: 0;
    margin-bottom: 0.24rem;
  }
}

.in_p_list>a {
  display: block;
  width: 100%;
}

.in_p_list h6 {
  font-size: 0.18rem;
  color: #333;
  font-weight: normal;
  margin: 0.16rem 0.1rem;
  text-align: center;
}

.in_p_list .img {
  border: 1px solid var(--border_color);
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.in_p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 80.84%;
}

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

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

.in_p_list img,
.in_p_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.in_p_list li:hover h6 {
  color: var(--i_color);
}

.in_p_list li:hover img {
  width: 105%;
  height: 105%;
}

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

@media screen and (max-width: 560px) {
  .in_p_list h6 {
    font-size: 15px;
  }

  .in_p_list p {
    font-size: 13px;
  }
}

/* ---------------------详情页---------------- */
.pd_gallery_list {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.1rem;
}

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

.pd_gallery_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pd_gallery_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
}

.pd_gallery_list .img::before {
  content: "";
  display: block;
  padding-bottom: 80%;
}

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

.pd_gallery_list .img,
.pd_gallery_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pd_gallery_list li:hover img {
  width: 105%;
  height: 105%;
}

.pd_gallery-prev,
.pd_gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.46rem;
  height: 0.46rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
  display: none;
}

.pd_gallery-prev {
  left: 0;
}

.pd_gallery-next {
  right: 0;
}

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

.pd_gallery-prev:hover,
.pd_gallery-next:hover {
  opacity: 1;
}

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

.pd_gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}

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

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

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

@media screen and (max-width: 560px) {
  .pd_gallery-pagination {
    margin-top: 0.22rem;
  }
}

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

.pd_det_cont .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.pd_gallery_list {
  width: 49%;
}

.pd_det {
  width: 44%;
  position: relative;
  z-index: 10;
}

.pd_det>h1 {
  font-size: 0.28rem;
  font-weight: 400;
  color: var(--i_color);
}

.pd_det>h6 {
  display: table;
  font-size: 0.2rem;
  color: #333;
  padding: 0.16rem 0;
  border-bottom: 1px solid var(--i_color);
}

.p_brief {
  font-size: 0.18rem;
  padding: 0.16rem 0;
  border-top: 1px solid var(--border_color);
  border-bottom: 1px solid var(--border_color);
}

.p_brief p {
  margin: 8px 0;
}

.pd_det .min {
  font-size: 0.16rem;
  color: #333;
  margin: 0.16rem 0;
}

.pd_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
}

.pd_share p {
  font-size: 0.16rem;
  color: #333;
  font-weight: 400;
}

.pd_share a {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  color: #c2c6c9;
}

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

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

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

  .pd_det {
    width: 100%;
    margin-top: 0.3rem;
  }

  .p_brief {
    font-size: 0.16rem;
  }
}

.pd_menu {
  display: flex;
  display: -webkit-flex;
  gap: 0 0.4rem;
  margin-top: 0.2rem;
  border-bottom: 1px solid var(--border_color);
}

.pd_menu li {
  text-align: center;
  padding: 0.2rem;
  font-size: 0.24rem;
  color: #666;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}

.pd_menu li::after {
  content: "";
  width: 0;
  right: 0;
  height: 2px;
  background: var(--i_color);
  position: absolute;
  bottom: -1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pd_menu li.current,
.pd_menu li:hover {
  color: var(--i_color);
}

.pd_menu li:hover::after,
.pd_menu li.current::after {
  width: 100%;
  right: initial;
  left: 0;
}

@media screen and (max-width: 1440px) {
  .pd_menu li {
    padding: 0.12rem;
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .pd_menu li {
    padding: 0.1rem;
    font-size: 0.18rem;
  }
}

.pd_content {
  padding: 0.2rem 0;
}

.pd_content article {
  color: #333;
  font-size: 0.18rem;
  line-height: 150%;
}

.pd_content article h2,
.pd_content article h2 * {
  font-size: 0.24rem;
  font-weight: 400;
  margin: 0.2rem 0 0.1rem;
}

.pd_content article img,
.pd_content article iframe {
  max-width: 100%;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}

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

  .pd_content article h2,
  .pd_content article h2 * {
    font-size: 0.2rem;
  }
}

.faq_list li {
  padding: 0.3rem;
  list-style: none;
}

.faq_list .txt {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}

.faq_list .faq_txt {
  display: none;
  margin-top: 0.2rem;
}

.faq_list span {
  display: block;
  width: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 0.2rem;
  color: #fff;
  font-weight: 400;
}

.faq_list li>div:first-child span {
  background: #666;
}

.faq_list li>div:last-child span {
  background: var(--i_color);
}

.faq_list h6,
.faq_list p {
  width: calc(100% - 52px);
  font-weight: 300;
  color: #333;
}

.faq_list h6 {
  font-size: 0.2rem;
}

.faq_list p {
  font-size: 0.18rem;
}

.faq_list li.curr h6 {
  font-weight: 400;
}

.faq_list li.curr {
  border-top: 1px solid var(--i_color);
  background: var(--bc_color);
}

@media screen and (max-width: 1440px) {
  .faq_list li {
    padding: 0.2rem;
  }

  .faq_list h6 {
    font-size: 0.18rem;
  }

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

@media screen and (max-width: 1024px) {
  .faq_list li {
    padding: 0.2rem 0.1rem;
  }
}

.pd_technology_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.2rem;
}

.pd_technology_list li {
  width: calc((100% - 0.4rem) / 3);
  box-shadow: var(--i_shadow);
}

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

  .pd_technology_list li {
    width: calc((100% - 0.28rem) / 3);
  }
}

@media screen and (max-width: 959px) {
  .pd_technology_list {
    gap: 0.3rem 2%;
  }

  .pd_technology_list li {
    width: 49%;
  }
}

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

.pd_technology_list .img {
  position: relative;
  overflow: hidden;
  background: var(--bc_color);
}

.pd_technology_list .img::before {
  content: "";
  display: block;
  padding-bottom: 57.69%;
}

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

.pd_technology_list span {
  display: block;
  width: 0.5rem;
  line-height: 0.5rem;
  font-size: 0.24rem;
  text-align: center;
  font-weight: 400;
  color: #fff;
  background: var(--i_color);
  margin: -22.5px auto 0;
  position: relative;
  z-index: 2;
}

.pd_technology_list h6,
.pd_technology_list p {
  width: 80%;
  text-align: center;
  margin: 0.16rem auto;
}

.pd_technology_list h6 {
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 400;
}

.pd_technology_list p {
  font-size: 0.16rem;
  color: #666;
  margin-bottom: 0.3rem;
}

@media screen and (max-width: 1440px) {
  .pd_technology_list span {
    width: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.2rem;
  }

  .pd_technology_list h6 {
    font-size: 0.18rem;
  }

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

.pd_project_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.pd_project_list li {
  width: 49%;
}

.pd_project_list .img {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}

.pd_project_list .img::before {
  content: "";
  display: block;
  padding-bottom: 50.63%;
}

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

.pd_project_list p {
  font-size: 0.2rem;
  color: #333;
  padding: 0.14rem 0.1rem;
  background: var(--bc_color);
  text-align: center;
  position: relative;
}

.pd_project_list p::after {
  content: "";
  width: 0%;
  height: 100%;
  background: none;
  border-bottom: 2px solid var(--i_color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.pd_project_list .img img,
.pd_project_list p::after {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.pd_project_list li:hover img {
  width: 110%;
  height: 110%;
}

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

.pd_project_list li:hover p::after {
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .pd_project_list p {
    font-size: 0.18rem;
  }
}

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

.pd_process_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.22rem;
}

.pd_process_list li {
  width: calc((100% - 0.44rem) / 3);
}

@media screen and (max-width: 1024px) {
  .pd_process_list {
    gap: 0.2rem 0.12rem;
  }
}

@media screen and (max-width: 959px) {
  .pd_process_list {
    gap: 0.2rem 2%;
  }

  .pd_process_list li {
    width: 49%;
  }
}

.pd_process_list .img {
  position: relative;
  overflow: hidden;
}

.pd_process_list .img::before {
  content: "";
  display: block;
  padding-bottom: 78.95%;
}

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

.pd_process_list .txt {
  padding: 0.18rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.pd_process_list span {
  width: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  font-size: 0.28rem;
  font-weight: 400;
  color: var(--i_color);
  background: var(--bc_color);
}

.pd_process_list p {
  font-size: 0.22rem;
  color: #333;
  width: calc(100% - 0.6rem);
}

.pd_process_list li,
.pd_process_list span,
.pd_process_list p {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pd_process_list li:hover {
  box-shadow: var(--i_shadow);
}

.pd_process_list li:hover span {
  color: #fff;
  background: var(--i_color);
}

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

@media screen and (max-width: 1440px) {
  .pd_process_list .txt {
    padding: 0.12rem;
  }

  .pd_process_list span {
    font-size: 0.22rem;
  }

  .pd_process_list p {
    font-size: 0.18rem;
  }
}

@media screen and (max-width: 1024px) {
  .pd_process_list span {
    width: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.18rem;
  }

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

  .pd_process_list .txt {
    padding: 6px;
  }
}

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

.tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.2rem;
}

.tag h6 {
  font-size: 0.18rem;
  color: #333;
  font-weight: 400;
}

.tag a {
  font-size: 16px;
  color: #666;
  padding: 6px 0.1rem;
  border-radius: 4px;
}

.tag a:hover {
  background: var(--i_color);
  color: #fff;
}

.pd_navigation {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border_color);
}

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

.pd_navigation h6 {
  font-size: 14px;
  color: #222;
  font-weight: 400;
  margin: 0 10px;
}

.pd_navigation p {
  font-size: 14px;
  color: #333;
}

.pd_n_btn {
  width: 0.36rem;
  height: 0.36rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.r_product::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -160px;
  background: rgba(198, 160, 91, 0.16);
  border-radius: 50%;
}

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

.rp .swiper-container {
  margin: 0 auto;
  z-index: 1;
}

.rp .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}

.rp .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.rp-button-prev,
.rp-button-next {
  border: 1px solid #666;
  font-size: 20px;
  color: #666;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.rp-button-prev:hover,
.rp-button-next:hover {
  background: var(--linear-gradien);
  color: #fff;
  border-color: transparent;
}

.rp-button-prev {
  left: -8%;
}

.rp-button-next {
  right: -8%;
}

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

.rp-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}

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

/* about */
.in_about {
  position: relative;
  overflow: hidden;
}

.in_about .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 0.3rem 0;
}

.in_about .img {
  width: 46%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}

.in_about .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}

.in_about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.in_about .txt {
  width: 50%;
  font-size: 0.18rem;
}

.in_about article {
  margin: 0.2rem 0 0.3rem;
  color: #666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}

.in_about article * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}

.in_about article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.in_about article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.in_about article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .in_about article {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }

  .in_about article * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}

@media screen and (max-width: 1024px) {
  .in_about article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }

  .in_about article * {
    font-size: 14px;
    line-height: 20px;
  }
}

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

  .in_about .img,
  .in_about .txt {
    width: 100%;
  }
}

.num_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.num_list li {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #e9e9e9;
  transition: .3s;
}

.num_list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.num_list li h6 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 12px;
  line-height: 1;
}

.num_list li .roll_num {
  font-size: 48px;
  font-weight: 700;
  color: var(--i_color);
}

.num_list li h6 b {
  font-size: 20px;
  color: var(--i_color);
  font-weight: 600;
  margin-bottom: 6px;
}

.num_list li p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media(max-width:991px) {

  .num_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .num_list li {
    padding: 25px 15px;
  }

  .num_list li .roll_num {
    font-size: 36px;
  }

}

@media(max-width:768px) {

  .num_list {
    grid-template-columns: 1fr;
  }

}

/* Mission */
.mission_section {
  background: var(--bc_color);
}

.mission_intro {
  max-width: 9rem;
  margin: .5rem auto 0;
  text-align: center;
}

.mission_intro h3 {
  margin-bottom: .22rem;
  font-size: .34rem;
  line-height: 1.35;
  color: var(--i_color2);
}

.mission_intro p {
  margin-bottom: .15rem;
  color: #666;
  font-size: .17rem;
  line-height: 1.8;
}

.mission_bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .3rem;
  margin-top: .5rem;
}

.mission_bottom div {
  padding: .35rem;
  background: #fff;
  box-shadow: var(--i_shadow);
  border-left: 4px solid var(--i_color);
}

.mission_bottom span {
  display: block;
  margin-bottom: .12rem;
  color: var(--i_color);
  font-size: .16rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission_bottom p {
  color: var(--i_color2);
  font-size: .22rem;
  line-height: 1.5;
  font-weight: 600;
}

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

  .mission_intro p {
    font-size: .15rem;
  }


  .mission_bottom {
    grid-template-columns: 1fr;
  }

  .mission_bottom p {
    font-size: .18rem;
  }
}

.mission_list dl {
  display: flex;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

.mission_list dl dt {
  flex: 1;
  position: relative;
  cursor: pointer;
  transition: all .5s ease;
  overflow: hidden;
  background: #f5f5f5;
  border-right: 1px solid #e5e5e5;
}

.mission_list dl:hover dt {
  flex: 1;
}

.mission_list dl dt:hover {
  flex: 3;
}

/* 默认状态 */
.mission_ico1 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
}

.mission_ico1 span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mission_ico1 .ico {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--i_color);
}

.mission_ico1 h5 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  padding: 0 20px;
  text-align: center;
}

/* 展开内容 */
.mission_ico2 {
  position: absolute;
  inset: 0;
  padding: 50px;
  background: var(--i_color);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);

  transition: .4s;
}

.mission_ico2 span {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.mission_ico2 .ico {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.mission_ico2 p {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.mission_ico2 h6 {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  opacity: .9;
}

/* hover切换 */
.mission_list dl dt:hover .mission_ico1 {
  opacity: 0;
  visibility: hidden;
}

.mission_list dl dt:hover .mission_ico2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 平板端 */
@media screen and (max-width: 1024px) {
  .mission_list dl {
    height: 420px;
    border-radius: 16px;
  }

  .mission_ico2 {
    padding: 35px;
  }

  .mission_ico2 p {
    font-size: 24px;
  }

  .mission_ico2 h6 {
    font-size: 15px;
    line-height: 1.7;
  }

  .mission_ico1 .ico {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }

  .mission_ico1 h5 {
    font-size: 16px;
  }
}


/* 手机端：取消横向 hover 展开，改为上下卡片展示 */
@media screen and (max-width: 768px) {
  .mission_list dl {
    display: block;
    height: auto;
    border-radius: 14px;
    overflow: visible;
  }

  .mission_list dl dt {
    flex: none;
    height: auto;
    min-height: auto;
    margin-bottom: 18px;
    border-right: none;
    border-radius: 14px;
    overflow: hidden;
    background: var(--i_color);
  }

  .mission_list dl dt:last-child {
    margin-bottom: 0;
  }

  .mission_list dl:hover dt,
  .mission_list dl dt:hover {
    flex: none;
  }

  /* 手机端隐藏默认小图标状态 */
  .mission_ico1 {
    display: none;
  }

  /* 手机端直接显示展开内容 */
  .mission_ico2 {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 32px 28px;
    min-height: 220px;
  }

  .mission_ico2 span {
    margin-bottom: 18px;
  }

  .mission_ico2 .ico {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .mission_ico2 p {
    font-size: 22px;
  }

  .mission_ico2 h6 {
    font-size: 15px;
    line-height: 1.7;
  }
}


/* 小手机 */
@media screen and (max-width: 480px) {
  .mission_list dl dt {
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .mission_ico2 {
    padding: 26px 22px;
    min-height: 200px;
  }

  .mission_ico2 span {
    gap: 12px;
    margin-bottom: 15px;
  }

  .mission_ico2 .ico {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .mission_ico2 p {
    font-size: 20px;
  }

  .mission_ico2 h6 {
    font-size: 14px;
    line-height: 1.65;
  }
}

.certy {
  background: url(static/images/bc_certy.webp) no-repeat center;
  background-size: cover;
  position: relative;
}

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

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

.certy_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.certy_list .img {
  position: relative;
  overflow: hidden;
  background: var(--bc_color);
}

.certy_list .img::before {
  content: "";
  display: block;
  padding-bottom: 142.97%;
}

.certy_list .img img {
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.certy_list .img,
.certy_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.certy_list li:hover .img {
  box-shadow: var(--i_shadow);
}

.certy_list li:hover img {
  width: 100%;
  height: 100%;
}

.certy_list li {
  transform: scale(80%);
}

.certy_list li.swiper-slide-next,
.certy_list li.swiper-slide-prev {
  transform: scale(90%);
}

.certy_list li.swiper-slide-active {
  transform: scale(100%);
}

.certy-prev,
.certy-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
}

.certy-prev {
  left: -0.6rem;
}

.certy-next {
  right: -0.6rem;
}

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

.certy-prev:hover,
.certy-next:hover {
  opacity: 1;
}

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

.certy-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}

.certy-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 100%;
  background: none;
  border: 2px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.certy-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}

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

  .certy-prev,
  .certy-next {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.24rem;
  }

  .certy-prev {
    left: 0;
  }

  .certy-next {
    right: 0;
  }
}

@media screen and (max-width: 560px) {
  .certy-pagination {
    margin-top: 0.22rem;
  }
}

.service_scope {
  position: relative;
}

.service_scope::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: url(static/images/bc_service1.webp) no-repeat center;
  background-size: cover;
}

@media screen and (min-width: 561px) {
  .service_scope::after {
    background-attachment: fixed;
  }
}

.service_scope .wrap_l {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  background: #fff;
  position: relative;
  z-index: 2;
}

.service_scope .txt {
  width: 46%;
  padding: 0 0.3rem;
}

.service_scope .gallery {
  width: 52%;
}

.service_scope h6 {
  font-size: 0.32rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.service_scope p {
  font-size: 0.18rem;
  color: #333;
}

@media screen and (max-width: 1440px) {
  .service_scope h6 {
    font-size: 0.24rem;
  }

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

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

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

  .service_scope .txt {
    width: 100%;
    padding: 0.2rem;
  }

  .service_scope .gallery {
    display: none;
  }
}

.p_atlas_show {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

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

.p_atlas_show .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.p_atlas_show .swiper-slide .img {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.p_atlas_show .swiper-slide .img::before {
  content: "";
  display: block;
  padding-bottom: 63.15%;
}

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

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

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

.p_atlas_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 63.15%;
}

.p_atlas_list .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p_atlas_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.atlas-prev,
.atlas-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
}

.atlas-prev {
  left: 0;
}

.atlas-next {
  right: 0;
}

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

.atlas-prev:hover,
.atlas-next:hover {
  opacity: 1;
}

.atlas-pagination {
  text-align: center;
  display: none;
}

.atlas-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}

.atlas-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 100%;
  background: none;
  border: 2px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.atlas-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}

.env_list {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.1rem;
}

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

.env_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.env_list .img {
  width: 100%;
  background: var(--bc_color);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.env_list .img::before {
  content: "";
  display: block;
  padding-bottom: 140%;
}

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

.env_list .img,
.env_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.env_list li:hover img {
  width: 105%;
  height: 105%;
}

.env_but {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.env-prev,
.env-next {
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0.6rem;
  height: 0.6rem;
  font-size: 0.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: var(--i_color);
  color: #fff;
  opacity: 0.5;
}

.env-prev {
  transform: translateX(-0.6rem);
}

.env-next {
  transform: translateX(0.6rem);
}

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

.env-prev:hover,
.env-next:hover {
  opacity: 1;
}

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

.env-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  display: inline-block;
  margin: 0 8px;
  background: #cbcbcb;
  outline: none;
  cursor: pointer;
  position: relative;
}

.env-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: none;
  border: 2px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.env-pagination .swiper-pagination-bullet-active::after {
  width: 200%;
  height: 200%;
  border-color: var(--i_color);
}

/* ------------------case------------------- */
.hot_case {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background: linear-gradient(to right, #fff, var(--bc_color));
  overflow: hidden;
  gap: 0.2rem 0;
}

.hot_case>img {
  position: absolute;
  right: -0.2rem;
  bottom: -0.2rem;
  max-width: 30%;
  opacity: 0.1;
}

.hot_case .img {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.hot_case .img::before {
  content: "";
  display: block;
  padding-bottom: 62.1%;
}

.hot_case .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hot_case .txt {
  width: 50%;
  padding: 0 0.6rem;
}

.hot_case h6 {
  font-size: 0.26rem;
  font-weight: 400;
  color: var(--i_color);
  margin-bottom: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot_case .date {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}

.hot_case .date span {
  font-size: 0.16rem;
  color: var(--i_color);
}

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

  .hot_case h6 {
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
  }
}

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

  .hot_case .img,
  .hot_case .txt {
    width: 100%;
  }

  .hot_case .txt {
    padding: 0.2rem;
    background: var(--bc_color);
  }
}

.in_case_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.15rem;
}

.in_case_list li {
  width: calc((100% - 0.3rem) / 3);
}

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

  .in_case_list li {
    width: 100%;
  }
}

.hot_case article {
  color: #666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  max-height: calc(0.28rem * 10);
  overflow-y: auto;
  padding-right: 2%;
}

.hot_case article * {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
}

.in_about article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}

.in_about article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

.in_about article::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .hot_case article {
    font-size: 0.16rem;
    line-height: 0.24rem;
    max-height: calc(0.24rem * 10);
  }

  .hot_case article * {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}

@media screen and (max-width: 1024px) {
  .hot_case article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 10);
  }

  .hot_case article * {
    font-size: 14px;
    line-height: 20px;
  }
}

.in_case_list a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  width: 100%;
  height: 100%;
}

.in_case_list a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  bottom: -2px;
}

.in_case_list .img {
  position: relative;
  overflow: hidden;
}

.in_case_list .img::before {
  content: "";
  display: block;
  padding-bottom: 61.92%;
}

.in_case_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.in_case_list .txt {
  padding: 0.2rem;
  overflow: hidden;
}

.in_case_list h6 {
  font-size: 0.2rem;
  color: #333;
  font-weight: 400;
  line-height: 150%;
}

.in_case_list p {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.in_case_list .date {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}

.in_case_list .date span {
  font-size: 0.16rem;
}

.in_case_list .more {
  transform: translateX(0.36rem);
  opacity: 0;
}

.in_case_list li,
.in_case_list a::after,
.in_case_list h6 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.in_case_list li:hover {
  box-shadow: var(--i_shadow);
}

.in_case_list li:hover .more {
  transform: translateX(0);
  opacity: 1;
}

.in_case_list li:hover h6 {
  color: var(--i_color);
}

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

.in_case_list li:hover a::after {
  bottom: 0;
}

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

  .in_case_list p {
    font-size: 14px;
  }
}

/* ==========================================================================
   contact
   ========================================================================== */

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

.contact_intro_map::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  background: rgba(198, 160, 91, 0.16);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(25deg);
}

.contact_intro_map .contact_intro_box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 45px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.contact_intro_map .contact_intro_txt {
  background: var(--i_color2);
  color: #fff;
  padding: 58px 55px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.contact_intro_map .contact_intro_txt::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 50%;
}

.contact_intro_map .sub_title {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--i_color);
  margin-bottom: 18px;
  font-weight: 600;
}

.contact_intro_map .contact_intro_txt h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.contact_intro_map .contact_intro_txt>p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin-bottom: 34px;
}

.contact_intro_map .contact_info_list {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.contact_intro_map .info_item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 12px;
}

.contact_intro_map .info_item .ico {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--i_color);
}

.contact_intro_map .info_item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.contact_intro_map .contact_map {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact_intro_map .map_title {
  margin-bottom: 22px;
}

.contact_intro_map .map_title h3 {
  font-size: 26px;
  color: #111;
  margin-bottom: 8px;
}

.contact_intro_map .map_title p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.contact_intro_map .map_iframe {
  width: 100%;
  height: calc(100% - 90px);
  min-height: 430px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
}

.contact_intro_map .map_iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(18%);
}

/* 平板 */
@media screen and (max-width: 1024px) {
  .contact_intro_map {
    padding: 70px 0;
  }

  .contact_intro_map .contact_intro_box {
    grid-template-columns: 1fr;
  }

  .contact_intro_map .contact_intro_txt {
    padding: 46px 38px;
  }

  .contact_intro_map .contact_intro_txt h2 {
    font-size: 36px;
  }

  .contact_intro_map .map_iframe {
    height: 420px;
    min-height: auto;
  }
}

/* 手机 */
@media screen and (max-width: 767px) {
  .contact_intro_map {
    padding: 55px 0;
  }

  .contact_intro_map .contact_intro_box {
    gap: 26px;
  }

  .contact_intro_map .contact_intro_txt {
    padding: 34px 24px;
    border-radius: 16px;
  }

  .contact_intro_map .contact_intro_txt h2 {
    font-size: 30px;
  }

  .contact_intro_map .contact_intro_txt>p {
    font-size: 15px;
    line-height: 1.8;
  }


  .contact_intro_map .contact_map {
    padding: 20px;
    border-radius: 16px;
  }

  .contact_intro_map .map_title h3 {
    font-size: 22px;
  }

  .contact_intro_map .map_iframe {
    height: 320px;
  }
}

/* Contact Form Section */

.c_form {
  max-width: 920px;
  background: #fff;
  border-radius: 22px;
  padding: 55px 60px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.c_form::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 150px;
  right: 0px;
  top: 0px;
  background: rgba(201, 164, 92, 0.14);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.c_form .i_tit {
  text-align: center;
  position: relative;
  z-index: 2;
}

.c_form .i_tit h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
}

.c_form .i_tit p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
}

/* WPForms 基础 */
.c_form .wpforms-container {
  margin: 0;
  position: relative;
  z-index: 2;
}

.c_form .wpforms-form {
  display: block;
}

.c_form .wpforms-field {
  padding: 0 0 20px !important;
}

/* label */
.c_form .wpforms-field-label {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #111 !important;
  margin-bottom: 8px !important;
}

/* 输入框 */
.c_form .wpforms-form input[type="text"],
.c_form .wpforms-form input[type="email"],
.c_form .wpforms-form input[type="tel"],
.c_form .wpforms-form input[type="url"],
.c_form .wpforms-form input[type="number"],
.c_form .wpforms-form select,
.c_form .wpforms-form textarea {
  width: 100% !important;
  height: 52px !important;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  background: #f8f8f8 !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  color: #111 !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

.c_form .wpforms-form textarea {
  height: 150px !important;
  padding: 16px 18px !important;
  resize: vertical;
}

/* 聚焦效果 */
.c_form .wpforms-form input:focus,
.c_form .wpforms-form select:focus,
.c_form .wpforms-form textarea:focus {
  border-color: #c9a45c !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.14) !important;
  outline: none !important;
}

/* placeholder */
.c_form .wpforms-form input::placeholder,
.c_form .wpforms-form textarea::placeholder {
  color: #999;
}

/* 提交按钮 */
.c_form .wpforms-submit-container {
  padding-top: 8px !important;
  text-align: center;
}

.c_form .wpforms-submit {
  min-width: 190px !important;
  height: 54px !important;
  border: none !important;
  border-radius: 50px !important;
  background: var(--i_color2) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 0 36px !important;
  cursor: pointer !important;
  transition: all 0.35s ease !important;
}

.c_form .wpforms-submit:hover {
  background: #c9a45c !important;
  color: #111 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(201, 164, 92, 0.32);
}

/* 错误提示 */
.c_form .wpforms-error {
  color: #c0392b !important;
  font-size: 13px !important;
  margin-top: 6px !important;
}

.c_form .wpforms-confirmation-container-full {
  border-radius: 12px !important;
  background: #f7f5f0 !important;
  border: 1px solid rgba(201, 164, 92, 0.35) !important;
  color: #111 !important;
  padding: 18px 22px !important;
}

/* 平板 */
@media screen and (max-width: 1024px) {
  .c_form {
    padding: 45px 38px;
  }

  .c_form .i_tit h2 {
    font-size: 36px;
  }
}

/* 手机 */
@media screen and (max-width: 767px) {
  .c_form {
    padding: 50px 0;
  }

  .c_form {
    padding: 34px 22px;
    border-radius: 16px;
  }

  .c_form .i_tit h2 {
    font-size: 30px;
  }

  .c_form .i_tit p {
    font-size: 14px;
  }

  .c_form .wpforms-form input[type="text"],
  .c_form .wpforms-form input[type="email"],
  .c_form .wpforms-form input[type="tel"],
  .c_form .wpforms-form input[type="url"],
  .c_form .wpforms-form input[type="number"],
  .c_form .wpforms-form select {
    height: 50px !important;
  }

  .c_form .wpforms-submit {
    width: 100% !important;
  }
}

/* -----------------news------------------------ */
.new_menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.new_menu a {
  display: table;
  padding: 0.1rem 0.3rem;
  font-size: 0.18rem;
  border: 1px solid var(--i_color);
  border-radius: 0.3rem;
  color: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.new_menu .curr a,
.new_menu a:hover {
  background: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .new_menu a {
    padding: 8px 0.2rem;
    font-size: 0.16rem;
  }
}

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

.in_n_list li {
  background: var(--bc_color);
  margin-bottom: 0.5rem;
}

.in_n_list a {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bc_color);
  overflow: hidden;
  border-radius: 0.2rem;
  padding: 0.3rem;
  gap: .3rem 0;
}

.in_n_list .img {
  width: 28%;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
  border: 1px solid var(--border_color);
  background: #fff;
}

.in_n_list .img::before {
  content: "";
  display: block;
  padding-bottom: 64.1%;
}

.in_n_list .img img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.in_n_list .txt {
  width: 70%;
}

.in_n_list h6 {
  font-size: 0.24rem;
}

.in_n_list p {
  font-size: 0.16rem;
  margin: 0.1rem 0 0.2rem;
}

.in_n_list span {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  color: #666;
}

.in_n_list span i {
  font-size: 0.16rem;
}

.in_n_list a,
.in_n_list h6,
.in_n_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.in_n_list a:hover img {
  width: 100%;
  height: 100%;
}

.in_n_list a:hover {
  background: none;
  box-shadow: var(--i_shadow);
}

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

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

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

  .in_n_list p {
    font-size: 0.14rem;
    margin: 0.1rem 0;
  }

  .in_n_list .img,
  .in_n_list .txt {
    width: 50%;
  }
}

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

  .in_n_list .img,
  .in_n_list .txt {
    width: 100%;
  }
}

/* ---------------application------------------- */

.application_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.4rem;
}

.application_list li {
  width: calc((100% - 0.8rem) / 3);
  position: relative;
  background: #fff;
}

@media screen and (max-width: 1440px) {
  .application_list {
    gap: 0.8rem 0.3rem;
  }

  .application_list li {
    width: calc((100% - 0.6rem) / 3);
  }
}

@media screen and (max-width: 1024px) {
  .application_list {
    gap: 0.8rem 0.2rem;
  }

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

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

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

.application_list .img::before {
  content: "";
  display: block;
  padding-bottom: 73.27%;
}

.application_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.application_list .date {
  display: table;
  padding: 6px 0.2rem;
  font-size: 14px;
  color: #fff;
  border-radius: 6px;
  background: var(--i_color);
  z-index: 2;
  position: absolute;
  right: 0.3rem;
  transform: translateY(-50%);
}

.application_list h6 {
  width: 100%;
  font-size: 0.2rem;
  color: #333;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0.3rem 0;
  padding: 0 0.2rem;
}

.application_list .more {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0.1rem;
  transform: translateY(-0.2rem);
  background: var(--i_color);
  opacity: 0;
  border-radius: 0px 0px 8px 8px;
}

.application_list .more,
.application_list img {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.application_list li:hover img {
  width: 110%;
  height: 110%;
}

.application_list li:hover .more {
  transform: translateY(-8px);
  opacity: 1;
}

.application_list li:hover a {
  border-color: transparent;
  box-shadow: var(--i_shadow);
}

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

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

.case_control {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.2rem;
}

.case-pagination {
  font-size: 0;
}

.case-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 2px;
  display: inline-block;
  margin: 0 0;
  background: #d6d6d6;
  outline: none;
  cursor: pointer;
  position: relative;
}

.case-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.case-pagination .swiper-pagination-bullet-active::before {
  right: initial;
  left: 0;
  width: 100%;
}

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

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

.case_list .swiper-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

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

.case_list a {
  display: block;
  width: 100%;
}

.case_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.1rem;
  border: 1px solid var(--border_color);
}

.case_list .img::before {
  content: "";
  display: block;
  padding-bottom: 62.29%;
}

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

.case_list p {
  font-size: 0.18rem;
  color: #333;
  margin: 0.16rem 0;
  text-align: center;
}

.case_list img,
.case_list p {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.case_list li:hover img {
  width: 105%;
  height: 105%;
}

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

@media screen and (max-width: 768px) {
  .case_list .img {
    border-radius: 0.1rem;
  }

  .case_list p {
    font-size: 0.16rem;
    margin: 0.1rem 0;
  }
}

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

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

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

.in_page a,
.in_page span {
  display: block;
  padding: 0 0.12rem;
  line-height: 0.32rem;
  font-size: 0.14rem;
  color: #666;
  background: #fff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border_color);
  overflow: hidden;
}

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

.in_page a:hover,
.in_page .active_page a,
.in_page .active_page span {
  border-color: var(--i_color) !important;
  background: var(--i_color);
  color: #fff !important;
}

@media screen and (max-width: 1024px) {
  .in_page_box {
    margin-top: 0.4rem;
  }
}

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

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

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

div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}

.tec_list {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tec_list li {
  width: calc(50% - 0.2rem);
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.tec_list a {
  display: block;
  width: 100%;
  height: 100%;
}

.tec_list .img {
  position: relative;
  padding-bottom: 58.39%;
  overflow: hidden;
}

.tec_list .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--i_color);
  opacity: 0;
}

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

.tec_list .txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.24rem 0.1rem;
}

.tec_list .txt p {
  width: 70%;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tec_list .txt,
.tec_list img,
.tec_list .img::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tec_list li:hover .txt {
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.1);
}

.tec_list li:hover .img::after {
  opacity: 0.3;
}

.tec_list li:hover img {
  width: 105%;
  height: 105%;
}

.tec_list li:hover .i_btn {
  border-color: transparent;
  color: #fff;
  background: var(--i_color);
}

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

.certs_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 四列平铺 */
  gap: 0.3rem;
}

.cert_item {
  background: #fff;
  transition: all 0.4s ease;
}

.cert_img {
  width: 100%;
  aspect-ratio: 1 / 1.414;
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 0.15rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.cert_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 118, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.cert_mask iconify-icon {
  font-size: 0.4rem;
  color: var(--i_color);
  background: #fff;
  border-radius: 50%;
  padding: 0.1rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
}

.cert_info {
  padding-top: 0.2rem;
  text-align: center;
}

.cert_info h5 {
  font-size: 0.18rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.05rem;
}

.cert_info p {
  font-size: 0.14rem;
  color: #999;
}

.cert_item:hover .cert_img {
  border-color: var(--i_color);
  box-shadow: 0 0.15rem 0.3rem rgba(0, 0, 0, 0.05);
}

.cert_item:hover .cert_mask {
  opacity: 1;
}

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

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

@media (max-width: 640px) {
  .certs_grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------新闻详情页------------------ */
.in_news_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.3rem 0;
}

.post_recommend {
  flex-shrink: 0;
  width: 4rem;
  margin-left: auto;
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid #ddd;
}

.post_content {
  width: calc(100% - 4.5rem);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.post_recommend h3 {
  font-size: 0.22rem;
  margin-bottom: 0.2rem;
}

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

  .post_recommend,
  .post_content {
    width: 100%;
  }

  .post_recommend {
    padding: 20px 10px;
  }
}

.post_recommend_list {}

.post_recommend_list li {}

.post_recommend_list li:not(:last-child) {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd;
}

.post_recommend_list a {
  display: block;
  width: 100%;
}

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

.post_recommend_list .img::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

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

.post_recommend_list {
  margin: 14px 0 10px;
}

.post_recommend_list p {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post_recommend_list li:hover img {
  -webkit-transform: scale(1.08, 1.08);
  transform: scale(1.08, 1.08);
}

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

.new_form_cont {
  background: #f7f7f7;
  margin-top: 0.3rem;
  padding: 0.2rem;
  position: relative;
}

.new_form_cont::after {
  content: "";
  width: 1.5px;
  height: 100%;
  background: linear-gradient(to top, var(--i_color), var(--i_color2));
  position: absolute;
  right: 0;
  top: 0;
}

.new_form_cont p {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

#wpforms-104 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}

#wpforms-104 {
  margin: 0;
  padding: 0;
}

#wpforms-form-104 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#wpforms-104 input,
#wpforms-104 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

#wpforms-104 .wpforms-field {
  padding: 0;
  margin: 0;
}

#wpforms-104 .wpforms-field-label {
  font-size: 13px;
  font-weight: normal;
  color: #666;
}


#wpforms-104 .wpforms-field {
  width: 100%;
  background: transparent;
  padding-bottom: 0.2rem;
  position: relative;
  overflow: hidden;
}

#wpforms-104 .wpforms-field-container input,
#wpforms-104 textarea,
#wpforms-104 select {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  border: 1px solid transparent;
  background: #fff;
  padding: 0 0.1rem 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

#wpforms-104 input {
  line-height: var(--input_height);
}

#wpforms-104 textarea {
  line-height: 0.22rem;
  min-height: 1rem;
  padding: 0.06rem 0.16rem;
}

#wpforms-104-field_1-container,
#wpforms-104-field_2-container {
  width: 49% !important;
}

#wpforms-104 input::-webkit-input-placeholder,
#wpforms-104 textarea::-webkit-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}

#wpforms-104 input::-moz-placeholder,
#wpforms-104 textarea::-moz-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}

#wpforms-104 input::-ms-input-placeholder,
#wpforms-104 textarea::-ms-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}

#wpforms-104-field_1-error,
#wpforms-104-field_2-error,
#wpforms-104-field_3-error,
#wpforms-104-field_4-error,
#wpforms-104-field_5-error,
#wpforms-104-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}

#wpforms-104 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}

#wpforms-104 .wpforms-submit-container {
  text-align: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

#wpforms-104 .wpforms-submit-container button {
  display: block;
  width: 100%;
  font-size: 0.16rem;
  padding: 10px 0;
  color: #fff;
  background: var(--i_color);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

#wpforms-104 .wpforms-submit-container button:hover {
  background: var(--i_color2);
}

#wpforms-104 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}


/* --- 左侧悬浮导航 --- */
.sidebar-nav {
  flex: 0 0 300px;
}

.sticky-menu {
  position: sticky;
  top: 100px;
  /* 距离顶部固定的距离 */
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-blue);
  padding-left: 15px;
}

#scrollspy-menu {
  list-style: none;
  padding: 0;
}

#scrollspy-menu li {
  margin-bottom: 15px;
}

#scrollspy-menu a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

#scrollspy-menu li span {
  margin-right: 15px;
  font-size: 14px;
  opacity: 0.5;
}

/* 激活状态样式 */
#scrollspy-menu li.active a {
  color: var(--primary-blue);
  font-weight: 700;
  transform: translateX(10px);
}

/* --- 右侧内容区 --- */
.content-area {
  flex: 1;
}

.content-block {
  margin-bottom: 100px;
  /* 增加间距以触发滚动监听 */
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.block-header iconify-icon {
  font-size: 32px;
  color: var(--primary-blue);
}

.block-header h3 {
  font-size: 22px;
  margin: 0;
}

.content-block p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.demo-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 响应式 */
@media (max-width: 992px) {
  .solution-container {
    flex-direction: column;
  }

  .sidebar-nav {
    display: none;
    /* 移动端通常隐藏此类悬浮导航 */
  }
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 20px 0;
  justify-content: center;
}

.category_list li {
  position: relative;
}

.category_list li a {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  color: #444;
  font-size: 15px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  /* 圆角胶囊形状 */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  /* 防止文字换行 */
}

.category_list li a:hover {
  color: #fff;
  background-color: #0056b3;
  /* 品牌蓝 */
  border-color: #0056b3;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
  transform: translateY(-2px);
  /* 向上轻微浮动 */
}

.category_list li.active a {
  color: #fff;
  background-color: #0056b3;
  border-color: #0056b3;
  font-weight: 600;
}

.category_list li.active a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #0056b3;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .category_list {
    flex-wrap: nowrap;
    overflow-x: auto;
    /* 开启横向滚动 */
    justify-content: flex-start;
    padding: 15px 10px;
    -webkit-overflow-scrolling: touch;
    /* 滚动更顺滑 */
  }

  .category_list::-webkit-scrollbar {
    display: none;
  }

  .category_list li a {
    padding: 10px 18px;
    font-size: 14px;
  }
}




/* ==========================================================================
   首页
   ========================================================================== */
.core_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.core_list .core_item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  position: relative;
}

.core_list .core_item::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--i_color), #f1d18a);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.45s ease;
}

.core_list .core_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.core_list .core_item:hover::after {
  transform: scaleX(1);
}

.core_list .core_item .img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f5f5f5;
}

.core_list .core_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

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

.core_list .core_item .txt {
  padding: 26px 26px 32px;
  background: #fff;
}

.core_list .core_item .txt h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.core_list .core_item .txt p {
  font-size: 15px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

/* 平板 */
@media screen and (max-width: 1024px) {
  .core_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .core_list .core_item .img {
    height: 230px;
  }
}

/* 手机 */
@media screen and (max-width: 767px) {
  .core_list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
  }

  .core_list .core_item {
    border-radius: 14px;
  }

  .core_list .core_item .img {
    height: 220px;
  }

  .core_list .core_item .txt {
    padding: 22px 20px 28px;
  }

  .core_list .core_item .txt h3 {
    font-size: 20px;
  }

  .core_list .core_item .txt p {
    font-size: 14px;
  }
}

.ip_menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.2rem;
}

/* .ip_menu li {
  max-width: 32%;
} */

.ip_menu span {
  cursor: pointer;
  display: block;
  font-size: 0.18rem;
  width: 100%;
  padding: 0 0.2rem;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.ip_menu li.current span,
.ip_menu li:hover span {
  color: var(--i_color);
  text-decoration: underline;
}

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

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

  .ip_menu span {
    font-size: 14px;
  }
}

.ip {
  position: relative;
}

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

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

.ip_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.ip-prev,
.ip-next {
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.3rem;
  color: var(--i_color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--i_color);
  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;
}

.ip-prev {
  left: 8%;
}

.ip-next {
  right: 8%;
}

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

.ip-prev:hover {
  background: url(static/images/public/arrow_left_long_bai.svg) no-repeat center;
  background-size: 30px;
}

.ip-next:hover {
  background: url(static/images/public/arrow_right_long_bai.svg) no-repeat center;
  background-size: 30px;
}

.ip-prev:hover,
.ip-next:hover {
  background-color: var(--i_color);
  color: #fff;
}

.ip-pagination {
  display: none;
  margin-top: 0.3rem;
  text-align: center;
}

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

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

.ip_list a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.ip_list .img::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}

.ip_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ip_list h6 {
  color: #222;
  font-size: 0.16rem;
  margin: 0.2rem 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ip_list .img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ip_list li:hover img {
  width: 105%;
  height: 105%;
}

@media screen and (max-width: 1440px) {
  .ip_list h6 {
    font-size: 16px;
  }
}

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

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

  .ip-pagination {
    display: block;
  }
}

.ip_content .box>section:not(:first-child) {
  display: none;
}

.i_partner {
  position: relative;
}

.i_partner::after,
.i_partner::before {
  content: "";
  width: 20%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
}

@media screen and (min-width: 561px) {
  .i_partner::before {
    background: linear-gradient(to right, #fff, transparent);
    left: 0;
  }

  .i_partner::after {
    background: linear-gradient(to left, #fff, transparent);
    right: 0;
  }
}

.par_partner {
  position: relative;
}

.par_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.par_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}

.par_partner_list .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  background: #fff;
}

.par_partner_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.par_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 47.23%;
}

.par_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  height: 100%;
  object-fit: contain;
}

.par_partner_list .img img {
  transition: all 0.5s linear;
}

.par_partner_list li:hover .img {
  border: 1px solid var(--i_color);
}

.par_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.hot_about {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hot_about_img {

  width: 48%;
}

.hot_about_img img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.hot_about_content {
  width: 52%;

}

.hot_about_text {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

.hot_about_text::-webkit-scrollbar {
  width: 6px;
}

.hot_about_text::-webkit-scrollbar-thumb {
  background: var(--i_color);
  border-radius: 10px;
}

.hot_about_text::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.hot_about_text p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.hot_about_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  margin-top: 30px;
}

.hot_about_list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #222;
}

.hot_about_list iconify-icon {
  color: var(--i_color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media(max-width:991px) {

  .hot_about {
    flex-direction: column;
    gap: 40px;
  }

  .hot_about_img,
  .hot_about_content {
    width: 100%;
  }

  .hot_about_list {
    grid-template-columns: 1fr;
  }

}

.testimonial_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .3rem;
}

.testimonial_item {
  position: relative;
  padding: .45rem;
  background: #fff;
  box-shadow: var(--i_shadow);
  transition: .3s;
}

.testimonial_item:hover {
  transform: translateY(-6px);
}

.testimonial_item .avatar {
  width: .82rem;
  height: .82rem;
  margin-bottom: .25rem;
}

.testimonial_item .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial_item iconify-icon {
  position: absolute;
  right: .35rem;
  top: .35rem;
  font-size: .6rem;
  color: rgba(201, 154, 90, .18);
}

.testimonial_item p {
  margin-bottom: .25rem;
  color: #666;
  line-height: 1.9;
  font-style: italic;
}

.testimonial_item .author strong {
  display: block;
  color: var(--i_color2);
  font-size: .2rem;
}

.testimonial_item .author span {
  display: block;
  margin-top: .05rem;
  color: #999;
  font-size: .14rem;
}

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

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

  .testimonial_item {
    padding: .32rem;
  }
}

.faq_list {
  max-width: 9.5rem;
  margin: 0 auto;
}

.faq_item {
  margin-bottom: .18rem;
  background: #fff;
  box-shadow: var(--i_shadow);
  overflow: hidden;
}

.faq_q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .3rem;
  padding: .28rem .35rem;
  cursor: pointer;
}

.faq_q h3 {
  margin: 0;
  font-size: .22rem;
  color: var(--i_color2);
}

.faq_q iconify-icon {
  flex-shrink: 0;
  font-size: .28rem;
  color: var(--i_color);
  transition: .3s;
}

.faq_a {
  display: none;
  padding: .2rem .35rem;
}

.faq_a p,
.faq_a li {
  color: #666;
  font-size: .16rem;
  line-height: 1.8;
}

.faq_a ul {
  margin-top: .15rem;
  padding-left: .22rem;
}

.faq_a li {
  list-style: disc;
  margin-bottom: .08rem;
}

.faq_item.active .faq_a {
  display: block;
}

.faq_item.active .faq_q iconify-icon {
  transform: rotate(45deg);
}

.faq_item.active .faq_q {
  border-bottom: 1px solid var(--border_color);
}

@media screen and (max-width:768px) {
  .faq_q {
    padding: .22rem .25rem;
  }

  .faq_q h3 {
    font-size: .18rem;
  }

  .faq_a {
    padding: 0 .25rem .25rem;
  }
}

.quote_box {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: .5rem;
  padding: .7rem;
  background:
    linear-gradient(135deg,
      #C99A5A 0%,
      #D8B178 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote_box::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(201, 154, 90, .18);
}

.quote_txt,
.quote_action {
  position: relative;
  z-index: 2;
}

.quote_txt span {
  display: inline-block;
  margin-bottom: .15rem;
  color: var(--i_color2);
  font-size: .16rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quote_txt h2 {
  max-width: 7rem;
  font-size: .46rem;
  line-height: 1.2;
  color: #fff;
}

.quote_txt p {
  margin-top: .22rem;
  max-width: 6.5rem;
  color: rgba(255, 255, 255, .82);
  font-size: .17rem;
  line-height: 1.8;
}

.quote_txt ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .15rem .3rem;
  margin-top: .35rem;
}

.quote_txt li {
  display: flex;
  align-items: center;
  gap: .1rem;
  color: rgba(255, 255, 255, .88);
  font-size: .15rem;
}

.quote_txt li iconify-icon {
  color: var(--i_color2);
  font-size: .22rem;
}

.quote_action {
  padding: .4rem;
  background: #fff;
  color: var(--i_color2);
}

.quote_action h3 {
  font-size: .28rem;
  color: var(--i_color2);
}

.quote_action p {
  margin: .18rem 0 .3rem;
  color: #666;
  line-height: 1.7;
}

.quote_action .i_btn {
  width: 100%;
}

.quote_mail {
  display: block;
  margin-top: .18rem;
  text-align: center;
  color: #666;
  transition: .3s;
}

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

/* 平板端 */
@media screen and (max-width: 1024px) {
  .quote_box {
    grid-template-columns: 1fr;
    gap: .35rem;
    padding: .55rem .45rem;
  }

  .quote_txt h2 {
    max-width: 100%;
    font-size: .4rem;
  }

  .quote_txt p {
    max-width: 100%;
    font-size: .16rem;
  }

  .quote_action {
    padding: .35rem;
  }
}


/* 手机端 */
@media screen and (max-width: 768px) {
  .quote_box {
    grid-template-columns: 1fr;
    gap: .32rem;
    padding: .45rem .28rem;
  }

  .quote_box::after {
    right: -1.3rem;
    top: -1.3rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .quote_txt span {
    font-size: .13rem;
    letter-spacing: 1.5px;
  }

  .quote_txt h2 {
    font-size: .34rem;
    line-height: 1.25;
  }

  .quote_txt p {
    margin-top: .18rem;
    font-size: .15rem;
    line-height: 1.7;
  }

  .quote_txt ul {
    grid-template-columns: 1fr;
    gap: .12rem;
    margin-top: .28rem;
  }

  .quote_txt li {
    font-size: .14rem;
  }

  .quote_action {
    padding: .3rem;
  }

  .quote_action h3 {
    font-size: .24rem;
  }

  .quote_action p {
    margin: .15rem 0 .25rem;
    font-size: .15rem;
  }
}


/* 小手机 */
@media screen and (max-width: 480px) {
  .quote_box {
    padding: .38rem .22rem;
  }

  .quote_txt span {
    font-size: .12rem;
  }

  .quote_txt h2 {
    font-size: .28rem;
  }

  .quote_txt p {
    font-size: .14rem;
  }

  .quote_txt ul {
    display: none;
  }

  .quote_action {
    padding: .25rem .22rem;
  }

  .quote_action h3 {
    font-size: .22rem;
  }

  .quote_mail {
    font-size: .14rem;
  }
}


/* ==========================================================================
   服务
   ========================================================================== */
.hot-process {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  color: #10284f;
}

.hot-process .wrap {
  width: min(92%, 1400px);
  margin: 0 auto;
}


.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
}

.process-item {
  position: relative;
  min-height: 360px;
  padding: 62px 25px 35px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.process-item::after {
  content: ">";
  position: absolute;
  right: -24px;
  top: 45%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--i_color2);
  font-weight: 700;
}

.process-item:last-child::after {
  display: none;
}

.process-item .num {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C99A5A 0%, #D8B178 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}

.process-list .img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
}

.process-list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-item h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 18px 0;
  color: #222;
  font-weight: 800;
}

.process-item h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background: var(--i_color2);
  margin: 18px auto 0;
  border-radius: 10px;
}

.process-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #5f6b7a;
  margin: 0;
}

.process-advantages {
  margin: 45px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid #ddd;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.process-advantages li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #10284f;
}

.process-advantages iconify-icon {
  font-size: 36px;
  color: var(--i_color);
}

@media (max-width: 1200px) {
  .process-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 55px;
  }

  .process-item::after {
    display: none;
  }

  .process-advantages {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hot-process {
    padding: 55px 0;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .process-item {
    min-height: auto;
  }

  .process-advantages {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

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

.strength_box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
  align-items: center;
}

.strength_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
}

.strength_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

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

.strength_nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.num_item {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
}

.num_item h3 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #fff;
}

.num_item h3 b {
  font-size: 18px;
  margin-left: 3px;
  font-weight: 600;
}

.num_item p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.strength_right {
  display: grid;
  gap: 22px;
}

.strength_item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.strength_item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.strength_item .icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.strength_item .icon iconify-icon {
  font-size: 32px;
}

.strength_item:hover .icon {
  background: var(--theme-color, #c89b5c);
}

.strength_item h3 {
  font-size: 23px;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #111;
}

.strength_item p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 10px;
}

.strength_item p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .strength_box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .strength_item {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .strength_item .icon {
    width: 58px;
    height: 58px;
  }

  .strength_item .icon iconify-icon {
    font-size: 28px;
  }

  .strength_item h3 {
    font-size: 21px;
  }

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

  .num_item h3 {
    font-size: 30px;
  }
}