/* 去掉背景和边距 */
.footer-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: none;
}

/* 容器排版 */
#footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  font-size: 0.95em;
  line-height: 1.6;
  box-sizing: border-box;
}

/* 内容区域 */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
}

/* 每个链接按钮样式 */
.footer-content a {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.5em 0.8em;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 0.9em;
}

.footer-content a:hover {
  background-color: #005f99;
}

/* 移动端优化 */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 0.4em;
  }

  .footer-content a {
    width: 100%;
    text-align: center;
  }
}
