/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100vw;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
}

.logo-wrap {
  width: 300px;
  overflow: hidden;
  position: fixed;
  left: 3%;
  top: 3%;
  cursor: pointer;
  z-index: 999;
}

.logo{
  width: 100%;
  height: 100%;
  user-select: none;
  object-fit: contain;
}

.Marquee {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.Marquee-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.Marquee-item {
  min-width: 100%;
  user-select: none;
}

.Marquee-item img {
  width: 100%;
  display: block;
  user-select: none;
}

button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.dot-box{
  position: absolute;
  bottom: 124px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.dot {
  width: 15px;
  height: 15px;
  margin: 0 8px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s ease; /* 平滑的颜色过渡和缩放 */
  cursor: pointer;
}
.dot:hover {
  cursor: pointer;
  background-color: #ccc;
  transform: scale(1.2);
}

.dot.active {
  background-color: #fff;
  transform: scale(1.4); /* 选中时缩放 */
}
/* 动画效果 */
.dot {
  animation: scaleDot 0.5s ease-in-out;
}

/* 指示器缩放动画 */
@keyframes scaleDot {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* footer 样式 */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.item-link:hover {
  transform: scale(1.05); /* 放大效果 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 添加阴影 */
}

.item-link img {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.item-link:hover img {
  /*transform: scale(1.2); !* 鼠标悬停时图标放大 *!*/
  filter: brightness(1.2); /* 鼠标悬停时图标变亮 */
}

.footer-link {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: white;
  transform: translateY(-2px); /* 向上浮动 */
}

/* 小屏幕适配 */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }
}

