.wxCode_dialog {
  width: 310px;
  height: 278px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 5px 22px 4px rgba(87, 96, 201, 0.15);
          box-shadow: 0px 5px 22px 4px rgba(87, 96, 201, 0.15);
  border-radius: 10px;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.wxCode_dialog .close {
  float: right;
  background: url("../image/cloudprinter/close.png") no-repeat center;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.wxCode_dialog .close:hover {
  background: url("../image/cloudprinter/close_hover.png") no-repeat center;
}
.wxCode_dialog h6 {
  color: #464a7c;
  font-size: 18px;
  margin-top: 13px;
}
.wxCode_dialog .code {
  width: 160px;
  height: 160px;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #efefef;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 18px auto 0;
}
.wxCode_dialog .code img {
  width: 156px;
  height: 156px;
}