.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;

}

.marquee-item.s {
    gap:  var(--genstore-spacing-gap-1200);
    margin-right: var(--genstore-spacing-gap-1200)
  }

.marquee-item.m {
    gap:  var(--genstore-spacing-gap-2400);
    margin-right: var(--genstore-spacing-gap-2400)
  }

.marquee-item.l {
    gap:  var(--genstore-spacing-gap-3600);
    margin-right: var(--genstore-spacing-gap-3600)
  }

.marquee-item .scrolling-item  {
  display: inline-flex;
  align-items: center;
  margin: 0;
  white-space: nowrap;
}

.marquee-item img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 50%;
}


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

/* 悬停暂停效果 */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.scrolling-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper.xxl {
    width: 72px;
    height: 72px;
  }

.icon-wrapper.xl {
    width: 64px;
    height: 64px;
  }

.icon-wrapper.l {
    width: 56px;
    height: 56px;
  }

.icon-wrapper.m {
    width: 44px;
    height: 44px;
  }

.icon-wrapper.s {
    width: 36px;
    height: 36px;
  }

.icon-wrapper > svg {
  height: 100%;
  width: 100%;
  color: inherit;
  fill: currentColor;
}
