.footer-app {
  width: 1236px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.romantic-footer {
  background: linear-gradient(to top, #ff9ec8, #fff0f6);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -5px 30px rgba(255, 105, 180, 0.2);
  border-radius: 10px;
}

.footer-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.footer-heart {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: floatHeart 5s linear infinite;
}

.footer-content {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-poem {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 1rem 0;
  font-style: italic;
}

.footer-poem p {
  padding: 0;
  margin: 0;
}  

.footer-copyright {
  padding-bottom: 2rem;
  opacity: 0.8;
}

@keyframes floatHeart {
  0% {
      transform: translateY(100%) rotate(0deg);
      opacity: 0;
  }
  50% {
      opacity: 0.8;
  }
  100% {
      transform: translateY(-100%) rotate(360deg);
      opacity: 0;
  }
}

/* 为现有样式添加媒体查询 */
@media (max-width: 768px) {
  .footer-poem {
      font-size: 1rem;
  }
}