.cd-wechat-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale3d(1, 1, 0);
  opacity: 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  transition: all .15s ease-in-out;
  border: 1px solid #D9E6F2;
  box-shadow: 0px 4px 4px 0px rgba(206, 207, 209, 0.28);
  z-index: 9998;
}

.cd-wechat-box-hide {
  opacity: 0;
	transform: translate(-50%,-50%) scale3d(1, 1, 0);
}

.cd-wechat-box-show {
  opacity: 1;
  transform: translate(-50%,-50%) scale3d(1, 1, 1);
}


.cd-wechat-box-icon-close {
  position: absolute;
  top: 7px;
  right: 9px;
  width: 20px;
  height: 20px;
}

.cd-wechat-box > img {
  width: 320px;
  height: 320px;
}