.footer {
  position: fixed; /* 始终固定在底部 */
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center; /* 文字居中 */
  background: #f5f5f5;
  padding: 10px 0;
  font-size: 12px;
  color: #666;
}
.footer a {
  color: #666;
  text-decoration: none;
}
.footer a:hover {
  color: #333;
}