/* 设置全局样式 */
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* 定义每个页面的样式 */
.section {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: calc(100vh - 60px); /* 每个 section 占满视窗高度 */
  box-sizing: border-box;
}

/* 设置不同页面的背景颜色 */
#section1 {
  background-color: #f9f3db;
}
#section2 {
  background-color: #fffdf1;
}
#section3 {
  background-color: #f9f3db;
}
#section4 {
  background-color: #fffdf1;
}
#section5 {
  background-color: #f9f3db;
}
#section6 {
  background-color: #fffdf1;
}

/* 小圆点导航样式 */
.fp-controlArrow {
  width: 20px;
  height: 20px;
}

.fp-controlArrow.active {
  background: #000;
}

/* spacer 和波浪线样式 */
.spacer {
  width: 100%;
  height: 200px;
  position: absolute; /* 绝对定位 */
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wave {
  width: 100%;
  height: 100%;
}

.title-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center; /* 水平居中 */
  overflow: hidden; /* 防止图片溢出 */
  box-sizing: border-box;
  position: absolute; /* 绝对定位 */
  top: 2vh; /* 吸附在顶部 */
  left: 0;
  z-index: 1;
}

.title-image {
  max-height: 75%;
  object-fit: contain; /* 图片完整展示 */
  position: relative;
  left: 0;
  top: 0;
}

.crystal-container1 {
  position: absolute;
  top: 27%; /* 根据需要调整位置 */
  left: calc(50% - 8vw); /* 让 container1 向左偏移 23vw */
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}
.crystal-container2 {
  position: absolute;
  top: 17%; /* 根据需要调整位置 */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.crystal-container3 {
  position: absolute;
  top: 30%; /* 根据需要调整位置 */
  left: calc(50% + 7vw);
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.crystal1 {
  height: 25vh; /* 设置为视窗高度的30% */
  width: auto; /* 自动宽度保持比例 */
  animation: float1 2s ease-in-out infinite;
}

.crystal2 {
  height: 20vh; /* 设置为视窗高度的20% */
  width: auto; /* 自动宽度保持比例 */
  animation: float3 2s ease-in-out infinite;
}

.crystal3 {
  height: 40vh; /* 设置为视窗高度的40% */
  width: auto; /* 自动宽度保持比例 */
  animation: float2 3s ease-in-out infinite;
}

.crystal-container4 {
  position: absolute;
  top: 29%; /* 根据需要调整位置 */
  left: calc(35% - 120px); /* 让 container1 向左偏移 23vw */
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}
.crystal-container5 {
  position: absolute;
  top: 17%; /* 根据需要调整位置 */
  left: 35%;
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.crystal-container6 {
  position: absolute;
  top: 34%; /* 根据需要调整位置 */
  left: calc(35% + 110px);
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.crystal4 {
  height: 224px;
  width: auto; /* 自动宽度保持比例 */
  animation: float1 2s ease-in-out infinite;
}

.crystal5 {
  height: 376px;
  width: auto; /* 自动宽度保持比例 */
  animation: float3 2s ease-in-out infinite;
}

.crystal6 {
  height: 165px;
  width: auto; /* 自动宽度保持比例 */
  animation: float2 3s ease-in-out infinite;
}

@keyframes float1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  } /* 向上浮动 */
  100% {
    transform: translateY(0);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  } /* 向上浮动，幅度较小 */
  100% {
    transform: translateY(0);
  }
}

@keyframes float3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  } /* 向上浮动，幅度较小 */
  100% {
    transform: translateY(0);
  }
}

.border-container {
  position: absolute;
  border: 5px solid black;
  background-color: #f5f6f2;
  display: inline-block;
  z-index: 3;
  opacity: 0; /* 初始透明度 */
  pointer-events: none;
}

#border-container1 {
  top: 20%;
  left: 15%;
  padding: 10px 20px; /* 边框内部的留白 */
}

#border-container2 {
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px; /* 边框内部的留白 */
}

#border-container3 {
  top: 30%; /* 距离顶部25% */
  left: 10%;
  width: 50%;
  padding: 5px; /* 边框内部的留白 */
}

#border-container4 {
  top: 60%; /* 距离顶部45% */
  left: 15%;
  padding: 5px; /* 边框内部的留白 */
  width: 40%;
}

#border-container5 {
  top: 60%; /* 距离顶部45% */
  left: 40%;
  padding: 5px; /* 边框内部的留白 */
  width: 50%;
}

