.product_show {
  padding-top: 23px;
  padding-bottom: 78px;
}
.product_show .left {
  width: 58.4858%;
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  padding-left: 7px;
  align-items: start;
  overflow: hidden;
}
.product_show .thumb_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 109px;
  max-height: 830px;
  height: 100%;
  gap: 12px;
}
.product_show .thumb_box .swiper_prve,
.product_show .thumb_box .swiper_next {
  width: 19px;
  height: 18px;
  transition: all 0.3s;
  background: url(../img/pdarr.svg) no-repeat center / contain;
}
.product_show .thumb_box .swiper_next {
  transform: rotate(-180deg);
}
.product_show .product_show_thumb_swiper {
  flex: 1;
  width: 100%;
  overflow: hidden;
}
.product_show .product_show_thumb_swiper .swiper-slide {
  max-height: 145px;
  cursor: pointer;
  border: 1px solid transparent;
}
.product_show .product_show_thumb_swiper .swiper-slide-thumb-active {
  border-color: #171717;
}
.product_show .product_show_thumb_swiper .img {
  aspect-ratio: 109/145;
  height: 100%;
}
.product_show .product_show_swiper {
  flex: 1;
  max-width: 728px;
  overflow: hidden;
  background-color: #fafafa;
  position: relative;
}
.product_show .product_show_swiper .swiper-slide {
  aspect-ratio: 728/815;
}
.product_show .product_show_swiper .swiper-slide a {
  display: flex;
  width: 100%;
  height: 100%;
}
.product_show .product_show_swiper .swiper-slide a:hover img {
  transform: scale(1.03);
}
.product_show .product_show_swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
}
.product_show .product_show_swiper .like {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  background: url(../img/like.svg) no-repeat center / 20px;
  background-color: #ffffff;
  transition: all 0.3s;
}
.product_show .product_show_swiper .like:hover {
  background-color: var(--theme_color);
}
.product_show .product_show_swiper .like.active {
  background-image: url(../img/liked.svg);
}
.product_show .product_show_swiper .like.active:hover {
  background-image: url(../img/like.svg);
}
.product_show .right {
  flex: 1;
  max-width: 571px;
  padding-top: 18px;
}
.product_show .right .head .flex {
  justify-content: space-between;
  align-items: end;
  margin-top: 8px;
}
.product_show .right .quot {
  display: block;
  width: 25px;
  height: 18px;
  margin-top: 34px;
  background: url(../img/yinnhao.svg) no-repeat center / contain;
}
.product_show .right p {
  font-size: 16px;
  font-weight: 300;
  color: #3d3d3d;
  line-height: 26px;
  margin-top: 17px;
}

