.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: 5vh;
}
.footer_image {
  height: 240px;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 1000px;
  margin: auto;
}
.item {
  display: block;
  width: 15%;
  text-align: center;
  line-height: 60px;
}
.footer_menu .link a {
  display: block;
  height: 60px;
  font-size: 15px;
  text-decoration: none;
  color: #000000;
}
.footer_menu .link a:hover {
  color: #ed755c;
  cursor: pointer;
}

@media all and (max-width: 1000px) {
  .footer {
    min-width: 320px;
  }
  .footer_image {
    min-width: 320px;
    height: auto;
  }
  .footer_image img {
    width: 100%;
    height: auto;
  }
  .item {
    display: block;
    width: 50%;
    min-width: 160px;
    text-align: center;
    line-height: 60px;
  }
  .footer_menu {
    display: flex;
    flex-wrap: wrap;
    min-width: 320px;
    margin: auto;
    width: 100%;
  }
}
