.banner img {
  height: 123x;
  margin-right: 180px;
}



.banner a{
width:220px;	
  height: 123x;
  margin-right: 50px;
}

.banner-wrap {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.banner {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.banner span {
  color: #fff;
  padding: 10px 30px;
  white-space: nowrap;
  font-size: 16px;
}

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