.content .path {
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 120px;
}
.content .path a {
  margin: 0 10px;
  color: #666;
  line-height: 1.6;
}
.product_detail .detail {
  display: flex;
  padding-bottom: 120px;
}
.product_detail .detail .sticky {
  position: relative;
}

.product_detail .left {
  display: flex;
  position: sticky;
  top: 130px;
}
.product_detail .left .swiper_left {
  width: 110px;
  margin-right: 40px;
  height: 540px;
  /* overflow-y: scroll; */
}
/* 滚动条整体部分 */
.swiper_left::-webkit-scrollbar {
  width: 6px; /* 纵向滚动条宽度 */
  height: 6px; /* 横向滚动条高度 */
  /* background-color: #F5F5F5; 滚动条整体背景，一般被覆盖着 */
}
/* 滚动条里面的滑块 */
.swiper_left::-webkit-scrollbar-thumb {
  border-radius: 10px; /* 滚动条滑块圆角 */
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); 滚动条滑块阴影 */
  background-color: #dddddd; /* 滚动条滑块颜色 */
}
/* 滚动条的轨道（里面装有Thumb） */
.swiper_left::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 滚动条轨道阴影 */
  border-radius: 10px; /* 滚动条轨道圆角 */
  /* background-color: #F5F5F5; 滚动条轨道背景 */
}
.product_detail .left .swiper_left .swiper-container-thumbs {
  height: 100%;
  overflow: hidden;
}

.product_detail .left .swiper_left .swiper-slide {
  width: 100px !important;
  width: 100px !important;
  /* margin-bottom: 10px; */
  margin-right: 10px;
  cursor: pointer;
  overflow: hidden;
}
.product_detail .left .swiper_left .swiper-slide-thumb-active {
  border: 2px solid #080c17;
  box-sizing: border-box;
}
.product_detail .left .swiper_left .swiper-slide img {
  width: 100%;
}
.product_detail .left .swiper_left .swiper-slide img.video {
  opacity: 0.5;
}
.product_detail .left .swiper_left .swiper-slide .mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 28px;
  border-radius: 14px;
  background: rgba(8, 12, 23, 0.5);
}
.product_detail .left .swiper_left .swiper-slide .mask img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 11px;
}
.product_detail .left .swiper_right {
  max-width: 800px;
  width: 100%;
}
.product_detail .left .swiper_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-container-detail .swiper-button-prev,
.swiper-container-detail .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #34363c;
  color: white;
  border-radius: 4px;
}
.swiper-container-detail .swiper-button-prev::after,
.swiper-container-detail .swiper-button-next::after {
  font-size: 16px;
}
.product_detail .left .swiper_right .swiper-slide iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.product_detail .right .title {
  position: relative;
}
.product_detail .right {
  max-width: 660px;
  width: 100%;
}
.product_detail .right h2 {
  font-size: 40px;
  font-family: 'Roboto-Bold';
  line-height: 1.3;
  margin-bottom: 30px;
}
.product_detail .right .title p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 30px;
}
.product_detail .right .title ul li {
  font-size: 16px;
  margin-bottom: 10px;
}
.product_detail .right p.line {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 50px;
}
.product_detail .right .products-share {
  position: absolute;
  right: 10px;
  bottom: -30px;
  display: flex;
}
.product_detail .right .products-share .share {
  display: flex;
  cursor: pointer;
}
.product_detail .right .products-share span {
  color: #d51918;
  margin-left: 10px;
}
.product_detail .right .products-share .box {
  position: absolute;
  width: 200px;
  display: flex;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 14, 12, 0.2);
  z-index: 9;
}
.product_detail .right .products-share .box ul::before {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  content: '';
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
  /* box-shadow: 0 0 10px rgba(0, 14, 12, 0.2); */
}
.product_detail .right .products-share .box ul::after {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  content: '';
  background: #fff;
  transform: rotate(45deg);
  z-index: 2;
}
.product_detail .right .products-share .box ul {
  padding: 10px;
  display: flex;
}
.product_detail .right .products-share .box ul li {
  padding: 0 10px;
}
.product_detail .right .txt {
  padding: 50px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.product_detail .right .txt h3 {
  font-size: 24px;
  font-family: 'Roboto-Medium';
  font-weight: normal;
  margin-bottom: 30px;
}
.product_detail .right .txt ul li {
  margin-bottom: 16px;
  font-size: 16px;
  color: #080c17;
  line-height: 1.6;
  list-style: inside;
}
.product_detail .right .txt ul li span {
  font-family: 'Roboto-Medium';
  color: #080c17;
}
.product_detail .right .txt ul li:last-child {
  width: 100%;
}
.products-details-introduce-other {
  align-items: center;
  margin-top: 60px;
  justify-content: start;
}

.products-details-introduce-other .quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  margin-right: 2.604175vw;
  background: #080c17;
  color: #fff;
}
.products-details-introduce-tab .prev svg {
  transform: rotate(-180deg);
}
.products-details-introduce-tab .tab-btn span {
  margin: 0 10px;
  color: #666;
}

