/* 定制化弹窗 */
#alertFram {
  position: fixed;
  left: 0px;
  background: rgba(0, 0, 0, 0.6);
  top: 0px;
  display: table;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10000;
}

#alertFram .a-f-bg {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#alertFram .a-f-box {
  list-style: none;
  margin: 0px;
  padding: 0px;
  width: 350px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c5c5c5;
  background: #fff;
  display: inline-block;
  /* 兼容手机 */
  max-width: 90vw;
}

#alertFram .a-f-title {
  background: #efefef;
  text-align: center;
  font-size: 16px;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
  /* 隐藏溢出的文本 */
  white-space: nowrap;
  /* 不换行 */
  text-overflow: ellipsis;
  /* 使用省略号表示溢出的文本 */
}

#alertFram .a-f-content {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  padding: 20px 10px;
}

#alertFram .a-f-footer {
  font-weight: bold;
  padding-bottom: 10px;
}

#alertFram .a-f-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 80%;
  height: 38px;
  font-size: 14px;
  color: #ffffff;
  background: #591804;
  border-radius: 6px;
  margin: 0 auto;
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.toast_box {
  /* width: 100%; */
  position: absolute;
  bottom: 50%;
  left: 50%;
  /* justify-content: center; */
  z-index: 10;
  transform: translate(-50%, -50%);
  display: none;
}

.toast_box p {
  box-sizing: border-box;
  padding: 10px 20px;
  width: max-content;
  /* 提示框的背景色 */
  background: #707070;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  opacity: 0.8;
}

.toliet {
  margin: 0 auto;
}
