body {
  background: #000000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  padding-bottom: 70px; /* 为底部按钮留出空间 */
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  box-sizing: border-box;
  overflow-y: auto;
}

.header-image {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.header-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 删除全部.text-section相关样式 */

.swiper {
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 20px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bottom-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 20px;
  background: transparent;
}

.download-btn {
  flex: 1 1 0;
  max-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: #ffb6c1;
  color: #333;
  text-decoration: none;
  border-radius: 500px;
  font-weight: bold;
  border: 2px solid #666666;
  transition:
    transform 0.08s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
  animation:
    pulse 1s infinite alternate,
    bgColorChange 1s infinite alternate,
    textColorChange 1s infinite alternate,
    borderColorChange 1s infinite alternate;
}

.btn-icon {
  height: 24px;
  width: auto;
  margin-right: 8px;
  border-radius: 4px;
  vertical-align: middle;
}

.download-btn:hover {
  background-color: #ff9aaf;
  color: #000000;
  border-color: #000000;
  transform: scale(1.15);
  animation-play-state: paused;
}

/* 动画相关样式保持不变 */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes bgColorChange {
  0% {
    background-color: #cd30f8; /* 粉色 */
  }
  100% {
    background-color: #ffffff; /* 白色 */
  }
}

.download-btn:active {
  transform: scale(0.85);
  transition: transform 0.05s;
  background-color: #cd30f8; /* 点击时的背景颜色 */
  color: #ffffff; /* 点击时文字变为白色 */
  border-color: #ffffff; /* 点击时边框颜色也变为白色 */
}

@media (max-width: 480px) {
  .download-btn {
    font-size: 12px;
  }
}
