/* 底部 */
.footer {
  position: fixed; /* 在没有滚动条时固定在底部 */
  width: 100%;
  bottom: 0;
  height: 45px;
  background: #015198;
  color: #fff;
}
.footer > ul > li {
  text-align: center;
}

@media screen and (max-height: 100vh) {
  .footer {
    position: relative; /* 当出现滚动条时，位于内容下方 */
  }
}
@media screen and (max-width: 1199px) {
  .footer {
    height: auto;
    padding: 10px 0;
  }
  .footer ul li {
    width: 100%;
    margin-right: 0 !important;
    padding: 5px;
  }
  /* .footer ul li:not(:last-child) {
    margin-bottom: 10px;
  } */
}
