@keyframes scroll1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-505.6747px * var(--item-number-1)));
  }
}

@media (max-width: 1200PX) {
  @keyframes scroll1 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-170.7912px * var(--item-number-1)));
    }
  }
}
.content-1-max {
  width: 100%;
  background-image: url(../../assets/img/corporate-secretary/bg_head.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.content-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.4167rem;
  max-height: 699px;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  /* background-image: url(../assets/img/bg_head.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat; */
  .title {
    margin-top: 60px;
    width: 7.0833rem;
    min-width: 200px;
    max-width: 1020px;
    font-synthesis: style;
    font-family: sans-serif, serif;
    line-height: 1.3;
    color: white;
    font-size: .2222rem;
    font-weight: bold;
    letter-spacing: 2%;
    text-shadow: 4px 4px 12px #333; /* 水平2px，垂直2px，模糊半径4px，颜色黑色 */
  }
}

/* 移动设备 */
/* prettier-ignore */
@media (max-width: 640PX) {
  .content-1 {
    .title {
      margin-top: 0;
      font-size: 10px;
    }
  }
}

/* PC 样式 不用转rem */
/* prettier-ignore */
@media (min-width: 1000PX) {
  @keyframes scroll1 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-151PX * var(--item-number-1)));
    }
  }

  .content-1 {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 1440PX;
    display: flex;
    flex-direction: column;
    .title {
      margin-top: 90px;
      font-size: .2917rem;
    }
  }
}

/* PC 样式 不用转rem */
/* prettier-ignore */
@media (min-width: 1440PX) {
  .content-1 {
    .title {
      font-size: 42px;
    }
  }
}