/* ========================================
   页脚样式 - 现代简约风格
   作者：胡智鹏
   日期：2025-11-18
   ======================================== */

#footer {
  background-color: rgb(255 255 255);
  border-top: 1px solid rgb(224 231 234);
  padding: 20px 0;
  flex-shrink: 0;
  width: 100%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.copyright {
  font-size: 13px;
  color: rgb(96 125 139);
  margin: 0;
}

.powered-by {
  font-size: 12px;
  color: rgb(176 190 197);
  margin: 0;
}

.powered-by a {
  color: rgb(84 110 122);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.powered-by a:hover {
  color: rgb(55 71 79);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgb(96 125 139);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgb(55 71 79);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
