.product_body {
  padding: 0.63rem 0 0.97rem;
  width: 100%;
}
.product_body .main {
  display: flex;
  justify-content: space-between;
}
.product_body .main .product_nav {
  width: 3.34rem;
}
.product_body .main .product_nav .nav_box {
  position: sticky;
  width: 100%;
  top: 1.6rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.1rem 0.01rem rgba(0, 0, 0, 0.1);
  border-radius: 0.1rem;
  padding-bottom: 0.23rem;
  overflow: hidden;
}
.product_body .main .product_nav .nav_box .class_name {
  padding: 0.3rem 0.2rem 0.34rem;
  margin-bottom: 0.22rem;
  text-align: center;
  text-transform: uppercase;
  background: #393939;
  font-family: OpenSans-Regular;
  font-weight: 400;
  font-size: 0.26rem;
  color: #FFFFFF;
}
.product_body .main .product_nav .nav_box .nav_item .nav_l1 {
  width: 100%;
  padding: 0.26rem 0.23rem 0.26rem 0.18rem;
  border-left: 0.06rem solid #fff;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.product_body .main .product_nav .nav_box .nav_item .nav_l1 a {
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.2rem;
  color: #000000;
}
.product_body .main .product_nav .nav_box .nav_item .nav_l1 i {
  width: 0.13rem;
  height: 0.13rem;
  background: url(../images/jiantou2.png) no-repeat center center;
  background-size: contain;
  filter: brightness(0);
  cursor: pointer;
}
.product_body .main .product_nav .nav_box .nav_item .act,
.product_body .main .product_nav .nav_box .nav_item .nav_l1:hover {
  border-left: 0.06rem solid #CE0010;
  background: #F5F5F5;
}
.product_body .main .product_nav .nav_box .nav_item .act a,
.product_body .main .product_nav .nav_box .nav_item .nav_l1:hover a {
  color: #CE0010;
}
.product_body .main .product_nav .nav_box .nav_item .act i,
.product_body .main .product_nav .nav_box .nav_item .nav_l1:hover i {
  filter: brightness(1) invert(0);
}
.product_body .main .product_box {
  width: calc(100% - 3.8rem);
}
.product_body .main .product_box .product_list {
  margin-bottom: 0.92rem;
}
.product_body .main .product_box .product_list .product_group {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.25rem;
  row-gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.product_body .main .product_box .product_list .product_group:last-child {
  margin-bottom: 0;
}
.product_body .main .product_box .product_list .products_item {
  width: calc((100% - 0.5rem) / 3);
  height: 4.6rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.1rem 0.01rem rgba(0, 0, 0, 0.1);
  border-radius: 0.1rem;
  padding: 0.22rem;
}
.product_body .main .product_box .product_list .category_card,
.product_body .main .product_box .product_list .product_class {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.product_body .main .product_box .product_list .category_card::before,
.product_body .main .product_box .product_list .product_class::before {
  content: '';
  position: absolute;
  top: 0.22rem;
  left: 0.22rem;
  right: 0.22rem;
  bottom: 0.22rem;
  background: linear-gradient(135deg, rgba(206, 0, 16, 0.08), rgba(57, 57, 57, 0.04));
  border-radius: 0.08rem;
}
.product_body .main .product_box .product_list .category_card .category_title,
.product_body .main .product_box .product_list .product_class .class_name {
  position: relative;
  max-width: 80%;
  text-align: center;
  font-family: OpenSans-Bold;
  font-weight: bold;
  font-size: 0.3rem;
  color: #393939;
  line-height: 1.35;
  background: transparent;
  padding: 0;
  margin: 0;
}
.product_body .main .product_box .product_list .category_card .category_arrow,
.product_body .main .product_box .product_list .product_class .class_more {
  position: relative;
  width: 0.46rem;
  height: 0.16rem;
  margin-top: 0.38rem;
  background: url('../images/jiantou.png') no-repeat center center;
  background-size: contain;
  filter: none;
}
.product_body .main .product_box .product_list .category_card:hover .category_title,
.product_body .main .product_box .product_list .product_class:hover .class_name {
  color: #CE0010;
}
.product_body .main .product_box .compage a.disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.product_body .main .product_box .product_list .products_item .products_img {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}
.product_body .main .product_box .product_list .products_item .products_img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.product_body .main .product_box .product_list .products_item .products_img:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.product_body .main .product_box .product_list .products_item .products_title {
  display: flex;
  align-items: center;
  height: 0.5rem;
  justify-content: center;
  column-gap: 0.3rem;
  margin-top: 0.2rem;
  text-align: center;
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.2rem;
  color: #393939;
}
.product_body .main .product_box .product_list .products_item .products_title i {
  flex: 0 0 0.16rem;
  height: 0.16rem;
  background: url('../images/jiantou.png') no-repeat center center;
  background-size: contain;
  filter: brightness(0);
}
.product_body .main .product_box .product_list .products_item .products_title:hover {
  color: #CE0010;
}
.product_body .main .product_box .product_list .products_item .products_title:hover i:hover {
  filter: brightness(1) invert(0);
}
.comProduct {
  margin: 0.7rem 0 1.16rem;
}
.comProduct .main {
  display: flex;
  justify-content: space-between;
}
.comProduct .main .Product_swiper {
  width: 6.75rem;
  position: relative;
  overflow: hidden;
}
.comProduct .main .Product_swiper .swiper1 {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  border-radius: 0.1rem;
  border: 0.01rem solid #D9D9D9;
  margin-bottom: 0.12rem;
}
.comProduct .main .Product_swiper .swiper1 .swiper-wrapper {
  height: 100%;
  position: absolute;
  top: 0;
}
.comProduct .main .Product_swiper .swiper1 .swiper-slide {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.comProduct .main .Product_swiper .swiper1 .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.comProduct .main .Product_swiper .swiper2 {
  width: calc(100% - 3.2rem);
  margin: 0 auto;
  overflow: hidden;
}
.comProduct .main .Product_swiper .swiper2 .swiper-wrapper .swiper-slide {
  background: #FFFFFF;
  border-radius: 0.1rem;
  border: 0.01rem solid #D9D9D9;
  padding: 0.1rem;
  height: 0.96rem;
  opacity: 0.6;
  cursor: pointer;
}
.comProduct .main .Product_swiper .swiper2 .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.comProduct .main .Product_swiper .swiper2 .swiper-wrapper .swiper-slide-thumb-active {
  border: 0.01rem solid #CE0010;
  opacity: 1;
}
.comProduct .main .Product_swiper .swiper-button-next,
.comProduct .main .Product_swiper .swiper-button-prev {
  top: auto;
  margin: 0;
  bottom: 0.24rem;
  right: 1rem;
}
.comProduct .main .Product_swiper .swiper-button-prev {
  left: 1rem;
}
.comProduct .main .Product_swiper .swiper-button-next::after,
.comProduct .main .Product_swiper .swiper-button-prev::after {
  font-size: 0.22rem;
  color: #393939;
  font-weight: bold;
}
.comProduct .main .Product_swiper .swiper-button-next:hover::after,
.comProduct .main .Product_swiper .swiper-button-prev:hover::after {
  color: #CE0010;
}
.comProduct .main .Product_view {
  width: calc(100% - 7.53rem);
}
.comProduct .main .Product_view .view_content {
  width: 100%;
  max-height: 4.2rem;
  overflow-y: auto;
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.18rem;
  color: #393939;
  line-height: 1.5;
}
.comProduct .main .Product_view .view_content ul li {
  margin-bottom: 0.13rem;
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.18rem;
  color: #393939;
  line-height: 1.5;
}
.comProduct .main .Product_view .view_content::-webkit-scrollbar {
  width: 14px;
}
.comProduct .main .Product_view .view_content::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 5px #CECECE;
  background: #CECECE;
}
.comProduct .main .Product_view .view_content::-webkit-scrollbar-track {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 5px #EEEEEE;
  border-radius: 0;
  background: #EEEEEE;
}
.comProduct .main .Product_view .view_key {
  display: flex;
  column-gap: 0.45rem;
  margin-top: 0.37rem;
}
.comProduct .main .Product_view .view_key .key_item .key_icon {
  max-width: 0.6rem;
  max-height: 0.6rem;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.comProduct .main .Product_view .view_key .key_item p {
  margin-top: 0.1rem;
  text-align: center;
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.14rem;
  color: #393939;
}
.comProduct .main .Product_view .view_btn {
  width: fit-content;
  margin-top: 0.46rem;
  background: #CE0010;
  border-radius: 0.1rem;
  padding: 0.18rem 0.33rem;
  font-family: OpenSans-Medium;
  font-weight: 600;
  font-size: 0.18rem;
  color: #FFFFFF;
}
.peoduct_item {
  background: #F8F8F8;
  overflow: hidden;
  margin-top: 0.8rem;
}
.peoduct_item .main {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.peoduct_item .main .product_txt {
  width: 6.26rem;
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.16rem;
  color: #393939;
  line-height: 2.125;
  padding-right: 0.7rem;
}
.peoduct_item .main .product_txt ul {
  padding: 0 0 0 1.23rem;
}
.peoduct_item .main .product_txt ul li {
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.18rem;
  color: #393939;
  line-height: 2.222;
}
.peoduct_item .main .product_txt h3 {
  font-family: OpenSans-Bold;
  font-weight: bold;
  font-size: 0.33rem;
  color: #393939;
  margin-bottom: 0.7rem;
  position: relative;
}
.peoduct_item .main .product_txt h3::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0.6rem;
  height: 0.04rem;
  background: #CE0010;
}
.peoduct_item .main .product_txt .more {
  margin-top: 1.8rem;
}
.peoduct_item .main .product_img {
  width: calc(100% - 6.26rem);
  height: auto;
}
.peoduct_item .main .product_img img {
  height: 100%;
  object-fit: cover;
  max-width: calc(100% + 1.6rem);
  width: calc(100% + 1.6rem);
  border-radius: 0.1rem;
}
.peoduct_item .main #video-container {
  position: relative;
  height: 6.4rem;
  /* 视频进度条 */
}
.peoduct_item .main #video-container #video-element {
  width: calc(100% + 1.6rem);
  height: 100%;
  position: relative;
}
.peoduct_item .main #video-container #video-poster {
  width: 0.98rem;
  height: 0.98rem;
  position: absolute;
  left: calc(50% + 0.8rem);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  pointer-events: none;
}
.peoduct_item .main #video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 1.6rem);
  height: 100%;
  border-radius: 0.1rem;
  background: rgba(0, 0, 0, 0.44);
  pointer-events: none;
}
.peoduct_item .main #video-container.act::after {
  display: none;
}
.peoduct_item .main #video-container #video-element::-webkit-media-controls-enclosure {
  opacity: 0;
}
.peoduct_item .main #video-container #video-element.act::-webkit-media-controls-enclosure {
  opacity: 1;
}
.peoduct_item.video .main .product_txt h3::after {
  display: none;
}
.peoduct_Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.peoduct_Swiper .swiper-button-next,
.peoduct_Swiper .swiper-button-prev {
  width: 0.6rem;
  height: 0.6rem;
  background: #F1F1F1;
  border-radius: 0.1rem;
  border: 0.01rem solid #B1B1B1;
  bottom: 0.33rem;
  top: auto;
  margin: 0;
}
.peoduct_Swiper .swiper-button-next {
  left: 2.39rem;
}
.peoduct_Swiper .swiper-button-prev {
  left: 1.6rem;
}
.peoduct_Swiper .swiper-button-next::after,
.peoduct_Swiper .swiper-button-prev::after {
  font-size: 0.2rem;
  color: #393939;
}
.peoduct_Swiper .swiper-button-next:hover,
.peoduct_Swiper .swiper-button-prev:hover {
  background: #CE0010;
  border: 0.01rem solid #CE0010;
}
.peoduct_Swiper .swiper-button-next:hover::after,
.peoduct_Swiper .swiper-button-prev:hover::after {
  color: #FFFFFF;
}
.body_body>.peoduct_item:nth-child(2n) .main {
  flex-direction: row-reverse;
}
.body_body>.peoduct_item:nth-child(2n) .main .product_txt {
  padding-left: 0.7rem;
  padding-right: 0;
}
.body_body>.peoduct_item:nth-child(2n) .main .product_img {
  display: flex;
  justify-content: flex-end;
}
.body_body>.peoduct_item:nth-child(2n) .main .product_img::after{
    left: -1.6rem !important;
}

