/* 弹窗 */
.hide {
  display: none;
}

.shade {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2147483647;
  background-color: rgba(0, 0, 0, .5);
}

.shade .popups {
  position: relative;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 484px;
  height: 544px;
}

.shade .popups .close_btn {
  float: left;
  width: 60px;
  height: 60px;
  background: url('/statics/images/pop_close.png') no-repeat center;
  background-size: 30px 30px;
  cursor: pointer;
}

.shade .popups img {
  float: right;
  width: 400px;
  height: 100%;
}
