.footer {
  height: 260px;
  /*background: #F6F6F6;*/
      left: 0;
    right: 0;
    top: 0;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    z-index: 100;

}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  height: 100%
}
.copyright {
  font-size: 12px;
  color: #333;
}

.footer img {
  max-height: 100px;
}

@media screen and (max-width: 896px) {
  .footer {
    height: 150px;
    padding: 0 16px;
  }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .footer-logo {
    margin: 0 0 8px;
  }
}