@charset "utf-8";



/*新的页脚代码 start*/
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  z-index: 2000;
}
.footer-menu {
  width: 100%;
}
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.footer-menu li {
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-menu a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-menu a:visited {
  color: #fff;
}
.footer-menu a i {
  font-size: 20px;
  margin-bottom: 5px;
}
.footer-menu a span {
  transition: color 0.3s ease;
  font-size: 12px;
}
.footer-menu a:hover span {
  color: #ddd;
}
/*新的页脚代码 end*/
