/*
Theme Name: Astros
Version: 1.0
Description: 三鸟科技提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：三鸟科技
*/
@charset "utf-8";
/* 调用外部字体 */
@font-face {
  font-family: "dinc";
  src: url("static/fonts/DINC-B.otf") format("truetype");
}
@font-face {
  font-family: "Opensans";
  src: url("./static/fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Opensans";
  src: url("./static/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Opensans";
  src: url("./static/fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Opensans";
  src: url("./static/fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 900;
}
:root {
  --i_color: #28b490;
  --i_color2: #cde394;
  --header_height: 90px;
  --header_height_reduce: 80px;
  --border_color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  :root {
    --header_height: 60px;
    --header_height_reduce: 60px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}
* {
  box-sizing: border-box;
  font-size: 18px;
  line-height: 150%;
  font-family: "Opensans", Arial, Helvetica, sans-serif;
}
.bc {
  background: #f3f3f3;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.container {
  overflow: hidden;
}
.pr {
  position: relative;
}
.clear {
  clear: both;
}
.wrap_top {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.wrap {
  width: 73%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.wrap_l {
  padding-left: 13.5%;
}
.wrap_r {
  padding-right: 13.5%;
}
@media screen and (max-width: 1600px) {
  .wrap {
    width: 86%;
  }
  .wrap_l {
    padding-left: 7%;
  }
  .wrap_r {
    padding-right: 7%;
  }
}
@media screen and (max-width: 1366px) {
  .wrap {
    width: 88%;
  }
  .wrap_l {
    padding-left: 6%;
  }
  .wrap_r {
    padding-right: 6%;
  }
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 90%;
  }
  .wrap_l {
    padding-left: 5%;
  }
  .wrap_r {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap,
  .wrap_top {
    width: 94%;
  }
  .wrap_l,
  .wrap_r {
    padding-left: 3%;
    padding-right: 3%;
  }
  .wrap_top {
    position: initial;
  }
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2014;
}
.top {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
/* logo */
.logo {
  height: var(--header_height);
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.logo a {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 0.6rem;
}
@media screen and (max-width: 1024px) {
  .logo {
    float: left;
  }
}
/* 导航 */
@media screen and (min-width: 1024px) {
  .i_nav {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    z-index: 2014;
    margin-left: auto;
  }
  .i_nav > li {
    margin: 0 0.22rem;
    position: relative;
  }
  .i_nav > li > a {
    position: relative;
    display: block;
    font-size: 0.16rem;
    text-transform: uppercase;
    color: #222;
    font-weight: bold;
    line-height: var(--header_height);
    white-space: nowrap;
  }
  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > li:hover > 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/public/arrow_down_hollow_hei.svg") no-repeat
      center;
    background-size: 100%;
  }
  .i_nav .sub-menu {
    display: none;
    position: absolute;
    border-top: 2px solid var(--i_color);
    background: #f8f8f8;
    min-width: 1.6rem;
  }
  .i_nav .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu li::before,
  .i_nav .sub-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
  }
  .i_nav .sub-menu li::before {
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 8%);
  }
  .i_nav .sub-menu li::after {
    right: 0;
    width: 0;
    background: var(--i_color);
  }
  .i_nav .sub-menu a {
    display: block;
    padding: 0 0.8rem 0 0.2rem;
    font-size: 0.15rem;
    color: #666;
    line-height: 0.44rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    left: 0;
    text-transform: capitalize;
  }
  .i_nav .sub-menu a::before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-left: 8px solid var(--i_color);
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    left: -0.1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .i_nav .sub-menu li:hover::after {
    right: initial;
    left: 0;
    width: 100%;
  }
  .i_nav .sub-menu > li:hover > a {
    left: 0.16rem;
  }
  .i_nav .sub-menu > li:hover > a {
    color: var(--i_color);
  }
  .i_nav .sub-menu > li:hover > a::before {
    left: 0;
  }
  .i_nav .sub-menu li,
  .i_nav .sub-menu li::after,
  .i_nav .sub-menu a,
  .i_nav .sub-menu a::before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav .sub-menu .sub-menu {
    display: none;
    position: absolute;
    top: -2px;
    left: 100%;
    background: var(--i_color);
    min-width: 1.4rem;
  }
  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: rgb(255 255 255 / 15%);
  }
  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;
    color: #fff;
  }
  .i_nav .sub-menu .sub-menu li:hover {
    background: rgb(255 255 255 / 15%);
  }
  .i_nav .sub-menu .sub-menu li:hover a {
    color: #666;
  }
}
@media screen and (max-width: 1440px) {
  .i_nav > li > a {
    font-size: 0.16rem;
  }
  .i_nav .sub-menu a {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav > li {
    margin: 0 0.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav > li {
    margin: 0 0.16rem;
  }
  .i_nav > li > a {
    font-size: 14px;
  }
  .i_nav .sub-menu a {
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: absolute;
    top: var(--header_height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header_height));
    background: #fff;
    overflow-y: auto;
    z-index: 2;
  }
  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }
  .i_nav > li {
    margin: 0 0;
    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: 42px;
    height: 42px;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 18px;
    -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 {
    padding: 0 3%;
    font-size: 15px;
    color: #555;
    line-height: 42px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav .sub-menu a {
    display: block;
    padding: 0 30px;
    font-size: 14px;
    color: #888;
    line-height: 36px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border_color);
  }
  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
}
/* 移动端导航按钮 */
.nav_menu {
  position: absolute;
  width: 22px;
  height: 16px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  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 {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.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;
  }
}
.top_r {
  --size: 20px;
}
.top_r {
  margin-left: 0.3rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-right: 60px;
  }
  .top_r {
    --size: 18%;
  }
}
.top_search_ico {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  margin-right: 0.3rem;
  position: relative;
}
.top_search_ico::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.15rem;
  transform: translate(0, -50%);
  width: 0.01rem;
  height: 0.2rem;
  background-color: #666;
}
.top_search_ico iconify-icon {
  font-size: var(--size);
  cursor: pointer;
  color: #333;
}
.top_search_ico.on iconify-icon {
  color: var(--i_color);
}
.top_language {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  position: relative;
}
.top_language > iconify-icon {
  font-size: var(--size);
  cursor: pointer;
  color: #333;
}
.top_language.on > iconify-icon {
  color: var(--i_color);
}
.top_language_list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(var(--header_height) - 0.2rem);
  right: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_language_list.on {
  visibility: visible;
  opacity: 1;
  top: var(--header_height);
  box-shadow: 0.04rem 0.06rem 0.1rem rgb(0 0 0 / 10%);
}
.top_language_list ul {
  overflow: hidden;
}
.top_language_list li {
  background: #fff;
}
.top_language_list a > span {
  display: block;
  padding: 0 14px;
  min-width: 100px;
  overflow: hidden;
}
.top_language_list img,
.top_language_list .trp-ls-language-name {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 0.12rem;
  color: #666;
  line-height: 0.3rem;
}
.top_language_list li:hover {
  background: var(--i_color);
}
.top_language_list li:hover .trp-ls-language-name {
  color: #fff;
}
.top_language,
.top_language > i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .top_language {
    margin-left: 0.2rem;
  }
}
/* search main */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  position: fixed;
  top: -1rem;
  left: 0;
  width: 100%;
  padding: 0.16rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 6;
}
.top_search.on {
  top: var(--header_height);
  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));
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0 0 0.12rem;
}
.top_search_btn {
  font-size: 0;
  width: calc(var(--search_height));
  height: var(--search_height);
  background: var(--i_color) url(static/images/search.svg) no-repeat center;
  background-size: 0.2rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}
