@import url("./baseStyle.css");
.marquee {
  width: 100%;
  background: #da7d4a;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-text {
  padding: 10px;
  font-size: 64px;
  font-weight: 400;
  font-family: "Mantou-Sans";
  color: white;
  text-align: center;
  display: inline-block;
  /* padding-left: 100%; */
  animation: marquee 20s linear infinite;
  /* background: #000; */
}

.marquee-text:nth-child(2) {
  animation: marquee2 20s linear infinite;
  animation-delay: -10s;
  /* background: #ffff; */
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