.product_show .nums .btn_add_cart {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 8px 1rem;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 16px;
  background-color: #694f8e;
  color: #fff;
}
.product_show .nums .btn_add_cart.disabled {
  pointer-events: none;
  color: var(--title_color);
  background-color: var(--theme_color);
}
.product_show .nums .btn_add_cart:hover {
  color: #fff;
  background-color: #232323;
}
.product_show .buy_btn {
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  display: block;
  width: 100%;
  padding: 19px 1rem;
  border: 1px solid #171717;
  text-align: center;
  margin-top: 26px;
  transition: all 0.3s;
}
.product_show .buy_btn.disabled{
  background-color: #eee;
  color: #333;
  cursor: no-drop;
}
.product_show .buy_btn:hover {
  color: #fff;
  background-color: #232323;
  border-color: #232323;
}
.product_show h1 {
  font-size: 36px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 4px;
}
.product_show .price {
  font-size: 20px;
  color: #171717;
  line-height: 32px;
  font-weight: normal;
}
.product_show .share {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 57px;
}
.product_show .share strong {
  color: #171717;
}
.product_show .share .social {
  display: flex;
  gap: 22px;
  flex: 1;
}
.product_show .share .social a {
  display: block;
  text-indent: -9999px;
  background: no-repeat center / contain;
  width: 22px;
  height: 22px;
  transition: all 0.3s;
}
.product_show .share .social a:hover {
  transform: scale(1.08);
}
.product_show .share ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 4%;
}
.product_show .share .facebook a {
  background-image: url(../img/facebook.svg);
}
.product_show .share .twitter a {
  background-image: url(../img/twitter.svg);
}
.product_show .share .instagram a {
  background-image: url(../img/instagram.svg);
}
.product_show .share .youtube a {
  background-image: url(../img/youtube.svg);
}
.product_show .share i {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/wenhao.svg) no-repeat center / contain;
}
.product_show .share .help {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product_show .share .help a {
  font-size: 14px;
  color: #171717;
  text-decoration: underline;
}
.product_show .complete {
  margin-top: 45px;
}
.product_show .complete strong {
  font-size: 18px;
  color: #171717;
  font-weight: 500;
  display: block;
  margin-bottom: -11px;
}
.product_show .complete .swbtn {
  display: flex;
  gap: 20px;
  align-items: center;
}
.product_show .complete .swbtn::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}
.product_show .complete .swiper_btns {
  max-width: 85px;
  gap: 14px;
}
.product_show .complete .swiper_btns div {
  width: 36px;
  height: 36px;
}
.product_show .product_complete_swiper {
  margin-top: 17px;
  overflow: hidden;
}
.product_show .product_complete_swiper .swiper-slide {
  display: flex;
  gap: 1.25rem;
}
.product_show .product_complete_swiper .img {
  width: 166px;
  aspect-ratio: 1;
  background-color: #fafafa;
}
.product_show .product_complete_swiper .img:hover img {
  transform: scale(1.03);
}
.product_show .product_complete_swiper .info {
  flex: 1;
  max-width: 375px;
}
.product_show .product_complete_swiper .top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.product_show .product_complete_swiper .top .title {
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  line-height: 32px;
}
.product_show .product_complete_swiper .top .price {
  font-size: 14px;
  color: #171717;
}
.product_show .product_complete_swiper p {
  font-size: 14px;
  color: #383838;
  font-weight: 400;
  margin-top: 0;
}
.product_show .product_complete_swiper .select {
  display: flex;
  gap: 1rem;
  margin-top: 7px;
}
.product_show .product_complete_swiper .select select {
  flex: 1;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  color: #383838;
  padding: 10px 30px 10px 15px;
  background: url(../img/arr-b.svg) no-repeat 90% center / 10px;
}
.product_show .product_complete_swiper a {
  font-size: 15px;
  font-weight: 500;
  color: #171717;
  background-color: rgba(213, 200, 220, 0.47);
  width: 100%;
  text-align: center;
  padding: 15px 1rem;
  display: block;
  margin-top: 14px;
  transition: all 0.3s;
}
.product_show .product_complete_swiper a:hover {
  background-color: #232323;
  color: #fff;
}
.product_nav {
  padding-bottom: 50px;
}
.product_nav ul {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  gap: 2.90646%;
}
.product_nav a {
  font-size: 16px;
  color: #515151;
  transition: all 0.3s;
  position: relative;
  display: block;
  padding: 18px 0 25px;
}
.product_nav a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #7d6c7f;
  position: absolute;
  bottom: -2px;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}
