.section-carousel {
    width: 100%;
    height: 60px;
    background: var(--background-color, #F7F7F7);
    white-space: nowrap;
    overflow-x: hidden;
    display: flex;
}

.section-carousel_scroll {
    animation: scroll var(--carousel-speed, 20s) linear infinite normal;
    display: flex;
}

.section-carousel:hover .section-carousel_scroll {
    animation-play-state: paused;
}

.section-carousel_item {
    display: inline-flex;
    align-items: center;
    height: 100%;
    margin-left: 60px;
}

.section-carousel_item_icon {
    display: flex;
    margin-right: 14px;
}

.section-carousel_item_icon img {
    height: 40px;
    width: auto;
}

.section-carousel_item_icon-default {
    width: 40px;
    height: 40px;
    background-color: #ddd;
}

.section-carousel_item_text {
    font-size: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color, #4B3C8B);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .section-carousel {
    height: 40px;
  }

  .section-carousel_scroll {
    animation: scroll var(--carousel-speed, 15s) linear infinite normal;
  }

  .section-carousel_item {
    margin-left: 30px;
  }

  .section-carousel_item:first-child {
    margin-left: 15px;
  }

  .section-carousel_item_icon {
    margin-right: 8px;
  }

  .section-carousel_item_icon img,
  .section-carousel_item_icon-default {
    width: 24px;
    height: 24px;
  }

  .section-carousel_item_text {
    font-size: 14px;
    line-height: 20px;
    color: #4B3C8B;
    white-space: nowrap;
  }

  /* 修改滚动动画 */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }
}