.home-main {
  background-color: #000000;
  color: #fff;
  position: relative;
}
.home-content {
  width: 1280px;
  margin: 0 auto;
}
/* 产品矩阵 */
.product-matrix {
  height: 476px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.product-matrix-list {
  display: flex;
  gap: 32px;
  height: 198px;
}
.matrix-content-item {
  width: 405px;
  border: 1px solid rgba(229, 231, 235, 0.2);
  border-radius: 8px;
  padding: 24px;
}
.matrix-content-item img {
  width: 20px;
  height: 20px;
}
.matrix-content-item-text {
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 18px;
  height: 18px;
}
.matrix-content-item-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 100%;
  color: rgba(255, 255, 255, 0.44);
  display: flex;
  align-items: center;
  justify-content: center;
}
.matrix-content-item-icon img {
  width: 16px;
  height: 16px;
}
/*  */
.product-btn-list {
  margin: 0 auto;
  width: 388px;
  height: 38px;

  display: flex;
  gap: 12px;
}
.product-btn-list button {
  width: 88px;
  font-size: 14px;
  background: none;
}
.product-btn-list button.active {
  background-color: #146EF5;
}
.product-content {
  width: 958px;
  height: 456px;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 102px;
}
.product-content-img {
  width: 456px;
  height: 456px;
  border-radius: 16px;
}
.product-content-text {
  width: 400px;
  height: 278px;
  padding: 36px 0;
}
.product-content-text-name {
  font-size: 22px;
}
.product-content-text-desc {
  padding: 24px 0;
  font-size: 14px;
  line-height: 22px;
}
.product-content-text button {
  height: 48px;
  width: 127.33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* logo墙 */
.logo-container {
  width: 100%;
  position: absolute;
  left: 0;
}
.logo-space {
  height: 480px;
}
.logo-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
}
.logo-body {
  display: flex;
}
.logo-body:hover .logo-content {
  animation-play-state: paused;
}
.logo-content {
  display: flex;
  flex-shrink: 0;
  animation: logo--move 10s linear infinite;
}
.logo-content.animation-time--1 {
  animation-duration: 40s;
}
.logo-content.animation-time--2 {
  animation-duration: 60s;
}
@keyframes logo--move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
