.sgc-specs-table *,
.sgc-specs-table *::before,
.sgc-specs-table *::after {
  box-sizing: border-box;
}

@media (max-width: 959px) {
  .sgc-specs-table * {
    -webkit-tap-highlight-color: transparent;
  }
}

.sgc-specs-table ol,
.sgc-specs-table ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sgc-specs-table dl {
  margin-block: 0;
}

.sgc-specs-table dd {
  margin-inline-start: 0;
}

.sgc-specs-table h1,
.sgc-specs-table h2,
.sgc-specs-table h3,
.sgc-specs-table h4,
.sgc-specs-table h5,
.sgc-specs-table h6 {
  margin-block: 0;
  word-break: break-all;
}

.sgc-specs-table h1:empty,
.sgc-specs-table h2:empty,
.sgc-specs-table h3:empty,
.sgc-specs-table h4:empty,
.sgc-specs-table h5:empty,
.sgc-specs-table h6:empty,
.sgc-specs-table section:empty,
.sgc-specs-table article:empty,
.sgc-specs-table p:empty,
.sgc-specs-table a:empty,
.sgc-specs-table ol:empty,
.sgc-specs-table ul:empty,
.sgc-specs-table dl:empty,
.sgc-specs-table summary:empty {
  display: none;
}

.sgc-specs-table a:not([href]) {
  cursor: not-allowed;
}

.sgc-specs-table a:not(.sgc-button),
.sgc-specs-table a:not(.sgc-button):hover {
  text-decoration: none;
}

.sgc-specs-table svg.sgc-icon circle,
.sgc-specs-table svg.sgc-icon path {
  vector-effect: non-scaling-stroke;
}

.sgc-specs-table p:first-child {
  margin-block-start: 0;
}

.sgc-specs-table p:last-child {
  margin-block-end: 0;
}

.sgc-specs-table {
  /**
   * 内容级的元素层级
   */
  --sgc-z-index-hover: 1;
  --sgc-z-index-active: 2;
  --sgc-z-index-focus: 3;

  /**
   * 覆盖级的元素层级
   */
  --sgc-z-index-sticky: 1000;
  --sgc-z-index-dropdown: 1010;
  --sgc-z-index-fixed: 1020;
  --sgc-z-index-modal: 1030;
  --sgc-z-index-popover: 1040;
  --sgc-z-index-tooltip: 1050;
  --sgc-z-index-toast: 1060;
}

@keyframes sgc-loading-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sgc-specs-table .sgc-hidden {
  display: none !important;
}

@media (max-width: 959px) {
  .sgc-specs-table .sgc-hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .sgc-specs-table .sgc-hidden-desktop {
    display: none !important;
  }
}

.sgc-specs-table .sgc-hidden-empty:empty {
  display: none;
}

.sgc-specs-table .sgc-basic-style {
  font-family: var(--sgc-basic-font-family, revert);
  font-size: var(--sgc-basic-font-size, revert);
  font-style: var(--sgc-basic-font-style, revert);
  font-weight: var(--sgc-basic-font-weight, revert);
  line-height: var(--sgc-basic-line-height, revert);
  color: rgb(var(--sgc-basic-color, revert));
  letter-spacing: var(--sgc-basic-letter-spacing, revert);
  overflow-wrap: break-word;
}

@media (max-width: 959px) {
  .sgc-specs-table .sgc-basic-style {
    font-size: var(
      --sgc-basic-mobile-font-size,
      var(--sgc-basic-font-size, revert)
    );
  }
}

.sgc-specs-table .sgc-text-align-left {
  text-align: start;
}

.sgc-specs-table .sgc-text-align-center {
  text-align: center;
}

.sgc-specs-table .sgc-text-align-right {
  text-align: end;
}

.sgc-specs-table .sgc-hidden-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sgc-specs-table .sgc-hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.sgc-specs-table .sgc-button {
  --sgc-button-padding-block: 10px;
  --sgc-button-padding-inline: 20px;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--sgc-button-padding-block);
  padding-inline: var(--sgc-button-padding-inline);
  font-family: var(--sgc-button-font-family, revert);
  font-size: var(--sgc-button-font-size, revert);
  font-style: var(--sgc-button-font-style, revert);
  font-weight: var(--sgc-button-font-weight, revert);
  line-height: var(--sgc-button-line-height, revert);
  vertical-align: middle;
  color: rgb(var(--sgc-button-text-color, revert));
  text-align: center;
  letter-spacing: var(--sgc-button-letter-spacing, revert);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 959px) {
  .sgc-specs-table .sgc-button {
    --sgc-button-padding-block: 8px;
    --sgc-button-padding-inline: 16px;

    font-size: var(
      --sgc-button-mobile-font-size,
      var(--sgc-button-font-size, revert)
    );
  }
}

