@font-face {
  font-family: "Bebas";
  src: url("../ttf/Bebas-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


.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;
}

/* 图片样式 */
.goods-section img {
  width: 100%;
  margin: 0;
}

.backgroundPicture {
  width: 100%;
}

:root {
  --bgc-FFFFFF: #ffffff;
  --bgc-000000: #000000;
  --bgc-00d6f8: #00d6f8;
  --bgc-2c2c2c: #2c2c2c;

  --font-12: clamp(11px, 0.9vw, 12px);
  --font-14: clamp(14px, 1.1vw, 14px);
  --font-16: clamp(14px, 1.4vw, 16px);

  --font-18: clamp(16px, 1.6vw, 18px);
  --font-20: clamp(12px, 1.4vw, 20px);
  --font-40: clamp(24px, 3.6vw, 40px);
  --font-44: clamp(26px, 3.4vw, 44px);
}

.goods-section {
  background-size: cover;
  line-height: normal;
  position: relative;
  letter-spacing: 0.03vw;
  overflow: hidden;
}

.section-con {
  position: absolute;
  z-index: 4;
  top: 0;
  width: 100%;
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.section-title {
  font-size: var(--font-44);
  color: var(--bgc-FFFFFF);
  font-weight: bold;
  line-height: 1.2;
}

.section-content {
  font-size: var(--font-18);
  line-height: 1.5;
}

.section-blue-text {
  color: var(--bgc-00d6f8);
}

.section-bignum {
  font-size: var(--font-44);
  font-weight: bold;
}

.section-line {
  width: 30px;
  height: 1px;
  background-color: #000000;
  margin: clamp(10px, 1.2vw, 15px) 0;
}

.section-1 .section-con {
  padding-top: 13%;
  padding-left: 54%;
}


.section-1 .section-content {
  color: var(--bgc-FFFFFF);
}

.section-2 .section-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 8%;
}

.section-2 .section-title {
  color: var(--bgc-000000);
}

.section-2 .section-content {
  color: var(--bgc-000000);
}

.section-3 .section-con {
  padding-top: 8%;
}

.section-3 .section-content {
  color: var(--bgc-FFFFFF);
}

.section-3 .section-line {
  background-color: var(--bgc-FFFFFF);
}

.section-4 .section-con {
  padding-top: 13%;
  padding-left: 54%;
}

.section-4 .section-title {
  color: var(--bgc-000000);
}

.section-4 .section-content {
  color: var(--bgc-000000);
}

.section-5 .section-con {
  padding-top: 13%;
}

.section-5 .section-white-box {
  background-color: rgba(255, 255, 255, 0.6);
  padding: clamp(10px, 2vw, 40px) clamp(10px, 1.5vw, 30px);
}

.section-5 .section-title,
.section-content-title {
  color: var(--bgc-000000);
}

.section-5 .section-title {
  position: relative;

  text-align: center;
}

.section-5 .section-title::before {
  content: "PRODUCT INFORMATION";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.8);
  font-size: 3rem;
  color: white;
  opacity: 0.3;
  z-index: -1;
  white-space: nowrap;
  font-family: "Bebas";
  font-weight: 900;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.section-content-text {
  color: var(--bgc-2c2c2c);
}

.section-5 .section-content {
  margin-top: clamp(20px, 3vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.section-5 .section-content-text-span3 {
  grid-column: span 3;
}

@media (max-width: 768px) {
  .br-web {
    display: none;
  }

  .section-1 .section-con {
    padding-left: 5%;
    text-align: center;
  }

  .section-4 .section-con {
    padding-left: 5%;
  }

  .section-5 .section-title::before {
    transform: translate(-50%, -50%) scale(0.9);
  }

  .section-5 .section-content {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .section-5 .section-content-text-span3 {
    grid-column: unset;
  }
}