#border-container6 {
  top: 20%; /* 距离顶部45% */
  left: 8%;
  padding: 5px; /* 边框内部的留白 */
  padding: 10px 10px 10px 15px; /* 边框内部的留白 */
  border: 7px solid #97acac; /* 黑色的边框 */
  border-radius: 15px;
  background-color: #f5f6f2;
}

#border-container7 {
  top: 20%; /* 距离顶部45% */
  left: 10%;
  padding: 5px; /* 边框内部的留白 */
  width: 60%;
}

#border-container8 {
  top: 60%; /* 距离顶部45% */
  left: 40%;
  padding: 5px; /* 边框内部的留白 */
  width: 50%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* 从下方进入 */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 到达最终位置 */
  }
}

.title-line {
  color: black; /* 文字颜色为黑色 */
  font-size: 25px;
  font-weight: bold;
  word-spacing: 5px;
}

.title-line2 {
  color: black; /* 文字颜色为黑色 */
  font-size: 20px;
  font-weight: bold;
  word-spacing: 5px;
}

.title-line3 {
  margin-left: 30px;
  margin-right: 30px;
  color: black; /* 文字颜色为黑色 */
  font-size: 25px; /* 设置整体的字体大小 */
  font-weight: bold; /* 字体加粗 */
  word-spacing: 5px; /* 词间距 */
  text-align: left; /* 文本左对齐 */
  display: flex;
  flex-direction: column; /* 纵向排列文本 */
  justify-content: center; /* 垂直居中 */
  align-items: flex-start; /* 水平左对齐 */
}

.title-line3 h3 {
  font-size: 28px; /* 设置标题的字体大小 */
  margin-bottom: 20px; /* 给标题和段落间留出空间 */
}

.title-line3 p {
  margin: 10px 0; /* 段落间距，控制行间距 */
  font-weight: normal; /* 段落字体不加粗 */
  line-height: 1.5; /* 设置段落内行间距 */
}

.title-line4 {
  color: #97acac; /* 文字颜色为黑色 */
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 5px;
  word-spacing: 15px;
}

.start-button {
  position: absolute;
  top: 83vh;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('https://static.igem.wiki/teams/5343/imgs/homepage/button.png')
    no-repeat center center;
  background-size: cover;
  width: 300px;
  height: 84px;
  border: none;
  color: white;
  font-size: 50px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 2;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  margin-bottom: 5%;
}

.outer-card {
  width: 980px;
  height: 560px;
  background-color: #bbd6d5;
  border-radius: 30px 30px 80px 30px;
  position: relative;
  margin: 20px;
  z-index: 3;
}

.inner-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 22px;
  bottom: 22px;
  background-color: #97acac;
  border-radius: 30px 30px 60px 30px;
  padding: 22px;
  box-sizing: border-box;
}

.inner-card3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 22px;
  bottom: 22px;
  background-color: #97acac;
  border-radius: 30px;
  padding: 22px;
  box-sizing: border-box;
}

.card-c {
  position: absolute; /* 绝对定位 */
  margin-top: 50px;
  top: 0;
  left: 50%; /* 水平居中 */
  transform: translateX(-50%); /* 将容器从左侧平移50%来实现真正的水平居中 */
  width: 100%;
  max-width: 1000px;
  height: 540px;

  border: 20px solid #97acac; /* 灰色边框 */
  border-radius: 20px; /* 可选：为边框添加圆角 */
  box-sizing: border-box; /* 确保边框计算在内 */
  z-index: 10;
}

/* 容器样式 */
.card-container2 {
  overflow: hidden; /* 隐藏超出的内容 */
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 10;
}

/* 轮播图 */
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 500%; /* 每个幻灯片的宽度是容器宽度的5倍 */
  z-index: 10;
}

.slide-card {
  min-width: 100%; /* 每个slide占满一屏 */
  height: 100%;
}

.inner-image2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

/* 灰色透明下方栏 */
.carousel-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色 */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  z-index: 11;
}

/* 小圆点样式 */
.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb; /* 默认灰色 */
  cursor: pointer;
}

.dot.active {
  background-color: #fff; /* 被点击的小圆点为白色 */
}

.button-left {
  position: absolute;
  top: 50%; /* 垂直居中 */
  transform: translateY(-30%); /* 垂直居中修正 */
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1; /* 确保按钮位于内容上方 */
  overflow: hidden;
  width: 220px;
  height: 400px;
  left: -240px; /* 按钮位于轮播图的左侧 */
}

.button-right {
  position: absolute;
  top: 50%; /* 垂直居中 */
  transform: translateY(-30%); /* 垂直居中修正 */
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1; /* 确保按钮位于内容上方 */
  overflow: hidden;
  width: 220px;
  height: 400px;
  right: -234px; /* 按钮位于轮播图的右侧 */
}