header,
.logo,
.logo img,
.i_nav > li > a,
.top_r,
.nav_list_show {
  -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;
}
/* 头部 contact按钮 */
.top_contact {
  margin-left: 0rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
/* -------------------波浪按钮------------- */
.wave_button {
}
.wave_button a {
  display: block;
}
.wave_button .c-button {
  font-size: 0.18rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  display: block;
  vertical-align: middle;
  position: relative;
  width: 1.5rem;
  height: 0.5rem;
  background-color: var(--i_color);
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 1;
}
.wave_button .c-button--gooey {
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: all 700ms ease;
}
.wave_button .c-button--gooey .c-button__blobs {
  height: 100%;
  filter: url(#goo);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -3px;
  right: -1px;
  z-index: -1;
}
.wave_button .c-button--gooey .c-button__blobs div {
  background-color: var(--i_color2);
  width: 34%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  transform: scale(1.4) translateY(125%) translateZ(0);
  transition: all 700ms ease;
}
.wave_button .c-button--gooey .c-button__blobs div:nth-child(1) {
  left: -5%;
}
.wave_button .c-button--gooey .c-button__blobs div:nth-child(2) {
  left: 30%;
  transition-delay: 60ms;
}
.wave_button .c-button--gooey .c-button__blobs div:nth-child(3) {
  left: 66%;
  transition-delay: 25ms;
}
.wave_button .c-button--gooey:hover {
  color: #fff;
}
.wave_button .c-button--gooey:hover .c-button__blobs div {
  transform: scale(1.4) translateY(0) translateZ(0);
}
@media screen and (max-width: 1024px) {
  .top_contact {
    display: none;
  }
  .top_search_ico::after {
    display: none;
  }
  .wave_button .c-button {
    height: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}
/* 下拉 */
@media screen and (min-width: 1025px) {
  .drop_p .sub-menu {
    display: none !important;
  }
}
.drop {
  position: relative;
  box-shadow: var(--i_shadow);
  position: fixed;
  top: var(--header_height);
  left: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  display: none;
  border-top: 1px solid var(--border_color);
}
.drop_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  padding: 0.4rem;
  gap: 0.2rem;
}
.drop_list > li {
  flex: 1;
}
.drop_list > li > a {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.drop_list > li:hover > a,
.drop_list > li.curr > a {
  color: var(--i_color);
}
.drop_list ul a {
  font-size: 0.16rem;
  color: #666;
}
.drop_list ul li:hover a,
.drop_list ul .curr a {
  color: var(--i_color);
  text-decoration: underline;
}
.full_h {
  height: var(--header_height);
}
.fullMask {
  width: 100%;
  height: 90vh;
}
@media screen and (max-width: 1024px) {
  .fullMask {
    display: none;
  }
}
.main {
  position: relative;
  z-index: 2;
}
/* banner */
.banner {
  position: fixed;
  top: var(--header_height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header_height));
  overflow: hidden;
}
.banner .swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.banner .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.banner .swiper-slide {
  height: 0;
  padding-bottom: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide > img,
.banner .swiper-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .banner .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(140, 180, 144, 0.65);
  position: absolute;
  left: 0;
  bottom: 0;
} */
.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 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0.4rem;
  width: auto;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  z-index: 3;
}
.banner-pagination .swiper-pagination-bullet {
  display: block;
  width: 0.5rem;
  height: 2px;
  margin: 0 0.08rem;
  background: rgb(255 255 255 / 50%);
  position: relative;
  outline: none;
}
.banner-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--i_color);
}
.banner-pagination .swiper-pagination-bullet-active::before {
  -webkit-animation: w100 5800ms 1;
  animation: w100 5800ms 1;
}
@keyframes w100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .banner {
    position: relative;
    top: initial;
    height: auto;
    -webkit-border-radius: 0 0;
    border-radius: 0 0;
  }
  .banner .swiper-slide {
    padding-bottom: 46%;
  }
  .banner-button-prev,
  .banner-button-next {
    display: none;
  }
  .banner-pagination .swiper-pagination-bullet {
    width: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .banner .swiper-slide {
    padding-bottom: 64%;
  }
  .banner-pagination {
    bottom: 0.2rem;
  }
}
/* banner上文字 */
.banner .wrap {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-shadow: 2px 2px 10px #666;
}
.b_t1 {
  width: 60%;
  background: rgb(255 255 255 / 20%);
  backdrop-filter: blur(1px);
  padding: 0.2rem;
}
.b_t1 h6 {
  font-size: 0.6rem;
  color: #fff;
  font-weight: bold;
  line-height: 100%;
  position: relative;
}
.b_t1 p {
  font-size: 0.24rem;
  color: #fff;
  position: relative;
  padding: 4px 10px;
  margin: 0.3rem 0;
  text-transform: capitalize;
}
.b_t2 {
  margin-left: auto;
  color: #fff;
}
.b_t3 {
  text-align: center;
}
.b_t3 .i_more {
  margin: 0 auto;
}
.b_t3 h6 {
  font-size: 0.5rem;
  color: #fff;
  font-weight: bold;
}
.b_t3 p {
  font-size: 0.22rem;
  color: #fff;
  margin: 0.2rem 0;
}
@media screen and (max-width: 1440px) {
  .b_t1 {
    padding: 0.3rem 0.2rem;
  }
  .b_t1 h6 {
    font-size: 0.5rem;
  }
  .b_t1 p {
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .b_t1 p img {
    max-width: 0.24rem;
  }
  .b_t3 h6 {
    font-size: 0.42rem;
  }
  .b_t3 p {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1366px) {
  .b_t1 h6 {
    font-size: 0.45rem;
  }
  .b_t1 > img {
    max-width: 4rem;
  }
  .b_t1 p {
    font-size: 0.2rem;
  }
  .b_t3 h6 {
    font-size: 0.36rem;
  }
  .b_t3 p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .b_t1 {
    width: 80%;
  }
  .b_t1 > img {
    max-width: 3rem;
  }
  .b_t1 h6 {
    font-size: 0.4rem;
  }
  .b_t1 p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .b_t1 {
    width: 90%;
  }
  .b_t1 h6 {
    font-size: 0.22rem;
  }
  .b_t1 .txt {
    width: 100%;
  }
  .b_t1 p {
    font-size: 0.16rem;
    padding: 2px 6px;
  }
  .b_t3 h6 {
    font-size: 0.22rem;
  }
  .b_t3 p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .b_t1 p {
    font-size: 14px;
  }
}
/* main */
main {
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
}
/* BOX - margin and padding */
.box_mg {
  margin: 0.8rem auto 0.8rem;
}
.box_pd {
  padding: 0.7rem 0;
}
@media screen and (max-width: 1440px) {
  .box_pd {
    padding: 0.5rem 0 0.6rem;
  }
}
@media screen and (max-width: 959px) {
  .box_pd {
    padding: 0.6rem 0 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .box_mg {
    margin: 30px auto 36px;
  }
  .box_pd {
    padding: 0.4rem 0 0.4rem;
  }
}
/* HOME - big title */
.i_tit {
  display: table;
  margin: 0 auto 0.6rem;
  text-align: center;
  overflow: hidden;
}
.i_tit h2 {
  text-align: center;
  font-size: 0.42rem;
  color: #100800;
  font-weight: 900;
  position: relative;
  text-transform: capitalize;
}
.i_tit h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d6d6d6;
}
.i_tit i {
  display: block;
  margin-top: 0.18rem;
  width: 50%;
  height: 2px;
  background: var(--i_color);
}
.i_tit.left {
  margin-left: 0;
}
.i_tit.left h2 {
  text-align: center;
}
.i_tit.white h2 {
  color: #fff;
}
@media screen and (max-width: 1366px) {
  .i_tit {
    margin: 0 auto 0.46rem;
  }
  .i_tit h2 {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 959px) {
  .i_tit {
    margin: 0 auto 0.3rem;
  }
  .i_tit h2 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 767px) {
  .i_tit h2 {
    font-size: 0.24rem;
  }
  .i_tit i {
    margin-top: 14px;
  }
}
@media screen and (max-width: 560px) {
  .i_tit i {
    margin-top: 0.08rem;
  }
}
.title {
  display: table;
  margin: 0 auto 0.4rem;
  text-align: center;
  overflow: hidden;
}
.title h2 {
  text-align: center;
  font-size: 0.36rem;
  color: #100800;
  font-weight: 900;
  line-height: 0.36rem;
  position: relative;
  text-transform: capitalize;
  padding-bottom: 30px;
}
.title h2::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(static/images/bc_title.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.title.left {
  margin-left: 0;
}
.title.left h2 {
  text-align: center;
}
.title.left h2::after {
  left: 0;
  transform: translateX(0);
}
.title.white h2 {
  color: #fff;
}
.title.white h2::after {
  background: url(static/images/bc_title_white.png) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 1366px) {
  .title {
    margin: 0 auto 0.46rem;
  }
  .title h2 {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 959px) {
  .title {
    margin: 0 auto 0.3rem;
  }
  .title h2 {
    font-size: 0.26rem;
  }
  .title h2::after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .title h2 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 560px) {
  .title h2 {
    font-size: 0.22rem;
  }
}
/* HOME - more */
.i_more {
  display: table;
  padding: 14px 0.5rem 14px 0.4rem;
  background: var(--i_color);
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
}
.i_more.center {
  margin-left: auto;
  margin-right: auto;
}
.i_more::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--i_color2);
}
.i_more::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 14px;
  width: 14px;
  height: 14px;
  background: url(static/images/public/arrow_right_hollow_bai.svg) no-repeat
    center;
  background-size: contain;
}
.i_more i {
  display: block;
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-transform: capitalize;
}
.i_more:hover::before {
  left: 0;
  right: initial;
  width: 100%;
}
.i_more::before,
.i_more::after,
.i_more i {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 959px) {
  .i_more {
    padding: 10px 0.5rem 10px 0.4rem;
  }
  .i_more i {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
}
/* HOME - curve pic */
.i_curve_pic {
  margin-top: -1rem;
  width: 100%;
  position: relative;
  background: url(static/images/i_curve_bg.webp) no-repeat center;
  background-size: 100%;
  z-index: -1;
  overflow: hidden;
}
.i_curve_pic::before {
  content: "";
  display: block;
  padding-bottom: 9%;
}
@media screen and (max-width: 767px) {
  .i_curve_pic {
    margin: -0.6rem auto 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .i_curve_pic {
    margin: -0.4rem auto 0.3rem;
  }
}
/* HOME - products */
.i_products {
  background-color: #f3f3f3;
  position: relative;
  overflow: hidden;
}
.i_products > h6 {
  position: absolute;
  bottom: 2%;
  left: 2%;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: transparent;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.07);
}
.ip_menu {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.2rem;
}
.ip_menu li {
  margin-bottom: 0.24rem;
  cursor: pointer;
}
.ip_menu span {
  font-size: 0.18rem;
  color: #222;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  padding-bottom: 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ip_menu li.current span,
.ip_menu li:hover span {
  border-color: var(--i_color);
  color: var(--i_color);
}

.i_p_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.i_p_list li {
  width: calc((100% - 0.8rem) / 3);
}
@media screen and (max-width: 1024px) {
  .i_p_list li {
    width: calc((100% - 0.4rem) / 2);
  }
}
@media screen and (max-width: 560px) {
  .i_p_list li {
    width: 100%;
  }
}
.i_p_list a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.i_p_list .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  background-color: #fff;
}
.i_p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.i_p_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_p_list .img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_p_list li:hover img {
  width: 105%;
  height: 105%;
}

.i_p_list h6 {
  color: #333;
  font-size: 0.2rem;
  margin: 0.2rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.i_p_list .txt {
  font-size: 0.18rem;
  margin: 0.2rem 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.i_p_list .txt * {
  font-size: 0.18rem;
}
.i_p_list li:hover h6 {
  color: var(--i_color);
}
.ip_content .box > section:not(:first-child) {
  display: none;
}
.i_btn {
  padding: 6px 0.3rem;
  background: var(--i_color);
  border-radius: 0.5rem;
  font-size: 0.16rem;
  color: #fff;
  background: var(--i_color);
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_btn:hover {
  background: var(--i_color2);
}

/* About */
.i_about {
  position: relative;
  /* background: url(static/images/i_about_bg.jpg) no-repeat center;
  background-size: cover; */
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}
.i_ab_pic {
  width: 55%;
  position: relative;
  overflow: hidden;
}
/* .i_ab_pic::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to left, #fbfaff, transparent);
} */
.i_ab_pic::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.i_ab_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_ab_txt {
  width: 42%;
}
.i_ab_txt .i_tit {
  margin-bottom: 0.34rem;
}
.i_ab_txt .i_tit h2 {
  font-size: 0.3rem;
}
.i_ab_txt h5 {
  font-size: 0.16rem;
  font-weight: bold;
  color: #100800;
  text-align: center;
}
.i_ab_txt article {
  margin: 12px 0 0.34rem;
  color: #444;
  font-size: 16px;
}
.i_ab_txt article * {
  font-size: 16px;
}
.i_ab_txt .i_more {
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .i_ab_pic {
    width: 56%;
  }
  .i_ab_txt {
    width: 54%;
  }
}
@media screen and (max-width: 1024px) {
  .i_ab_pic,
  .i_ab_txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
  .i_ab_txt {
    padding: 0.4rem 0 0.5rem;
  }
  .i_ab_txt h5 {
    font-size: 15px;
  }
  .i_ab_txt article {
    font-size: 13px;
  }
}
.i_v_btn {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  width: 0.7rem;
  height: 0.7rem;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_v_btn iconify-icon {
  font-size: 0.32rem;
  color: var(--i_color);
}
.i_v_btn::before,
.i_v_btn::after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: dot 2s infinite;
}
.i_v_btn::after {
  animation-delay: 0.3s;
}
@keyframes dot {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
@media screen and (max-width: 1024px) {
  .i_v_btn {
    width: 0.5rem;
    height: 0.5rem;
  }
  .i_v_btn iconify-icon {
    font-size: 26px;
  }
}
/* eject videos */
.vd_box {
  display: none;
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2014;
  width: 60%;
  max-height: 90%;
}
.vd_box::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.close_v {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--i_color);
  z-index: 2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.close_v::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.44rem;
  color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.vd_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .vd_box {
    width: 80%;
  }
  .close_v::before {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .vd_box {
    width: 88%;
  }
  .close_v {
    top: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .vd_box {
    width: 80%;
  }
  .close_v::before {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .vd_box {
    width: 88%;
  }
  .close_v {
    top: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}
/* .i_ab_list {
  background: url(static/images/bc_i_num.webp) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 561px) {
  .i_ab_list {
    background-attachment: fixed;
  }
} */
.i_ab_list dl {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.i_ab_list dt {
  width: 24%;
  padding: 0.2rem 0.4rem;
  text-align: center;
  /* backdrop-filter: blur(10px);
  background: #fcfcfc; */
}
.i_ab_list dt img {
  height: 0.8rem;
}
.i_ab_list dt h2 {
  margin: 0.2rem auto;
  font-size: 0.34rem;
  color: #151515;
  font-weight: 900;
}
.i_ab_list dt h2 i {
  font-weight: 900;
  font-size: inherit;
}
.i_ab_list dt p {
  font-size: 0.16rem;
  color: #444;
  line-height: 0.24rem;
  text-transform: capitalize;
}
.i_ab_list dt:hover img {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
}
.i_ab_list dt img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.four_active h2 {
  background: url("static/images/four.png") no-repeat center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1440px) {
  .i_ab_list dt img {
    height: 0.7rem;
  }
  .i_ab_list dt h2 {
    margin: 0.3rem auto 0.2rem;
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_ab_list dl {
    padding: 0.6rem 0 0.7rem;
  }
}
@media screen and (max-width: 767px) {
  .i_ab_list dt {
    padding: 0.2rem;
    width: 47%;
  }
  .i_ab_list dt img {
    height: 0.5rem;
  }
  .i_ab_list dt h2 {
    margin: 0.3rem auto 0.2rem;
    font-size: 0.22rem;
    font-weight: bold;
  }
  .i_ab_list dt h2 i {
    font-weight: bold;
  }
}
@media screen and (max-width: 560px) {
  .i_ab_list dt {
    margin: 0.2rem 0;
  }
  .i_ab_list dt img {
    height: 0.4rem;
  }
  .i_ab_list dt h2 {
    margin: 0.2rem auto 0.1rem;
  }
  .i_ab_list dt p {
    font-size: 0.15rem;
    line-height: 0.2rem;
  }
}
/* Engineering case */
.case_cont {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  z-index: 1;
}
.case_cont .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.case_cont .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.case-button-prev,
.case-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.44rem;
  height: 0.44rem;
  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;
  background: var(--i_color);
  z-index: 10;
  font-size: 20px;
  color: #fff;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.case-button-prev {
  left: 0;
}
.case-button-next {
  right: 0;
}
.case-button-prev:hover,
.case-button-next:hover {
  background-color: #fff;
  color: var(--i_color);
}
.case-pagination {
  text-align: center;
  margin-top: 20px;
}
.case-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  display: inline-block;
  margin: 0 8px;
  background: #666;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
}
.case-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--i_color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.case-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.case-pagination .swiper-pagination-bullet-active::after {
  width: 18px;
  height: 18px;
  opacity: 1;
}
.i_case_list li {
  border: 1px solid var(--border_color);
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
.i_case_list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--i_color);
}
.i_case_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.i_case_list .img:before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.i_case_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i_case_list .txt {
  padding: 0.2rem 0.1rem;
  text-align: center;
}
.i_case_list .txt h2 {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.i_case_list .txt h6 {
  font-weight: normal;
  margin-top: 0.06rem;
  font-size: 14px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.i_case_list .more {
  text-align: center;
  background: #f6f7f9;
}
.i_case_list .more i {
  display: table;
  margin: 0 auto;
  padding-right: 0.3rem;
  font-size: 12px;
  color: #3e3a39;
  font-weight: bold;
  line-height: 0.46rem;
  background: url(static/images/public/arrow_right_hollow_hei.svg) no-repeat
    center right;
  background-size: 0.1rem;
}
.i_case_list li:hover {
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 15%);
}
.i_case_list li:hover::after {
  width: 100%;
}
.i_case_list li:hover img {
  width: 100%;
  height: 100%;
}
.i_case_list li:hover h2 {
  color: var(--i_color);
}

.i_case_list li::after,
.i_case_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* home_news */
.home_news_bac {
  box-sizing: border-box;
  padding: 1rem 0;
}

/* 合作伙伴 */
.Hnews_partner_box {
}
.Hnews_partner {
  position: relative;
}
.Hnews_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.Hnews_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.Hnews_partner_list .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.Hnews_partner_list .swiper-slide a {
  display: block;
  width: 100%;
}
.Hnews_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.Hnews_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.Hnews_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Hnews_partner_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.Hnews_partner_text {
  margin-top: 0.2rem;
}
.Hnews_partner_text h2 {
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 0.96rem;
}
.Hnews_partner_text h3 {
  font-size: 0.18rem;
  color: #333;
  box-sizing: border-box;
  padding-left: 0.2rem;
  position: relative;
  margin-top: 0.2rem;
}
.Hnews_partner_text h3::after {
  content: "";
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background: linear-gradient(
    104deg,
    rgba(40, 180, 144, 1) 0%,
    rgba(129, 255, 255, 0) 85%
  );
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
/* 指示器 */
.Hnews_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 20px auto 0;
}
.Hnews_partner .pt-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0 5px;
  background: #bbb;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.Hnews_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}
/* 左右箭头 */
.Hnews_partner .pt-button-prev,
.Hnews_partner .pt-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
  outline: none;
}
.Hnews_partner .pt-button-prev:before,
.Hnews_partner .pt-button-next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  font-family: -apple-system, simsun, system-ui, sans-serif;
  letter-spacing: -2px;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.Hnews_partner .pt-button-prev {
  left: 1px;
}
.Hnews_partner .pt-button-prev:before {
  content: "<";
}
.Hnews_partner .pt-button-next {
  right: 1px;
}
.Hnews_partner .pt-button-next:before {
  content: ">";
}
@media screen and (max-width: 1440px) {
  .home_news_bac {
    padding: 0.8rem 0;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .Hnews_partner .pt-button-prev,
  .Hnews_partner .pt-button-next {
    display: none;
  }
  .Hnews_partner .pt-pagination {
    display: block;
  }
  .home_news_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .Hnews_partner_text h2 {
    font-size: 14px;
    line-height: 20px;
    height: 60px;
  }
}
@media screen and (max-width: 560px) {
  .Hnews_partner .pt-pagination {
    margin: 14px auto 0;
  }
  .Hnews_partner .pt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.i_faq {
  background: linear-gradient(to bottom, #eee, #fff);
}
.faq_cont {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.3rem 0;
}
.faq_cont .img {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.faq_cont .img::before {
  content: "";
  display: block;
  padding-bottom: 80%;
}
.faq_cont .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq_list {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .faq_cont .img,
  .faq_list {
    width: 100%;
  }
}
.faq_list li {
  margin-bottom: 0.1rem;
  background-color: rgb(255 255 255 / 50%);
  backdrop-filter: blur(5px);
  overflow: hidden;
  padding: 0.22rem 0.2rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.faq_list span {
}
.faq_list h3 {
  padding-right: 0.5rem;
  font-size: 0.18rem;
  color: #333;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}
.faq_list h3 i {
  width: 20px;
  height: 20px;
  background: url("static/images/public//arrow_down_hollow_hei.svg") no-repeat
    center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.faq_list .curr i {
  transform: translateY(-50%) rotate(180deg);
}
.faq_list p {
  display: none;
  margin: 0.1rem 0;
  font-size: 0.15rem;
  color: #666;
  line-height: 160%;
}
@media screen and (max-width: 1024px) {
  .faq_list h3 {
    font-size: 0.16rem;
  }
  .faq_list li {
    padding: 0.2rem 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .faq_list p {
    font-size: 14px;
  }
}
.i_brand_box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.i_brand_box::before {
  content: "";
  display: block;
  padding-bottom: 20%;
}
@media screen and (max-width: 1366px) {
  .i_brand_box::before {
    padding-bottom: 30%;
  }
}
@media screen and (max-width: 768px) {
  .i_brand_box::before {
    padding-bottom: 40%;
  }
}
.i_brand_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.1rem;
  overflow: hidden;
}
.i_brand_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.i_brand_list .swiper-slide {
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  box-sizing: border-box;
  height: calc((100% - 30px) / 2);
  position: relative;
}
.brand-pagination {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.brand-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  display: block;
  margin: 0 8px;
  background: #666;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
}
.brand-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.i_brand_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.1rem;
  border: 1px solid var(--border_color);
}
.i_brand_list .img::before {
  content: "";
  display: block;
  padding-bottom: 32.43%;
}
.i_brand_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_brand_list li:hover .img {
  border-color: var(--i_color);
}
/* footer */
footer {
  background: url(https://astroyadiqing.com/wp-content/uploads/2026/01/bc_foot.webp) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 5;
}
.f_cont {
  display: -webkit-flex;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.f_contact {
  width: 64%;
}
.f_contact .i_tit {
  margin-bottom: 0.34rem;
}
.f_info {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.f_info dd {
  max-width: 32%;
}
.f_info dt {
  padding-right: 0.2rem;
}
h3.f_tit {
  margin-bottom: 0.3rem;
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 900;
  text-transform: capitalize;
}
.f_contact_list li {
  margin-bottom: 0.18rem;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.f_contact_list li i {
  display: block;
  margin-right: 0.1rem;
  width: 0.24rem;
  height: 0.24rem;
  position: relative;
}
.f_contact_list li i img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.f_contact_list li span {
  width: calc(100% - 0.34rem);
}
.f_contact_list li span,
.f_contact_list li span a {
  display: inline-block;
  font-size: 0.16rem;
  color: #fff;
}
.f_contact_list li span b {
  font-weight: bold;
  margin-right: 4px;
  font-size: inherit;
}
.f_contact_list li a:hover {
  color: var(--i_color);
}
.f_media {
  margin-top: 0.5rem;
  padding-top: 10px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.f_media li {
}
.f_media li:not(:last-child) {
  margin-right: 0.2rem;
}
.f_media img {
  opacity: 0.7;
  height: 0.3rem;
  -webkit-filter: brightness(100);
  -moz-filter: brightness(100);
  -o-filter: brightness(100);
  -ms-filter: brightness(100);
  filter: brightness(100);
}

.f_media li:hover {
  -webkit-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -o-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  transform: translate(0, -8px);
}
.f_media li:hover img {
  opacity: 1;
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -o-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
}
.f_media li,
.f_media img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_nav {
}
.f_nav ul {
  display: none;
}
.f_nav a {
  display: block;
  font-size: 0.16rem;
  color: #fff;
  line-height: 0.32rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.f_nav a:hover {
  color: var(--i_color);
}
.f_form {
  width: 30%;
  padding: 0.2rem;
  background: #d6d6d6;
}
.f_form h2 {
  font-size: 0.28rem;
  color: #3e3a39;
  font-weight: bold;
  text-transform: capitalize;
}
.f_form h3 {
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #3e3a39;
  margin: 0.1rem 0 0.2rem 0;
  font-weight: normal;
}
/* footer form */
#wpforms-30 {
  --input_font_size: 0.16rem;
  --input_height: 0.42rem;
}
#wpforms-30 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-30 {
  width: 100%;
  overflow: hidden;
}
#wpforms-30 input,
#wpforms-30 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-30 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-30 .wpforms-error-container {
  line-height: 0.16rem;
}
#wpforms-30 .wpforms-field-container {
  width: 100%;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-30 .wpforms-field {
  position: relative;
}
#wpforms-30 .wpforms-field-label {
  font-size: 0;
}
#wpforms-30 .wpforms-field-label span {
  position: absolute;
  top: 12px;
  left: 3px;
  font-size: 0.14rem;
  color: red;
}
#wpforms-30 .wpforms-field {
  width: 100%;
  padding-bottom: 20px;
  background: transparent;
  overflow: hidden;
}
#wpforms-30 input {
  height: var(--input_height);
}
#wpforms-30 textarea {
  height: 1rem;
}
#wpforms-30 input,
#wpforms-30 textarea {
  width: 100%;
  border: 0;
  max-width: 100% !important;
  font-size: var(--input_font_size);
  color: #222;
  box-sizing: border-box;
  line-height: 120%;
  padding: 0.1rem;
  background-color: #fff;
}
#wpforms-30-field_1 {
  border-radius: 0.15rem 0.15rem 0 0;
}
#wpforms-30 input::-webkit-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 input::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 input::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 input::-ms-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 textarea::-webkit-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 textarea::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 textarea::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 textarea::-ms-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-30 #wpforms-30-field_1-error,
#wpforms-30 #wpforms-30-field_2-error,
#wpforms-30 #wpforms-30-field_3-error,
#wpforms-30 #wpforms-30-field_4-error {
  position: absolute;
  font-size: 14px;
}
#wpforms-30 .wpforms-submit-container button {
  font-size: 0.2rem;
  width: 100%;
  color: var(--i_color);
  display: inline-block;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 0.3rem;
  padding: 0.1rem 0.4rem;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}
#wpforms-30 .wpforms-submit-container button:hover {
  background-color: var(--i_color);
  border: 1px solid var(--i_color);
  color: #fff;
}
#wpforms-30 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}
.f_copy {
  width: 100%;
  background: #3e3d39;
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.f_copy .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.1rem;
}
.f_logo img {
  display: block;
  width: 50px;
  object-fit: contain;
}
.f_copy_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.1rem 0;
}
.f_copy_list dt {
  position: relative;
}
.f_copy_list dt:not(:first-child) {
  margin-left: 0.3rem;
}
.f_copy_list dt:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -0.15rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 80%;
  background: #fff;
}
.f_copy_list dt,
.f_copy_list p,
.f_copy_list a {
  font-size: 13px;
  color: #fff;
}
.f_copy_list a:hover {
  color: var(--i_color2);
}
@media screen and (max-width: 1440px) {
  .f_form {
    margin-top: 0;
  }
  .f_logo img {
    max-width: 2.6rem;
  }
  .f_copy_list {
    bottom: 14px;
  }
}
@media screen and (max-width: 1366px) {
  .f_logo img {
    max-width: 2.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .f_logo img {
    max-width: 2rem;
  }
  .f_copy_list {
    max-width: 70%;
  }
}
@media screen and (max-width: 959px) {
  .f_contact,
  .f_form {
    width: 100%;
  }
  .f_contact {
    margin-bottom: 0.3rem;
  }
  .f_copy {
    background: #3e3a39;
  }
  .f_copy::before {
    display: none;
  }
  .f_copy .wrap,
  .f_logo,
  .f_copy_list {
    position: initial;
    transform: none;
  }
  .f_logo {
    display: none;
  }
  .f_copy_list {
    width: 100%;
    max-width: 100%;
    padding: 0.2rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .f_info dd {
    width: 100%;
    max-width: 100%;
  }
  .f_media {
    margin-top: 0.3rem;
  }
  .f_info dt {
    display: none;
  }
  .f_copy_list dt {
    width: 100%;
    text-align: center;
  }
  .f_copy_list dt::before {
    display: none;
  }
  .f_copy_list dt,
  .f_copy_list p,
  .f_copy_list a {
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 560px) {
  .f_contact_list li span,
  .f_contact_list li span a {
    font-size: 14px;
  }
  .f_copy_list {
    padding: 0.1rem 0;
  }
}
/* Inside Page */
/* Inside Banner */
.in_banner {
  position: relative;
  width: 100%;
}
.in_banner::after {
  content: "";
  display: block;
  padding-bottom: 32.15%;
}
/* .in_banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(140, 180, 144, 0.3);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
} */
.in_banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 560px) {
  .in_banner::after {
    padding-bottom: 45%;
  }
}
.in_b_text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
.in_b_text h2 {
  font-family: dinc;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 900;
  text-transform: capitalize;
  text-shadow: 1px 1px var(--i_color2);
}
.in_b_text h2 i {
  font-family: Arial;
  font-size: 1.2rem;
  color: var(--i_color);
}
.in_b_text h2,
.in_b_text h2 i {
  line-height: 1.2rem;
}
.in_b_text span h3 {
  font-family: dinc;
  font-size: 0.66rem;
  color: #fff;
  line-height: 0.66rem;
  text-transform: capitalize;
  letter-spacing: -0.02rem;
  opacity: 0.85;
}
.in_b_text span h6 {
  font-family: dinc;
  font-size: 0.38rem;
  color: #fff;
  opacity: 0.75;
  letter-spacing: -0.01rem;
}
.in_banner_sol .in_b_text {
  top: 58%;
}
.in_banner_sol .in_b_text h2 {
  margin: 0 auto;
  color: #fff;
}
.in_banner_dealer .in_b_text h2 {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .in_b_text h2 {
    font-size: 0.72rem;
  }
  .in_b_text h2 i {
    font-size: 1rem;
  }
  .in_b_text span h3 {
    font-size: 0.54rem;
  }
  .in_b_text span h6 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 1366px) {
  .in_b_text h2 {
    font-size: 0.66rem;
  }
  .in_b_text h2 i {
    font-size: 0.9rem;
  }
  .in_b_text span h3 {
    font-size: 0.44rem;
    line-height: 0.44rem;
    letter-spacing: normal;
  }
  .in_b_text span h6 {
    font-size: 0.26rem;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 1200px) {
  .in_b_text h2 {
    font-size: 0.58rem;
    line-height: 0.8rem;
  }
  .in_b_text h2 i {
    font-size: 0.8rem;
  }
  .in_b_text span h3 {
    font-size: 0.4rem;
    line-height: 0.4rem;
  }
  .in_b_text span h6 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 560px) {
  .in_b_text {
    top: 58%;
  }
  .in_b_text h2 {
    font-size: 0.38rem;
    line-height: 0.56rem;
  }
  .in_b_text h2 i {
    font-size: 0.56rem;
  }
  .in_b_text span {
    margin-left: 0.1rem;
  }
  .in_b_text span h3 {
    font-size: 0.26rem;
    line-height: 0.26rem;
  }
  .in_b_text span h6 {
    font-size: 0.17rem;
  }
}
/* Breadcrumb */
.in_position {
  padding: 0.16rem 0;
}
.in_position .wrap {
  height: 20px;
}
.in_position a {
  display: block;
  float: left;
  font-size: 16px;
  color: #666;
  position: relative;
  line-height: 20px;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 6px;
  color: #666;
}
.in_position a:last-child {
  color: var(--i_color) !important;
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 959px) {
  .in_position a {
    font-size: 15px;
  }
  .in_position {
    bottom: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .in_position a {
    font-size: 14px;
  }
  .in_position {
    bottom: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .in_position a {
    font-size: 12px;
  }
  .in_position {
    bottom: 0rem;
  }
}
.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: #eee;
}
.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 {
  padding: 0;
  margin: 0;
  font-size: 1em;
  line-height: 0.5em;
  list-style: none;
}
.p_menu_list li {
  position: relative;
}
.p_menu_list li a {
  position: relative;
  line-height: 100%;
  font-size: 0.18rem;
  padding: 0.14rem 2%;
  display: block;
  box-sizing: border-box;
  text-transform: capitalize;
}
.p_menu_list ul {
  padding: 0;
  display: none;
  overflow: hidden;
}
.p_menu_list ul li {
  margin: 0;
  padding: 0;
  clear: both;
}
.p_menu_list ul li a {
  padding-left: 0.2rem;
  font-size: 0.16rem;
  outline: 0;
  color: #333;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.p_menu_list ul li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--i_color);
  position: absolute;
  left: -8px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_menu_list > li:hover > a,
.p_menu_list > li.active > a {
  color: var(--i_color);
}
.p_menu_list > li.active > a {
  font-weight: bold;
}
.p_menu_list ul li:hover a,
.p_menu_list ul li.active a {
  color: var(--i_color);
  margin-left: 0.1rem;
}
.p_menu_list ul li:hover a::after,
.p_menu_list ul li.active a::after {
  left: 0;
  opacity: 1;
}
.p_menu_list ul ul li a {
  color: #333;
  padding-left: 40px;
}
.p_menu_list ul ul li a:hover {
  color: var(--i_color);
}
.p_menu_list span {
  cursor: pointer;
  position: absolute;
  top: 0.16rem;
  right: 3%;
  z-index: 3;
  width: 20px;
  height: 20px;
  font-size: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p_menu_list > li:hover > span,
.p_menu_list > li.active > span {
  color: var(--i_color);
}
.p_menu_list ul li i {
  position: absolute;
  left: -0.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3rem;
  height: 0.3rem;
  background: url(static/images/ico_satr_p.png) no-repeat center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_menu_list ul li:hover i,
.p_menu_list ul li.active i {
  left: 0;
}
.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;
  }
}
.in_c_name h6 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
}
.in_c_name p {
  margin: 0.1rem 0 0.2rem;
  font-size: 0.16rem;
  color: #666;
  line-height: 170%;
}
@media screen and (max-width: 1440px) {
  .in_c_name h6 {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_c_name h6 {
    font-size: 0.22rem;
  }
  .in_c_name p {
    margin: 0.1rem 0 0.14rem;
  }
}
.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 {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  -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: 100%;
}
.in_p_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
  }
}
/* 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;
  }
}
/* Inside Page - Products details */
.p_det_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  gap: 0.4rem 0;
}
/* Photo Gallery TAB */
.pic_tab {
  position: relative;
  width: 38%;
}
.p_detailDesc {
  margin-left: auto;
  width: calc(62% - 0.6rem);
}
@media screen and (max-width: 959px) {
  .pic_tab,
  .p_detailDesc {
    width: 100%;
  }
}
.in_grid_cont {
  --sm_pic_width: 17%;
}
.in_grid_cont {
  position: relative;
  overflow: hidden;
}
.in_grid_cont:before {
  content: "";
  display: block;
  padding-bottom: 80.4%;
}
.in_grid_list_box {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sm_pic_width);
  height: 100%;
  padding: 40px 0;
}
.in_grid_list {
  height: 100%;
  overflow: hidden;
}
.in_grid_list .swiper-slide {
  cursor: pointer;
}
.in_grid_list .img {
  width: 100%;
  height: 100%;
  border: 1px solid #d8d8d8;
  position: relative;
  overflow: hidden;
}
.in_grid_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_grid_list .swiper-slide-thumb-active .img {
  border: 2px solid var(--i_color);
}
.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
}
.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  height: 30px;
  z-index: 999;
  outline: none;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ingrid-button-prev {
  top: 4px;
  background: url(static/imgs/arrow_up_hollow_hei.svg) no-repeat center;
  background-size: contain;
}
.ingrid-button-next {
  bottom: 4px;
  background: url(static/imgs/arrow_down_hollow_hei.svg) no-repeat center;
  background-size: contain;
}
.ingrid-button-prev.swiper-button-disabled,
.ingrid-button-next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.1;
}
/* 澶у浘 */
.in_grid_show_box {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--sm_pic_width) - 20px);
  height: 100%;
  padding: 0 0;
  margin: 0 auto;
}
.in_grid_show {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.in_grid_show .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.ingrid-pagination {
  display: block;
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(1, 167, 255, 0.15);
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.18rem;
  color: var(--i_color);
}
.ingrid-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 4px;
  background: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.ingrid-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}
.in_grid_cont:before {
  display: none;
}
.in_grid_show_box {
  position: initial;
  width: 99%;
  border-radius: 0.04rem;
  overflow: hidden;
  border: 1px solid #d8d8d8;
}
.in_grid_show .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_show .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_grid_list_box {
  margin-top: 0.3rem;
  padding: 0 0;
  position: relative;
  width: 100%;
  height: initial;
}
.in_grid_list {
  width: calc(100% - 60px);
  margin: 0 auto;
}
.in_grid_list_box .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.in_grid_list_box .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_grid_list .img {
  height: auto;
  border-radius: 0.04rem;
}
.in_grid_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.ingrid-button-prev,
.ingrid-button-next {
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 50px;
}
.ingrid-button-prev {
  left: 0;
  background: url(static/images/arrow_left_hollow_heiss.svg) no-repeat center;
  background-size: 18px;
}
.ingrid-button-next {
  left: initial;
  right: 0;
  background: url(static/images/arrow_right_hollow_heiss.svg) no-repeat center;
  background-size: 18px;
}
.p_detailDesc h1 {
  margin-bottom: 0.4rem;
  font-size: 0.24rem;
  color: #100800;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p_detailDesc h1 {
    font-size: 20px;
  }
}

.p_detailDesc h1 i {
  margin-right: 0.06rem;
  font-size: 0.3rem;
  font-weight: 900;
}
.p_share {
  margin-left: auto;
  position: relative;
}
.p_share a {
  display: block;
}
.p_share dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p_share dt {
  margin-right: 0.1rem;
}
.p_share dt img {
  display: block;
  height: 0.2rem;
}
.p_share dd {
  position: relative;
}
.p_share p {
  background: var(--i_color);
  padding: 0 16px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}
.p_share p i {
  display: block;
  padding-left: 0.2rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #fff;
  background: url(static/images/p_share_ico.svg) no-repeat left center;
  background-size: 16px;
}
.p_share_list {
  display: none;
  position: absolute;
  right: 0;
  border: 1px solid var(--border_color);
  background: #fff;
  z-index: 2;
}
.p_share_list.on {
  display: block;
}
.p_share_list li {
}
.p_share_list a {
  padding: 0 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 10px;
}
.p_share_list i {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  overflow: hidden;
}
.p_share_list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  -webkit-filter: brightness(0);
  -moz-filter: brightness(0);
  -o-filter: brightness(0);
  -ms-filter: brightness(0);
  filter: brightness(0);
}
.p_share_list b {
  font-size: 14px;
  color: #555;
}
.p_share_list li:hover {
  background: rgb(0 0 0 / 6%);
}
.single_grid_btn {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.25rem;
  margin: 0.5rem 0 0.2rem 0;
}
.single_grid_btn a:first-child {
  background: var(--i_color);
  border: 1px solid var(--i_color);
}
.single_grid_btn a:last-child {
  background: var(--i_color2);
  border: 1px solid var(--i_color2);
}
.single_grid_btn a {
  font-size: 0.18rem;
  color: #fff;
  padding: 0.15rem 0.9rem;
  border-radius: 0.04rem;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
@media screen and (max-width: 560px) {
  .single_grid_btn a {
    font-size: 0.16rem;
    padding: 0.15rem 0.7rem;
  }
}
.p_detailType {
  margin: 0.3rem 0;
  color: #666;
}
.p_detailType article * {
  font-size: 0.16rem;
}
.p_detailType article ul,
.p_detailType article ol {
  padding-left: 20px;
}
.p_tag {
  margin-top: 30px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.1rem;
}
.p_tag li {
  margin-right: 6px;
}
.p_tag p {
  font-weight: bold;
}
.p_tag p,
.p_tag a {
  font-size: 15px;
}
.p_tag a {
  color: #666;
}
.p_tag a:hover {
  text-decoration: underline;
  color: var(--i_color);
}
@media screen and (max-width: 768px) {
  .p_tag p,
  .p_tag a {
    font-size: 13px;
  }
}
@media screen and (max-width: 1440px) {
  .p_det_cont {
    --img_size: 500px;
    --sm_img_box: 400px;
  }
}
@media screen and (max-width: 1366px) {
  .p_det_cont {
    --img_size: 470px;
    --sm_img_box: 370px;
  }
}
@media screen and (max-width: 1200px) {
  .p_det_cont {
    --img_size: 440px;
    --sm_img_box: 340px;
  }
}
@media screen and (max-width: 959px) {
  .p_det_cont {
    --img_size: 100%;
    --sm_img_box: 500px;
  }
  .small-box .hover,
  .big-box {
    display: none !important;
  }
  .p_share dt img {
    height: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p_det_cont {
    --sm_img_box: 400px;
  }
}
@media screen and (max-width: 560px) {
  .p_det_cont {
    --sm_img_box: 300px;
  }

  .p_detailDesc h1 {
    margin-bottom: 0.2rem;
  }
  .p_share {
    margin: 0.2rem 0 0 0;
  }
  .p_share p i {
    padding-left: 0.28rem;
    line-height: 0.38rem;
  }
  .p_share_list {
    right: initial;
    left: 0;
  }
  .p_detailType dt {
    width: 100%;
    padding: 0.1rem 0 !important;
  }
  .p_detailType dt::before {
    display: none;
  }
  .p_detailType dt,
  .p_detailType dt i {
    font-size: 0.16rem;
  }
}
/* Accessories */
.p_Accessories {
}
.accessories_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.accessories_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.accessories_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  padding: 0.16rem;
  border: 1px solid var(--border_color);
}
.accessories_list .add_car_state {
}
.accessories_list .cont {
  display: block;
  margin: 0.2rem auto;
}
.accessories_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.accessories_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.accessories_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.accessories_list .cont p {
  margin-top: 0.22rem;
  text-align: center;
  font-size: 14px;
  color: #666;
}
.accessories_add_car {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.accessories_add_car input {
  width: 34%;
  padding-left: 0.1rem;
  border: 1px solid var(--border_color);
  text-align: center;
}
.accessories_add_car a {
  margin-left: auto;
  width: 60%;
  background: #f5f6f7;
  text-align: center;
  -webkit-border-radius: 0.05rem;
  -moz-border-radius: 0.05rem;
  border-radius: 0.05rem;
  font-size: 12px;
  color: #666;
}
.accessories_add_car input,
.accessories_add_car a {
  height: 0.3rem;
  line-height: 0.3rem;
}
.accessories_add_car a:hover {
  background: var(--i_color);
  color: #fff;
}
.accessories-button-prev,
.accessories-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.3rem;
  height: 0.8rem;
  background: #f9f9f9;
  z-index: 999;
  cursor: pointer;
  outline: none;
}
.accessories-button-prev {
  left: -0.4rem;
  background: url(static/images/public/arrow_left_hollow_hei2.svg) no-repeat
    center;
  background-size: 0.2rem;
}
.accessories-button-next {
  right: -0.4rem;
  background: url(static/images/public/arrow_right_hollow_hei2.svg) no-repeat
    center;
  background-size: 0.2rem;
}
.p_Accessories .swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.accessories-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.accessories-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 0.05rem;
  background: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.accessories-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .accessories-button-prev,
  .accessories-button-next {
    display: none;
  }
  .accessories-pagination {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .accessories_list .cont p {
    font-size: 0.17rem;
  }
  .accessories_add_car input,
  .accessories_add_car a {
    height: 0.44rem;
    line-height: 0.44rem;
  }
  .accessories-pagination {
    margin-top: 0.3rem;
  }
}
.p_detail {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.4rem 0;
}
.p_detail .cont {
  width: 73%;
  margin-right: auto;
}
.pd_form {
  width: 25%;
  background: #f7f7f7;
  padding: 0.2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p_detail .cont,
  .pd_form {
    width: 100%;
  }
}
.pd_form::after {
  content: "";
  width: 1.5px;
  height: 100%;
  background: linear-gradient(to top, var(--i_color), var(--i_color2));
  position: absolute;
  right: 0;
  top: 0;
}
.pd_form p {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.16rem;
  text-transform: capitalize;
}
.wpforms-hidden {
  display: none;
}
.p_det_list {
  margin-bottom: 0.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}
.p_det_list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border_color);
}
.p_det_list li {
  text-align: center;
  position: relative;
  cursor: pointer;
}
.p_det_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background: var(--i_color);
  z-index: 2;
}
.p_det_list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #fff;
  z-index: 1;
}
.p_det_list a {
  display: block;
  padding: 0 0.3rem;
  font-size: 0.18rem;
  color: #3e3a39;
  font-weight: bold;
  line-height: 0.5rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;
  position: relative;
  z-index: 3;
}
.p_det_list .current::before,
.p_det_list li:hover::before {
  top: 0;
}
.p_det_list .current::after,
.p_det_list li:hover::after {
  height: 100%;
}
.p_det_list .current a,
.p_det_list li:hover a {
  color: var(--i_color);
}
.p_det_list li::before,
.p_det_list li::after,
.p_det_list a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_det_show article p {
  min-height: 20px;
}
.p_det_show article img,
.p_det_show article iframe {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%;
}
.p_det_show article h2 {
  font-size: 0.26rem;
  color: var(--i_color);
  margin-bottom: 0.1rem;
}
.p_det_show article h3 {
  font-size: 0.24rem;
  color: var(--i_color);
  margin-bottom: 0.1rem;
}
.p_det_show article ul {
  margin: 0.1rem 0;
  padding-left: 0.2rem;
}
.in_faq_list li {
  margin-bottom: 0.15rem;
  background-color: rgb(255 255 255 / 10%);
  overflow: hidden;
}
.in_faq_list h3 {
  font-size: 0.2rem;
  color: #333;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  line-height: 150%;
}
.in_faq_list p {
  margin: 0.1rem 0;
  font-size: 0.16rem;
  color: #666;
  line-height: 160%;
}
@media screen and (max-width: 959px) {
  .p_det_list {
    border: 1px solid var(--border_color);
    flex-wrap: wrap;
  }
  .p_det_list::before {
    display: none;
  }
  .p_det_list li {
    width: 50%;
  }
  .p_det_list li::before {
    display: none;
  }
  .p_det_list .current::before {
    display: block;
  }
  .p_det_list a {
    padding: 0.2rem 0.3rem;
    line-height: 0.2rem;
    white-space: normal;
  }
}
@media screen and (max-width: 1024px) {
  .in_faq_list h3 {
    font-size: 16px;
  }
  .in_faq_list p {
    font-size: 14px;
  }
}
/* Customer Reviews */
.p_reviews {
  overflow: hidden;
}
.p_reviews_head {
  padding-bottom: 0.24rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border_color);
}
.p_reviews_head .tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p_reviews_head .tit h2 {
  font-size: 0.2rem;
  color: #100800;
  font-weight: 900;
  text-transform: capitalize;
}
.p_reviews_head .star_UL_fixed {
  margin: 0 0.1rem 0 0.3rem;
}
/* star */
.star_UL,
.star_UL_fixed {
  --ico_size: 20px;
}
.star_UL,
.star_UL_fixed {
  display: block;
  position: relative;
  padding: 0;
  border: none;
}
.star_UL ul,
.star_UL_fixed ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: calc(var(--ico_size) * 5);
  height: var(--ico_size);
}
.star_UL li,
.star_UL_fixed li {
  font-size: 0;
  position: relative;
  width: var(--ico_size);
  height: var(--ico_size);
  color: transparent;
  background: url(static/images/star_ico.png) no-repeat center;
  background-position-y: 0;
}
.star_UL li {
  cursor: pointer;
}
.star_UL li.on,
.star_UL_fixed li.on {
  background-position-y: calc(-1 * var(--ico_size));
  transition: background-position 0.7s;
}
.p_reviews_head .tit b {
  font-size: 0.16rem;
  color: #666;
  font-weight: bold;
}
.p_reviews_switch {
  margin-left: auto;
  width: 0.3rem;
  height: 0.3rem;
  border: 2px solid #666;
  position: relative;
  cursor: pointer;
}
.p_reviews_switch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 2px;
  background: #888;
}
.p_reviews_switch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 0;
  background: #888;
}
.p_reviews_switch.on::after {
  height: 70% !important;
}
.p_reviews_switch:hover {
  border-color: var(--i_color);
}
.p_reviews_switch:hover::before,
.p_reviews_switch:hover::after {
  background: var(--i_color);
}
.p_reviews_switch,
.p_reviews_switch::before,
.p_reviews_switch::after {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_reviews_cont {
}
.p_reviews_es {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.2rem 0;
}
.p_reviews_explain {
}
.p_reviews_explain .star_UL_fixed {
  float: left;
}
.p_reviews_explain b {
  display: inline-block;
  margin-left: 0.1rem;
  line-height: 20px;
}
.p_reviews_explain b,
.p_reviews_explain p {
  font-size: 14px;
}
.p_reviews_explain p {
  margin-top: 0.1rem;
}
.p_reviews_search {
  margin-left: auto;
}
.p_reviews_search form {
  display: block;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  border: 1px solid #ccc;
  overflow: hidden;
}
.reviews_search_ipt {
  width: 3rem;
  padding-left: 0.1rem;
}
.reviews_search_btn {
  width: 1rem;
  background: #7e7e7e url(static/images/public/search_1_bai.svg) no-repeat
    center;
  background-size: 0.22rem;
  cursor: pointer;
}
.reviews_search_ipt,
.reviews_search_btn {
  line-height: 0.36rem;
}
.p_reviews_ratings {
  padding: 0.26rem 0;
  border-top: 1px solid var(--border_color);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.p_reviews_ratings_list {
}
.p_reviews_ratings_list .tit {
  margin-bottom: 0.3rem;
  font-size: 0.16rem;
  color: #100800;
  font-weight: bold;
}
.p_reviews_ratings_list li {
  margin: 0.2rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
}
.p_reviews_ratings_list li span {
  width: 1.2rem;
  font-size: 14px;
  color: #666;
}
.p_reviews_ratings_list li i {
  display: block;
  width: 2.4rem;
  height: 0.1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  background: #d6d6d6;
  position: relative;
  overflow: hidden;
}
.p_reviews_ratings_list li i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--i_color);
}
.p_reviews_ratings_list li:nth-child(1) i::before {
  width: 96%;
}
.p_reviews_ratings_list li:nth-child(2) i::before {
  width: 92%;
}
.p_reviews_ratings_list li:nth-child(3) i::before {
  width: 82%;
}
.p_reviews_ratings_list li b {
  margin-left: 0.1rem;
  font-size: 14px;
  color: #3e3a39;
  font-weight: bold;
}
.write_reviews_box {
  width: 54%;
  margin-left: auto;
}
.write_reviews_btn {
  margin-bottom: 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.write_reviews_btn li {
  margin-right: 0.3rem;
  padding: 0 0.4rem;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  background: var(--i_color);
  overflow: hidden;
  cursor: pointer;
}
.write_reviews_btn .bt2 {
  display: none;
}
.write_reviews_btn p {
  color: #fff;
  line-height: 0.46rem;
}
.write_reviews_cont {
  display: none;
}
.write_reviews {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.write_reviews form {
  width: 100%;
}
.write_reviews textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 14px;
  min-height: 1rem;
  background: #f8f8f8;
}
.write_reviews .star_UL {
  margin-left: 0.24rem;
}
.write_reviews .star_UL dt {
  margin: 14px 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.write_reviews .star_UL span {
  width: 1.2rem;
  font-size: 14px;
  color: #666;
}
.p_reviews_list {
  overflow: hidden;
}
.p_reviews_list li {
  padding: 0.4rem 0;
  border-top: 1px solid var(--border_color);
  position: relative;
}
.p_reviews_list .cont {
  width: calc(100% - 0.4rem - 0.5rem);
}
.p_reviews_use_header {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p_reviews_use_header img {
  width: 0.5rem;
  height: 0.5rem;
  object-fit: cover;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.p_reviews_use_header h4 {
  margin: 0 0.4rem 0 0.2rem;
  font-size: 0.16rem;
  color: #666;
  font-weight: bold;
}
.p_reviews_use_header i {
  font-size: 14px;
  color: #999;
}
.p_reviews_list article {
  margin: 0.2rem 0 0.4rem 0.7rem;
  font-size: 0.16rem;
  color: #999;
  line-height: 0.24rem;
}
.thumbs_up {
  position: absolute;
  right: 0;
  top: 0.8rem;
}
.thumbs_up i {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: #999 url(static/images/good_ico.svg) no-repeat center;
  background-size: 0.18rem;
  cursor: pointer;
}
.thumbs_up i.on {
  background-color: var(--i_color);
}
.thumbs_up p {
  margin-top: 0.1rem;
  font-size: 0.13rem;
  text-align: center;
}
.helpful {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.helpful dt {
  font-size: 0.15rem;
  color: #555;
}
.helpful dd {
  padding: 0 0.1rem;
  margin-left: 0.1rem;
  background: #eee;
  font-size: 0.13rem;
  color: #555;
  cursor: pointer;
}
.helpful dt,
.helpful dd {
  line-height: 0.26rem;
}
@media screen and (max-width: 1024px) {
  .p_reviews_ratings_list {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .write_reviews_box {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .p_reviews_head .star_UL_fixed {
    margin: 0 0.1rem 0 0.2rem;
  }
  .p_reviews_explain {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .p_reviews_search {
    margin-left: 0;
  }
  .write_reviews {
    flex-wrap: wrap;
  }
  .write_reviews .star_UL {
    order: 1;
    margin: 0 0 0.2rem 0;
  }
  .write_reviews form {
    order: 2;
  }
  .thumbs_up {
    top: 0.6rem;
  }
}
@media screen and (max-width: 560px) {
  .write_reviews_btn li {
    padding: 0 0.2rem;
    margin-right: 0.2rem;
  }
  .p_reviews_list .cont {
    width: calc(100% - 0.4rem - 0.3rem);
  }
  .p_reviews_use_header h4 {
    margin: 0 0.2rem 0 0.2rem;
  }
}
.i_pro_curve_pic {
  margin-top: -0.6rem;
}
.in_rp_list {
  width: 100%;
  padding: 0 0.1rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.in_rp_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.in_rp_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border_color);
}
.in_rp_list a {
  display: block;
  text-align: center;
  padding: 0.3rem 0.3rem 0;
  background: #fff;
  overflow: hidden;
}
.in_rp_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_rp_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_rp_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_rp_list p {
  font-size: 14px;
  color: #666;
  line-height: 0.5rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rp-button-prev,
.rp-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.3rem;
  height: 0.8rem;
  background: #f9f9f9;
  z-index: 999;
  cursor: pointer;
  outline: none;
}
.rp-button-prev {
  left: -0.4rem;
  background: url(static/images/public/arrow_left_hollow_hei2.svg) no-repeat
    center;
  background-size: 0.2rem;
}
.rp-button-next {
  right: -0.4rem;
  background: url(static/images/public/arrow_right_hollow_hei2.svg) no-repeat
    center;
  background-size: 0.2rem;
}
.in_rp .swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.rp-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.rp-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 0.05rem;
  background: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.rp-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .rp-button-prev,
  .rp-button-next {
    display: none;
  }
  .rp-pagination {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .in_rp_list {
    padding: 0 0;
  }
  .rp-pagination {
    margin-top: 0.3rem;
  }
}
/* Products - Pop up form */
#mask_bg {
  display: none;
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
.products_list_form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  padding: 30px 30px 40px;
  background: rgb(255 255 255 / 100%);
  z-index: 9999999999999;
  overflow: auto;
}
.products_list_form.show {
  display: block !important;
}
.products_list_form .tit {
  margin-bottom: 40px;
}
.products_list_form .tit p {
  text-align: center;
  font-size: 26px;
  color: var(--i_color);
  font-weight: bold;
  line-height: 30px;
}
#wpforms-137 {
  --input_font_color: rgb(0 0 0 / 50%);
  --input_font_size: 14px;
  --input_height: 42px;
}
#wpforms-137 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-137 {
  width: 100%;
  overflow: hidden;
}
#wpforms-137 input,
#wpforms-137 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-137 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-137 .wpforms-error-container {
  line-height: 16px;
}
#wpforms-137 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-137 .wpforms-submit-container {
  padding: 0 !important;
  margin: 0 auto;
  width: 170px;
  height: 38px;
  background: var(--i_color);
  border: 2px solid var(--i_color);
  position: relative;
}
#wpforms-137 .wpforms-field-text {
  float: left;
  margin-right: 4%;
}
#wpforms-137 .wpforms-field-email,
#wpforms-137 .wpforms-field-text {
  width: 48% !important;
}
#wpforms-137 .wpforms-field-label {
  font-size: 0;
}
#wpforms-137 .wpforms-required-label {
  position: absolute;
  top: 16px;
  left: 5px;
  font-size: 16px;
  color: #f00;
}
#wpforms-137 .wpforms-field {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 18px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
#wpforms-137 input {
  height: var(--input_height);
}
#wpforms-137 textarea {
  min-height: 100px;
}
#wpforms-137 input,
#wpforms-137 textarea {
  width: 100%;
  max-width: 100% !important;
  font-size: var(--input_font_size);
  color: #333;
  border: 1px solid rgb(0 0 0 / 30%);
  line-height: var(--input_height);
  padding: 0 16px;
}
#wpforms-137 input::-webkit-input-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 input::-moz-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 input::-moz-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 input::-ms-input-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 textarea::-webkit-input-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 textarea::-moz-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 textarea::-moz-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 textarea::-ms-input-placeholder {
  color: var(--input_font_color);
  font-size: var(--input_font_size);
}
#wpforms-137 #wpforms-137-field_1-error,
#wpforms-137 #wpforms-137-field_2-error,
#wpforms-137 #wpforms-137-field_3-error,
#wpforms-137 #wpforms-137-field_5-error {
  position: absolute;
  font-size: 14px;
}
#wpforms-137 .wpforms-submit-container button {
  width: 100%;
  height: 38px;
  font-size: 16px;
  color: #fff;
  line-height: 38px;
  cursor: pointer;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}
