.footer {
  width: 100%;
  height: 440px;
  background: #000B1A;
}

.footer-content {
  padding-top: 72px;
  height: 260px;
  border-bottom: 1px solid #333b47;
  display: flex;
}

.footer-menu {
  min-width: 150px;
}

.footer-title {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-li {
  margin-bottom: 16px;
}

.footer-li a{
  font-size: 14px;
  color: #A3A3A3;
  text-decoration: none;
}

.footer-links {
  margin-left: auto;
}

.footer-logo {
  width: 298px;
  height: 28px;
  margin-bottom: 40px;
}

.footer-channel {
  display: flex;
  justify-content: flex-end;
}

.footer-icon-wrap {
  position: relative;
}

.footer-icon {
  width: 48px;
  border: 1px solid #313945;
  border-radius: 50%;
  margin-left: 24px;
  cursor: pointer;
  transition: all .2s;
}

.footer-icon:hover {
  background-color: #80858c;
  transition: all .2s;
}

.footer-icon1:hover + .footer-qrcode1, .footer-icon2:hover + .footer-qrcode2, .footer-icon3:hover + .footer-qrcode3 {
  opacity: 1;
  transition: all .5s;
}
.footer-qrcode {
  width: 140px;
  height: 140px;
  position: absolute;
  right: -50px;
  top: -160px;
  opacity: 0;
  transition: all .5s;
}


.footer-cover {
  font-size: 14px;
  color: #A3A3A3;
  padding-top: 28px;
}

.floater {
  display: none;
  position: fixed;
  top: 70%;
  right: 20px;
  /* transform: translateY(-50%); */
  background-color: #FFF;
  border-radius: 8px;
  border: 1px solid #E4E7ED;
  z-index: 999;
} 

.floater-item {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}

.floater-item > img {
  width: 40px;
  height: 40px;
}

.floater-item-code {
  border-radius: 8px 8px 0 0;
}

.floater-item-code:hover {
  background-color: #2382FF;
  transition: all 0.2s;
}
.floater-qrcode-active {
  display: none;
}

.floater-item-code:hover .floater-qrcode {
  display: none;
}

.floater-item-code:hover .floater-qrcode-active {
  display: block;
}

.floater-item:hover  .floater-code-box {
  display: flex;
  opacity: 1;
  transition: all .2s;
}

.floater-code-box {
  opacity: 0;
  display: none;
  transition: all .2s;
  position: fixed;
  top: 70%;
  right: 98px;
  transform: translateY(-50%);
  width: 168px;
  height: 192px;
  background: #FFFFFF;
  box-shadow: 0px 2px 9px 0px rgba(136, 139, 159, 0.25);
  border-radius: 8px;
  border: 1px solid #E4E7ED;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.floater-code {
  width: 144px;
  height: 144px;
  display: block;
}

.floater-word {
  font-size: 16px;
  font-weight: 600;
  color: #121212;
}

.floater-word-blue {
  color: #2382FF;
}

/* pc端 */
@media screen and (min-width: 480px) {
  .footer {
    display: block;
  }
  .footer-mobile {
    display: none;
  }
}


/* 手机端 */
@media screen and (max-width: 480px) {
  .footer {
    display: none;
  }

  .footer-mobile {
    display: block;
    width: 3.75rem;
    height: auto;
    background: #000B1A;
    overflow: hidden;
  }

  .footer-content {
    height: auto;
    padding: 0 .15rem;
    display: flex;
    flex-direction: column;
    border-bottom: none;
  }

  .footer-menu {
    width: 100%;
    padding-top: .24rem;
  }

  .footer-title {
    font-size: .16rem;
    font-weight: 400;
    margin-bottom: .1rem;
  }

  .footer-li {
    height: 0.44rem;
    font-size: .14rem;
    line-height: .44rem;
    border-bottom: 1px solid #182230;
    margin-bottom: 0;
  }

  .footer-links {
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .footer-logo {
    width: 1.95rem;
    height: .16rem;
    margin: .28rem auto .2rem auto;
  }

  .footer-channel {
    display: flex;
    justify-content: space-between;
    padding: 0 1.06rem;
  }

  .footer-icon-wrap {
  }

  .footer-icon {
    width: .32rem;
    height: .32rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    display: block;
  }


  .footer-cover {
    text-align: center;
    padding:.24rem 0 .7rem 0;
  }

  .floater {
    display: none !important;
  }
}