.Specification {
  margin: 1.27rem 0 0.85rem;
}
.Specification h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.3rem;
  font-family: Poppins-Medium;
  font-weight: 500;
  font-size: 0.5rem;
  color: #393939;
}
.Specification .table_box {
  margin-bottom: 0.5rem;
}
.Specification .table_box .table_name {
  width: 100%;
  padding: 0.26rem 0.65rem;
  background: #393939;
  font-family: OpenSans-Bold;
  font-weight: bold;
  font-size: 0.24rem;
  color: #FFFFFF;
  border-radius: 0.2rem 0.2rem 0 0;
}
.Specification .table_box .tablt_td {
  padding: 0.27rem 0;
  border-bottom: 0.01rem solid #DEDEDE;
  display: flex;
}
.Specification .table_box .tablt_td span {
  padding: 0 0 0 0.6rem;
  font-family: OpenSans-Medium;
  font-weight: 500;
  font-size: 0.2rem;
  color: #222430;
  line-height: 1.32;
  display: block;
  width: 25%;
}
.Specification .table_box .tablt_td span:last-child {
  width: 70%;
}
.Specification .table_box .tablt_td:nth-child(2n) {
  background: #F8F8F8;
}
.Specification .more {
  margin: 0 auto;
}
.Specification .more:hover img {
  transform: none;
}
