/********弹出框开始***********/
.m-toast-pop {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
  text-align: center;
  z-index: 10000;
}

.m-toast-inner {
  position: absolute;
  left: 47%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
}

.m-toast-inner-text {
  display: inline-block;
  margin: 0 10px;
  padding: 19px 21px;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 22px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}

/********弹出框结束***********/

.bg-alert {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index:1000;
  display: none;
}
.bg-alert .box {
  width: 300px;
  height: 200px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
}
.bg-alert .box .title {
  font-size: 19px;
  color: #333;
  font-weight: 500;
  text-align: center;
  line-height: 125px;
}
.bg-alert .box .btn {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 35px;
  /* display: flex;
  justify-content: space-between; */
  width: 100%;
  height: 80px;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 40px;
}
.bg-alert .box .btn div {
  width: 80px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
}
.bg-alert .box .btn .cancel {
  background-color: #efefef;
  float: left;
}
.bg-alert .box .btn .sure {
  background-color: #fc5c33;
  color: #fff;
  float: right;
}