.products-details-introduce-other .quote-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  background: #080c17;
  color: #fff;
}

.products-details-introduce-other .quote-btn a img {
  margin-left: 10px;
}

.advantages {
  padding: 120px 0;
  background: #faf7f5;
}
.advantages .content {
  display: flex;
  justify-content: space-between;
}
.advantages .content .left {
  margin-right: 30px;
}
.advantages .content .left h2 {
  font-size: 40px;
  font-family: 'Roboto-Bold';
  margin-bottom: 70px;
  color: #080c17;
}
.advantages .content .left ul {
  display: flex;
  flex-wrap: wrap;
}
.advantages .content .left ul li {
  display: flex;
  align-items: center;
  min-width: 280px;
  margin-bottom: 50px;
  margin-right: 30px;
}
.advantages .content .left ul li p {
  font-size: 28px;
  color: #404040;
  font-family: 'Roboto-Medium';
  margin-left: 20px;
}
.advantages .content .right {
  display: flex;
  max-width: 940px;
  flex-shrink: 0;
}
.advantages .content .right img {
  width: 45%;
  height: fit-content;
}
.advantages .content .right img:nth-child(1) {
  margin-right: 40px;
}
.product_bottom {
  padding: 120px 0;
}
.product_bottom .content .bottom_in .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e7;
  /* cursor: pointer; */
}
.product_bottom .content .bottom_in .left {
  display: flex;
  align-items: center;
}
.product_bottom .content .bottom_in .left p {
  font-size: 28px;
  color: #080c17;
  margin-left: 30px;
}
.product_bottom .content .bottom_in .title .right img.active {
  display: none;
}
.product_bottom .content .bottom_in .txt {
  max-width: 1380px;
  margin: 0 auto;
  padding: 30px 0;
  /* display: none; */
}
.product_bottom .content .bottom_in .txt > h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: 'Roboto-Bold';
}
.product_bottom .content .bottom_in .txt > h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-family: 'Roboto-Bold';
}
.product_bottom .content .bottom_in .txt > h4 {
  font-family: 'Roboto-Bold';
  font-size: 24px;
  margin-bottom: 20px;
}

.product_bottom .content .bottom_in .txt > p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}
.product_bottom .content .bottom_in .txt > ul {
  margin: 10px 0;
}
.product_bottom .content .bottom_in .txt ol {
  margin: 10px 0;
}
.product_bottom .content .bottom_in .txt > ul > li {
  list-style: inside;
  font-size: 16px;
  line-height: 1.6;
}
.product_bottom .content .bottom_in .txt ol li {
  font-size: 16px;
  line-height: 1.6;
}

