.main_footer{
  background: #33373C;
}

.copyright {
  background: #2D3135;
  line-height: 50px;
  color: #666666;
  text-align: center;
  font-size: 12px;
}

.copyright a {
  color: #666666;
  font-size: 12px;
}

.copyright a:hover{
  color: #3F86FA;
}

.foot-content{
  width: 1100px;
  height: 330px;
  margin: 0 auto;
  background: #33373C;
  padding: 60px 0px 50px;
  box-sizing: border-box;
  /*display: flex;*/
  display: none;
}
.displayNone{
  display: none !important;
}

.foot-content .bluelogo{
  margin-right: 250px;
}

.foot-content .links{
  flex: 1;
  display: flex;
}

.foot-content .links>div{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 120px;
}
.foot-content .links>div:last-child{
  margin-right: 0px;
}
.foot-content .links .linktitle{
  color: #DDDDDD;
  font-size:20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.foot-content .links>div a{
  color: #999999;
  text-decoration: none;
  font-size:16px;
  margin-bottom: 15px;
  transition: all .3s;
}

.foot-content .links>div a:hover{
  color: #3F86FA;
}

.foot-content .links>div a:last-child{
  margin-bottom: 0;
}

.foot-content .qrBox{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.foot-content .qrBox .qrcode{
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 5px;
  cursor: pointer;
  overflow: hidden;
}

.foot-content .qrBox span{
  font-size: 12px;
  color: #dddddd;
  margin-top: 10px;
}
.w_box {
  border-radius: 8px;
  margin: 20px 0;
  background: #fff;
}

.aqrcodeBox{
  position: relative;
}

.aqrcodeBox img{
  width: 112px;
  height: 112px;
  border-radius:3px;
  background: white;
  position: absolute;
  right: -130px;
  top: 0;
  opacity: 0;
  transition: all .3s;
  z-index: 1;
  padding: 5px;
}

.aqrcodeBox:hover img{
  opacity: 1;
}