/*
Theme Name: Pepsen
Version: 1.0
Description: 三鸟科技提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：三鸟科技
*/
* {
  box-sizing: border-box;
  line-height: 150%;
}
.wrap {
  width: 83.3%;
  margin-left: auto;
  margin-right: auto;
}
.wrap_l {
  padding-left: 8.35%;
}
.wrap_r {
  padding-right: 8.35%;
}
@media screen and (max-width: 1440px) {
  .wrap {
    width: 90%;
  }
  .wrap_l,
  .wrap_r {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    width: 94%;
  }
  .wrap_l,
  .wrap_r {
    padding-right: 3%;
    padding-left: 3%;
  }
}
:root {
  --i_color: #228b22;
  --i_color2: #bfd28c;
  --bc_color: rgba(191, 210, 140, 0.1);
  --font_color: #333;
  --header_height: 1rem;
  --border_color: #d9d9d9;
}
@media screen and (max-width: 1024px) {
  :root,
  header {
    --header_height: 80px;
  }
}
@media screen and (max-width: 768px) {
  :root,
  header {
    --header_height: 60px;
    color: #ddd;
  }
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}
.TopHeader {
  border-bottom: 1px solid #dbdbdb;
  --header_height: 0.8rem;
  /* background-color: rgb(0 0 0 / 80%); */
}
/* header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2014;
  background: #fff;
}
.top_cont {
  position: relative;
  z-index: 2013;
}
.top {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo img {
  height: 0.4rem;
}
/* web导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-right: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    z-index: 2014;
  }
  .i_nav > li {
    position: relative;
    margin-left: 0.72rem;
  }
  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: #333;
    white-space: nowrap;
  }
  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav .curr > a {
    color: var(--i_color);
  }
  .i_nav .sub-menu {
    display: none;
    position: absolute;
    border-bottom: 2px solid var(--i_color);
    background: rgb(255 255 255 / 100%);
    min-width: 1.6rem;
    overflow: hidden;
    top: 130%;
  }
  .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: #444;
    line-height: 0.44rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    left: 0;
  }
  .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: 8px;
}
.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;
}
@media screen and (max-width: 1440px) {
  .i_nav > li {
    margin-left: 0.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav > li {
    margin-left: 0.5rem;
  }
  .i_nav > li > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .logo {
    margin-right: auto;
  }
  .i_nav {
    display: none;
    position: fixed;
    top: var(--header_height);
    left: 0;
    width: 100%;
    width: 100vw;
    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 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 20px;
    -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 {
    font-size: 15px;
    color: #333;
    padding: 0.1rem;
  }
  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 0.14rem;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border_color);
  }
  .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav .sub-menu .sub-menu {
    display: none;
  }
  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 0.13rem;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }
  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}
/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: #333;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #333;
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}
.nav_menu.on i {
  opacity: 0;
}
.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}
.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
  }
}
.top_r {
  --size: 24px;
}
.top_r {
  margin-left: 0.8rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
}
@media screen and (max-width: 1440px) {
  .top_r {
    margin-left: 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: 0;
  }
}
.top_search_ico {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 0.3rem;
}
.top_search_ico iconify-icon {
  font-size: var(--size);
  cursor: pointer;
}
.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;
  color: #333;
}
/* .top_language::after{
  content: '';
  position: absolute;
  top:50%;transform: translateY(-50%);
  right: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #333;
  -webkit-transition:all .5s ease; transition:all .5s ease;
} 
.top_language.on::after{transform: translateY(-50%) rotate(180deg);} */
.top_language > iconify-icon {
  font-size: var(--size);
  cursor: pointer;
}
.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: flex;
  align-items: center;
  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: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}
