@font-face {
  font-family: 'MyCustomFont';
  src: url('../font/AlibabaPuHuiTi.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* 优化字体加载显示 */
}

body {
  font-family: 'MyCustomFont', sans-serif;
}


/* 滚动 */
.auto-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.auto-scroll-content {
  display: flex;
  width: max-content;
}

.scroll-item {
  flex: 0 0 auto;
  width: 283px;
  height: 130px;
  margin-right: 15px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.scroll-item1 {
  flex: 0 0 auto;
  width: 283px;
  height: 130px;
  margin-right: 25px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 18px;
}

.auto-scrolling {
  animation: scroll 20s linear infinite;
}

.auto-scroll-container:hover .auto-scrolling {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}