.sgc-specs-table .sgc-button:focus {
  outline: 0;
}

.sgc-specs-table .sgc-button:disabled,
.sgc-specs-table .sgc-button.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.sgc-specs-table .sgc-button.loading {
  position: relative;
  color: transparent !important;
}

.sgc-specs-table .sgc-button.loading::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin-block-start: -8px;
  margin-inline-start: -8px;
  content: "";
  border: 2px solid rgb(var(--sgc-button-text-color, revert));
  border-block-start-color: transparent;
  border-radius: 50%;
  animation: sgc-loading-spin 1s linear infinite;
}

.sgc-specs-table .sgc-button--style-normal {
  background-color: rgb(var(--sgc-button-background-color, revert));
  border: var(--sgc-button-border-thickness) solid
    rgb(var(--sgc-button-border-color), var(--sgc-button-border-opacity));
  border-radius: var(--sgc-button-border-radius);
  box-shadow: var(--sgc-button-shadow-offset-x)
    var(--sgc-button-shadow-offset-y) var(--sgc-button-shadow-blur)
    rgb(var(--sgc-button-shadow-color), var(--sgc-button-shadow-opacity));
}

.sgc-specs-table .sgc-button--style-normal.sgc-button--effect-scan {
  overflow: hidden;
}

.sgc-specs-table .sgc-button--style-normal.sgc-button--effect-scan::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    hsl(0deg 0% 100% / 25%),
    transparent
  );
  transform: skew(-20deg) translateX(200%);
  transition: transform 0.5s cubic-bezier(0.01, 0.56, 1, 1);
}

.sgc-specs-table .sgc-button--style-normal.sgc-button--effect-scan:focus::after,
.sgc-specs-table
  .sgc-button--style-normal.sgc-button--effect-scan:hover::after {
  transform: skew(-20deg) translateX(-150%);
}

.sgc-specs-table .sgc-button--style-normal.sgc-button--effect-shadow {
  transition: box-shadow 0.2s;
}

.sgc-specs-table .sgc-button--style-normal.sgc-button--effect-shadow:hover {
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.sgc-specs-table .sgc-button--style-normal.sgc-button--effect-scale {
  position: relative;
}

.sgc-specs-table .sgc-button--style-normal.sgc-button--effect-scale::after {
  position: absolute;
  inset-block-start: calc(-1 * var(--sgc-button-border-thickness));
  inset-inline-start: calc(-1 * var(--sgc-button-border-thickness));
  display: block;
  width: calc(100% + var(--sgc-button-border-thickness) * 2);
  height: calc(100% + var(--sgc-button-border-thickness) * 2);
  pointer-events: none;
  content: "";
  border-radius: calc(var(--sgc-button-border-radius) + 1px);
  box-shadow: none;
  transition: box-shadow 0.2s;
}

.sgc-specs-table
  .sgc-button--style-normal.sgc-button--effect-scale:focus::after,
.sgc-specs-table
  .sgc-button--style-normal.sgc-button--effect-scale:hover::after {
  box-shadow: 0 0 0 1px
    rgb(var(--sgc-button-border-color), var(--sgc-button-border-opacity));
}

.sgc-specs-table .sgc-button--style-link {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  background-color: transparent;
  border: none;
}

.sgc-specs-table .sgc-button--style-link:hover {
  text-decoration-thickness: 2px;
}

.sgc-specs-table .sgc-button--style-arrow-button {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  gap: 4px;
  background-color: transparent;
  border: none;
}

.sgc-specs-table .sgc-rte {
  overflow-wrap: break-word;
}

.sgc-specs-table .sgc-rte img,
.sgc-specs-table .sgc-rte video {
  max-width: 100%;
  height: auto;
}

.sgc-specs-table .sgc-rte::after {
  clear: both;
  display: block;
  content: "";
}

.sgc-specs-table .sgc-rte a,
.sgc-specs-table .sgc-rte a:hover {
  position: relative;
  padding: 0 1px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.sgc-specs-table .sgc-rte ul,
.sgc-specs-table .sgc-rte ol {
  padding: revert;
  margin: revert;
  list-style: revert;
}

.sgc-specs-table .sgc-rte > p:first-child {
  margin-block-start: 0;
}

.sgc-specs-table .sgc-rte > p:last-child {
  margin-block-end: 0;
}

.sgc-specs-table .sgc-rte iframe {
  max-width: 100%;
}

.sgc-specs-table .sgc-rte p img {
  vertical-align: bottom;
}

.sgc-specs-table .sgc-rte table {
  table-layout: fixed;
}

.sgc-specs-table section {
  background-color: rgb(var(--sgc-specs-table-background-color));
}

.sgc-specs-table {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--sgc-specs-table-desktop-max-width);
  padding: var(--sgc-specs-table-padding-block-start)
    var(--sgc-specs-table-padding-inline-start)
    var(--sgc-specs-table-padding-block-end)
    var(--sgc-specs-table-padding-inline-end);
  margin-inline: auto;
  background-color: var(--sgc-specs-table-background-color);
}

.sgc-specs-table .sgc-specs-table-body {
  display: flex;
  flex-direction: column;
  row-gap: var(--sgc-specs-table-body-row-gap);
}

.sgc-specs-table .sgc-specs-table-body-content {
  padding: var(--sgc-specs-table-body-padding-block-start)
    var(--sgc-specs-table-body-padding-inline-start)
    var(--sgc-specs-table-body-padding-block-end)
    var(--sgc-specs-table-body-padding-inline-end);
  background-color: rgb(var(--sgc-specs-table-body-background-color));
  border: var(--sgc-specs-table-border-width) solid
    rgb(
      var(--sgc-specs-table-border-color) /
        var(--sgc-specs-table-border-opacity)
    );
  border-radius: var(--sgc-specs-table-border-radius);
  box-shadow: var(--sgc-specs-table-shadow-offset-x)
    var(--sgc-specs-table-shadow-offset-y) var(--sgc-specs-table-shadow-blur)
    rgb(
      var(--sgc-specs-table-shadow-color) /
        var(--sgc-specs-table-shadow-opacity)
    );
}

.sgc-specs-table .sgc-specs-table-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: var(--sgc-specs-table-header-text-align);
}