.carousel-button-img1 {
  width: 350px; /* 调整按钮图片大小 */
  height: auto;
}

.carousel-button-img2 {
  width: 220px; /* 调整按钮图片大小 */
  height: auto;
}

.card-wrapper {
  position: relative; /* 设置相对定位，用于内部cover-image的绝对定位 */
  margin: 60px; /* 每个卡片容器的外边距 */
  width: 330px; /* 设置宽度 */
  height: 560px; /* 设置高度 */
}

.outer-card2 {
  opacity: 0;
  width: 330px; /* 根据需求调整卡片宽度 */
  height: 560px; /* 根据需求调整卡片高度 */
  background-color: #bbd6d5;
  border-radius: 30px 30px 40px 30px;
  position: relative;
  margin: 20px auto; /* 垂直居中 */
  z-index: 2; /* 确保在cover-image之下 */
  transition: opacity 1s ease-in-out;
}

.inner-card2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 15px;
  bottom: 15px;
  background-color: #97acac;
  border-radius: 30px 30px 30px 30px;
  padding: 15px;
  box-sizing: border-box;
}

.cover-image {
  transition: opacity 1s ease-in-out;
}

#cover-image1 {
  opacity: 0;
  position: absolute; /* 绝对定位 */
  bottom: -100px; /* 相对于card-wrapper底部定位 */
  right: -80px; /* 相对于card-wrapper右侧定位 */
  width: 300px; /* 调整图片宽度 */
  height: auto; /* 保持图片的高度自动适应 */
  z-index: 5; /* 确保它在outer-card2上方 */
}

#cover-image2 {
  opacity: 0;
  position: absolute; /* 绝对定位 */
  bottom: 10px; /* 相对于card-wrapper底部定位 */
  right: 30px;
  width: 285px; /* 调整图片宽度 */
  height: auto; /* 保持图片的高度自动适应 */
  z-index: 5; /* 确保它在outer-card2上方 */
}

#cover-image3 {
  opacity: 0;
  position: absolute; /* 绝对定位 */
  bottom: 150px; /* 相对于card-wrapper底部定位 */
  right: 110px; /* 相对于card-wrapper右侧定位 */
  width: 90px; /* 调整图片宽度 */
  height: auto; /* 保持图片的高度自动适应 */
  z-index: 5; /* 确保它在outer-card2上方 */
}

#cover-image4 {
  opacity: 0;
  position: absolute; /* 绝对定位 */
  top: 50px; /* 相对于card-wrapper底部定位 */
  right: 150px; /* 相对于card-wrapper右侧定位 */
  width: 100px; /* 调整图片宽度 */
  height: auto; /* 保持图片的高度自动适应 */
  z-index: 5; /* 确保它在outer-card2上方 */
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#cover-image5 {
  position: absolute; /* 绝对定位 */
  top: 10px; /* 相对于card-wrapper底部定位 */
  right: 22px; /* 相对于card-wrapper右侧定位 */
  width: 300px; /* 调整图片宽度 */
  height: auto; /* 保持图片的高度自动适应 */
  z-index: 5; /* 确保它在outer-card2上方 */
  overflow: hidden;

  /* 动画效果 */

  opacity: 0; /* 初始透明度 */
}

.inner-image {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 40px 20px;
  object-fit: cover;
}

.inner-image3 {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 20px 20px;
  object-fit: cover;
}

.inner-image2 {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 20px 20px;
  object-fit: cover;
}

.hover-background {
  position: absolute;
  left: -500px; /* 初始位置在左侧外部 */
  top: 50%;
  transform: translateY(-50%); /* 垂直居中 */
  width: 500px; /* 保持宽度不变 */
  height: 494px; /* 保持高度不变 */
  background-color: rgba(249, 243, 219, 0.3); /* 米黄色背景, 带透明度 */
  backdrop-filter: blur(10px); /* 添加毛玻璃效果 */
  z-index: 1; /* 确保在图片下面 */
  opacity: 0; /* 初始透明度为0 */
  transition: left 0.3s, opacity 0.3s; /* 平滑过渡效果 */
  border-radius: 20px;
  display: flex; /* 使用flex布局 */
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */

  margin-left: 22px;
}

