.goods-read-section {
  padding-top: var(--section-space-medium);
  padding-bottom: var(--section-space-medium);
}

.goods-read-section .pro-view {
  display: flex;
  column-gap: var(--grid-gap-large);
}

.goods-read-section .pro-img {
  width: calc(var(--left-ratio) * 1% - var(--grid-gap-large) / 2);
}
.goods-read-section .pro-summary {
  width: calc(100% - var(--left-ratio) * 1% - var(--grid-gap-large) / 2);
}

.goods-read-section .pro-tab-box {
  position: sticky;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
}
.goods-read-section .pro-tab-box.sticky {
  background: var(--bg-color);
}

.goods-read-section .pro-tab-box a.button {
  display: none;
}
.goods-read-section .pro-tab-box.sticky a.button.cd-popup-trigger {
  display: inline-flex;
}

.goods-read-section .pro-tab {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--section-space-large);
  flex-wrap: wrap;
}
.goods-read-section .pro-tab-box.sticky .pro-tab {
  width: auto;
  column-gap: var(--section-space-medium);
}

.goods-read-section .pro-tab li {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  cursor: pointer;
}

.goods-read-section .pro-tab li::after {
  content: "";
  width: 0;
  background: var(--link-color);
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease 0s;
}

.goods-read-section .pro-tab li.active {
  color: var(--link-color);
  font-weight: 600;
}
.goods-read-section .pro-tab li.active::after {
  width: 100%;
}

.goods-read-section .pro-scroll {
  padding: var(--card-space-large) 0;
  border-bottom: 1px dashed var(--border-color);
}

.goods-read-section .pro-text .tit {
  display: none;
  margin-bottom: var(--section-content-space-small);
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-weight: 600;
}

.goods-read-section .pro-scroll .table-response {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
.goods-read-section .pro-scroll table {
  width: 100%;
  border: 1px solid var(--border-color);
}
.goods-read-section .pro-scroll th,
.goods-read-section .pro-scroll td {
  padding: 10px 20px;
  border: 1px solid var(--border-color);
}

.goods-read-section .pro-scroll p {
  margin: 1em 0;
}
.goods-read-section .pro-scroll table p {
  margin: 0 !important;
}

@media (max-width: 992px) {
  .goods-read-section .pro-view {
    flex-direction: column;
    row-gap: var(--grid-gap-large);
  }
  .goods-read-section .pro-img,
  .goods-read-section .pro-summary {
    width: 100%;
  }

  .goods-read-section .pro-tab {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

@media (max-width: 767px) {
  .goods-read-section #detail_decorate_root [class*="magic-"] {
    width: 100%;
    height: auto;
  }
}