#wpforms-137 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}
#wpforms-137 .wpforms-submit-container:after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#wpforms-137 .wpforms-submit-container:hover:after {
  display: block;
}
#wpforms-137 .wpforms-submit-container:hover {
  background: #fff;
}
#wpforms-137 .wpforms-submit-container:hover button {
  color: var(--i_color);
}
.close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: block;
  width: 30px;
  height: 30px;
  background: url(static/images/public/close_1_hei.svg) no-repeat center;
  background-size: 30px;
  cursor: pointer;
}
.close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.close {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_nav {
  width: 100%;
  margin: 0.3rem auto 0.4rem;
  position: relative;
  background: #fff;
}
.in_nav.navFix {
  position: fixed;
  left: 0;
  margin: 0 auto 0;
  top: var(--header_height_reduce);
  z-index: 2013;
}
.in_nav::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border_color);
}
.in_nav_tit {
  display: none;
  background: var(--i_color);
  text-align: center;
}
.in_nav_tit h6 {
  display: block;
  font-size: 0.22rem;
  font-weight: bold;
  color: #fff;
  line-height: 0.6rem;
  text-transform: capitalize;
  padding-right: 0.4rem;
  background: url(static/images/public/arrow_down_hollow_bai.svg) no-repeat
    right center;
  background-size: 0.26rem;
}
.in_nav_tit.on h6 {
  background: url(static/images/public/arrow_up_hollow_bai.svg) no-repeat right
    center;
  background-size: 0.26rem;
}
.in_nav ul {
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  position: relative;
  z-index: 2;
}
.in_nav li {
  /* width: 50%; */
  padding: 0 0.1rem;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  cursor: pointer;
}
.in_nav li::before,
.in_nav li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}
.in_nav li::before {
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  border-top: 12px solid var(--i_color);
}
.in_nav li::after {
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  border-top: 9px solid #fff;
}
.in_nav a {
  width: 100%;
  padding: 0.24rem 0;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.in_nav .line {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--i_color);
  z-index: -1;
}
.in_nav p {
  font-size: 0.15rem;
  color: #3e3a39;
  font-weight: bold;
  text-transform: capitalize;
}
.in_nav li:hover::before,
.in_nav .curr::before {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.in_nav li:hover::after,
.in_nav .curr::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}
.in_nav li:hover .line,
.in_nav .curr .line {
  width: 100%;
}
.in_nav .curr i img,
.in_nav li:hover i img {
  top: -30px !important;
}
.in_nav .curr p,
.in_nav li:hover p {
  color: var(--i_color);
}
.in_nav,
.in_nav li::before,
.in_nav li::after,
.in_nav .line,
.in_nav i img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 959px) {
  .in_nav {
    margin: 0.3rem auto 0;
  }
  .in_nav_tit {
    display: block;
  }
  .in_nav ul,
  .in_nav::before {
    display: none;
  }
  .in_nav ul {
    padding: 0.2rem;
    background: rgb(0 0 0 / 3%);
  }
  .in_nav li {
    width: 100%;
    margin-bottom: 0.1rem;
    background: #fff;
  }
  .in_nav li::before,
  .in_nav li::after {
    display: none;
  }
  .in_nav .line {
    height: 1px;
    z-index: 0;
  }
  .in_nav a {
    padding: 0.2rem 0;
  }
  .in_nav p {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
  .in_nav_tit h6 {
    font-size: 0.18rem;
  }
  .in_nav a {
    padding: 0.16rem 0;
  }
}
/* Inside Page - About */
.in_about {
  overflow: hidden;
}
.in_ab_cont {
  position: relative;
}
.in_ab_cont::before {
  opacity: 0.6;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: url(static/images/in_ab_bg.webp) no-repeat left bottom;
  background-size: contain;
}
.in_ab_cont .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.in_ab_logo {
  width: 36%;
}
.in_ab_logo h2 {
  margin-bottom: 0.2rem;
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: transparent;
  font-weight: 900;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.3);
}
.in_ab_logo img {
  width: 2rem;
  object-fit: contain;
}
.in_ab_text {
  width: 62%;
  margin-left: auto;
}
.in_ab_text .i_tit {
  margin: 0 0 0.34rem 0;
}
.in_ab_text h5 {
  font-size: 0.16rem;
  font-weight: bold;
  color: #100800;
}
.in_ab_text article {
  margin: 12px 0 0;
  font-size: 14px;
  color: #444;
}
.in_ab_text article * {
  font-size: 14px;
}
@media screen and (max-width: 1366px) {
  .in_ab_logo {
    width: 30%;
  }
  .in_ab_logo h2 {
    font-size: 0.46rem;
  }
  .in_ab_logo img {
    height: 0.6rem;
  }
  .in_ab_text {
    width: 69%;
  }
}
@media screen and (max-width: 959px) {
  .in_ab_logo {
    display: none;
  }
  .in_ab_text {
    width: 100%;
  }
  .in_ab_cont::before {
    width: 100%;
  }
  .in_ab_text .i_tit {
    margin-left: auto;
    margin-right: auto;
  }
  .in_ab_text h5 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
}
.in_ablist {
  background: url(static/images/in_ablist_bg.webp) no-repeat center;
  background-size: cover;
}
.in_ablist_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
  gap: 0.3rem 0;
}
.in_ab_list {
  width: 36%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.in_ablist_v {
  width: 53%;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.in_ab_list li {
  width: calc(50% - 0.15rem);
  text-align: center;
  color: #3e3a39;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.in_ab_list li:nth-child(2n) {
  margin-right: 0;
}
.in_ab_list .ico {
  width: 1rem;
  height: 1rem;
  margin: 0 auto;
  border: 1px solid var(--border_color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.in_ab_list .ico::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--i_color2);
}
.in_ab_list .ico img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.in_ab_list p {
  margin: 0.2rem 0;
  font-size: 0.16rem;
  font-weight: bold;
}
.in_ab_list span {
  font-size: 0.14rem;
}
.in_ablist_v .img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.in_ablist_v .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_ablist_v .i_sol_play {
  width: 0.86rem;
  height: 0.86rem;
}
.in_ab_list li:hover .ico::before {
  height: 100%;
}
.in_ab_list li:hover .ico img {
  -webkit-filter: brightness(100);
  -moz-filter: brightness(100);
  -o-filter: brightness(100);
  -ms-filter: brightness(100);
  filter: brightness(100);
}
.in_ablist_v .i_sol_play:hover {
  background-color: var(--i_color);
}
.in_ab_list .ico::before {
  -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;
}
@media screen and (max-width: 1440px) {
  .in_ablist_v {
    width: 57%;
  }
  .in_ab_list .ico {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media screen and (max-width: 1366px) {
  .in_ab_list .ico {
    width: 0.8rem;
    height: 0.8rem;
  }
  .in_ablist_v .i_sol_play {
    width: 0.74rem;
    height: 0.74rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_ab_list p {
    font-size: 0.15rem;
  }
  .in_ab_list,
  .in_ablist_v {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .in_ab_list .ico {
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .in_ab_list {
    width: 100%;
  }
  .in_ablist_v {
    position: initial;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .in_ab_list li {
    width: 100%;
  }
}
.in_culture {
}
.in_culture_cont {
  margin: 1.2rem auto 2.6rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.in_culture_text {
  width: 22%;
}
.in_culture_text span {
  display: block;
  padding-left: 1rem;
  position: relative;
}
.in_culture_text span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.62rem;
  height: 0.62rem;
  background: url(static/images/quotes.png) no-repeat center;
  background-size: contain;
}
.in_culture_text i {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--i_color);
}
.in_culture_text h4 {
  margin: 0.34rem 0 0.1rem;
  font-size: 0.18rem;
  font-weight: bold;
  color: #3e3a39;
}
.in_culture_text p {
  font-size: 14px;
  color: #555;
  line-height: 0.2rem;
}
/*动画*/
.fadeInRight {
  animation: fadeInRight 0.5s;
}
@keyframes fadeInRight {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation: fadeInLeft 0.4s;
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
.in_culture_list {
  padding: 0.2rem;
  width: 68%;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.in_culture_list li {
  display: block;
  width: 23%;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 15%);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  cursor: pointer;
}
.in_culture_list li::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_culture_list li::after {
  content: "";
  position: absolute;
  right: -0.3rem;
  bottom: -0.3rem;
  width: 0.16rem;
  height: 0.16rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--i_color);
}
.in_culture_list li:nth-child(odd) {
  top: 1.2rem;
}
/* .in_culture_list li:not(:first-child) {
	margin-left: -0.8rem;
} */
.in_culture_list span {
  position: absolute;
  top: 52%;
  left: 52%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.in_culture_list .ico {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--i_color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.in_culture_list .ico img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56%;
  height: 56%;
  -webkit-filter: brightness(100);
  -moz-filter: brightness(100);
  -o-filter: brightness(100);
  -ms-filter: brightness(100);
  filter: brightness(100);
  object-fit: cover;
}
.in_culture_list p {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  color: #3e3a39;
  font-weight: bold;
}
.in_culture_list .current {
  background: var(--i_color);
}
.in_culture_list .current::after {
  width: 0;
  height: 0;
}
.in_culture_list .current .ico {
  background: #fff;
}
.in_culture_list .current img {
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -o-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
}
.in_culture_list .current p {
  color: #fff;
}
.in_culture_list li,
.in_culture_list li::after,
.in_culture_list .ico,
.in_culture_list p {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1440px) {
  .in_culture_cont {
    margin: 0.9rem auto 2.6rem;
  }
}
@media screen and (max-width: 1366px) {
  .in_culture_text {
    width: 28%;
  }
  .in_culture_list {
    width: 60%;
  }
  .in_culture_list .ico {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .in_culture_text span::before {
    width: 0.4rem;
    height: 0.4rem;
  }
  .in_culture_text span {
    padding-left: 0.7rem;
  }
  .in_culture_cont {
    margin: 0.8rem auto 2.2rem;
  }
  .in_culture_list {
    width: 54%;
  }
  .in_culture_list li {
    width: 25%;
  }
  .in_culture_list .ico {
    width: 0.8rem;
    height: 0.8rem;
  }
  .in_culture_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 959px) {
  .in_culture_cont {
    margin: 0.5rem auto 0.6rem;
  }
  .in_culture_text {
    order: 2;
    margin-top: 0.2rem;
    width: 100%;
  }
  .in_culture_list {
    order: 1;
    width: 100%;
  }
  .in_culture_list li {
    width: 23%;
    top: 0 !important;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .in_culture_list li::after {
    display: none;
  }
  .in_culture_list span {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    -o-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
}
@media screen and (max-width: 767px) {
  .in_culture_text i {
    width: 12px;
    height: 12px;
  }
  .in_culture_text h4 {
    margin: 0.16rem 0 0.08rem;
  }
  .in_culture_text p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .in_culture_list {
    padding: 0.1rem;
  }
  .in_culture_list .ico {
    width: 0.54rem;
    height: 0.54rem;
  }
  .in_culture_list p {
    margin-top: 0.1rem;
  }
}
.in_ct {
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}
.in_ct::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  background: url(static/images/in_ab_bg.webp) no-repeat left bottom;
  background-size: contain;
}
.in_ct_cont {
  padding-left: 13.5%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.in_ct_text {
  width: 36%;
}
.in_ct_text .i_tit {
  margin: 0 0 0.3rem;
}
.in_ct_text article {
  font-size: 0.16rem;
  color: #666;
  line-height: 0.24rem;
}
.in_ct_t_list {
  margin-top: 0.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.in_ct_t_list dt {
  width: 50%;
  box-sizing: border-box;
  padding-right: 10%;
  cursor: pointer;
}
.in_ct_t_list .ico {
  position: relative;
  margin-left: 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--i_color);
}
.in_ct_t_list .ico::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgba(140, 180, 144, 0.2);
}
.in_ct_t_list .ico img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}
.in_ct_t_list .txt {
  margin-top: 0.34rem;
}
.in_ct_t_list h5 {
  font-size: 0.18rem;
  font-weight: bold;
  color: #3e3a39;
}
.in_ct_t_list p {
  margin-top: 0.14rem;
  font-size: 0.15rem;
  color: #666;
  line-height: 0.2rem;
}
.in_ct_t_list dt:hover .ico::before {
  -webkit-animation: zoom 1.5s infinite linear;
  animation: zoom 1.5s infinite linear;
}
@keyframes zoom {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 130%;
    height: 130%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
.in_ct_list_box {
  margin-left: auto;
  width: 61%;
  height: calc(100% - 0.4rem);
  box-sizing: border-box;
  padding: 0.8rem 0.3rem;
  background: #fff;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.in_ct_list {
  width: calc(100% - 0.8rem);
  margin-left: 0.8rem;
  overflow: hidden;
  z-index: 1;
}
.in_ct_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.in_ct_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_ct_list .img {
  box-sizing: border-box;
  border: 1px solid var(--border_color);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_ct_list .img::before {
  content: "";
  display: block;
  padding-bottom: 140%;
}
.in_ct_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_ct_list .txt {
  padding: 0.12rem 0;
  text-align: center;
  box-sizing: border-box;
}
.in_ct_list .txt p {
  font-size: 0.14rem;
  color: #3e3a39;
  font-weight: bold;
  line-height: 0.18rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.in_ct_list .swiper-slide:hover p {
  color: var(--i_color);
}
.tm_w {
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 0.8rem) / 3 - 4px);
  height: 100%;
  background: rgb(255 255 255 / 95%);
  z-index: 3;
}
/* left or right */
.ct-button-prev,
.ct-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  box-sizing: border-box;
  border: 1px solid #666;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
  outline: none;
  z-index: 4;
}
.ct-button-prev {
  left: 0;
  background: url(static/images/public/arrow_left_hollow_hei2.svg) no-repeat
    center;
  background-size: 20px;
}
.ct-button-next {
  right: calc(30% - 60px);
  background: url(static/images/public/arrow_right_hollow_hei2.svg) no-repeat
    center;
  background-size: 20px;
}
.ct-button-prev:hover,
.ct-button-next:hover {
  border-color: var(--i_color);
}
.ct-button-prev:hover {
  background: var(--i_color)
    url(static/images/public/arrow_left_hollow_bai2.svg) no-repeat center;
  background-size: 20px;
}
.ct-button-next:hover {
  background: var(--i_color)
    url(static/images/public/arrow_right_hollow_bai2.svg) no-repeat center;
  background-size: 20px;
}
.in_ct_list .swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
@media screen and (max-width: 1440px) {
  .in_ct_cont {
    padding-left: 7%;
  }
}
@media screen and (max-width: 1366px) {
  .in_ct_cont {
    padding-left: 6%;
  }
  .in_ct_text article {
    font-size: 0.14rem;
  }
  .in_ct_t_list {
    margin-top: 0.28rem;
  }
  .in_ct_t_list .ico {
    width: 0.8rem;
    height: 0.8rem;
  }
  .in_ct_t_list .txt {
    margin-top: 0.24rem;
  }
  .in_ct_t_list h5 {
    font-size: 0.16rem;
  }
  .in_ct_t_list p {
    font-size: 0.13rem;
  }
  .in_ct_list_box {
    padding: 0.6rem 0.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .in_ct_cont {
    padding-left: 5%;
  }
  .in_ct_list {
    width: calc(100% - 0.6rem * 2);
    margin-left: 0.6rem;
  }
  .tm_w {
    display: none;
  }
  .ct-button-prev,
  .ct-button-next {
    width: 0.36rem;
    height: 0.36rem;
    background-size: 14px;
  }
  .ct-button-next {
    right: 0;
  }
}
@media screen and (max-width: 959px) {
  .in_ct_text .i_tit {
    margin: 0 auto 0.3rem;
  }
  .in_ct_cont {
    padding-left: 3%;
    padding-right: 3%;
  }
  .in_ct_text {
    margin-bottom: 0.4rem;
    width: 100%;
  }
  .in_ct_list_box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .in_ct_text article {
    font-size: 0.18rem;
  }
  .in_ct_t_list h5 {
    font-size: 0.18rem;
  }
  .in_ct_t_list p {
    font-size: 0.16rem;
  }
  .in_ct_list_box {
    padding: 0.3rem 0.2rem;
  }
  .in_ct_list {
    width: 100%;
    margin-left: 0;
  }
  .ct-button-prev,
  .ct-button-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
}
.in_history {
  overflow: hidden;
}
.in_history_list {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.in_history_list:before {
  content: "";
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  background: var(--border_color);
}
.in_history_nav {
  width: calc(100% - 100px);
  padding-bottom: 0.5rem;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.in_history_nav .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
}
.in_history_nav .swiper-slide {
  text-align: center;
  flex-shrink: 0;
  position: relative;
}
/* Year */
.in_history_nav .num_box {
  height: 50px;
  margin-bottom: 20px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.in_history_nav .num_box h6 {
  text-align: center;
  font-size: 0.24rem;
  color: #bbb;
}
.in_history_nav .yuan {
  opacity: 1;
  display: block;
  margin: 0 auto;
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 2;
}
.in_history_nav .yuan:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #000;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  z-index: -1;
}
.in_history_nav .text {
  display: block;
  text-align: left;
  top: 0.4rem;
  padding: 0.3rem;
  border: 1px solid var(--border_color);
  position: relative;
  overflow: hidden;
}
.in_history_nav .text::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgb(140, 180, 144, 0.2);
}
.in_history_nav .text h2 {
  font-size: 0.17rem;
  color: #111;
  font-weight: bold;
}
.in_history_nav .text p {
  padding-right: 0.1rem;
  margin-top: 0.06rem;
  font-size: 0.13rem;
  color: #666;
  line-height: 0.2rem;
  overflow-y: auto;
}
.in_history_nav .text p::-webkit-scrollbar {
  width: 2px;
  height: 8px;
}
.in_history_nav .text p::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #333;
}
.in_history_nav .text p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: #f1f1f1;
}
.in_history_nav .text h2,
.in_history_nav .text p {
  position: relative;
}
.in_history_nav .swiper-slide:hover .num_box h6 {
  font-size: 0.4rem;
  color: var(--i_color);
  font-weight: bold;
}
.in_history_nav .swiper-slide:hover .yuan {
  opacity: 0;
}
.in_history_nav .swiper-slide:hover .text {
  top: -8px;
}
.in_history_nav .swiper-slide:hover .text::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: var(--i_color);
}
.in_history_nav .swiper-slide:hover .text h2,
.in_history_nav .swiper-slide:hover .text p {
  color: #fff;
}
.in_history_nav .num_box h6,
.in_history_nav .yuan,
.in_history_nav .text,
.in_history_nav .text::before,
.in_history_nav .text h2,
.in_history_nav .text p {
  -webkit-transition: all 0.36s ease;
  -moz-transition: all 0.36s ease;
  -ms-transition: all 0.36s ease;
  -o-transition: all 0.36s ease;
  transition: all 0.36s ease;
}
.in_history_list .history-button-prev,
.in_history_list .history-button-next {
  position: absolute;
  top: 60px;
  width: 30px;
  height: 30px;
  z-index: 999;
  outline: none;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  border-radius: 200px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.in_history_list .history-button-prev {
  left: 0;
  background: var(--i_color)
    url(static/images/public/arrow_left_hollow_bai2.svg) no-repeat center;
  background-size: 14px;
}
.in_history_list .history-button-next {
  right: 0;
  background: var(--i_color)
    url(static/images/public/arrow_right_hollow_bai2.svg) no-repeat center;
  background-size: 14px;
}
.in_history_list .swiper-button-disabled {
  cursor: not-allowed;
}
@media screen and (max-width: 1440px) {
  .in_history_nav .text p {
    max-height: 2rem;
  }
}
@media screen and (max-width: 1366px) {
  .in_history_nav .swiper-slide:hover .num_box h6 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .in_history_nav .text h2 {
    font-size: 0.19rem;
  }
  .in_history_nav .text p {
    padding-right: 0;
    overflow-y: hidden;
    font-size: 0.17rem;
    max-height: initial !important;
  }
}
@media screen and (max-width: 560px) {
}
.in_factory_list {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.in_factory_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.in_factory_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_factory_list .img {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  overflow: hidden;
  z-index: 2;
}
.in_factory_list .img:before {
  content: "";
  display: block;
  padding-bottom: 128%;
}
.in_factory_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_factory_list .swiper-slide:hover img {
  width: 110%;
  height: 110%;
}
.in_factory_list .swiper-slide,
.in_factory_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .in_factory_list .swiper-slide {
    padding: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
}
.in_rc {
  overflow: hidden;
}
.in_rc_cont {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 3;
}
.in_rc_text {
  width: 57%;
}
.in_rc_text .i_tit {
  margin: 0 0 0.3rem;
}
.in_rc_text article {
  font-size: 14px;
  color: #666;
  line-height: 0.22rem;
}
.in_rc_logo {
  padding-top: 0.4rem;
  display: -webkit-flex;
  display: flex;
  margin-left: auto;
  width: 38%;
}
.in_rc_logo dt {
  text-align: center;
  width: 50%;
}
.in_rc_logo img {
  max-width: 80%;
  max-height: 80%;
}
.in_rc .i_curve_pic {
  margin-top: -0.2rem;
  margin-bottom: -0.4rem;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .in_rc_text .i_tit {
    margin: 0 auto 0.3rem;
  }
  .in_rc_text {
    width: 100%;
  }
  .in_rc_logo {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .in_rc_text article {
    font-size: 0.17rem;
  }
  .in_rc_logo img {
    max-width: 70%;
    max-height: 70%;
  }
}
@media screen and (max-width: 560px) {
}
.in_bases {
  padding: 1.4rem 0 0.6rem;
  background: url(static/images/in_bases_bg.jpg) no-repeat center top;
  background-size: cover;
  overflow: hidden;
}
.in_bases article {
  font-size: 14px;
  color: #666;
  line-height: 0.22rem;
}
.in_bases_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.in_bases_list dt {
  width: 22%;
  padding: 14px;
  background: #fff;
  margin: 0.34rem 2% 0.3rem 0;
  position: relative;
  cursor: pointer;
}
.in_bases_list dt:nth-child(4n) {
  margin-right: 0;
}
.in_bases_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_bases_list .img::before {
  content: "";
  display: block;
  padding-bottom: 82%;
}
.in_bases_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_bases_list .txt {
  position: absolute;
  top: 64%;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0.2rem 0.2rem;
  background: rgb(244 160 0 / 80%);
}
.in_bases_list .txt p {
  font-size: 0.16rem;
  color: #fff;
  font-weight: bold;
  line-height: 0.2rem;
}
.in_bases_list dt:hover img {
  width: 110%;
  height: 110%;
}
.in_bases_list dt:hover .txt {
  top: 54%;
  background: rgb(244 160 0 / 100%);
}
.in_bases_list .img img,
.in_bases_list .txt {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .in_bases {
    padding: 0.6rem 0 0.6rem;
    background-position-y: bottom;
    background-size: contain;
  }
  .in_bases article {
    font-size: 0.18rem;
  }
  .in_bases_list {
    margin-top: 0.3rem;
  }
  .in_bases_list dt {
    width: 48%;
    margin: 0 4% 0.2rem 0;
    padding: 0;
    background: none;
  }
  .in_bases_list dt:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
}
.in_pt_list {
  width: 100%;
  padding: 0 0.1rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.in_pt_list::before {
  content: "";
  display: block;
  padding-bottom: 21%;
}
.in_pt_list .swiper-wrapper {
  position: absolute;
  top: 10px;
  width: 100%;
  height: calc(100% - 20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  z-index: 1;
}
.in_pt_list .swiper-slide {
  height: calc((100% - 30px) / 2);
  background: #fff;
  flex-shrink: 0;
  position: relative;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.in_pt_list .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.in_pt_list .img img {
  opacity: 0.6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
}
.in_pt_list .swiper-slide:hover {
  box-shadow: 0 0 10px rgb(244 160 0 / 30%);
}
.in_pt_list .swiper-slide:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
  filter: grayscale(0);
}
.in_pt_list .img img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pt-pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0.3rem auto 0;
}
.pt-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: block;
  margin: 0 5px;
  background: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}
@media screen and (max-width: 959px) {
  .in_pt_list::before {
    padding-bottom: 25%;
  }
}
@media screen and (max-width: 767px) {
  .in_pt_list::before {
    padding-bottom: 35%;
  }
}
@media screen and (max-width: 560px) {
  .in_pt_list .swiper-slide {
    height: calc((100% - 10px) / 2);
  }
  .in_pt_list::before {
    padding-bottom: 50%;
  }
  .in_pt_list .img img {
    max-width: 50%;
    max-height: 50%;
  }
}
/* Inside Page - Solutions */
.in_sol_sps {
  overflow: hidden;
}
.in_sol_sps article {
  font-size: 0.16rem;
  color: #666;
}
.in_sps_list {
  margin-top: 0.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.in_sps_list dt {
  width: 50%;
  margin: 0 1.5%;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.in_sps_list dt:first-child {
  margin-left: 0;
}
.in_sps_list dt:last-child {
  margin-right: 0;
}
.in_sps_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_sps_list .img::before {
  content: "";
  display: block;
  padding-bottom: 68%;
}
.in_sps_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_sps_list .txt {
  padding: 0.16rem 0.2rem;
  text-align: center;
  background: #f2f3f6;
}
.in_sps_list .txt h5 {
  font-size: 0.18rem;
  color: #3e3a39;
  font-weight: bold;
}
.in_sps_list .txt p {
  margin-top: 0.06rem;
  font-size: 14px;
  color: #666;
}
.in_sps_list dt:hover {
  transform: scale(0.97);
}
.in_sps_list dt:hover img {
  width: 105%;
  height: 105%;
}
.in_sps_list dt:hover h5 {
  color: var(--i_color);
}
.in_sps_list dt,
.in_sps_list .img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .in_sps_list {
    flex-wrap: wrap;
  }
  .in_sps_list dt {
    width: 100%;
    margin: 0.16rem 0;
  }
}
@media screen and (max-width: 560px) {
  .in_sps_list {
    margin-top: 0.2rem;
  }
}
/* Inside Page - News */
.in_news_nav {
  margin-bottom: 0.8rem;
}
.in_news_nav ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}
.in_news_nav ul::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border_color);
}
.in_news_nav li {
  width: 50%;
  text-align: center;
  position: relative;
}
.in_news_nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background: var(--i_color);
  z-index: 2;
}
.in_news_nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #fff;
  z-index: 1;
}
.in_news_nav a {
  display: block;
  padding: 0 0.1rem;
  font-size: 14px;
  color: #3e3a39;
  font-weight: bold;
  line-height: 0.5rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;
  position: relative;
  z-index: 3;
}
.in_news_nav .curr::before,
.in_news_nav li:hover::before {
  top: 0;
}
.in_news_nav .curr::after,
.in_news_nav li:hover::after {
  height: 100%;
}
.in_news_nav .curr a,
.in_news_nav li:hover a {
  color: var(--i_color);
}
.in_news_nav li::before,
.in_news_nav li::after,
.in_news_nav a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1366px) {
  .in_news_nav {
    margin-bottom: 0.6rem;
  }
}
@media screen and (max-width: 959px) {
  .in_news_nav ul {
    display: none;
  }
  .in_news_nav ul::before {
    display: none;
  }
  .in_news_nav li {
    width: 100%;
  }
  .in_news_nav li::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .in_news_nav {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .in_news_nav {
    margin-bottom: 0.4rem;
  }
  .in_news_nav a {
    font-size: 0.16rem;
  }
}
.in_news_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 0.1rem;
  overflow: hidden;
}
.in_news_list li {
  width: 31.33%;
  margin: 0 3% 0.4rem 0;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  border: 1px solid var(--border_color);
  overflow: hidden;
}
.in_news_list li:nth-child(3n) {
  margin-right: 0;
}
.in_news_list a {
  display: block;
  padding: 0.24rem;
}
.in_news_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_news_list .img::before {
  content: "";
  display: block;
  padding-bottom: 73%;
}
.in_news_list .img::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6)
  );
  background: -webkit-linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6)
  );
}
.in_news_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_news_list .txt {
  margin-top: 0.2rem;
  position: relative;
}
.in_news_list .txt h2 {
  font-size: 0.16rem;
  font-weight: bold;
  color: #3e3a39;
  line-height: 0.22rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.in_news_list .txt p {
  margin: 0.16rem 0 0.36rem;
  font-size: 14px;
  color: #666;
  line-height: 0.18rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.in_news_list .i_more {
  padding: 0 0.4rem 0 0.3rem;
}
.in_news_list .n_time {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.15rem;
  color: #888;
}
.in_news_list .n_time i {
  font-size: 0.3rem;
  color: var(--i_color);
}
.in_news_list li:hover {
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
}
.in_news_list li:hover .img::after {
  animation: gradient-rectangle 1.4s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.18, 0.96);
}
@-webkit-keyframes gradient-rectangle {
  0% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
.in_news_list li:hover img {
  width: 110%;
  height: 110%;
}
.in_news_list li:hover h2 {
  color: var(--i_color);
}
.in_news_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 959px) {
  .in_news_list li {
    width: 49%;
    margin: 0 2% 0.34rem 0;
  }
  .in_news_list li:nth-child(3n) {
    margin-right: 2%;
  }
  .in_news_list li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .in_news_list .i_more {
    display: none;
  }
  .in_news_list .n_time {
    position: initial;
  }
}
@media screen and (max-width: 560px) {
  .in_news_list li {
    margin-bottom: 0.2rem;
  }
  .in_news_list a {
    padding: 12px;
  }
  .in_news_list .txt p {
    margin: 12px 0 0.22rem;
  }
  .in_news_list .n_time i {
    font-size: 0.26rem;
  }
}
.ar_fot {
  min-height: 0.4rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 0.4rem 0;
  position: relative;
}
.ar_fot ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.ar_fot li {
  width: 32%;
}
.ar_fot li a {
  font-size: 0.15rem;
  color: #666;
  font-weight: bold;
}
.ar_fot li:hover a {
  color: var(--i_color);
}
.ar_fot dl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.ar_fot dt {
  width: 46%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.ar_fot .prev {
  justify-content: flex-end;
}
.ar_fot dt a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ar_fot dt i {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  border: 1px solid var(--border_color);
  -webkit-border-radius: 0.05rem;
  -moz-border-radius: 0.05rem;
  border-radius: 0.05rem;
  overflow: hidden;
}
.ar_fot .prev i {
  margin-left: 0.1rem;
  background: url(static/images/public/arrow_left_hollow_hei3.svg) no-repeat
    center;
  background-size: 0.16rem;
}
.ar_fot .next i {
  margin-right: 0.1rem;
  background: url(static/images/public/arrow_right_hollow_hei3.svg) no-repeat
    center;
  background-size: 0.16rem;
}
.ar_fot dt b {
  font-size: 12px;
}
.ar_fot .prev:hover i {
  border-color: var(--i_color);
  background: var(--i_color)
    url(static/images/public/arrow_left_hollow_bai3.svg) no-repeat center;
  background-size: 0.16rem;
}
.ar_fot .next:hover i {
  border-color: var(--i_color);
  background: var(--i_color)
    url(static/images/public/arrow_right_hollow_bai3.svg) no-repeat center;
  background-size: 0.16rem;
}
.ar_fot dt:hover b {
  color: var(--i_color);
}
@media screen and (max-width: 767px) {
  .ar_fot {
    padding: 0.1rem 0;
  }
  .ar_fot ul {
    display: block;
  }
  .ar_fot li {
    width: 100%;
    margin: 0.2rem 0;
  }
  .ar_fot li:nth-child(1)::before {
    content: "PREVIOUS :";
    display: block;
    margin-bottom: 0.1rem;
    font-size: 0.18rem;
    color: var(--i_color);
    font-weight: bold;
  }
  .ar_fot li:nth-child(2)::before {
    content: "NEXT :";
    display: block;
    margin-bottom: 0.1rem;
    font-size: 0.18rem;
    color: var(--i_color);
    font-weight: bold;
  }
  .ar_fot dl {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .ar_fot li a {
    font-size: 0.16rem;
  }
}
/* Inside Page - Recruit a dealer */
.in_dl_prospects {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f8f8f8;
  overflow: hidden;
}
.in_dl_prospects .txt {
  width: 50%;
  padding: 0.4rem 2% 0.4rem 13.5%;
  background: url(static/images/in_sol_art_bg1.jpg) no-repeat left bottom;
}
.in_dl_prospects .i_tit {
  max-width: 70%;
  margin-left: 0;
  margin-right: 0;
}
.in_dl_prospects .i_tit h2 {
  text-align: left;
}
.in_dl_prospects article {
  margin-bottom: 0.5rem;
  font-size: 0.15rem;
  color: #666;
  line-height: 0.24rem;
}
.in_dl_prospects .img {
  margin-left: auto;
  width: 50%;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
}
.in_dl_prospects .img img {
  width: 100%;
}
.in_dl_prospects .img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6)
  );
  background: -webkit-linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6)
  );
}
.in_dl_prospects .img:hover::after {
  animation: fol 1.4s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.18, 0.96);
}
@media screen and (max-width: 1440px) {
  .in_dl_prospects .txt {
    padding-left: 7%;
  }
}
@media screen and (max-width: 1366px) {
  .in_dl_prospects .txt {
    padding-left: 6%;
  }
}
@media screen and (max-width: 1200px) {
  .in_dl_prospects .txt {
    padding-left: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .in_dl_prospects .txt {
    padding-left: 3%;
  }
}
@media screen and (max-width: 959px) {
  .in_dl_prospects {
    padding-bottom: 0.3rem;
  }
  .in_dl_prospects .txt {
    width: 100%;
  }
  .in_dl_prospects .img {
    width: 94%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .in_dl_prospects .i_tit {
    max-width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .in_dl_prospects article {
    margin-bottom: 0.3rem;
  }
}
.in_dl_policy {
  --ico_size: 1.26rem;
}
.in_dl_policy article {
  text-align: center;
  font-size: 0.18rem;
  color: #666;
  font-weight: 900;
}
.in_dl_policy_list {
  margin-top: 0.5rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  overflow: hidden;
}
.in_dl_policy_list dt {
  width: 29%;
  text-align: center;
  padding: var(--ico_size) 0.3rem 0.4rem;
  position: relative;
  cursor: pointer;
}
.in_dl_policy_list dt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - var(--ico_size) / 2);
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  border: 2px solid var(--i_color);
}
.in_dl_policy_list .ico {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  width: var(--ico_size);
  height: var(--ico_size);
  background: var(--i_color);
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.in_dl_policy_list .ico img {
  height: 0.6rem;
  -webkit-filter: brightness(100);
  -moz-filter: brightness(100);
  -o-filter: brightness(100);
  -ms-filter: brightness(100);
  filter: brightness(100);
}
.in_dl_policy_list .txt {
  margin-top: 0.4rem;
}
.in_dl_policy_list .txt p {
  font-size: 0.16rem;
  color: #3e3a39;
}
.in_dl_policy_list .txt h3 {
  padding-top: 0.24rem;
  margin: 0.2rem 0 0.3rem;
  font-size: 0.2rem;
  color: #100800;
  font-weight: bold;
  position: relative;
}
.in_dl_policy_list .txt h3::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  width: 66px;
  height: 2px;
  background: var(--i_color);
}
.in_dl_policy_list .txt h6 {
  font-size: 0.15rem;
  color: #666;
  line-height: 0.2rem;
}
.in_dl_policy_list dt:hover::before {
  height: 100%;
}
.in_dl_policy_list dt:hover .ico {
  top: 0.26rem;
  background: none;
}
.in_dl_policy_list dt:hover .ico img {
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -o-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
}
.in_dl_policy_list dt::before,
.in_dl_policy_list .ico {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1366px) {
  .in_dl_policy {
    --ico_size: 1rem;
  }
  .in_dl_policy_list .txt h3 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1200px) {
  .in_dl_policy {
    --ico_size: 0.8rem;
  }
  .in_dl_policy_list .ico img {
    height: 0.46rem;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .in_dl_policy_list {
    margin-top: 0.3rem;
    flex-wrap: wrap;
    justify-content: normal;
  }
  .in_dl_policy_list dt {
    margin: 0.2rem 0;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .in_dl_policy {
    --ico_size: 0.66rem;
  }
  .in_dl_policy_list .ico img {
    height: 0.4rem;
  }
  .in_dl_policy_list {
    margin-top: 0.2rem;
  }
  .in_dl_policy_list dt {
    margin: 0.16rem 0;
  }
  .in_dl_policy_list .txt {
    margin-top: 0.3rem;
  }
  .in_dl_policy_list .txt h3 {
    margin: 0.1rem 0 0.16rem;
  }
}
.in_dl_help {
  width: 100%;
  position: relative;
  background: url(static/images/in_dl_help_bg.webp) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.in_dl_help::before {
  content: "";
  display: block;
  padding-bottom: 40%;
}
.in_dl_help dl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  counter-reset: section;
  overflow: hidden;
}
.in_dl_help dt {
  width: 50%;
  height: 100%;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.in_dl_help dt:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgb(0 0 0 / 20%);
  z-index: 2;
}
.in_dl_help dt:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -1px;
  width: 3px;
  height: 1rem;
  background: var(--i_color);
  z-index: 3;
}
.in_dl_help dt span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.in_dl_help .ico {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 14%;
}
.in_dl_help .ico::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
}
.in_dl_help .ico i {
  width: 1.26rem;
  height: 1.26rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid var(--i_color);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.in_dl_help .ico img {
  height: 0.6rem;
}
.in_dl_help .txt {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 40%;
  width: 100%;
  padding: 0 0.4rem;
}
.in_dl_help .txt h4 {
  font-size: 0.16rem;
  color: #100800;
  font-weight: 900;
  position: relative;
  line-height: 0.22rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
}
.in_dl_help .txt h4::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 0.6rem;
  height: 2px;
  background: var(--i_color);
}
.in_dl_help .txt h4::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
}
.in_dl_help .txt p {
  font-size: 14px;
  color: #3e3a39;
  line-height: 0.24rem;
}
.in_dl_help .num {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 4%;
}
.in_dl_help .num h6::before {
  counter-increment: section;
  content: "0" counter(section);
  font-size: 0.84rem;
  color: rgb(246 163 3 / 8%);
  font-weight: 900;
}
.in_dl_help .item_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 90%);
  z-index: 0;
}
.in_dl_help .item_bg::before {
  opacity: 0.3;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: -webkit-linear-gradient(top, transparent, rgb(0 0 0 / 80%));
  background: linear-gradient(to bottom, transparent, rgb(0 0 0 / 80%));
}
.in_dl_help dt:hover .ico::before {
  width: 114%;
  height: 114%;
}
.in_dl_help dt:hover .txt h4,
.in_dl_help dt:hover .txt p {
  color: #fff;
}
.in_dl_help dt:hover .txt h4::after {
  width: 0.6rem;
}
.in_dl_help dt:hover .item_bg {
  background: transparent;
}
.in_dl_help dt:hover .item_bg::before {
  opacity: 1;
  height: 100%;
}
.in_dl_help .ico::before,
.in_dl_help dt .txt h4,
.in_dl_help dt .txt h4::after,
.in_dl_help dt .txt p,
.in_dl_help .item_bg,
.in_dl_help .item_bg::before {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
@media screen and (max-width: 1440px) {
  .in_dl_help .ico {
    top: 10%;
  }
  .in_dl_help .ico i {
    width: 1rem;
    height: 1rem;
  }
  .in_dl_help .txt {
    top: 34%;
  }
  .in_dl_help .txt h4 {
    margin-bottom: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .in_dl_help .num h6::before {
    font-size: 0.66rem;
  }
}
@media screen and (max-width: 1366px) {
  .in_dl_help .ico i {
    width: 0.8rem;
    height: 0.8rem;
  }
  .in_dl_help .ico img {
    height: 0.4rem;
  }
  .in_dl_help .txt {
    top: 30%;
  }
  .in_dl_help .txt p {
    line-height: 0.22rem;
  }
}
@media screen and (max-width: 1200px) {
  .in_dl_help .ico {
    top: 8%;
  }
  .in_dl_help .txt {
    top: 28%;
  }
  .in_dl_help .txt {
    padding: 0 0.3rem;
  }
  .in_dl_help .num h6::before {
    font-size: 0.54rem;
  }
}
@media screen and (max-width: 959px) {
  .in_dl_help::before {
    display: none;
  }
  .in_dl_help dl {
    position: initial;
    flex-wrap: wrap;
  }
  .in_dl_help dt {
    border-bottom: 1px solid #ccc;
    padding: 0.4rem 0.3rem;
    height: initial;
  }
  .in_dl_help dt:last-child {
    width: 100%;
    border-bottom: none;
  }
  .in_dl_help .ico {
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    display: inline-block;
  }
  .in_dl_help dt span {
    display: block;
    position: relative;
  }
  .in_dl_help .txt {
    position: initial;
    transform: none;
    padding: 0 0;
    margin-top: 0.3rem;
  }
  .in_dl_help dt:nth-child(even)::before,
  .in_dl_help dt:nth-child(even)::after {
    display: none;
  }
  .in_dl_help .ico i {
    margin: 0 auto;
  }
  .in_dl_help .num {
    display: none;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
  .in_dl_help dt {
    width: 100%;
    padding: 0.3rem 0.2rem;
  }
  .in_dl_help dt::before {
    display: none;
  }
  .in_dl_help dt::after {
    display: none !important;
  }
  .in_dl_help .txt {
    margin-top: 0.2rem;
  }
}
.in_dl_cases {
  overflow: hidden;
}
.in_dl_cases article {
  font-size: 0.15rem;
  color: #666;
  line-height: 0.22rem;
}
.in_cases_map {
  margin: -0.6rem auto;
  text-align: center;
  position: relative;
  z-index: -1;
}
.in_cases_map::before {
  content: "";
  display: block;
  padding-bottom: 44%;
}
.in_cases_map img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  -webkit-animation: enlarge 24s infinite linear;
  animation: enlarge 24s infinite linear;
}
@keyframes enlarge {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
    -moz-transform: translate(-50%, -50%) scale(1, 1);
    transform: translate(-50%, -50%) scale(1, 1);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2, 1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2, 1.2);
    transform: translate(-50%, -50%) scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
    -moz-transform: translate(-50%, -50%) scale(1, 1);
    transform: translate(-50%, -50%) scale(1, 1);
  }
}
.in_dl_cases_list {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.in_dl_cases_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.in_dl_cases_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_dl_cases_list .img {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  z-index: 2;
}
.in_dl_cases_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_dl_cases_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_dl_cases_list .txt {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  bottom: 0.3rem;
  width: 82%;
  background: rgb(255 255 255 / 80%);
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  z-index: 2;
}
.in_dl_cases_list .txt p {
  padding: 0 0.16rem;
  font-size: 0.15rem;
  color: #3e3a39;
  font-weight: bold;
  line-height: 0.4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.in_dl_cases_list .swiper-slide:hover img {
  width: 110%;
  height: 110%;
}
.in_dl_cases_list .swiper-slide:hover .txt {
  background: var(--i_color);
}
.in_dl_cases_list .swiper-slide:hover p {
  color: #fff;
}
.in_dl_cases_list .swiper-slide,
.in_dl_cases_list .img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .in_dl_cases_list .swiper-slide {
    padding: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .in_dl_cases article {
    font-size: 0.16rem;
  }
}
.in_process {
  padding: 0.4rem 0 0.6rem;
}
.in_process_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
}
.in_process_list::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ccc;
  top: 0.5rem;
  z-index: -1;
}
.in_process_list dt {
  text-align: center;
  width: 16%;
}
.in_process_list .ico {
  width: 0.9rem;
  height: 0.9rem;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
.in_process_list .ico img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.5rem;
}
.in_process_list .ico i:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #f5a100;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
}
.in_process_list .ico i:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #f5a100;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
}
.in_process_list dt:hover .ico i:before {
  animation: serv_one_border 0.9s 0s ease 1;
}
.in_process_list dt:hover .ico i:after {
  animation: serv_one_border 1.5s 0s ease 1;
}
@keyframes serv_one_border {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
  }
}
.in_process_list dt:hover .ico img {
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
  transform: translate(-50%, -50%) rotateY(180deg);
}
.in_process_list .ico img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_process_list .txt {
  margin-top: 0.3rem;
}
.in_process_list .txt h4 {
  font-size: 0.16rem;
  color: #3e3a39;
  font-weight: bold;
}
.in_process_list .txt h6 {
  margin-top: 14px;
  font-size: 14px;
  color: #666;
  line-height: 0.22rem;
}
@media screen and (max-width: 1366px) {
  .in_process_list::before {
    top: 0.46rem;
  }
}
@media screen and (max-width: 1200px) {
  .in_process_list dt {
    width: 18%;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .in_process_list {
    justify-content: normal;
  }
  .in_process_list::before {
    display: none;
  }
  .in_process_list dt {
    width: 50%;
    margin: 0.2rem 0;
    padding: 0 0.2rem;
  }
  .in_process_list .ico {
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media screen and (max-width: 560px) {
  .in_process_list dt {
    margin: 0.1rem 0;
  }
}
.AD {
  margin-top: 0.3rem;
  background: url(static/images/AD_bg.webp) no-repeat center;
  background-size: cover;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.AD .cont {
  padding: 0.4rem 14%;
  position: relative;
}
.AD h2 b {
  font-size: 0.35rem;
  color: #fff;
  font-weight: 900;
  text-transform: capitalize;
}
.AD b:nth-child(1) {
  margin-right: 0.6rem;
}
.AD span {
  margin-top: 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.AD p {
  font-size: 0.16rem;
  color: #fff;
}
.AD .tel {
  padding: 0 0.2rem;
  margin-left: auto;
  background: #fff;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.AD .tel i {
  display: block;
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
}
.AD .tel img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  -webkit-animation: tel_zoom 1.4s infinite linear;
  animation: tel_zoom 1.4s infinite linear;
}
@keyframes tel_zoom {
  0% {
    width: 70%;
    height: 70%;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 70%;
    height: 70%;
  }
}
.AD .tel b {
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 0.38rem;
  color: #3e3a39;
}
.AD .tel:hover b {
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .AD .cont {
    padding: 0.4rem 7%;
  }
  .AD h2 b {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1366px) {
  .AD .cont {
    padding: 0.4rem 4%;
  }
  .AD h2 b {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .AD .cont {
  }
  .AD b:nth-child(1) {
    margin-right: 0.3rem;
  }
  .AD p {
    width: 100%;
  }
  .AD h2 b {
    font-size: 0.22rem;
  }
  .AD .tel {
    margin: 0.3rem 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  .AD .cont {
    text-align: center;
  }
  .AD h2 b {
    display: block;
    margin-right: 0 !important;
    font-size: 0.2rem;
  }
  .AD .tel {
    margin: 0.3rem auto 0;
  }
}
.in_dl_form {
}
.in_dl_form article {
  width: 64%;
  margin: 0 auto;
  font-size: 0.16rem;
  color: #666;
  line-height: 0.24rem;
  text-align: center;
}
.in_dl_form_box {
  margin-top: 0.3rem;
  padding: 0.4rem;
  background: #fff;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
}
#wpforms-511 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}
#wpforms-511 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-511 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-511 input,
#wpforms-511 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-511 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-511 .wpforms-field-label {
  font-size: 0;
}
#wpforms-511 .wpforms-required-label {
  position: absolute;
  top: 14px;
  left: 5px;
  font-size: 16px;
  color: #f00;
}
#wpforms-511 .wpforms-field {
  width: 49%;
  background: transparent;
  margin-bottom: 4px;
  padding-bottom: 16px;
  position: relative;
  overflow: hidden;
}
#wpforms-511-field_7-container,
#wpforms-511 .wpforms-field-textarea {
  width: 100% !important;
}
#wpforms-511 .wpforms-field-container input,
#wpforms-511 textarea {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  border: none;
  background: #f5f5f5;
  padding: 0 0.16rem;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
#wpforms-511 input {
  line-height: var(--input_height);
}
#wpforms-511 textarea {
  line-height: 22px;
  min-height: 120px;
  padding: 0.1rem 0.16rem;
}
#wpforms-511 input::-webkit-input-placeholder,
#wpforms-511 textarea::-webkit-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-511 input::-moz-placeholder,
#wpforms-511 textarea::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-511 input::-ms-input-placeholder,
#wpforms-511 textarea::-ms-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-511 #wpforms-511-field_1-error,
#wpforms-511 #wpforms-511-field_2-error,
#wpforms-511 #wpforms-511-field_3-error,
#wpforms-511 #wpforms-511-field_4-error,
#wpforms-511 #wpforms-511-field_5-error,
#wpforms-511 #wpforms-511-field_6-error {
  position: absolute;
  font-size: 13px;
}
#wpforms-511 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-511 .wpforms-submit-container {
  margin: 0 auto;
  padding: 0 !important;
  width: 2rem;
  height: var(--input_height);
  background: var(--i_color);
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
#wpforms-511 .wpforms-submit-container::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--i_color2);
}
#wpforms-511 .wpforms-submit-container button {
  width: 100%;
  height: var(--input_height);
  font-size: 0.13rem;
  font-weight: bold;
  color: #fff;
  line-height: var(--input_height);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