header,
.top_cont,
.logo,
.logo img,
.i_nav > li,
.i_nav > li > a,
.top_r {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
/* search main */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  position: fixed;
  top: var(--header_height);
  display: none;
  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 {
  display: block;
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}
.top_search form {
  width: 80%;
  margin: 0 auto;
  max-width: 100%;
  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/public/search_1_bai.svg)
    no-repeat center;
  background-size: 0.2rem;
  cursor: pointer;
}
@media screen and (max-width: 1366px) {
  .top_search_ico {
    margin-right: 0.3rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .top_search_ico {
    margin: 0 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 0.34rem;
  }
  .top_search {
    padding: 0.12rem 0;
  }
}
@media screen and (max-width: 560px) {
  .top_search form {
    width: 94%;
  }
  .top_search_btn {
  }
}
/* banner */
.banner {
  position: relative;
  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: 80vh;
  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-button-prev,
.banner-button-next {
  position: absolute;
  top: 48%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  opacity: 0.3;
  z-index: 999;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-border-radius: 0.05rem;
  border-radius: 0.05rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.banner-button-prev {
  left: -0.6rem;
}
.banner-button-next {
  right: -0.6rem;
}
.banner-button-prev iconify-icon,
.banner-button-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #fff;
}
.banner:hover .banner-button-prev {
  left: 0rem;
}
.banner:hover .banner-button-next {
  right: 0rem;
}
.banner-button-prev:hover,
.banner-button-next:hover {
  background-color: var(--i_color);
  opacity: 0.6;
}
.banner-pagination {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0.2rem;
  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: 4px;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  margin: 0 0.08rem;
  background: #fff;
  position: relative;
  outline: none;
  overflow: hidden;
}
.banner-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  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上文字 */
.b_txt1 {
  position: absolute;
  top: 45%;
  left: 42%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.06);
  padding: 0.2rem;
  border-radius: 4px;
}
.b_txt1 h5 {
  width: 60%;
  font-size: 0.46rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}
.b_txt1 h6 {
  font-size: 0.26rem;
  line-height: 120%;
  color: #fff;
  font-weight: 200;
  margin-top: 0.3rem;
}
@media screen and (max-width: 1440px) {
  .b_txt1 h5 {
    font-size: 0.38rem;
  }
  .b_txt1 h6 {
    font-size: 0.22rem;
    margin-top: 0.35rem;
  }
}
@media screen and (max-width: 1366px) {
  .b_txt1 h5 {
    font-size: 0.32rem;
    width: 50%;
  }
  .b_txt1 h6 {
    font-size: 0.2rem;
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .b_txt1 h5 {
    font-size: 0.24rem;
    width: 100%;
  }
  .b_txt1 h6 {
    font-size: 0.18rem;
    width: 100%;
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 959px) {
  .b_txt1 {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .b_txt1 h5 {
    font-size: 18px;
  }
  .b_txt1 h6 {
    margin-top: 0.1rem;
  }
  .b_txt1 .i_more {
    margin: 0.2rem auto;
  }
}
.i_tit {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.i_tit > h4 {
  font-size: 0.36rem;
  color: var(--font_color);
  text-transform: capitalize;
  font-weight: 900;
  line-height: 130%;
}
.i_tit > p {
  font-size: 14px;
  color: var(--i_color);
  font-weight: 900;
  text-transform: capitalize;
}
.i_tit h5 {
  font-size: 20px;
  width: 70%;
  margin: 10px auto;
}
.i_tit.left {
  text-align: left;
}
.i_tit.white > h4 {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .i_tit > h4 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_tit > h4 {
    font-size: 0.22rem;
  }
}
/* home more btn */
.i_more {
  display: table;
  padding: 0.12rem 0.4rem;
  background: var(--i_color);
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
}
.i_more b {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.16rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 2;
}
.i_more b i {
  margin-left: 0.1rem;
  display: inline-block;
  width: 0.16rem;
  height: 0.16rem;
  background: url(static/images/public/arrow_right_hollow_bai.svg) no-repeat
    center;
  background-size: cover;
}
.i_more::before {
  content: "";
  width: 0;
  height: 1000%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--i_color2);
  transition: 0.5s ease;
  display: block;
  z-index: 1;
}
.i_more:hover::before {
  width: 180%;
}
.i_more_c {
  margin-left: auto;
  margin-right: auto;
}
.i_more_list {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.i_more_list a:nth-child(1) {
  margin-right: 0.16rem;
}
.i_more2 {
  background: none;
  border-color: rgb(255 255 255 / 40%);
}
.i_more2 b {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .i_more {
    padding: 0.1rem 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_more {
    padding: 8px 20px;
  }
  .i_more b {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .i_more {
    padding: 4px 20px;
  }
  .i_more b {
    font-size: 12px;
  }
}
/* -----------------------------------底部--------------------------------------- */
footer {
  background: var(--bc_color);
}
.f_box {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.f_logo img {
  max-width: 2rem;
}
.f_logo {
  width: 18%;
}
.f_contact {
  width: 26%;
}
.f_nav {
  width: 18%;
}
.f_tit {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.f_contact_list li {
  margin: 0.16rem 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.f_contact_list p {
  font-size: 0.18rem;
  color: #333;
  margin-bottom: 0.1rem;
}
.f_contact_list a,
.f_contact_list span {
  font-size: 0.18rem;
  color: #333;
  line-height: 200%;
}
.f_contact_list li:last-child a {
  background-color: var(--i_color);
  padding: 2px 16px;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_contact_list iconify-icon {
  color: var(--i_color);
  font-size: 0.24rem;
  margin-right: 10px;
}
.f_contact_list li:nth-child(2):hover a {
  text-decoration: underline;
  color: var(--i_color);
}
.f_contact_list li:last-child:hover a {
  background: none;
  border-color: var(--i_color);
  color: var(--i_color);
}
.f_contact_list li:last-child:hover iconify-icon {
  color: var(--i_color);
}

.f_nav li > a {
  font-size: 0.18rem;
  color: #333;
}
.f_nav a {
  display: block;
  font-size: 0.18rem;
  color: #333;
  position: relative;
}
.f_nav a {
  margin-bottom: 0.3rem;
  font-size: 0.18rem;
  color: #333;
  text-transform: capitalize;
}

.f_nav a:hover {
  color: var(--i_color);
}
.f_nav li > a::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--i_color);
  position: absolute;
  top: 50%;
  left: -0.15rem;
  transform: translateY(-50%);
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.f_media a {
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.2rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.f_media iconify-icon {
  font-size: 0.3rem;
  color: var(--i_color);
}
.f_media iconify-icon:hover {
  color: var(--i_color2);
}
.f_copy {
  border-top: 1px solid var(--border_color);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.f_copy a {
  font-size: 0.18rem;
  color: #333;
  line-height: 200%;
}
@media screen and (max-width: 1440px) {
  .f_tit {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .f_tit {
    font-size: 0.2rem;
  }
  .f_form {
    padding: 0;
    margin-bottom: 0.4rem;
  }
  .f_form p {
    font-size: 14px;
  }
  .f_nav {
    display: none;
  }
  .f_contact,
  .f_form {
    width: 100%;
  }
  .f_contact_list p {
    font-size: 16px;
  }
  .f_contact_list a {
    font-size: 15px;
  }
}
@media screen and (max-width: 959px) {
  .f_copy a {
    font-size: 14px;
    line-height: 120%;
  }
}
@media screen and (max-width: 560px) {
  .f_copy a:last-child {
    margin-top: 10px;
  }
}
.i_c_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.i_c_list li {
  width: 50%;
}
.i_c_list a {
  display: block;
  position: relative;
}
.i_c_list .img {
  position: relative;
  overflow: hidden;
}
.i_c_list .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.i_c_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i_c_list .txt {
  width: 50%;
  height: 15%;
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
  background: #fff;
  padding: 0.3rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.i_c_list h6 {
  font-size: 0.24rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #333;
}
.i_c_list p {
  font-size: 0.18rem;
  color: #333;
}
.i_c_list span {
  font-size: 0.3rem;
  font-weight: bold;
  display: block;
  margin-top: auto;
}
.i_c_list span:hover {
  color: var(--i_color);
}
@media screen and (min-width: 561px) {
  .i_c_list li:hover .txt {
    height: 50%;
    opacity: 1;
  }
}
@media screen and (max-width: 560px) {
  .i_c_list .txt {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    opacity: 0.8;
    padding: 0.1rem;
  }
  .i_c_list h6 {
    font-size: 15px;
  }
  .i_c_list span {
    font-size: 14px;
  }
  .i_c_list p {
    font-size: 13px;
  }
}
.ia {
  position: relative;
  background: url(static/images/bc_ia1.webp) no-repeat center;
  background-size: cover;
}
.ia h6 {
  text-align: center;
  background: linear-gradient(var(--i_color) 50%, #fff 50%) center;
  background-attachment: fixed;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px var(--i_color);
  font-size: 60px;
  font-weight: bold;
}
.ia p {
  color: #fff;
  width: 50%;
  font-size: 0.32rem;
  line-height: 150%;
  background: linear-gradient(var(--i_color2) 50%, #fff 50%) center;
  background-attachment: fixed;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1440px) {
  .ia p {
    width: 60%;
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .ia p {
    width: 100%;
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .ia h6 {
    font-size: 30px;
  }
}
.ip_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.ip_menu li {
  position: relative;
  cursor: pointer;
}
.ip_menu p {
  color: var(--font_color);
  font-size: 18px;
}
.ip_menu li.current p,
.ip_menu li:hover p {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .ip_menu p {
    font-size: 16px;
  }
  .ip_menu li:not(:last-child)::after {
    display: none;
  }
}

.ip_cont > div:not(:first-child) {
  display: none;
}
.ip_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.ip_list li {
  width: calc(25% - 18px);
  margin-right: 24px;
  margin-bottom: 0.3rem;
  padding: 0.1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border_color);
}
.ip_list li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 959px) {
  .ip_list {
    justify-content: space-between;
  }
  .ip_list li {
    width: 48%;
    margin-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .ip_list li {
    width: 100%;
  }
}
.ip_list .img {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ip_list .img::before {
  content: "";
  display: block;
  padding-bottom: 79.93%;
}
.ip_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ip_list h6 {
  font-size: 0.18rem;
  font-weight: bold;
  margin: 0.2rem 0;
}
.ip_list .txt {
  font-size: 16px;
  line-height: 180%;
  margin: 0.2rem 0 0.5rem;
}
.ip_list .ico {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  padding: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.ip_list .ico::after {
  content: "";
  width: 100%;
  height: 0;
  background: var(--gra_color);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ip_list .ico p {
  font-size: 14px;
  color: var(--font_color);
}
.ip_list img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ip_list li:hover img {
  width: 110%;
  height: 110%;
}
.ip_list li:hover h6 {
  color: var(--i_color);
}
.par_partner {
  position: relative;
}
.par_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.par_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.par_partner_list .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.par_partner_list .img {
  width: 100%;
}
.par_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.par_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.par_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.in_list {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border_color);
}
.in_list li {
  width: 33.33%;
  position: relative;
  overflow: hidden;
}
.in_list .img {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_list h6 {
  font-size: 0.22rem;
  font-weight: bold;

  position: absolute;
  left: 0.2rem;
  bottom: 0.2rem;
  text-transform: capitalize;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.in_list p {
  width: 100%;
  font-size: 0.16rem;
  font-weight: bold;
  padding: 0 0.2rem;
  line-height: 0.6rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.in_list li:hover .img {
  transform: translateY(-0.6rem);
}
@media screen and (max-width: 560px) {
  .in_list h6 {
    font-size: 0.2rem;
  }
  .in_list p {
    font-size: 0.14rem;
    line-height: 0.4rem;
  }
  .in_list li:hover .img {
    transform: translateY(-0.4rem);
  }
}

/* ---------------------------内页------------------------------- */
.in_banner {
  width: 100%;
  position: relative;
}
.in_banner .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.in_banner .img::after {
  content: "";
  display: block;
  padding-bottom: 25.36%;
}
.in_banner .img img {
  width: 101%;
  height: 101%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_b_text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  z-index: 5;
  text-align: center;
  text-shadow: 0px 2px 2px #222;
}
.in_b_text h2 {
  margin-bottom: 0.1rem;
  text-transform: capitalize;
  font-size: 0.4rem;
  color: #fff;
  font-weight: bold;
}
.breadcrumbs {
  display: -webkit-flex;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs a {
  font-size: 0.18rem;
  color: #fff;
}
.breadcrumbs a:not(:last-child):after {
  content: ">";
  margin: 0 0.06rem;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .in_b_text h2 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_b_text {
    top: 46%;
  }
  .in_b_text h2 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .in_banner .img::after {
    padding-bottom: 45.36%;
  }
  .in_b_text h2 {
    font-size: 0.26rem;
  }
  .breadcrumbs a {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 560px) {
  .in_b_text h2 {
    font-size: 0.2rem;
  }
  .breadcrumbs a {
    font-size: 0.16rem;
  }
}
.in_a {
  background: url(static/images/bc_in_a.webp) no-repeat center right;
  background-size: cover;
}
.in_a .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.in_a .txt {
  width: 50%;
}
.in_a .img {
  width: 40%;
  position: relative;
  overflow: hidden;
}
.in_a .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.in_a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_a h6 {
  font-size: 12px;
  letter-spacing: 4px;
  position: relative;
  color: #333;
  padding-left: 10px;
  text-transform: capitalize;
}
.in_a h6::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.in_a p {
  font-size: 0.45rem;
  margin: 0.3rem 0;
}
@media screen and (max-width: 1440px) {
  .in_a p {
    font-size: 0.35rem;
  }
}
@media screen and (max-width: 1024px) {
  .in_a p {
    font-size: 0.2rem;
  }
  .in_a .txt {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .in_a .img {
    width: 100%;
  }
}
.service_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid var(--border_color);
}
.service_list li {
  width: 30%;
}
.service_list a {
  display: table;
  font-size: 24px;
  border-bottom: 1px solid #333;
  color: #333;
  margin-bottom: 0.12rem;
}
.service_list a:hover {
  color: var(--i_color);
  border-color: var(--i_color);
}
.service_list h6 {
  font-size: 0.24rem;
  margin-bottom: 0.2rem;
  text-transform: capitalize;
}
.service_list p {
  font-size: 0.16rem;
  line-height: 180%;
}
@media screen and (max-width: 1024px) {
  .service_list li {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .service_list a,
  .service_list h6 {
    font-size: 0.18rem;
  }
}

.culture_box {
  background: var(--bc_color);
}
.culture_list {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
}
.culture_list li {
  width: 50%;
  color: #333;
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
}
.culture_list li:nth-child(3),
.culture_list li:nth-child(4) {
  flex-direction: row-reverse;
}
.culture_list .img {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.culture_list .img::before {
  content: "";
  display: block;
  padding-bottom: 72.5%;
}
.culture_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.culture_list article {
  width: 50%;
  padding: 0.3rem;
  position: relative;
  z-index: 2;
}
.culture_list .text {
  max-height: 1.6rem;
  overflow-y: auto;
  font-size: 0.16rem;
}
/* 宽度和背景颜色 */
.culture_list .text::-webkit-scrollbar {
  width: 2px; /* 垂直滚动条的宽度 */
}
.culture_list .text::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* 背景颜色 */
}
.culture_list .text::-webkit-scrollbar-thumb {
  background-color: var(--i_color); /* 滑块的颜色 */
}
.culture_list h6 {
  font-size: 0.22rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
  text-transform: capitalize;
}

.culture_list li::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--i_color);
  opacity: 0;
}
.culture_list article,
.culture_list img,
.culture_list li::after {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.culture_list li:hover::after {
  height: 100%;
  opacity: 1;
}
.culture_list li:hover article {
  color: #fff;
}
.culture_list li:hover img {
  width: 105%;
  height: 105%;
}

@media screen and (max-width: 1024px) {
  .culture_list li {
    width: 100%;
  }
  .culture_list h6 {
    font-size: 0.18rem;
  }
  .culture_list .text {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .culture_list article,
  .culture_list .img {
    width: 100%;
  }
}

.in_contact .txt {
  text-align: center;
  margin: 0 auto;
  width: 60%;
}
.in_contact h6 {
  font-size: 0.24rem;
  margin-bottom: 0.3rem;
  line-height: 170%;
}
.in_contact p {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .in_contact .txt {
    width: 80%;
  }
  .in_contact h6 {
    font-size: 0.18rem;
  }
}
.in_a_box {
  background: #ececec;
}
.in_a_list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.in_a_list li {
  width: 24.5%;
}
.in_a_list .img {
  position: relative;
  overflow: hidden;
}
.in_a_list .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.in_a_list .img 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;
}
.in_a_list li:nth-child(even) .img::before {
  padding-bottom: 130%;
}
.in_a_list p {
  font-size: 12px;
  margin: 0.2rem 0;
  letter-spacing: 4px;
  text-transform: capitalize;
}
.in_a_list h6 {
  font-size: 0.18rem;
}
.in_a_list li:hover img {
  width: 110%;
  height: 110%;
}
@media screen and (max-width: 1024px) {
  .in_a_list li {
    width: 48%;
  }
  .in_a_list p {
    margin: 0.1rem 0;
  }
  .in_a_list h6 {
    font-size: 0.16rem;
  }
  .in_a_list li:nth-child(even) .img::before {
    padding-bottom: 70%;
  }
}
.logo_list {
  position: relative;
  overflow: hidden;
}
.logo_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.logo_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 127%;
}
.logo_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
/* ----------------------产品列表页---------------------------------- */
.in_products {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p_nav {
  padding: 0.2rem 0.4rem;
  width: 28%;
  margin-right: auto;
  background-color: var(--bc_color);
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.p_nav .i_tit h2 {
  font-size: 0.32rem;
}
.p_nav .i_tit {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.2rem;
}
.p_men_list {
  width: 100%;
}
.p_menu_tit {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  font-size: 0.24rem;
  color: var(--font_color);
  font-weight: bold;
}
.p_menu_tit img {
  width: 0.5rem;
  margin-right: 0.2rem;
}
.p_menu_tit p {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* 折叠面板 */
.p_men_list {
  padding: 0;
  margin: 0;
  font-size: 1em;
  line-height: 0.5em;
  list-style: none;
}
.p_men_list li {
  position: relative;
}
.p_men_list li a {
  position: relative;
  line-height: 100%;
  font-size: 0.18rem;
  padding: 0.12rem 2%;
  display: block;
  box-sizing: border-box;
  text-transform: capitalize;
}
.p_men_list ul {
  padding: 0;
  display: none;
  overflow: hidden;
}
.p_men_list ul li {
  margin: 0;
  padding: 0;
  clear: both;
}
.p_men_list ul li a {
  padding-left: 0.3rem;
  font-size: 0.16rem;
  outline: 0;
  color: var(--font_color);
  text-transform: capitalize;
}
.p_men_list > li:hover > a,
.p_men_list > li.active > a {
  color: var(--i_color);
}
.p_men_list > li.active > a {
  font-weight: bold;
}
.p_men_list ul li:hover a,
.p_men_list ul li.active a {
  color: #4d4d4d;
}
.p_men_list ul li.active a {
  font-weight: bold;
}
.p_men_list ul ul li a {
  color: var(--font_color);
  padding-left: 40px;
}
.p_men_list ul ul li a:hover {
  color: var(--i_color);
}
.p_men_list span {
  cursor: pointer;
  position: absolute;
  top: 0.1rem;
  right: 3%;
  z-index: 3;
  width: 20px;
  height: 20px;
  font-size: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p_men_list > li:hover > span,
.p_men_list > li.active > span {
  color: var(--i_color);
}
.p_men_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_men_list ul li:hover i,
.p_men_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.26rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
}
.c_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c_cont .img {
  position: relative;
  overflow: hidden;
  width: 30%;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.c_cont .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.c_cont .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c_cont article {
  width: 65%;
  color: #666;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-height: calc(0.24rem * 8);
  overflow-y: auto;
  padding-right: 2%;
}
.c_cont article * {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.c_cont article::-webkit-scrollbar {
  width: 2px;
  border-radius: 3px;
}
.c_cont article::-webkit-scrollbar-track {
  width: 1px;
  background-color: #d8d8d8;
}

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

@media screen and (max-width: 1024px) {
  .c_cont article {
    font-size: 14px;
    line-height: 20px;
    max-height: calc(20px * 8);
  }
  .c_cont article * {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 959px) {
  .c_cont {
    display: none;
  }
}

.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;
  }
}
.in_p_list > a {
  display: block;
  width: 100%;
}
.in_p_list h6 {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  margin: 0.22rem 0.2rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.in_p_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;

  border: 1px solid #d8d8d8;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 99%;
}
.in_p_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@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: 16px;
  }
  .in_p_list p {
    font-size: 14px;
  }
}
/* 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;
  }
}

.in_p_contact {
  background: url(static/images/bc_p_contact.png) no-repeat center;
  background-size: cover;
}
.in_p_contact .wrap {
  height: 1.15rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
}
.in_p_contact .i_more {
  margin-left: auto;
  text-transform: capitalize;
}
.in_p_contact .i_more::before {
  background-color: #ddd;
}
.in_p_contact .i_more img {
  margin-right: 10px;
}
.in_p_contact .ico {
  width: 1rem;
  height: 100%;
  background-color: var(--i_color);
  margin-right: 0.32rem;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.in_p_contact iconify-icon {
  font-size: 0.5rem;
  color: #fff;
}
.in_p_contact h6 {
  width: 35%;
  font-size: 0.18rem;
  color: #333;
  line-height: 150%;
}
.in_p_contact .ico:hover {
  background-color: #ddd;
}
@media screen and (max-width: 1024px) {
  .in_p_contact {
    position: relative;
    background: none;
    background-color: var(--i_color2);
  }
  .in_p_contact .ico {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 auto;
  }
  .in_p_contact .wrap {
    height: auto;
  }
  .in_p_contact h6 {
    width: 100%;
    margin: 0.2rem 0;
  }
  .in_p_contact .i_more {
    margin: 0 auto;
  }
}

/* --------------------------------detail------------------------------------ */

.pd_share {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.16rem;
  margin: 0.2rem 0;
}
.pd_share p {
  color: #626262;
}
.share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.share p {
  font-size: 0.2rem;
  font-weight: bold;
  color: #363636;
}
.share a {
  margin-left: 0.2rem;
}
.share a iconify-icon {
  font-size: 0.24rem;
  color: #d8d8d8;
}
.share a img {
  max-width: 0.24rem;
  opacity: 0.2;
}
.share a:hover iconify-icon {
  color: var(--i_color);
}
/* 详情页当前位置 */
.in_position {
  padding: 0.2rem 0;
  width: 100%;
  border-top: 1px solid #eee;
}
.in_position_bc {
  background-color: #f2f5fa;
}
.in_position a {
  display: block;
  float: left;
  font-size: 14px;
  color: #333;
  position: relative;
  line-height: 20px;
  text-transform: capitalize;
}
.in_position a:first-child {
  padding-left: 24px;
  background: url(static/imgs/home_1_hei.svg) no-repeat left center;
  background-size: 16px;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 0.1rem;
  color: #333;
}
.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_factory_cont {
  --sm_pic_width: 17%;
}
.in_factory_cont {
  position: relative;
  overflow: hidden;
}
.in_factory_cont:before {
  content: "";
  display: block;
  padding-bottom: 86.98%;
}
.in_factory_list_box {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sm_pic_width);
  height: 100%;
  box-sizing: border-box;
  padding: 40px 0;
}
.in_factory_list {
  height: 100%;
  overflow: hidden;
}
.in_factory_list .swiper-slide {
  cursor: pointer;
}
.in_factory_list .img {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.in_factory_list .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_factory_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #eee;
}
.in_factory_list .swiper-slide-thumb-active .img {
  border: 2px solid var(--i_color);
}
.infactory-button-prev,
.infactory-button-next {
  opacity: 0.8;
  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;
}
.infactory-button-prev {
  top: 4px;
  background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
  background-size: contain;
}
.infactory-button-next {
  bottom: 4px;
  background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
    center;
  background-size: contain;
}
.infactory-button-prev.swiper-button-disabled,
.infactory-button-next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.in_factory_show_box {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--sm_pic_width) - 20px);
  height: 100%;
  box-sizing: border-box;
  padding: 0 0;
  margin: 0 auto;
}
.in_factory_show {
  background: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.in_factory_show .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.in_factory_show .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_factory_show .img {
  width: 100%;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.in_factory_show .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_factory_show .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.infactory-pagination {
  display: none;
  margin: 16px auto 0;
  text-align: center;
}
.infactory-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: block;
  margin: 0 6px;
  background: #ccc;
  border-radius: 0.5rem;
  outline: none;
  cursor: pointer;
}
.infactory-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
@media screen and (max-width: 1366px) {
  .in_factory_cont:before {
    padding-bottom: 58.43%;
  }
}
@media screen and (max-width: 1024px) {
  .in_factory_list_box {
    display: none;
  }
  .in_factory_show_box {
    width: 100%;
  }
  .infactory-pagination {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.pd_img_box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pd_box .left_img {
  width: 45%;
}
.pd_img_box .right_txt {
  width: 50%;
}
@media screen and (max-width: 769px) {
  .pd_box .left_img {
    width: 100%;
  }
  .pd_img_box .right_txt {
    margin: 0.3rem auto;
    width: 100%;
  }
}
.pd_img_box h1 {
  font-weight: bold;
  font-size: 0.24rem;
  text-transform: capitalize;
  color: #222;
}
.parameters {
  font-size: 0.16rem;
  color: #666;
  line-height: 170%;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--border_color);
}
.parameters ul {
  padding-left: 20px;
}
.parameters ul li {
  margin: 6px 0;
}
.parameters p {
  font-size: 0.16rem;
  margin: 6px 0;
}
@media screen and (max-width: 1366px) {
  .pd_img_box h1 {
    font-size: 0.26rem;
    margin-bottom: 0.2rem;
  }
  .parameters {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .pd_img_box h1 {
    font-size: 0.22rem;
    margin-bottom: 0.12rem;
  }
  .parameters {
    font-size: 0.14rem;
  }
}
.detail_box .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pd_tit {
  padding: 0.18rem 0;
  border-bottom: 1px solid var(--border_color);
}
.pd_tit span {
  display: block;
  font-size: 0.24rem;
  font-weight: bold;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .pd_tit span {
    font-size: 0.2rem;
  }
}
.detail {
  width: 65%;
  margin-right: auto;
}
.detail .content {
  padding: 0.3rem 0;
  font-size: 0.16rem;
  color: #333;
}
.detail .content img {
  max-width: 100%;
}
.detail article {
  color: #333;
  font-size: 0.18rem;
}
.detail article * {
  line-height: 150%;
}
.detail article p {
  min-height: 20px;
}
.detail article img,
.detail article iframe {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%;
}
.detail article h2 {
  font-size: 0.26rem;
  color: var(--i_color);
  margin-bottom: 0.1rem;
}
.detail article ul,
.detail article ol {
  padding-left: 20px;
}
.detail article li {
  margin: 6px 0;
}
.pd_form {
  width: 30%;
  margin-left: auto;
  padding: 0.3rem 0.2rem;
  background: var(--bc_color);
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
@media screen and (max-width: 768px) {
  .detail {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .pd_form {
    width: 100%;
  }
}
.pd_form .i_tit h2 {
  text-align: left;
  margin-bottom: 0.3rem;
  font-size: 0.24rem;
  font-weight: bold;
  text-transform: capitalize;
}
@media screen and (max-width: 1440px) {
  .pd_form .i_tit h2 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 560px) {
  .pd_form .i_tit h2 {
    font-size: 18px;
  }
}
#wpforms-71 {
  --input_font_size: 16px;
  --input_height: 0.48rem;
}
#wpforms-form-71 {
  width: 100%;
}
#wpforms-71 input,
#wpforms-71 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-71 .wpforms-field {
  padding: 0;
  margin-bottom: 0.1rem;
  position: relative;
}
#wpforms-71 .wpforms-field-label {
  font-size: 0;
}
#wpforms-71 .wpforms-required-label {
  position: absolute;
  top: 0.1rem;
  left: 0.05rem;
  font-size: 0.16rem;
  color: #f00;
}
#wpforms-71 .wpforms-field-container input,
#wpforms-71 textarea {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  border: none !important;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  box-sizing: border-box;
  background: white;
  padding: 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
#wpforms-71 .wpforms-field-container input:hover,
#wpforms-71 textarea:hover {
  border-color: var(--i_color);
}
#wpforms-71 input {
  line-height: var(--input_height);
}
#wpforms-71 textarea {
  line-height: 0.22rem;
  padding: 0.06rem 0.16rem;
}
#wpforms-71 input::-webkit-input-placeholder,
#wpforms-71 textarea::-webkit-input-placeholder {
  color: #ccc;
  font-size: var(--input_font_size);
}
#wpforms-71 input::-moz-placeholder,
#wpforms-71 textarea::-moz-placeholder {
  color: #ccc;
  font-size: var(--input_font_size);
}
#wpforms-71 input::-ms-input-placeholder,
#wpforms-71 textarea::-ms-input-placeholder {
  color: #fff;
  font-size: var(--input_font_size);
}
#wpforms-71-field_1-error,
#wpforms-71-field_2-error,
#wpforms-71-field_3-error,
#wpforms-71-field_4-error,
#wpforms-71-field_5-error,
#wpforms-71-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-71 .wpforms-field-container {
  width: 100%;
}
#wpforms-71 .wpforms-submit-container button {
  display: table;
  width: 100%;
  padding: 0.12rem 0.5rem;
  margin-top: 0.3rem;
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
  font-size: 0.16rem;
  color: #fff;
  font-weight: bold;
  background: var(--i_color);
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: 0.5s ease;
  overflow: hidden;
}
#wpforms-71 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-71 .wpforms-submit-container button::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 100%;
  left: 50%;
  border-radius: 40%;
  transform: translateX(-50%);
  background: #ddd;
  transition: 0.5s ease;
  z-index: -1;
}
#wpforms-71 .wpforms-submit-container button:hover {
  color: #fff;
}
#wpforms-71 .wpforms-submit-container button:hover::before {
  top: -10%;
}
@media screen and (max-width: 1024px) {
  #wpforms-form-54 {
    flex-wrap: wrap;
  }
  #wpforms-71 .wpforms-field {
    width: 100%;
    position: relative;
  }
  #wpforms-71 .wpforms-field-container {
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #wpforms-71-field_1-container,
  #wpforms-71-field_3-container {
    width: 100% !important;
  }
  #wpforms-71 .wpforms-submit-container {
    margin: 0 auto;
  }
  #wpforms-71 .wpforms-submit-container button {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  #wpforms-71 {
    --input_font_size: 13px;
    --input_height: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  #wpforms-71-field_1-container,
  #wpforms-71-field_2-container,
  #wpforms-71-field_3-container {
    width: 100% !important;
  }
}
/* Related Product轮播 */
.r_p {
  position: relative;
  background: var(--bc_color);
}
.r_p_list {
  width: 90%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.r_p_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.r_p_list .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.rp-button-prev,
.rp-button-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.68rem;
  height: 0.8rem;
  background-color: var(--i_color);
  border-radius: 0.5rem;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rp-button-prev {
  left: 0;
}
.rp-button-next {
  right: 0%;
}
.rp-pagination {
  display: none;
}
@media screen and (max-width: 1024px) {
  .rp-pagination {
    display: block;
    text-align: center;
    margin-top: 0.3rem;
  }
}
.rp-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  border-radius: 0.5rem;
  outline: none;
  cursor: pointer;
}
.rp-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.r_p_list a {
  display: block;
  width: 100%;
}
.r_p_list h6 {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  margin: 0.16rem 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.r_p_list .img {
  width: 100%;
  position: relative;
  overflow: hidden;

  border: 1px solid #d8d8d8;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.r_p_list .img::before {
  content: "";
  display: block;
  padding-bottom: 99%;
}
.r_p_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .r_p_list h6 {
    font-size: 0.16rem;
  }
}

/*----------------------------------- news-------------------- */

.news_ul {
  margin-top: 0.6rem;
}
.news_ul li {
  box-sizing: border-box;
  padding: 0.5rem 4.8%;

  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s ease;
}
.news_ul li a {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.news_ul li::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--bc_color);
  z-index: -1;
  transition: all 0.5s ease;
}
.news_ul li:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}
.news_ul_img {
  position: relative;
  width: 18.5%;
  overflow: hidden;
}
.news_ul_img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.news_ul_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_ul_text {
  width: 81.5%;
  box-sizing: border-box;
  padding-left: 4.6%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
}
.news_ul_text h3 {
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.news_ul_text h4 {
  font-size: 0.18rem;
  line-height: 150%;
  color: #333333;
  margin: 0.3rem 0 0.4rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news_ul_text h5 {
  font-size: 0.18rem;
  line-height: 0.32rem;
  color: #333333;
}
.news_ul li:hover {
  border-bottom: 1px solid transparent;
}

@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1440px) {
  .news_ul li {
    padding: 0.5rem 4%;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .news_ul li {
    padding: 0.4rem 3%;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .news_ul_img {
    width: 80%;
    margin: 0 auto;
  }
  .news_ul_text {
    width: 100%;
    margin-top: 0.2rem;
  }
  .news_ul_text h4 {
    margin: 0.2rem 0;
  }
  .news_ul_img::after {
    padding-bottom: 50%;
  }
  .news_ul_text {
    padding-left: 0%;
  }
  .news_ul {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .news_ul_img {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
}
/* Contact Us */
.c_form {
  background: #f1f1f1;
}
#wpforms-46 {
  --input_font_size: 14px;
  --input_height: 0.46rem;
}
#wpforms-46 {
  margin: 0;
  padding: 0;
}
#wpforms-form-46 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#wpforms-46 input,
#wpforms-46 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-46 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-46 .wpforms-field-label {
  font-size: 0;
}
#wpforms-46 .wpforms-required-label {
  position: absolute;
  top: 0.06rem;
  left: 4px;
  font-size: 0.16rem;
  color: #f00;
}
#wpforms-46 .wpforms-field {
  width: 100%;
  background: transparent;
  padding-bottom: 0.2rem;
  position: relative;
  overflow: hidden;
}
#wpforms-46 .wpforms-field-container input,
#wpforms-46 textarea,
#wpforms-46 select {
  width: 100%;
  max-width: 100% !important;
  min-width: 100%;
  font-size: var(--input_font_size);
  color: #333;
  height: var(--input_height);
  border: 1px solid transparent;
  background: #fff;
  padding: 0 0.1rem 0 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wpforms-46 .wpforms-field-container input:hover,
#wpforms-46 textarea:hover {
  border-color: var(--i_color);
}
#wpforms-46 input {
  line-height: var(--input_height);
}
#wpforms-46 textarea {
  line-height: 0.22rem;
  min-height: 1rem;
  padding: 0.06rem 0.16rem;
}

#wpforms-46 input::-webkit-input-placeholder,
#wpforms-46 textarea::-webkit-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-46 input::-moz-placeholder,
#wpforms-46 textarea::-moz-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-46 input::-ms-input-placeholder,
#wpforms-46 textarea::-ms-input-placeholder {
  color: rgb(0 0 0 / 40%);
  font-size: var(--input_font_size);
}
#wpforms-46-field_1-error,
#wpforms-46-field_2-error,
#wpforms-46-field_3-error,
#wpforms-46-field_4-error,
#wpforms-46-field_5-error,
#wpforms-46-field_6-error {
  position: absolute;
  font-size: 12px;
  color: #a90909;
}
#wpforms-46 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
#wpforms-46 .wpforms-field-container > div:first-child,
#wpforms-46 .wpforms-field-container > div:nth-child(2),
#wpforms-46 .wpforms-field-container > div:nth-child(3) {
  width: 32%;
}
#wpforms-46 .wpforms-submit-container {
  text-align: center;
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 2rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 0.06rem;
  border-radius: 0.06rem;
}
#wpforms-46 .wpforms-submit-container button {
  width: 100%;
  height: 0.42rem;
  font-size: 0.14rem;
  color: #fff;
  font-weight: bold;
  line-height: 0.42rem;
  background: var(--i_color);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