.product_nav a:hover {
  color: #191919;
}
.product_nav a:hover::after {
  opacity: 1;
}
.product_nav li:last-child {
  margin-right: auto;
}
.product_nav li:first-child {
  margin-left: auto;
}
.product_nav li.active a {
  font-weight: 600;
  color: #191919;
  font-size: 18px;
}
.product_nav li.active a::after {
  opacity: 1;
}
.product_romance {
  padding: 60px 0 83px;
  position: relative;
  z-index: 2;
}
.product_romance .bg {
  position: absolute;
  top: 20px;
  left: 13.8%;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  transition: all 1s;
}
.product_romance .bg img {
  display: block;
  width: 100%;
  aspect-ratio: 1105/1013;
  object-fit: cover;
  max-width: 1105px;
  margin-left: auto;
}
.product_romance .left {
  width: 54.0694%;
}
.product_romance .left .img {
  aspect-ratio: 857/967;
}
.product_romance .left .img:hover img {
  transform: scale(1.03);
}
.product_romance .right {
  flex: 1;
  max-width: 543px;
  margin-top: auto;
}
.product_romance .right .img {
  aspect-ratio: 543/506;
  margin-top: 90px;
}
.product_romance .right .img:hover img {
  transform: scale(1.03);
}
.product_romance .head h2::after {
  display: none;
}
.product_romance .head .desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #3d3d3d;
  margin-top: 42px;
  max-width: 512px;
}
.product_romance .head .desc p + p {
  margin-top: 28px;
}
.product_specs {
  padding: 52px 0 79px;
  position: relative;
  z-index: 2;
}
.product_specs .bg {
  position: absolute;
  top: -25px;
  left: 8.2%;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  transition: all 1s;
}
.product_specs .bg img {
  display: block;
  width: 100%;
  aspect-ratio: 935/1238;
  object-fit: cover;
  max-width: 935px;
  margin-left: auto;
}
.product_specs .imgs {
  width: 112.429%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 93px;
}
.product_specs .imgs .img:hover img {
  transform: scale(1.03);
}
.product_specs .imgs .img:first-child {
  width: 19.0797%;
  aspect-ratio: 340/584;
}
.product_specs .imgs .img:nth-child(2) {
  width: 27.0483%;
  aspect-ratio: 482/480;
}
.product_specs .imgs .img:nth-child(3) {
  width: 46.5769%;
  aspect-ratio: 803/599;
}
.product_specs h2::after {
  display: none;
}
.product_specs .main {
  margin-top: -29px;
}
.product_specs .intro {
  flex: 1;
  max-width: 866px;
  padding-top: 1.3%;
}
.product_specs .intro h3 {
  font-size: 20px;
  color: #000;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 400;
  line-height: 2;
  padding: 14px 0 21px;
}
.product_specs .intro h3::after {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  margin-top: 13px;
  background: url(../img/icon-close.svg) no-repeat center / contain;
}
.product_specs .intro .answer {
  display: none;
  margin-top: -2px;
  padding-bottom: 29px;
}
.product_specs .intro p {
  font-size: 16px;
  font-weight: 300;
  color: #3d3d3d;
  line-height: 28px;
}
.product_specs .intro a {
  line-height: 32px;
  color: #7d6c7f;
  text-decoration: underline;
  display: block;
  margin-top: 12px;
  width: fit-content;
}
.product_specs .intro .item {
  border-bottom: 1px solid #dbdbdb;
}
.product_specs .intro .item:last-child {
  border: none;
}
.product_specs .intro .item:first-child .answer {
  display: block;
}
.product_specs .product_specs_swiper {
  width: 30.5994%;
  overflow: hidden;
}
.product_specs .product_specs_swiper .swiper-slide {
  border: 1px solid #171717;
}
.product_specs .product_specs_swiper .img {
  aspect-ratio: 485/369;
}
.product_specs .product_specs_swiper .img:hover img {
  transform: scale(1.03);
}
.product_specs .product_specs_swiper .info {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 24px 6.5485% 46px;
  padding-right: 11.5%;
  gap: 1rem;
}
.product_specs .product_specs_swiper .info li {
  font-size: 16px;
  font-weight: 300;
  color: #3d3d3d;
  margin-bottom: 10px;
}
.product_specs .product_specs_swiper .info li:last-child {
  margin-bottom: 0;
}
.product_specs .product_specs_swiper strong {
  font-size: 20px;
  color: #000000;
  font-weight: 400;
}
.product_design {
  padding: 60px 0 117px;
}
.product_design .flex {
  margin-top: 54px;
}
.product_design .left {
  width: 70.6625%;
}
.product_design .left .imgs {
  position: relative;
  z-index: 2;
  aspect-ratio: 1120/626;
}
.product_design .left .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.product_design .left .img:hover img {
  transform: scale(1.03);
}
.product_design .left .img.active {
  opacity: 1;
  pointer-events: all;
}
.product_design .right {
  flex: 1;
  max-width: 377px;
  display: flex;
  flex-direction: column;
}
.product_design .right .product_design_swiper {
  margin-top: auto;
  overflow: hidden;
}
.product_design .right strong {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
  line-height: 53px;
}
.product_design .right p {
  font-size: 16px;
  font-weight: 300;
  color: #3d3d3d;
  line-height: 28px;
  margin-top: 23px;
  max-width: 349px;
}
.product_design .btns {
  display: flex;
  gap: 13.4%;
  align-items: center;
  margin-top: 72px;
  margin-bottom: 5px;
}
.product_design .btns .swiper-prev,
.product_design .btns .swiper-next {
  width: 8px;
  height: 15px;
  cursor: pointer;
  background: url(../img/arrow-b.svg) no-repeat center / contain;
  transition: all 0.3s;
}
.product_design .btns .swiper-next {
  transform: rotate(180deg);
}
.product_design .btns .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.product_style {
  padding: 100px 0 129px;
  position: relative;
}
.product_style .bg {
  width: 100vw;
  position: absolute;
  height: 100%;
  transition: all 1s;
}
.product_style .bg img {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.product_style .imgs {
  width: 112.429%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 93px;
}
.product_style .imgs .img:hover img {
  transform: scale(1.03);
}
.product_style .imgs .img:first-child {
  width: 19.0797%;
  aspect-ratio: 340/584;
}
.product_style .imgs .img:nth-child(2) {
  width: 27.0483%;
  aspect-ratio: 482/480;
}
.product_style .imgs .img:nth-child(3) {
  width: 46.5769%;
  aspect-ratio: 803/599;
}
.product_faq {
  padding: 110px 0;
}
.product_faq .left {
  max-width: 424px;
}
.product_faq .head .desc {
  font-size: 16px;
  font-weight: 300;
  color: #3d3d3d;
  margin-top: 22px;
  line-height: 28px;
  max-width: 363px;
}
.product_faq .head .btn {
  margin-top: 26px;
  padding: 15px 24px;
}
.product_faq .faq_list {
  flex: 1;
  max-width: 980px;
  padding-top: 8px;
}
.product_faq .faq_list .faq_item {
  transition: all 0.3s;
  border-bottom: 1px solid #cecdcc;
}
.product_faq .faq_list .faq_item:first-child .answer {
  display: block;
}
.product_faq .faq_list .faq_item.active {
  border-bottom-color: #242424;
}
.product_faq .faq_list .faq_item.active .question {
  padding: 22px 0;
}
.product_faq .faq_list .faq_item.active .question::after {
  transform: rotate(180deg);
}
.product_faq .faq_list .faq_item .question {
  gap: 1rem;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  padding: 18px 0 22px;
  transition: all 0.3s;
}
.product_faq .faq_list .faq_item .question::after {
  content: '';
  display: block;
  width: 14px;
  aspect-ratio: 1;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: url(../img/icon-close.svg) no-repeat center / contain;
}
.product_faq .faq_list .faq_item .answer {
  color: #3d3d3d;
  font-size: 16px;
  line-height: 28px;
  display: none;
  padding: 0px 0 28px;
  max-width: 965px;
  margin-top: -2px;
}
.product_related {
  padding: 93px 0 152px;
  overflow: hidden;
}
.product_related .head {
  align-items: center;
}
.product_related .head .swiper_btns {
  flex-shrink: 0;
}
.product_related h2::after {
  display: none;
}
.product_related .product_related_swiper {
  max-width: 1346px;
  margin-right: auto;
  margin-top: 70px;
}
.product_related p.center:has(.btn) {
  min-height: 52px;
  margin-top: 57px;
}

/* .footer_sidebar{
  animation: move_left 3s linear;
} */