#wpforms-511 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}
#wpforms-511 .wpforms-submit-container:hover::before {
  left: 0;
  right: initial;
  width: 100%;
}
#wpforms-511 .wpforms-submit-container::before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-511 .form_reset {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48% !important;
  height: var(--input_height);
  padding: 0;
  background: #999;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}
#wpforms-511 .form_reset::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--i_color);
}
#wpforms-511 .form_reset input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.13rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
#wpforms-511 .form_reset:hover::before {
  left: 0;
  right: initial;
  width: 100%;
}
#wpforms-511 .form_reset::before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #wpforms-511 .wpforms-field {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .in_dl_form article {
    width: 100%;
  }
  .in_dl_form_box {
    padding: 0.3rem 0.2rem;
  }
}
/* Inside Page - Contact us */
.in_contact {
  padding: 0.1rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_c_form {
  width: 58%;
  padding: 0.4rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem rgb(0 0 0 / 10%);
  overflow: hidden;
}
.in_c_form .tit {
  text-align: center;
  margin-bottom: 0.3rem;
}
.in_c_form .tit h2 {
  font-size: 0.2rem;
  color: #100800;
  font-weight: 900;
}
.in_c_form .tit h6 {
  margin-top: 0.1rem;
  font-size: 0.15rem;
  color: #3e3a39;
}
#wpforms-139 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}
#wpforms-139 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-139 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-139 input,
#wpforms-139 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-139 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-139 .wpforms-field-label {
  font-size: 0;
}
#wpforms-139 .wpforms-required-label {
  position: absolute;
  top: 14px;
  left: 5px;
  font-size: 16px;
  color: #f00;
}
#wpforms-139 .wpforms-field {
  background: transparent;
  margin-bottom: 4px;
  padding-bottom: 16px;
  position: relative;
  overflow: hidden;
}
#wpforms-139 .wpforms-field-container input,
#wpforms-139 textarea {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  border: none;
  background: #f5f5f5;
  padding: 0 0.16rem;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
