/* 页脚更新通知样式 */
.footer-update-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: fadeInOut 2s ease-in-out;
  max-width: 90%;
  text-align: center;
}

.footer-update-notification .notification-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-update-notification i {
  font-size: 18px;
}

.footer-update-notification p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
}

/* 移动端适配 */
@media (max-width: 768px) {
  .footer-update-notification {
    padding: 8px 15px;
    max-width: 85%;
  }
  
  .footer-update-notification i {
    font-size: 16px;
  }
  
  .footer-update-notification p {
    font-size: 13px;
  }
}

/* 页脚刷新按钮样式 */
.footer-refresh-btn {
  background-color: #4a6da7 !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 15px !important;
  border-radius: 4px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}

.footer-refresh-btn:hover {
  background-color: #3a5d97 !important;
}

.footer-refresh-btn i {
  font-size: 14px !important;
}

/* 旋转动画 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
}
