.hengsheng_goods_detail {
  position: relative;
  background: transparent;
  background: var(--bg-color);
  overflow: hidden;
}

.hengsheng_goods_pic_text {
  position: relative;
  padding: 74px 0 90px;
}

.hengsheng_goods_intro {
  background: var(--bg-color);
  padding: var(--component-gap) 0;
}

.hengsheng_goods_feature {
  background: var(--bg-color);
  padding: 0 0 var(--component-gap);
  overflow: hidden;
}


.hengsheng_goods_feature_layout {
  display: grid;
  grid-template-columns: 1fr 450px 1fr;
  align-items: center;
  column-gap: 32px;
}

.hengsheng_goods_feature_column {
  display: flex;
  flex-direction: column;
  gap: 124px;
}

.hengsheng_goods_feature_column_left {
  align-items: flex-start;
}

.hengsheng_goods_feature_column_right {
  align-items: flex-end;
}

.hengsheng_goods_feature_item {
  width: 100%;
  display: flex;
  align-items: center;
}

.hengsheng_goods_feature_item.is-left {
  justify-content: flex-end;
  gap: 29px;
}

.hengsheng_goods_feature_item.is-right {
  justify-content: flex-start;
  gap: 24px;
}

.hengsheng_goods_feature_item_content {
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
}

.hengsheng_goods_feature_item.is-left .hengsheng_goods_feature_item_content {
  align-items: flex-end;
  text-align: right;
  gap: 6px;
}

.hengsheng_goods_feature_item.is-right .hengsheng_goods_feature_item_content {
  align-items: flex-start;
  text-align: left;
  gap: 6px;
}

.hengsheng_goods_feature_item_title {
  margin: 0;
  width: 100%;
  color: var(--title-text-color);
  font-family: var(--font-family-semi-bold);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.23;
}

.hengsheng_goods_feature_item_desc {
  width: 100%;
  color: var(--text-color);
  font-family: var(--font-family-semi-bold);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: -0.08em;
}

