.slideInDownInit {
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  transition-delay: 0.2s;
}

.slideInDown {
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

.scaleInit {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.delayed-element {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.5s ease 0.2s;
}

.delayed-element.delayed-show {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --font-14: clamp(12px, 1vw, 14px);
  --font-16: clamp(13px, 1.15vw, 16px);
  --font-18: clamp(14px, 1.3vw, 18px);
  --font-20: clamp(15px, 1.45vw, 20px);
  --font-22: clamp(14px, 1.6vw, 22px);
  --font-24: clamp(17px, 1.75vw, 24px);
  --font-26: clamp(18px, 1.9vw, 26px);
  --font-28: clamp(19px, 2.05vw, 28px);
  --font-30: clamp(20px, 2.2vw, 30px);
  --font-32: clamp(21px, 2.35vw, 32px);
  --font-34: clamp(22px, 2.5vw, 34px);
  --font-36: clamp(23px, 2.65vw, 36px);
  --font-38: clamp(24px, 2.8vw, 38px);
  --font-40: clamp(25px, 2.95vw, 40px);
  --font-42: clamp(26px, 3.1vw, 42px);
  --font-44: clamp(27px, 3.25vw, 44px);
  --font-46: clamp(28px, 3.4vw, 46px);
  --font-48: clamp(29px, 3.55vw, 48px);
  --font-52: clamp(28px, 3.85vw, 52px);
  --font-54: clamp(28px, 4vw, 54px);
  --font-64: clamp(32px, 4.5vw, 64px);
  --font-90: clamp(40px, 7vw, 90px);
  --font-num-48: clamp(14px, 2.8vw, 44px);

  --color-000: #000;
  --color-262626: #262626;
  --color-727272: #727272;
  --color-c99d7e: #c99d7e;
  --color-0088ff: #0088ff;
}

.goods-detail {
  margin-top: 108px;
  overflow: hidden;
}

.goods-section .backgroundPicture img {
  width: 100%;
  margin: 0;
  min-width: 30px;
}

.backgroundPicture {
  width: 100%;
}

.goods-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sectionTop {
  margin: 6vw 3vw;
}

.bigtitle {
  font-size: var(--font-64);
  color: var(--color-000);
  font-weight: bold;
  text-align: center;
}

.sectionLine {
  height: 1px;
  width: 100%;
  background-color: #262626;
  margin: 0.5vw 0;
}

.subtitle {
  font-size: var(--font-20);
  color: var(--color-262626);
  text-align: justify;
}

.subtitle::after {
  content: "";
  display: inline-block;
  width: 100%;
}

:lang(en).subtitle {
  text-align: center;
}

.productBox {
  display: grid;
  justify-content: space-between;
  text-align: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  margin: 3vw;
}

.sectionBottom {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.productTitle {
  font-size: var(--font-48);
  font-weight: bold;
  color: var(--color-262626);
}

.productLine {
  height: 1px;
  width: 100%;
  background-color: #999999;
  margin: 0.5vw 0 6vw 0;
}

.productContent {
  font-size: var(--font-20);
  color: var(--color-727272);
  letter-spacing: 0;
}

.bottomTitle {
  font-size: var(--font-54);
  font-weight: bold;
  color: var(--color-262626);
}

.productBottomBox {
  display: grid;
  grid-template-columns: 1fr 0.2fr 1fr;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  justify-items: center;
  gap: 3vw;
  margin: 8vw 0 10vw 0;
}

.productBottomTitle {
  font-size: var(--font-20);
  color: var(--color-727272);
}

.productBottomContent {
  font-size: var(--font-54);
  font-weight: bold;
  color: var(--color-c99d7e);
}

.productBottomLine {
  width: 1px;
  height: 3vw;
  min-height: 35px;
  background-color: var(--color-727272);
}


@media (max-width: 1200px) {
  .goods-section .backgroundPicture img {
    width: 180%;
    margin-left: -40%;
  }

  .sectionTop {
    margin: 14vw 3vw;
  }

  .sectionBottom {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .goods-section .backgroundPicture img {
    width: 240%;
    margin-left: -70%;
  }
  .productBox {
    grid-template-columns: 1fr;
    gap: 12vw;
    margin: 12vw 0;
  }

  .productLine {
    margin: 0.5vw 0 18vw 0;
  }

  .productBottomBox {
    margin: 16vw 0 24vw 0;
  }

  .sectionLine {
    margin: 2vw 0;
  }

}