.product_bottom .content .bottom_in .func ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product_bottom .content .bottom_in .func ul li {
  max-width: 49%;
  width: 100%;
  /* height: 72px; */
  /* background: #f7f7f7; */
  margin-bottom: 30px;
  /* display: flex; */
  align-items: center;
  padding: 0 30px;
  line-height: 1.4;
}
.product_bottom .content .bottom_in.active {
  border-bottom: 1px solid #080c17;
}
.product_bottom .content .bottom_in.active .title {
  /* border-bottom: 1px solid #080C17; */
}
.product_bottom .content .bottom_in .txt .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.product_bottom .content .bottom_in .txt .box:nth-child(even) {
  flex-direction: row-reverse;
}
.product_bottom .content .bottom_in .txt .box:nth-child(even) .left {
  margin-right: 0;
}
.product_bottom .content .bottom_in .txt .box:nth-child(even) .right {
  margin-right: 40px;
}
.product_bottom .content .bottom_in .txt .box:last-child {
  margin-bottom: 0;
}
.bottom_in .txt .box .left {
  margin-right: 40px;
  max-width: 500px;
  width: 100%;
}
.bottom_in .txt .box .right {
  flex-direction: column;
  color: #080c17;
  width: 100%;
}
.bottom_in .txt .box .right h2 {
  font-size: 40px;
  font-family: 'Roboto-Medium';
  max-width: 680px;
  width: 100%;
  text-align: center;
  font-weight: normal;
}
.bottom_in .txt .box .right span.line {
  width: 40px;
  height: 2px;
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 60px;
  background: #080c17;
}
.bottom_in .txt .box .right ul li {
  list-style: outside;
  font-size: 16px;
  color: #080c17;
  line-height: 2;
}
.bottom_in .txt .box .right p {
  font-size: 16px;
  color: #080c17;
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  width: 100%;
}
.you_like {
  margin-bottom: 80px;
}
.you_like h2 {
  font-size: 52px;
  font-family: 'Roboto-Bold';
  text-align: center;
  margin-bottom: 60px;
}
.you_like .content .cart {
  border: 1px solid #e5e5e5;
  padding: 30px 40px;
  position: relative;
  margin-bottom: 40px;
}
.you_like .content .cart p.more {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all 0.5s;
  background: #080c17;
  opacity: 0;
}
.you_like .content .cart:hover p.more {
  opacity: 1;
}
.you_like .content .cart p.more span {
  color: #fff;
}
.you_like .content .cart:hover .quote {
  opacity: 1;
}
.you_like .content .cart .quote p {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.you_like .content .cart .quote p span {
  width: 110px;
  margin-right: 10px;
  display: inline-block;
  font-size: 16px;
  font-family: 'Roboto-Medium';
  color: #101010;
}
.you_like .content .cart .quote .get {
  width: 100%;
  height: 48px;
  background: #080c17;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
}
.you_like .content .cart .top {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
}
.you_like .content .cart .top img {
  width: 100%;
}
.you_like .content .cart .top img.hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.you_like .content .cart:hover .top img.hover {
  opacity: 1;
}
.you_like .content .cart .btm h3 {
  font-size: 20px;
  color: #080c17;
  font-family: 'Roboto-Medium';
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
}
.you_like .content .cart .btm > p {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.you_like .content .cart .btm > span {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
  color: #080c17;
  display: inline-block;
  width: 100%;
}
.you_like .content .cart .btm .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.you_like .content .cart .btm .more p {
  font-size: 16px;
  color: #999;
}
.swiper-pagination-like .swiper-pagination-bullet {
  background: #080c17;
}
@media (max-width: 1500px) {
  .content {
    max-width: 100%;
    padding: 0 30px;
  }
  .product_detail .detail {
    padding-bottom: 6.25002vw;
  }
  .advantages {
    padding: 6.25002vw 0;
  }
  .product_bottom {
    padding: 6.25002vw 0;
  }
  .you_like {
    margin-bottom: 4.16665vw;
  }
  .product_detail .right h2 {
    font-size: 2.08934vw;
  }
  .product_detail .right .txt {
    padding: 2.604175vw 0;
  }
  .products-details-introduce-other {
    margin-top: 3.12501vw;
  }
  .product_detail .left .swiper_right {
    max-width: 80%;
  }
  .product_detail .left .swiper_left {
    margin-right: 30px;
  }
  .product_detail .right {
    max-width: 40%;
  }
  .advantages .content .left {
    max-width: 40%;
  }
  .advantages .content .right {
    max-width: 60%;
  }
  .product_bottom .content .bottom_in .func ul li {
    max-width: 30%;
  }
  .you_like h2 {
    font-size: 2.604175vw;
  }
}
@media (max-width: 1279px) {
  .product_detail .right .products-share {
    right: 60px;
  }
  .product_detail .right {
    max-width: 50%;
  }
  .product_detail .left .swiper_right {
    max-width: 70%;
  }
}
@media (max-width: 1023px) {
  .product_detail .detail {
    flex-direction: column;
  }
  .product_detail .left {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .product_detail .right {
    max-width: 100%;
  }
  .product_detail .right h2 {
    font-size: 26px;
  }
  .product_detail .left .swiper_right {
    max-width: 80%;
  }
  .product_detail .left .swiper_left {
    max-width: 20%;
    width: 100%;
  }
  .advantages .content .right {
    flex-direction: column;
    align-items: center;
  }
  .advantages .content .right img {
    width: 70%;
  }
  .advantages .content .right img:nth-child(1) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .advantages .content .left h2 {
    font-size: 26px;
  }
  .advantages .content .left ul li p {
    font-size: 20px;
  }
  .you_like .content .cart {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .content {
    padding: 0 15px;
  }
  .content .path {
    height: auto;
    padding: 30px 0;
  }
  .product_detail .left .swiper_left {
    max-width: 20%;
    margin-right: 10px;
    height: 280px;
  }
  .product_detail .left .swiper_right {
    max-width: 76%;
  }
  .product_detail .left .swiper_left .swiper-slide {
    width: 60px !important;
  }
  .product_detail .right .txt {
    padding: 30px 0;
    padding-bottom: 0;
  }
  .product_detail .right .txt h3 {
    margin-bottom: 20px;
  }
  .product_detail .right .txt ul li {
    width: 100%;
    margin-right: 0;
  }
  .products-details-introduce-other {
    margin-top: 30px;
  }
  .products-details-introduce-other {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-details-introduce-tab {
    margin-top: 20px;
  }
  .advantages .content {
    flex-direction: column;
  }
  .advantages .content .left {
    max-width: 100%;
  }
  .advantages .content .left h2 {
    margin-bottom: 30px;
  }
  .advantages .content .left ul li {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .advantages .content .right {
    max-width: 100%;
  }
  .advantages .content .right img {
    width: 80%;
  }
  .product_bottom .content .bottom_in .title .left > img {
    width: 30px;
  }
  .product_bottom .content .bottom_in .left p {
    font-size: 20px;
  }
  .product_bottom .content .bottom_in .right img {
    width: 20px;
  }
  .product_bottom .content .bottom_in .func ul li {
    max-width: 100%;
    /* height: 50px; */
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .product_bottom .content .bottom_in .txt {
    padding: 30px 0;
    padding-top: 0;
  }
  .product_bottom .content .bottom_in .txt .box {
    flex-direction: column;
  }
  .bottom_in .txt .box .left {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .bottom_in .txt .box .right h2 {
    font-size: 24px;
  }
  .bottom_in .txt .box .right span.line {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .product_bottom .content .bottom_in .txt .box:nth-child(even) {
    flex-direction: column;
  }
  .product_bottom .content .bottom_in .txt .box:nth-child(even) .right {
    margin-right: 0;
  }

  .you_like h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
