#floatWindow {
  width: 265px;
  height: 230px;
  z-index: 21474836480;
  position: fixed;
  top: 4px;
  left: 6px;
  display: block;
  background: url('../images/piaochuang.png?v=789456454578778114') no-repeat;
  background-size: 100%;
  border: 0px;
  cursor: pointer;
}

#floatWindow .closeTxt {
  width: 36px;
  height: 26px;
  position: absolute;
  right: 10px;
  top: 0px;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  background-size: auto;
  z-index: 9;
}


/* 遮罩层样式 */
#disabled_mask {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
}

#popWindow {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: #fefefe;
  border: 1px solid #eeeeee;
  padding: 5px;
  display: none;
}

#popWindow .popWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#popWindow .popWrapper h1 {
  font-size: 16px;
  color: #da251c;
  padding: 5px 0;
  text-align: center;
}


#popWindow .popWrapper .closeImg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}


#popWindow .popWrapper .codeImg {
  width: 100px;
  margin: 0 auto;
  border: 1px solid #efefef;
  display: block;
  height: 100px;
  vertical-align: middle;
}