#wpforms-139 input {
  line-height: var(--input_height);
}
#wpforms-139 textarea {
  line-height: 22px;
  min-height: 120px;
  padding: 0.1rem 0.16rem;
}
#wpforms-139 input::-webkit-input-placeholder,
#wpforms-139 textarea::-webkit-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-139 input::-moz-placeholder,
#wpforms-139 textarea::-moz-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-139 input::-ms-input-placeholder,
#wpforms-139 textarea::-ms-input-placeholder {
  color: #999;
  font-size: var(--input_font_size);
}
#wpforms-139 #wpforms-139-field_1-error,
#wpforms-139 #wpforms-139-field_2-error,
#wpforms-139 #wpforms-139-field_3-error,
#wpforms-139 #wpforms-139-field_4-error,
#wpforms-139 #wpforms-139-field_5-error,
#wpforms-139 #wpforms-139-field_6-error {
  position: absolute;
  font-size: 13px;
}
#wpforms-139 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-139 .wpforms-field-container > div {
  width: 100%;
}
#wpforms-139 .wpforms-field-container > div:first-child,
#wpforms-139 .wpforms-field-container > div:nth-child(2) {
  width: 49%;
}
#wpforms-139 .wpforms-submit-container {
  margin: 0 auto;
  padding: 0 !important;
  width: 2rem;
  height: var(--input_height);
  background: var(--i_color);
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
#wpforms-139 .wpforms-submit-container::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--i_color2);
}
#wpforms-139 .wpforms-submit-container button {
  width: 100%;
  height: var(--input_height);
  font-size: 0.13rem;
  font-weight: bold;
  color: #fff;
  line-height: var(--input_height);
  cursor: pointer;
  position: absolute;
  z-index: 2;
}
#wpforms-139 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}
#wpforms-139 .wpforms-submit-container:hover::before {
  left: 0;
  right: initial;
  width: 100%;
}
#wpforms-139 .wpforms-submit-container::before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-139 .form_reset {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48% !important;
  height: var(--input_height);
  padding: 0;
  background: #999;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}
