/* =========================
   Fashion Footer
========================= */

.site-footer{
  margin-top:60px;
  background:#fafafa;
  border-top:1px solid #e8ebef;
}

.site-footer .container{
  padding:32px 20px 22px;
}

/* 导航 */

.footer-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:36px;
  margin-bottom:22px;
}

.footer-nav a{
  display:inline-block;
  color:#555d66;
  font-size:15px;
  font-weight:400;
  text-decoration:none;
  transition:
    color .25s ease,
    transform .25s ease;
}

.footer-nav a:hover{
  color:var(--red);
  transform:translateY(-1px);
}

/* 版权 */

.footer-copy{
  padding-top:18px;
  border-top:1px solid #eceff2;
  text-align:center;
  color:#9aa3ad;
  font-size:13px;
  line-height:1.7;
}

/* =========================
   Mobile
========================= */
@media (max-width:768px){

  .site-footer{
    margin-top:50px;
  }

  .site-footer .container{
    padding:24px 12px 18px;
  }

  .footer-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:0;
    flex-wrap:nowrap;
  }

  .footer-nav a{
    flex:1;
    text-align:center;
    font-size:12px;
    font-weight:400;
    white-space:nowrap;
  }

  .footer-copy{
    padding-top:16px;
    font-size:12px;
  }

}
