@charset "UTF-8";
/* 颜色变量 */
footer {
  background-color: #F1F1F1;
}

footer .footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(252, 252, 252, 0.1);
}

footer .footer-links .footer-logo {
  width: 218px;
}

footer .footer-links > p a {
  display: inline-block;
  margin-left: 56px;
  font-size: 18px;
  font-weight: bold;
  transition: all .3s;
  color: #333;
}

footer .footer-links > p a:hover {
  color: #00A67D;
  transform: translateY(-2px);
}

footer .footer-info {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px;

}
footer .footer-info .left{
  width:816px;
  overflow: hidden;
}
footer .footer-info .left p {
  display: inline-block;
  min-width: 406px;
  color: #666;
  font-size: 16px;
}

footer .footer-info .left p img {
  display: inline-block;
  vertical-align: middle;
  width: 46px;
  margin-right: 10px;
}

footer .footer-info .left p:last-child {
  margin-bottom: 0;
}

footer .footer-info .left p:hover {
  color: #999;
}

footer .footer-info .right {
  display: flex;
  font-size: 16px;
  color: #666;
}

footer .footer-info .right img {
  width: 120px;
    max-width: 120px;
  margin-bottom: 6px;
}

footer .footer-info .right .code-box {
  margin-left: 35px;
  text-align: center;
}



footer .footer-bottom {
  position: relative;
  text-align: center;
  color: #B2B2B2;
  font-size: 13px;
  line-height: 62px;
  background-color: #E9E9E9;
}
@media all and (max-width: 960px) {
  footer .footer-links {
    display: none;
    padding: 0;
  }
  footer .footer-links .footer-logo {
    display: none;
  }
  footer .footer-links > P a {
    display: block;
    margin: 0;
    line-height: 3;
    text-align: center;
    font-size: 3.6vw;
    border-bottom: 1px solid #E9E9E9;
  }
  footer .footer-info {
    display: block;
    padding: 4vw 0;
  }
  footer .footer-info .left{
    width: 100%;
  }
  footer .footer-info .left p {
    display: none;
  }
  footer .footer-info .left p:nth-of-type(1), footer .footer-info .left p:nth-of-type(3) {
    display: block;
    width: 100%;
    min-width: 100%;
    text-align: center;
    font-size: 3.6vw;
  }
  footer .footer-info .left p:nth-of-type(1) img, footer .footer-info .left p:nth-of-type(3) img {
    width: 6vw;
    height: 6vw;
    margin-right: 0;
  }
  footer .footer-info .right {
    display: flex;
    justify-content: space-between;
    font-size: 3.6vw;
    padding: 2vw 12vw 0;
  }
  footer .footer-info .right img {
    width: 30vw;
  }
  footer .footer-info .right .code-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
  }
  footer .footer-info .right .code-box {
    margin: 0;
  }
  footer .footer-info .right .code-box.active {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 80vw;
    padding: 4vw;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 100000000;
  }
  footer .footer-info .right .code-box.active > img {
    width: 100%;
    max-width: 100%;
  }
  footer .footer-bottom {
    text-align: center;
    line-height: 2;
    font-size: 3.6vw;
  }
  footer .footer-bottom span {
    display: block;
  }
}
