.alert_tip {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 999;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
}

.alert-tip-box {
  display: block;
  border-radius: 5px;
  width: 462px;
  height: 277px;
  background: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -231px;
  margin-top: -130px;
  z-index: 1000;
  padding: 42px 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.alert_img {
  width: 100%;
  text-align: center;
}

.alert-tip-box>p {
  width: 100%;
  text-indent: 0;
  text-align: center;
  margin-top: 30px;
  font-family: PingFang-SC-Medium;
  font-size: 14px;
  color: #474747;
}

.alert-tip-box>button {
  width: 88px;
  height: 30px;
  border: 1px solid #F77441;
  background: #FFF;
  border-radius: 3px;
  color: #F77441;
  margin-top: 35px;
  cursor: pointer;
  outline: none;
}

.alert-tip-box>button:hover {
  background: #FFE2D7;
  border-color: #FFC8B3;
}

.closeBtn {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer
}