.magnifying-glass {
  position: absolute; /* 绝对定位 */
  top: -60px; /* 初始位置 */
  left: 0; /* 初始位置在左侧 */
  width: 80px; /* 放大镜图标宽度 */
  height: 96px; /* 放大镜图标高度 */
  opacity: 0; /* 初始不可见 */
  transform: translate(0, 0); /* 初始位置 */
  transition: transform 1s cubic-bezier(0.42, 0, 0.58, 1), opacity 1s; /* 曲线运动 */
}

.dna1 {
  top: 10%;
  left: 0%;
  position: absolute;
  width: 60px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move2 15s linear infinite;
  /* 立即开始 */
}

.dna2 {
  top: 30%;
  left: 0%;
  position: absolute;
  width: 70px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move1 10s linear infinite;
  animation-delay: 1s; /* 延迟1秒 */
}

.dna3 {
  top: 15%;
  left: 0%;
  position: absolute;
  width: 60px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move1 15s linear infinite;
  animation-delay: 2s; /* 延迟2秒 */
}

.dna4 {
  top: 10%;
  left: 0%;
  position: absolute;
  width: 70px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move3 25s linear infinite;
  animation-delay: 3s; /* 延迟3秒 */
}

.dna5 {
  top: 20%;
  left: 0%;
  position: absolute;
  width: 60px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move2 25s linear infinite;
  animation-delay: 4s; /* 延迟4秒 */
}

.dna6 {
  top: 30%;
  left: 0%;
  position: absolute;
  width: 70px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move2 10s linear infinite;
  animation-delay: 5s; /* 延迟5秒 */
}

.dna7 {
  top: 40%;
  left: 0%;
  position: absolute;
  width: 60px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move1 15s linear infinite;
  animation-delay: 6s; /* 延迟6秒 */
}

.dna8 {
  top: 40%;
  left: 0%;
  position: absolute;
  width: 70px; /* 图片宽度 */
  height: auto; /* 自适应高度 */
  opacity: 0; /* 初始不透明度 */
  animation: move1 20s linear infinite;
  animation-delay: 7s; /* 延迟7秒 */
}

@keyframes move1 {
  0% {
    left: 3%;
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px); /* 向上浮动 */
  }
  50% {
    transform: translateY(15px); /* 向下浮动 */
  }
  75% {
    transform: translateY(-10px); /* 向上浮动 */
  }
  100% {
    left: 90%;
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes move2 {
  0% {
    left: 3%;
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    transform: translateY(-30px); /* 向上浮动 */
  }
  40% {
    transform: translateY(20px); /* 向下浮动 */
  }
  60% {
    transform: translateY(-25px); /* 向上浮动 */
  }
  80% {
    transform: translateY(15px); /* 向下浮动 */
  }
  100% {
    left: 90%;
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes move3 {
  0% {
    left: 3%;
    opacity: 1;
    transform: translateY(0);
  }
  15% {
    transform: translateY(-10px); /* 向上浮动 */
  }
  30% {
    transform: translateY(10px); /* 向下浮动 */
  }
  45% {
    transform: translateY(-5px); /* 向上浮动 */
  }
  60% {
    transform: translateY(5px); /* 向下浮动 */
  }
  75% {
    transform: translateY(-2px); /* 向上浮动 */
  }
  90% {
    left: 90%; /* 到达右边界 */
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    left: 90%;
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0; /* 初始透明度 */
    transform: translateY(-10px); /* 向上偏移 */
  }
  100% {
    opacity: 1; /* 最终透明度 */
    transform: translateY(0); /* 恢复到原位 */
  }
}

.star {
  position: absolute;
  opacity: 0;
}

#star1 {
  top: 5%;
  left: 45%;
  width: 50px;
  height: 50px;
  z-index: 1;
  /* 动画持续时间 */
}

#star2 {
  top: 12%;
  left: 60%;
  width: 60px;
  height: 60px;
  z-index: 1;

  /* 延迟0.3秒 */
}

#star3 {
  top: 10%;
  left: 75%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟0.6秒 */
}

#star4 {
  top: 10%;
  left: 85%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟0.9秒 */
}

#star5 {
  top: 35%;
  left: 90%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟1.2秒 */
}

#star6 {
  top: 50%;
  left: 85%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟1.5秒 */
}

#star7 {
  top: 65%;
  left: 90%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟1.8秒 */
}

#star8 {
  top: 80%;
  left: 80%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟2.1秒 */
}

#star9 {
  top: 85%;
  left: 68%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟2.4秒 */
}

#star10 {
  top: 90%;
  left: 55%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟2.7秒 */
}

#star11 {
  top: 2%;
  left: 45%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 无延迟 */
}

#star12 {
  top: 10%;
  left: 35%;
  width: 60px;
  height: 60px;
  z-index: 1;

  /* 延迟0.3秒 */
}