#wpforms-139 .form_reset::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--i_color);
}
#wpforms-139 .form_reset input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.13rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
#wpforms-139 .form_reset:hover::before {
  left: 0;
  right: initial;
  width: 100%;
}
#wpforms-139 .form_reset::before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #wpforms-139 .wpforms-field-container > div:first-child,
  #wpforms-139 .wpforms-field-container > div:nth-child(2) {
    width: 100%;
  }
}
.in_c_cont {
  width: 36%;
  margin-left: auto;
}
.in_c_cont span {
  display: block;
  padding: 0.34rem 0;
  border-top: 1px solid var(--border_color);
  border-bottom: 1px solid var(--border_color);
}
.in_c_cont span h2 {
  font-size: 0.18rem;
  color: var(--i_color);
  font-weight: bold;
  text-transform: capitalize;
}
.in_c_cont span h6 {
  margin-top: 0.26rem;
  font-size: 14px;
  color: #3e3a39;
  line-height: 0.2rem;
}
.in_c_cont dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.34rem 0;
  border-bottom: 1px solid var(--border_color);
}
.in_c_cont dt {
  width: 24%;
  padding: 0.1rem;
  border: 1px solid var(--border_color);
}
.in_c_cont .in_c_wa {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  -webkit-border-radius: 0.05rem;
  border-radius: 0.05rem;
  overflow: hidden;
  position: relative;
}
.in_c_cont dt img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.in_c_cont dt p {
  font-size: 12px;
  color: #3e3a39;
  margin-top: 10px;
  text-align: center;
}
.in_c_slogan {
  max-width: 160px;
  margin-left: 0.2rem;
}
.in_c_slogan h4 {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
}
.in_c_slogan h5 {
  margin-top: 0.06rem;
  font-size: 14px;
  color: #666;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .in_c_form {
    width: 56%;
    padding: 0.4rem 0.3rem;
  }
}
@media screen and (max-width: 959px) {
  .in_c_form,
  .in_c_cont {
    width: 100%;
  }
  .in_c_cont {
    margin-top: 0.4rem;
  }
  .in_c_cont dt {
    width: 1.3rem;
  }
}
.in_c_map {
  position: relative;
}
.in_contact_t {
  width: 44%;
  padding: 0.8rem 0;
}
.in_contact_t .i_tit {
  margin-left: 0;
  margin-right: 0;
}
.in_c_list {
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border_color);
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.in_c_list dt {
  width: 100%;
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border_color);
}
.in_c_list dd {
  width: 48%;
}
.in_c_list dt,
.in_c_list dd {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.in_c_list dd:last-child {
  margin-left: 4%;
}
.in_c_list .ico {
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid var(--border_color);
  -webkit-border-radius: 0.06rem;
  -moz-border-radius: 0.06rem;
  border-radius: 0.06rem;
  position: relative;
}
.in_c_list .ico img {
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 46%;
  max-height: 46%;
  object-fit: contain;
  -webkit-filter: brightness(0);
  -moz-filter: brightness(0);
  -o-filter: brightness(0);
  -ms-filter: brightness(0);
  filter: brightness(0);
}
.in_c_list span {
  margin-left: auto;
  width: calc(100% - 0.5rem - 0.2rem);
}
.in_c_list span p {
  margin: 0.06rem 0 0.1rem;
  font-size: 12px;
  color: #3e3a39;
  font-weight: bold;
}
.in_c_list span h4,
.in_c_list span a {
  font-size: 0.16rem;
  color: #3e3a39;
  font-weight: bold;
}
.in_c_list dt:hover img,
.in_c_list dd:hover img {
  opacity: 1;
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -o-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
  transform: translate(-50%, -50%) rotateY(180deg);
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
  -moz-transform: translate(-50%, -50%) rotateY(180deg);
}
.in_c_list dt a:hover,
.in_c_list dd a:hover {
  color: var(--i_color);
}
.in_c_list .ico img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_c_media > p {
  margin-bottom: 0.2rem;
  font-size: 0.13rem;
  font-weight: bold;
  color: #666;
  text-transform: capitalize;
}
.in_c_media ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.in_c_media li {
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid var(--border_color);
  -webkit-border-radius: 0.06rem;
  -moz-border-radius: 0.06rem;
  border-radius: 0.06rem;
  position: relative;
  overflow: hidden;
}
.in_c_media li:not(:last-child) {
  margin-right: 0.1rem;
}
.in_c_media a {
  display: block;
  width: 100%;
  height: 100%;
}
.in_c_media img {
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 46%;
  max-height: 46%;
  object-fit: contain;
  -webkit-filter: brightness(0);
  -moz-filter: brightness(0);
  -o-filter: brightness(0);
  -ms-filter: brightness(0);
  filter: brightness(0);
}
.in_c_media li:hover {
  border-color: var(--i_color);
}
.in_c_media li:hover img {
  opacity: 1;
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -o-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  -moz-transform: translate(-50%, -50%) rotate(360deg);
  -ms-transform: translate(-50%, -50%) rotate(360deg);
  -o-transform: translate(-50%, -50%) rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
}
.in_c_media img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.map {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  border-radius: 0.1rem;
  background: #ccc;
  overflow: hidden;
}
.map #simpleMap,
.map .fluid-width-video-wrapper,
.map iframe {
  width: 100%;
  height: 100% !important;
}
@media screen and (max-width: 959px) {
  .in_contact_t {
    width: 100%;
    margin-bottom: 0.4rem;
    padding: 0 0;
  }
  .map {
    position: initial;
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .map {
    height: 200px;
  }
}
/* -------------------------------------- 侧边客服 -------------------------------------- */
.aside_right {
  position: fixed;
  right: -50px;
  bottom: 20%;
  z-index: 999999;
  transition: all 0.5s ease;
}
.aside_right.on {
  right: 10px;
}
.aside_right ul {
}
.aside_right li {
  position: relative;
  cursor: pointer;
}
.aside_right li > a {
  display: block;
  transition: all 0.3s ease;
  width: 0.48rem;
  margin-top: 5px;
  border-radius: 0.05rem;
  height: 0.48rem;
  background: rgba(128, 128, 128, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.aside_right em {
  display: block;
  margin: 0 auto;
  width: 0.2rem;
  height: 0.2rem;
}
.aside_right li:nth-child(1) em {
  background: url(static/images/aside_ico_whatsapp.svg) no-repeat center;
  background-size: contain;
}
.aside_right li:nth-child(2) em {
  background: url(static/images/aside_ico_tel.svg) no-repeat center;
  background-size: contain;
}
/* .aside_right li:nth-child(3) em {
  background: url(static/images/wx.png) no-repeat center;
  background-size: contain;
}
.aside_right li:nth-child(3) .side_tel_box {
  width: 150px;
  box-sizing: border-box;
} */
.aside_right li:nth-child(3) em {
  background: url(static/images/email.svg) no-repeat center;
  background-size: contain;
}
.aside_right li:nth-child(4) em {
  background: url(static/images/top1.svg) no-repeat center;
  background-size: contain;
}
.side_tel_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aside_right li > a:hover {
  background: var(--i_color);
}
.side_tel_box,
.side_qr_box {
  position: absolute;
  box-shadow: -1px 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}
.side_tel_box {
  top: 7px;
  right: -300px;
  width: 180px;
  background: #fff;
}
.side_qr_box {
  top: 50%;
  transform: translate(0, -50%);
  right: -180px;
  width: 120px;
  height: 120px;
  background: #fff;
}
.side_tel_box h6 {
  padding: 8px 0;
  font-size: 14px;
  color: #666;
}
.side_tel_box h6 a {
  line-height: 20px;
}
.side_tel_box a:hover {
  color: var(--i_color);
}
.side_qr_box img {
  width: 90%;
  height: 90%;
}
.aside_right li:hover .side_tel_box,
.aside_right li:hover .side_qr_box {
  right: 48px;
}
.side_tel_box,
.side_qr_box {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 侧边客服 表单 */
#aside_mask_bg {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
#aside_sc_from {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  padding: 0.6rem 0.4rem;
  border-radius: 0.2rem;
  background: #e2e2e2;
  z-index: 9999999999999;
  overflow: auto;
}
#aside_sc_from .tit {
  margin-bottom: 40px;
}
#aside_sc_from .tit h6 {
  font-size: 26px;
  color: #333;
  text-align: center;
  text-transform: capitalize;
  font-weight: bold;
  line-height: 30px;
}
#wpforms-60 {
  --input_font_size: 16px;
  --input_height: 42px;
}
#wpforms-60 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-60 {
  width: 100%;
  overflow: hidden;
}
#wpforms-60 input,
#wpforms-60 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-60 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-60 .wpforms-error-container {
  line-height: 16px;
}
#wpforms-60 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-60 .wpforms-submit-container {
  padding: 0 !important;
  width: 170px;
  height: var(--input_height);
  background: var(--i_color);
  border-radius: 0.2rem;
  position: relative;
  margin: 0 auto;
}
#wpforms-60 .wpforms-field {
  position: relative;
}
#wpforms-60 .wpforms-field-label {
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0 !important;
}
#wpforms-60 .wpforms-field-label span {
  position: absolute;
  top: 15px;
  left: 3px;
  font-size: 14px;
  color: red;
}
#wpforms-60 .wpforms-error {
  margin-top: 0.01rem;
  font-size: 12px !important;
}
#wpforms-60 .wpforms-field {
  width: 100%;
  padding-bottom: 20px;
  background: transparent;
  overflow: hidden;
}
#wpforms-60 .wpforms-field:nth-child(1) {
  margin-right: 20px;
}
#wpforms-60 .wpforms-field:nth-child(1),
#wpforms-60 .wpforms-field:nth-child(2) {
  width: calc(50% - 10px);
}
#wpforms-60 input {
  height: var(--input_height);
}
#wpforms-60 textarea {
  min-height: 100px;
}
#wpforms-60 input,
#wpforms-60 textarea {
  width: 100%;
  border: 0;
  max-width: 100% !important;
  font-size: var(--input_font_size);
  border-radius: 0.1rem;
  background-color: white;
  color: #222;
  line-height: var(--input_height);
  padding: 0 10px;
  box-shadow: 0 0 0 0 !important;
}
#wpforms-60 input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-60 #wpforms-60-field_1-error,
#wpforms-60 #wpforms-60-field_2-error,
#wpforms-60 #wpforms-60-field_3-error,
#wpforms-60 #wpforms-60-field_4-error {
  position: absolute;
  font-size: 14px;
}
#wpforms-60 .wpforms-submit-container button {
  overflow: hidden;
  border-radius: 0.2rem;
  width: 100%;
  height: var(--input_height);
  font-size: 16px;
  color: #fff;
  line-height: var(--input_height);
  cursor: pointer;
  text-transform: capitalize;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
