#app .footer {
  box-sizing: border-box;
  padding: 10px 0;
  height: 60px;
  background: #222c3c;
}
#app .footer .content-container .friends-link {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #909090;
  margin-bottom: 10px;
}
#app .footer .content-container .friends-link .friends-link-item {
  margin-right: 10px;
  color: #909090;
}
#app .footer .content-container .footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 460px;
  max-width: 100%;
  font-size: 12px;
}
#app .footer .content-container .footer-content .links {
  font-size: 12px;
  line-height: 20px;
  color: #909090;
}
#app .footer .content-container .footer-content .vertical-line {
  margin: 0 10px;
  width: 1px;
  height: 16px;
  background: #909090;
}
@media screen and (max-width: 460px) {
  #app .footer .content-container .friends-link {
    font-size: 10px;
  }
  #app .footer .content-container .footer-content {
    flex-wrap: wrap;
  }
  #app .footer .content-container .footer-content .links {
    font-size: 10px;
  }
  #app .footer .content-container .footer-content .vertical-line {
    margin: 0 5px;
    width: 1px;
    height: 16px;
    background: #909090;
  }
}
