.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% !important;
  margin: 0 !important;
}

.backgroundPicture {
  width: 100%;
}

.goods-section {
  background-size: cover;
  line-height: normal;
  position: relative;
  overflow: hidden;
}
.section-con {
  z-index: 99;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 5%;
}

/* 字体大小（14px ~ 60px自适应） */
.font-14 {
  font-size: clamp(9px, 2vw, 14px);
}
.font-16 {
  font-size: clamp(9px, 2vw, 16px);
}
.font-18 {
  font-size: clamp(16px, 2.5vw, 18px);
}
.font-20 {
  font-size: clamp(16px, 3vw, 20px);
}
.font-24 {
  font-size: clamp(16px, 4vw, 24px);
}
.font-28 {
  font-size: clamp(16px, 4.5vw, 28px);
}
.font-32 {
  font-size: clamp(16px, 5vw, 32px);
}
.font-40 {
  font-size: clamp(18px, 6vw, 40px);
}
.font-48 {
  font-size: clamp(20px, 7vw, 48px);
}
.font-60 {
  font-size: clamp(24px, 8vw, 60px);
}

/* 字重 */
.font-bold {
  font-weight: bold;
}
.font-normal {
  font-weight: normal;
}

/* 行高 */
.leading-12 {
  line-height: 1.2;
}
.leading-15 {
  line-height: 1.5;
}
.leading-18 {
  line-height: 1.8;
}

/* 字间距 */
.letter-spacing-05 {
  letter-spacing: 0.5px;
}
.letter-spacing-1 {
  letter-spacing: 1px;
}
.letter-spacing-015 {
  letter-spacing: 1.5px;
}
.letter-spacing-2 {
  letter-spacing: 2px;
}
.letter-spacing-025 {
  letter-spacing: 2.5px;
}
.letter-spacing-3 {
  letter-spacing: 3px;
}

/* 文字颜色 */
.text-white {
  color: #ffffff;
}
.text-black {
  color: #000000;
}
.text-666 {
  color: #666666;
}
.text-323232 {
  color: #323232;
}

.text-bbbbbb {
  color: #bbbbbb;
}

/* 背景色 */
.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: #000000;
}

/* 布局 */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}

/* 对齐 */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.responsive-element {
  display: block;
}

.max-width-840px {
  max-width: 840px;
}

@media (max-width: 768px) {
  .responsive-element {
    display: none;
  }
}
