/* 跑馬燈 */

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll2 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}


.contact-wall .contact-wrapper {
  animation: scroll 20s linear infinite;
  animation-delay: 0s;
}

.contact-wall .contact-wrapper.second {
  animation: scroll2 20s linear infinite;
  animation-delay: -10s;
}




















