﻿/* hover-effect */
.antchainbackgroundwrap {
    width: 100%;
    height:80px;
    background-color: #4c70ff;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.antchainbackgroundwrap .antchainbackground {
  width: 1920px;
  height: 80px;
  position: relative;
}

.antchainbackgroundwrap .antchainbackground .antchainbackgroundimg {
  width: 1920px;
  height: 80px;
}

.antchainbackgroundwrap .antchainbackground .antchainbtn {
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
  position: absolute;
  left: 1105px;
  top: 27px;
  z-index: 2;
  cursor: pointer;
}

.antchainbackgroundwrap .antchainbackground .qrcodewrap {
  position: absolute;
  top: -176px;
  left: 1105px;
  width: 220px;
  height: 256px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.antchainbackgroundwrap .antchainbackground .qrcodewrap .qrcodewrapimg {
  width: 220px;
  height: 256px;
}

.antchainbackgroundwrap .antchainbackground .qrcodewrap .qrcodeimg {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 170px;
  height: 170px;
}

.antchainbackgroundwrap .antchainbackground .qrcodeshow {
  top: 80px;
  opacity: 1;
  z-index: 999;
}

.antchainbackgroundwrap .antchainclose {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: 0.6;
}

.antchainbackgroundwrap .antchainclose:hover {
    opacity: 1;
}

.antchainbackgroundwrap .antchainclose .antchaincloseimg {
  width: 26px;
  height: 26px;
}

.translate {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}