.hengsheng_goods_feature_item_icon {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.hengsheng_goods_feature_item_icon_circle {
  width: 100%;
  height: 100%;
  border: 1px solid var(--title-text-color);
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hengsheng_goods_feature_item_icon_circle img {
  width: 80px;
  height: 80px;
  display: block;
  object-fit: contain;
}

.hengsheng_goods_feature_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hengsheng_goods_feature_center img {
  width: 100%;
  max-width: 450px;
  display: block;
  object-fit: contain;
}

.hengsheng_goods_related {
  background: var(--bg-color);
  padding: 0 0 var(--component-gap);
}

.hengsheng_goods_related_title_main {
  margin: 0 0 50px;
  color: var(--title-text-color);
  font-family: var(--font-family-bold);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.hengsheng_goods_related_list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 46px;
  align-items: start;
}

.hengsheng_goods_related_item {
  display: flex;
  flex-direction: column;
}

.hengsheng_goods_related_link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.hengsheng_goods_related_media {
  background: #f6f6f4;
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.hengsheng_goods_related_item .hengsheng_goods_related_media {
  aspect-ratio: 283 / 241;
}

.hengsheng_goods_related_item:hover {
  transform: translateY(-12px);
}

.hengsheng_goods_related_item:hover .hengsheng_goods_related_media {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  aspect-ratio: 324 / 276;
}

.hengsheng_goods_related_media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hengsheng_goods_related_item_title {
  margin: 12px 0 0;
  color: var(--title-text-color);
  font-family: var(--font-family-semi-bold);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.23;
}

.hengsheng_goods_intro_content {
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.38;
}

.hengsheng_goods_intro_content > *:first-child {
  margin-top: 0;
}

.hengsheng_goods_intro_content > *:last-child {
  margin-bottom: 0;
}

.hengsheng_goods_intro_content p {
  margin: 0 0 4px;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.hengsheng_goods_intro_content h1,
.hengsheng_goods_intro_content h2,
.hengsheng_goods_intro_content h3,
.hengsheng_goods_intro_content h4,
.hengsheng_goods_intro_content h5,
.hengsheng_goods_intro_content h6 {
  font-family: var(--font-family-semi-bold);
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text-color);
  font: inherit;
  line-height: inherit;
}

.hengsheng_goods_intro_content img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 0 0 calc(var(--component-gap) /2 ) 0;
  border-radius: 10px;
  object-fit: cover;
}

.hengsheng_goods_intro_content ul,
.hengsheng_goods_intro_content ol {
  margin: 0 0 8px;
  padding-left: 1.4em;
}

.hengsheng_goods_intro_content li {
  margin: 0 0 4px;
}

.hengsheng_goods_intro_content strong,
.hengsheng_goods_intro_content b {
  color: var(--title-text-color);
  font-family: var(--font-family-bold);
  font-weight: 700;
}

.hengsheng_goods_intro_content a {
  color: var(--color-theme);
}

.hengsheng_goods_intro_content table {
  /* max-width: 100% !important; */
}

/* 只让内部含有 table 的 div 横向滚动 */
.hengsheng_goods_intro_content div:has(table) {
  overflow-x: scroll;
}

.hengsheng_goods_detail_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hengsheng_goods_detail_bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hengsheng_goods_detail_main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 104px;
}

.hengsheng_goods_detail_gallery {
  width: 716px;
  display: flex;
  align-items: center;
  gap: 75px;
  flex-shrink: 0;
}

.hengsheng_goods_detail_gallery_side {
  width: 111px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.hengsheng_goods_detail_gallery_arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #ffffff;
  color: var(--title-text-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.hengsheng_goods_detail_gallery_arrow:hover {
  background: var(--color-theme);
  border-color: var(--color-theme);
  color: var(--color-second);
}

.hengsheng_goods_detail_gallery_prev span {
  transform: translateY(-1px);
}

.hengsheng_goods_detail_gallery_next span {
  transform: translateY(1px);
}

.hengsheng_goods_detail_thumbs {
  width: 111px;
  height: 531px;
  overflow: hidden;
}

.hengsheng_goods_detail_thumb {
  width: 111px;
  height: 111px;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.hengsheng_goods_detail_thumb.is-active,
.hengsheng_goods_detail_thumb.swiper-slide-thumb-active {
  border-color: var(--title-text-color);
}

.hengsheng_goods_detail_thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hengsheng_goods_detail_visual {
  width: 530px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hengsheng_goods_detail_visual_item {
  width: 530px;
}

.hengsheng_goods_detail_visual_link {
  aspect-ratio: 1 / 1;
  position: relative;
  display: block;
  overflow: hidden;
}

.hengsheng_goods_detail_visual_link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hengsheng_goods_detail_video_icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(38, 41, 43, 0.6);
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  font-size: 34px;
}

.hengsheng_goods_detail_info {
  width: 655px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.hengsheng_goods_detail_heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hengsheng_goods_detail_title {
  margin: 0;
  width: 100%;
  color: var(--title-text-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.hengsheng_goods_detail_title_main {
  font-family: var(--font-family-bold);
  font-size: 60px;
  font-weight: 700;
}

.hengsheng_goods_detail_title_sub {
  margin-top: 8px;
  font-family: var(--font-family-semi-bold);
  font-size: 26px;
  font-weight: 600;
}

.hengsheng_goods_detail_desc {
  max-width: 571px;
  color: var(--title-text-color);
  font-family: var(--font-family-semi-bold);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.37;
}

.hengsheng_goods_detail_btn {
  width: 213px;
  min-height: 46px;
  padding: 10px 24px;
  border-radius: 20px;
  background: var(--color-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-semi-bold);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.hengsheng_goods_detail_btn:hover {
  background: var(--btn-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

@media screen and (max-width: 1500px) {
  .hengsheng_goods_related_item:hover {
    transform: translateY(-5px);
  }

  .hengsheng_goods_intro_content {
    font-size: 24px;
  }

  .hengsheng_goods_feature_layout {
    grid-template-columns: minmax(0, 1fr) 360px minmax(0, 1fr);
    column-gap: 24px;
  }

  .hengsheng_goods_feature_column {
    gap: 72px;
  }

  .hengsheng_goods_feature_item_desc,
  .hengsheng_goods_feature_item_title {
    font-size: 24px;
  }

  .hengsheng_goods_feature_item_content {
    width: min(280px, 100%);
  }

  .hengsheng_goods_feature_item_icon {
    width: 128px;
    height: 128px;
  }

  .hengsheng_goods_feature_item_icon_circle img {
    width: 72px;
    height: 72px;
  }

  .hengsheng_goods_related_title_main {
    font-size: 52px;
  }

  .hengsheng_goods_related_list {
    column-gap: 28px;
  }

  .hengsheng_goods_related_item_title {
    font-size: 24px;
  }

  .hengsheng_goods_detail_main {
    gap: 72px;
  }

  .hengsheng_goods_detail_gallery {
    width: 660px;
    gap: 48px;
  }

  .hengsheng_goods_detail_visual {
    width: 500px;
  }

  .hengsheng_goods_detail_visual_item {
    width: 500px;
  }

  .hengsheng_goods_detail_info {
    width: calc(100% - 732px);
  }

  .hengsheng_goods_detail_title_main {
    font-size: 52px;
  }
}

@media screen and (max-width: 1200px) {
  .hengsheng_goods_intro_content {
    font-size: 22px;
  }

  .hengsheng_goods_feature_layout {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .hengsheng_goods_feature {
    padding: 0 0 80px;
  }

  .hengsheng_goods_feature_column {
    gap: 24px;
  }

  .hengsheng_goods_feature_item.is-left,
  .hengsheng_goods_feature_item.is-right {
    gap: 18px;
  }

  .hengsheng_goods_feature_item_content {
    width: min(420px, 100%);
  }

  .hengsheng_goods_feature_item_desc,
  .hengsheng_goods_feature_item_title {
    font-size: 20px;
  }

  .hengsheng_goods_feature_item_icon {
    width: 112px;
    height: 112px;
  }

  .hengsheng_goods_feature_item_icon_circle img {
    width: 62px;
    height: 62px;
  }

  .hengsheng_goods_related_title_main {
    margin-bottom: 32px;
    font-size: 42px;
  }

  .hengsheng_goods_related_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .hengsheng_goods_feature_center {
    order: 1;
  }

  .hengsheng_goods_feature_column_left,
  .hengsheng_goods_feature_column_right {
    align-items: stretch;
  }

  .hengsheng_goods_feature_column_left {
    order: 0;
  }

  .hengsheng_goods_feature_column_right {
    order: 2;
  }

  .hengsheng_goods_feature_item.is-left,
  .hengsheng_goods_feature_item.is-right {
    justify-content: center;
  }


  .hengsheng_goods_detail_main {
    gap: 40px;
    align-items: flex-start;
  }

  .hengsheng_goods_detail_gallery {
    width: 56%;
    gap: 24px;
  }

  .hengsheng_goods_detail_gallery_side {
    width: 92px;
  }

  .hengsheng_goods_detail_thumbs {
    width: 92px;
    height: 456px;
  }

  .hengsheng_goods_detail_thumb {
    width: 92px;
    height: 92px;
  }

  .hengsheng_goods_detail_visual {
    width: calc(100% - 116px);
  }

  .hengsheng_goods_detail_visual_item {
    width: auto;
  }

  .hengsheng_goods_detail_info {
    width: 44%;
  }

  .hengsheng_goods_detail_title_main {
    font-size: 42px;
  }

  .hengsheng_goods_detail_title_sub {
    font-size: 22px;
  }

  .hengsheng_goods_detail_desc {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  .hengsheng_goods_related_item:hover {
    transform: translateY(-3px);
  }

  .hengsheng_goods_feature {
    padding: 0 0 64px;
  }

  .hengsheng_goods_feature_center {
    display: none;
  }

  .hengsheng_goods_feature_layout {
    row-gap: 24px;
  }

  .hengsheng_goods_feature_column {
    gap: 20px;
  }

  .hengsheng_goods_feature_item.is-left,
  .hengsheng_goods_feature_item.is-right {
    justify-content: center;
    gap: 16px;
  }

  .hengsheng_goods_feature_item_content {
    width: min(360px, 100%);
  }

  .hengsheng_goods_feature_item_desc,
  .hengsheng_goods_feature_item_title {
    font-size: 18px;
  }

  .hengsheng_goods_feature_item_icon {
    width: 96px;
    height: 96px;
  }

  .hengsheng_goods_feature_item_icon_circle img {
    width: 54px;
    height: 54px;
  }

  .hengsheng_goods_detail_main {
    flex-direction: column;
    gap: 36px;
  }

  .hengsheng_goods_detail_gallery,
  .hengsheng_goods_detail_info {
    width: 100%;
  }

  .hengsheng_goods_detail_desc {
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .hengsheng_goods_intro_content {
    font-size: 18px;
  }

  .hengsheng_goods_feature {
    padding: 0 0 56px;
  }

  .hengsheng_goods_feature_item.is-left,
  .hengsheng_goods_feature_item.is-right {
    gap: 14px;
  }


  .hengsheng_goods_related_title_main {
    font-size: 34px;
  }

  .hengsheng_goods_related_item_title {
    font-size: 18px;
  }

  .hengsheng_goods_feature_item_content {
    width: auto;
    flex: 1;
  }

  .hengsheng_goods_feature_item_title,
  .hengsheng_goods_feature_item_desc {
    font-size: 18px;
  }

  .hengsheng_goods_feature_item_icon {
    width: 88px;
    height: 88px;
  }

  .hengsheng_goods_feature_item_icon_circle img {
    width: 48px;
    height: 48px;
  }


  .hengsheng_goods_detail_gallery {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .hengsheng_goods_detail_gallery_side {
    width: 100%;
    flex-direction: row;
    gap: 12px;
  }

  .hengsheng_goods_detail_thumbs {
    width: calc(100% - 104px);
    height: 92px;
  }

  .hengsheng_goods_detail_visual {
    width: 100%;
  }

  .hengsheng_goods_detail_gallery_arrow {
    flex-shrink: 0;
  }

  .hengsheng_goods_detail_heading {
    gap: 24px;
  }

  .hengsheng_goods_detail_title_main {
    font-size: 34px;
  }

  .hengsheng_goods_detail_title_sub {
    font-size: 20px;
  }

  .hengsheng_goods_detail_desc {
    font-size: 16px;
  }

  .hengsheng_goods_detail_gallery_arrow {
    transform: rotateZ(-90deg);
  }
}

@media screen and (max-width: 576px) {
  .hengsheng_goods_intro_content {
    font-size: 16px;
  }

  .hengsheng_goods_feature {
    padding: 0 0 48px;
  }

  .hengsheng_goods_feature_item.is-left,
  .hengsheng_goods_feature_item.is-right {
    flex-direction: column;
    align-items: center;
  }

  .hengsheng_goods_related_list {
    grid-template-columns: minmax(0, 1fr);
  }

  .hengsheng_goods_related_title_main {
    font-size: 28px;
  }

  .hengsheng_goods_feature_item.is-left .hengsheng_goods_feature_item_content,
  .hengsheng_goods_feature_item.is-right .hengsheng_goods_feature_item_content {
    align-items: center;
    text-align: center;
  }

  .hengsheng_goods_feature_item_title,
  .hengsheng_goods_feature_item_desc {
    font-size: 16px;
  }

  .hengsheng_goods_feature_item_icon {
    width: 80px;
    height: 80px;
  }

  .hengsheng_goods_feature_item_icon_circle img {
    width: 42px;
    height: 42px;
  }

  .hengsheng_goods_detail_gallery_side {
    gap: 10px;
  }

  .hengsheng_goods_detail_thumbs {
    width: calc(100% - 92px);
    height: 80px;
  }

  .hengsheng_goods_detail_thumb {
    width: 80px;
    height: 80px;
  }

  .hengsheng_goods_detail_gallery_arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .hengsheng_goods_detail_title_main {
    font-size: 28px;
  }

  .hengsheng_goods_detail_title_sub {
    font-size: 18px;
  }

  .hengsheng_goods_detail_btn {
    width: 100%;
  }
}