#wpforms-46 .wpforms-submit-container button:hover {
  background: var(--i_color2);
}
#wpforms-46 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}

.c_contact {
}
.c_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 4%;
}
.c_list dt {
  width: 30.66%;
}
.c_list dd {
  width: 100%;
}
.c_list dt,
.c_list dd {
  padding-top: 0.4rem;
  border-top: 1px solid var(--border_color);
}
.c_list i {
  display: block;
  width: 0.2rem;
  height: 0.2rem;
  background: var(--i_color);
  position: relative;
}
.c_list i iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.14rem;
  color: #fff;
}
.c_list h6 {
  margin: 0.14rem 0;
  padding-bottom: 0.14rem;
  font-size: 0.18rem;
  color: #666;
  position: relative;
}
.c_list h6::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.6rem;
  height: 2px;
  background: var(--i_color);
}
.c_list a,
.c_list p {
  display: block;
  font-size: 0.2rem;
  color: #111;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .c_list {
    gap: 0.2rem 4%;
  }
  .c_list dt,
  .c_list dd {
    padding-top: 0.24rem;
  }
  .c_list h6 {
    font-size: 0.16rem;
  }
  .c_list a,
  .c_list p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .c_list dt {
    width: 100%;
  }
  .c_list h6 {
    font-size: 0.15rem;
  }
  .c_list a,
  .c_list p {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 560px) {
  .c_list a,
  .c_list p {
    font-size: 0.16rem;
  }
}
.c_map {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.c_map::before {
  content: "";
  display: block;
  padding-bottom: 34%;
}
.c_map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* case */
.sol_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.sol_list li {
  background-color: #f7f7f7;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  width: calc(100% / 3 - 0.2rem);
  margin-right: 0.3rem;
  margin-bottom: 0.6rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sol_list li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 959px) {
  .sol_list li {
    width: 49%;
    margin-right: 0;
  }
  .sol_list {
    justify-content: space-between;
  }
}
@media screen and (max-width: 560px) {
  .sol_list li {
    width: 100%;
  }
  .sol_list li:nth-child(3n) {
    margin-right: 0%;
  }
}
.sol_list .txt {
  padding: 20px;
}
.sol_list h6 {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sol_list p {
  margin: 16px 0;
  font-size: 16px;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sol_list .img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.sol_list .img::before {
  content: "";
  display: block;
  padding-bottom: 62.92%;
}
.sol_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sol_list li:hover {
  box-shadow: 2px 4px 10px rgba(1, 81, 151, 0.1);
  background: #fff;
}
.sol_list li:hover h6 {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .sol_list h6 {
    font-size: 18px;
    margin: 0.1rem 0;
  }
  .sol_list p {
    font-size: 16px;
    margin: 0.1rem 0;
  }
}
/* ------------------news----------- */
.s_nav_tit {
  width: 100%;
  background-color: var(--i_color);
  position: relative;
  display: none;
}
.s_nav_tit h6 {
  font-size: 0.2rem;
  line-height: 0.4rem;
  color: white;
  text-align: center;
}
.s_nav_tit i {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background: url(static/images/arrow_down_hollow_bai.svg) no-repeat center;
  background-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.s_nav_tit.on i {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .s_nav_tit {
    display: block;
  }
}
.menu {
  margin-top: 20px;
}
.navFix {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto 0;
  top: var(--header_height);
  z-index: 99;
  width: 100%;
  background-color: #fff;
  padding: 0.1rem 0;
  border-top: 1px solid var(--border_color);
}
@media screen and (max-width: 1024px) {
  .navFix {
    padding: 0;
  }
  .menu {
    margin-top: 0;
  }
}
.case_menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  gap: 0 0.2rem;
}
.case_menu li {
  min-width: 18%;
  text-align: center;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background-color: #eee;
}
.case_menu a {
  display: block;
  width: 100%;
  padding: 0.1rem 0.3rem;
  font-size: 0.18rem;
  color: #333;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.case_menu li::after {
  content: "";
  width: 0%;
  right: 0;
  height: 100%;
  background: var(--i_color);
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1025px) {
  .case_menu li.curr::after,
  .case_menu li:hover::after {
    width: 100%;
    right: initial;
    left: 0;
  }
  .case_menu li.curr a,
  .case_menu li:hover a {
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .case_menu {
    display: none;
    width: 100%;
  }
  .case_menu li {
    min-width: 100%;
    border-bottom: 1px solid var(--border_color);
    text-align: left;
  }
  .case_menu a {
    font-size: 0.16rem;
    padding: 0.1rem 0.2rem;
  }
  .case_menu li.curr a,
  .case_menu li:hover a {
    color: var(--i_color);
  }
}
.in_news_list {
  --img_width: 248px;
  margin-top: 46px;
  padding-bottom: 204px;
  overflow: hidden;
}
.in_news_list li {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border_color);
  margin: 0 0 30px 0;
  position: relative;
  overflow: hidden;
}
.in_news_list .img {
  float: left;
  width: var(--img_width);
  position: relative;
  overflow: hidden;
}
.in_news_list .img:before {
  content: "";
  display: block;
  padding-bottom: 64%;
}
.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 {
  float: right;
  width: calc(100% - var(--img_width) - 100px);
  margin-right: 60px;
  position: relative;
}
.in_news_list .txt h4 {
  font-size: 17px;
  color: #333;
  font-weight: bold;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.in_news_list .n_time {
  margin: 6px 0 8px;
  font-size: 13px;
  color: #999;
}
.in_news_list .txt h6 {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.in_news_list .i_more2 {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 16px;
  border: 1px solid var(--i_color);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #fff url("static/images/right.svg") no-repeat center;
  background-size: 18px;
  overflow: hidden;
}
.in_news_list .img:hover img {
  width: 110%;
  height: 110%;
}
.in_news_list h4:hover {
  color: var(--i_color);
}
.in_news_list .img img {
  -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_news_list li {
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .in_news_list {
    --img_width: 200px;
  }
  .in_news_list .txt h4 {
    font-size: 16px;
  }
  .in_news_list .txt h6 {
    font-size: 13px;
  }
}
@media screen and (max-width: 959px) {
  .in_news_list .txt h4 {
    line-height: 24px;
    -webkit-line-clamp: 2;
  }
  .in_news_list .txt h6 {
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 767px) {
  .in_news_list {
    margin-top: 30px;
  }
  .in_news_list {
    --img_width: 166px;
  }
  .in_news_list .txt {
    width: calc(100% - var(--img_width) - 22px);
    margin-right: 0;
  }
  .in_news_list .i_more2 {
    display: none;
  }
  .in_news_list .txt h4 {
    font-size: 15px;
    line-height: 20px;
  }
  .in_news_list .txt h6 {
    font-size: 12px;
    line-height: 16px;
  }
}
@media screen and (max-width: 560px) {
  .in_news_list {
    margin-top: 20px;
  }
  .in_news_list {
    --img_width: 140px;
  }
  .in_news_list li {
    padding: 0 0 14px;
    border: none;
    border-bottom: 1px solid var(--border_color);
  }
  .in_news_list .txt h4 {
    font-size: 14px;
  }
  .in_news_list .txt h6 {
    -webkit-line-clamp: 1;
  }
}
/* -------------------------------------- 侧边客服 -------------------------------------- */
.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: 50%;
  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/send.png) no-repeat center;
  background-size: contain;
}
/* .aside_right li:nth-child(3) em{background:url(static/imgs/wx.png) no-repeat center; background-size:contain} */
.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;
}
/* .aside_right li:nth-child(3) .side_tel_box{width: 150px; }
.side_tel_box img{
	width: 100%;
	height: 100%;
	object-fit: contain;
} */
.aside_right li:nth-child(1) > a {
  background-color: var(--i_color2);
}
.aside_right li:nth-child(2) > a {
  background-color: var(--i_color);
}
.aside_right li:nth-child(3) > a {
  background-color: #666;
}
.aside_right li:nth-child(4) > a {
  background-color: #333;
}
.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-43 {
  --input_font_size: 16px;
  --input_height: 42px;
}
#wpforms-43 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#wpforms-form-43 {
  width: 100%;
  overflow: hidden;
}
#wpforms-43 input,
#wpforms-43 button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#wpforms-43 .wpforms-field {
  padding: 0;
  margin: 0;
}
#wpforms-43 .wpforms-error-container {
  line-height: 16px;
}
#wpforms-43 .wpforms-field-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#wpforms-43 .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-43 .wpforms-field {
  position: relative;
}
#wpforms-43 .wpforms-field-label {
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0 !important;
}
#wpforms-43 .wpforms-field-label span {
  position: absolute;
  top: 15px;
  left: 3px;
  font-size: 14px;
  color: red;
}
#wpforms-43 .wpforms-error {
  margin-top: 0.01rem;
  font-size: 12px !important;
}
#wpforms-43 .wpforms-field {
  width: 100%;
  padding-bottom: 20px;
  background: transparent;
  overflow: hidden;
}
#wpforms-43 .wpforms-field:nth-child(1) {
  margin-right: 20px;
}
#wpforms-43 .wpforms-field:nth-child(1),
#wpforms-43 .wpforms-field:nth-child(2) {
  width: calc(50% - 10px);
}
#wpforms-43 input {
  height: var(--input_height);
}
#wpforms-43 textarea {
  min-height: 100px;
}
#wpforms-43 input,
#wpforms-43 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-43 input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--input_font_size);
}
#wpforms-43 #wpforms-43-field_1-error,
#wpforms-43 #wpforms-43-field_2-error,
#wpforms-43 #wpforms-43-field_3-error,
#wpforms-43 #wpforms-43-field_4-error {
  position: absolute;
  font-size: 14px;
}
#wpforms-43 .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-43 .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-43 .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;
  }
}

h1 {
  margin-bottom: 0.4rem;
  font-size: 0.3rem;
  color: #100800;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 0.22rem;
  }
}
.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: 1024px) {
  .single_grid_btn a {
    font-size: 0.16rem;
    padding: 0.1rem 0.5rem;
  }
}
.p_detailType {
  margin: 0.3rem 0;
  font-size: 0.16rem;
  color: #666;
}
.p_detailType article ul,
.p_detailType article ol {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p_detailType h2 {
  font-size: 0.24rem;
  margin: 20px 0 10px;
  color: #333;
}