#wpforms-60 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
}
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  display: block;
  width: 50px;
  height: 50px;
  background: url(static/images/close_1_hei.svg) no-repeat center;
  background-size: contain;
}
.close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.close {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-60 .wpforms-submit-container:hover {
  background-color: var(--i_color2);
  animation: a 0.5s 1 linear;
  animation-delay: 0.01s;
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 959px) {
  /* .aside_right{display:none} */
  #aside_sc_from {
    width: 80%;
  }
  .aside_right li:nth-child(1),
  .aside_right li:nth-child(2),
  .aside_right li:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 560px) {
  #aside_sc_from {
    width: 87%;
  }
  #aside_sc_from .tit h6 {
    font-size: 24px;
  }
}
.i_banner {
  position: relative;
}
@media screen and (max-width: 959px) {
  .i_banner {
    margin-top: var(--head_height);
  }
}
.i_banner video {
  width: 100%;
}
/* i_banner上文字 */
.b_txt1 {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  top: 32%;
  left: -100%;
  -webkit-transition: left 0.5s ease;
  -moz-transition: left 0.5s ease;
  -ms-transition: left 0.5s ease;
  -o-transition: left 0.5s ease;
  transition: left 0.5s ease !important;
}
.slide-in {
  animation: slideIn 1.5s forwards;
}
@keyframes slideIn {
  from {
    left: -100%;
  }
  to {
    left: 11.5%;
  }
}
.b_tit {
  font-size: 0.8rem;
  color: #fff;
  line-height: 120%;
  font-weight: bold;
  font-style: italic;
}
.b_txt1 ul {
  margin-top: 10%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.b_txt1 li {
  width: 24%;
  margin-right: 0.4rem;
  background-color: rgba(1, 91, 187, 40%);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
}
.b_txt1 img {
  border-radius: 10px;
  width: 100%;
}
.b_txt1 li p {
  padding: 3% 0;
  font-size: 0.18rem;
  text-align: center;
  color: var(--normal_color);
  line-height: 120%;
}
.b_txt1 li:hover {
  transform: translateY(-8px);
  background-color: rgba(1, 91, 187, 70%);
}
@media screen and (max-width: 959px) {
  .b_tit {
    font-size: 0.4rem;
  }
  .b_txt1 ul {
    margin-top: 6%;
  }
  .b_txt1 li {
    width: 18%;
  }
}
@media screen and (max-width: 560px) {
  .b_txt1 ul {
    display: none;
  }
  .b_tit {
    font-size: 0.3rem;
  }
}
.strength_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}
.strength_list li {
  width: 49%;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
}
.strength_list a {
  display: block;
  width: 100%;
  height: 100%;
}
.strength_list a::before {
  content: "";
  display: block;
  padding-bottom: 61.25%;
}
/* .strength_list a::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  position: absolute;
  left: 0;
  bottom: 0;
} */
.strength_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.strength_list .txt {
  width: 90%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.2rem;
  z-index: 2;
}
.strength_list h6 {
  font-size: 0.24rem;
  color: #fff;
}
.strength_list li:hover img {
  width: 110%;
  height: 110%;
}
@media screen and (max-width: 1440px) {
  .strength_list h6 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .strength_list li {
    width: 100%;
  }
  .strength_list h6 {
    font-size: 0.18rem;
  }
}
/* -----------------------industry--------------------- */
.industry .wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.industry_cont {
  width: 70%;
  margin-right: auto;
}
.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%;
  }
}
.in_case_list a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  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%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.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;
  }
}
/* ----------products页面--------- */
.p_des {
  font-size: 0.18rem;
  color: #333;
}
.p_p_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 0;
}
.p_p_list li {
  width: 49%;
}
.p_p_list a {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}
.p_p_list .img {
  width: 40%;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
}
.p_p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 64.1%;
}
.p_p_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p_p_list .txt {
  width: 55%;
}
.p_p_list h6 {
  font-size: 0.24rem;
}
.p_p_list .text {
  font-size: 0.16rem;
  color: #666;
  margin: 0.1rem 0 0.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.p_p_list span {
  font-size: 0.16rem;
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .p_p_list h6 {
    font-size: 0.2rem;
  }
  .p_p_list {
    gap: 0.3rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .p_p_list .img,
  .p_p_list .txt {
    width: 100%;
  }
  .p_p_list h6 {
    font-size: 0.18rem;
  }
  .p_p_list .text {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .p_p_list li {
    width: 100%;
  }
}
.home_advantage_ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  gap: 0.2rem 0;
}
.home_advantage_ul li {
  width: 32%;
  border-radius: 0.3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.7s ease;
}
.home_advantage_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.home_advantage_img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.home_advantage_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home_advantage_text {
  width: 100%;
  padding: 0.3rem 0.1rem;
  color: #333;
}
.home_advantage_text h5 {
  font-size: 0.2rem;
  text-transform: capitalize;
  font-weight: bold;
}
.home_advantage_text h6 {
  font-size: 0.16rem;
  width: 95%;
  font-weight: normal;
  margin-top: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .home_advantage_ul li {
    width: 100%;
  }
}

/* home_choose */
.home_choose {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.home_choose_left {
  width: 50%;
  position: relative;
}
.home_choose_left img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  object-fit: cover;
}
.home_choose_right {
  width: 50%;
  box-sizing: border-box;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 0.8rem;
  background: url("static/images/bc_why.webp") no-repeat center;
  background-size: cover;
}
.home_choose_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.8rem 0;
  margin-top: 0.4rem;
}
.home_choose_ul li {
}
.home_choose_ul li h2 {
  font-size: 0.28rem;
  color: #fff;
  font-weight: bold;
  text-transform: capitalize;
}
.home_choose_ul li h3 {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #fff;
}
.home_choose_p {
  position: absolute;
  top: 0%;
  left: -1.25rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
.home_choose_p li {
}
.home_choose_p li img {
  width: 0.9rem;
  height: 0.9rem;
  object-fit: contain;
  transition: all 0.3s ease;
}
.home_choose_p li img:hover {
  transform: rotateY(180deg);
}
.home_choose_title {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: flex-end;
}
.home_choose_title p {
  color: white;
}
.home_choose_all {
  position: relative;
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1440px) {
  .home_choose_right {
    padding-top: 0.6rem;
    padding-bottom: 1rem;
    padding-left: 0.6rem;
  }
  .home_choose_p li img {
    width: 0.8rem;
    height: 0.8rem;
  }
  .home_choose_p {
    left: -1rem;
    gap: 0.6rem 0;
  }
  .home_choose_ul li h2 {
    font-size: 0.26rem;
  }
  .home_choose_ul li h3 {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .home_choose_ul {
    gap: 0.6rem 0;
  }
}
@media screen and (max-width: 767px) {
  .home_choose_left {
    display: none;
  }
  .home_choose_p {
    display: none;
  }
  .home_choose_right {
    width: 100%;
    padding-left: 3%;
    padding-bottom: 0.6rem;
  }
  .home_choose_ul {
    gap: 0.4rem 0;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* -----------------定制---------------- */
h2.cus_tit,
.cus_art h2 {
  font-size: 0.3rem;
  margin: 0.4rem 0 0.3rem;
  text-align: center;
}

.service_scope .wrap_l {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.service_scope .txt {
  width: 46%;
  padding: 0 0.3rem;
  color: var(--font_color);
}
.service_scope .gallery {
  width: 52%;
}
.service_scope h6 {
  font-size: 0.32rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.service_scope p {
  font-size: 0.18rem;
}
@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;
}
.honor_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.honor_list li {
  width: calc((100% - 0.6rem) / 4);
  position: relative;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  background: #f5f5f5;
}

@media screen and (max-width: 959px) {
  .honor_list li {
    width: calc((100% - 0.2rem) / 2);
  }
}
@media screen and (max-width: 560px) {
  .honor_list li {
    width: 100%;
  }
}
.honor_list .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fff;
}
.honor_list .img::before {
  content: "";
  display: block;
  padding-bottom: 130%;
}
.honor_list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}