#star13 {
  top: 12%;
  left: 25%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟0.6秒 */
}

#star14 {
  top: 10%;
  left: 12%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟0.9秒 */
}

#star15 {
  top: 30%;
  left: 8%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟1.2秒 */
}

#star16 {
  top: 50%;
  left: 12%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟1.5秒 */
}

#star17 {
  top: 65%;
  left: 10%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟1.8秒 */
}

#star18 {
  top: 82%;
  left: 15%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟2.1秒 */
}

#star19 {
  top: 85%;
  left: 28%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟2.4秒 */
}

#star20 {
  top: 87%;
  left: 40%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟2.7秒 */
}

#star21 {
  top: 5%;
  left: 45%;
  width: 50px;
  height: 50px;
  z-index: 1;
  /* 动画持续时间 */
}

#star22 {
  top: 12%;
  left: 60%;
  width: 60px;
  height: 60px;
  z-index: 1;

  /* 延迟0.3秒 */
}

#star23 {
  top: 10%;
  left: 75%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟0.6秒 */
}

#star24 {
  top: 10%;
  left: 85%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟0.9秒 */
}

#star25 {
  top: 35%;
  left: 90%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟1.2秒 */
}

#star26 {
  top: 50%;
  left: 85%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟1.5秒 */
}

#star27 {
  top: 65%;
  left: 90%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟1.8秒 */
}

#star28 {
  top: 80%;
  left: 80%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟2.1秒 */
}

#star29 {
  top: 85%;
  left: 68%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟2.4秒 */
}

#star30 {
  top: 90%;
  left: 55%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟2.7秒 */
}

#star31 {
  top: 2%;
  left: 45%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 无延迟 */
}

#star32 {
  top: 10%;
  left: 35%;
  width: 60px;
  height: 60px;
  z-index: 1;

  /* 延迟0.3秒 */
}

#star33 {
  top: 12%;
  left: 25%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟0.6秒 */
}

#star34 {
  top: 10%;
  left: 12%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟0.9秒 */
}

#star35 {
  top: 30%;
  left: 8%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟1.2秒 */
}

#star36 {
  top: 50%;
  left: 12%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟1.5秒 */
}

#star37 {
  top: 65%;
  left: 10%;
  width: 55px;
  height: 55px;
  z-index: 1;

  /* 延迟1.8秒 */
}

#star38 {
  top: 82%;
  left: 15%;
  width: 50px;
  height: 50px;
  z-index: 1;

  /* 延迟2.1秒 */
}

#star39 {
  top: 85%;
  left: 28%;
  width: 40px;
  height: 40px;
  z-index: 1;

  /* 延迟2.4秒 */
}

#star40 {
  top: 87%;
  left: 40%;
  width: 45px;
  height: 45px;
  z-index: 1;

  /* 延迟2.7秒 */
}

.footer-container {
  display: flex;
  justify-content: space-between; /* 左中右排列 */
  align-items: center; /* 上下居中 */
  width: 100%;
  padding: 20px; /* 根据需要添加一些内边距 */
  box-sizing: border-box;
  margin-bottom: 110px;
}

.footer-left {
  display: flex;
  justify-content: center; /* 左右居中 */
  align-items: center; /* 上下居中 */
  flex-direction: row; /* 元素纵向排列 */
  padding: 10px; /* 添加一些内边距 */
  box-sizing: border-box;
}
.footer-center,
.footer-right {
  display: flex;
  justify-content: center; /* 左右居中 */
  align-items: center; /* 上下居中 */
  flex-direction: column; /* 元素纵向排列 */
  padding: 10px; /* 添加一些内边距 */
  box-sizing: border-box;
}

.footer-left {
  width: 30%; /* 左侧占30% */
}

.footer-center {
  width: 40%; /* 中间占40% */
}

.footer-right {
  width: 30%; /* 右侧占30% */
}

.footer-left img {
  width: 90px; /* 根据需要调整 logo 的宽度 */
  height: 90px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-right img {
  width: 60px; /* 根据需要调整 logo 的宽度 */
  height: 60px;
}

.footer-container p {
  margin: 0;
  line-height: 1.6;
  text-align: center; /* 文字居中对齐 */
}

.footer-center p {
  font-size: 0.9rem;
  text-align: center; /* 中间内容居中对齐 */
}

.footer-center a {
  color: black;
  text-decoration: none;
}

.footer-center a:hover {
  text-decoration: underline;
}

.footer-logo {
  margin-bottom: 10px;
}