.sgc-specs-table .sgc-specs-table-header-title {
  font-family: var(--sgc-specs-table-font-family);
  font-size: var(--sgc-specs-table-desktop-font-size);
  font-style: var(--sgc-specs-table-font-style);
  font-weight: var(--sgc-specs-table-font-weight);
  line-height: var(--sgc-specs-table-line-height);
  color: var(--sgc-specs-table-font-color);
  letter-spacing: var(--sgc-specs-table-letter-spacing);
}

.sgc-specs-table .sgc-specs-table-row {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 20px 0;
  border-block-end: 1px solid var(--sgc-specs-table-divider-line-color);
}

.sgc-specs-table .sgc-specs-table-row-title {
  flex: 1;
  min-width: 100px;
  margin: 0;
}

.sgc-specs-table .sgc-specs-table-row-equal .sgc-specs-table-row-title {
  flex: 1 1 50%;
}

.sgc-specs-table .sgc-specs-table-row-equal .sgc-specs-table-row-description {
  flex: 1 1 50%;
}

.sgc-specs-table .sgc-specs-table-row-custom .sgc-specs-table-row-title {
  flex: 1 1 var(--sgc-specs-table-desktop-title-width);
  max-width: var(--sgc-specs-table-desktop-title-width);
}

.sgc-specs-table .sgc-specs-table-row-custom .sgc-specs-table-row-description {
  flex: 1;
  max-width: calc(100% - var(--sgc-specs-table-desktop-title-width));
}

@media (max-width: 959px) {
  .sgc-specs-table .sgc-specs-table-header-title {
    font-size: var(--sgc-specs-table-mobile-font-size);
  }

  .sgc-specs-table .sgc-specs-table-row {
    flex-flow: row nowrap;
    align-items: flex-start;
    padding: 10px 0;
  }

  .sgc-specs-table .sgc-specs-table-row-description {
    width: 100%;
    max-width: 100%;
  }
  .sgc-specs-table .sgc-specs-table-row-equal .sgc-specs-table-row-title {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .sgc-specs-table .sgc-specs-table-row-equal .sgc-specs-table-row-description {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .sgc-specs-table .sgc-specs-table-row-custom .sgc-specs-table-row-title {
    flex: 0 0 var(--sgc-specs-table-mobile-title-width);
    max-width: var(--sgc-specs-table-mobile-title-width);
  }

  .sgc-specs-table
    .sgc-specs-table-row-custom
    .sgc-specs-table-row-description {
    flex: 1;
    max-width: calc(100% - var(--sgc-specs-table-mobile-title-width));
  }
}
