.toastContent {
  background: rgba(0,0,0,0.6);
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: all 0.25s ease 0s;
  transform: translate(-50%, -50%);
  width: 150px;
  padding: 18px 10px;
  box-sizing: border-box;
  opacity: 0;
  z-index: -1;
}
.mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.toastCp_show {
  z-index: 1000;
  opacity: 1;
}
.toastCp_hide {
  opacity: 0;
  z-index: -1;
}
.toastImg {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 10px;
}
.toastText {
  display: inline-block;
  word-break: break-all;
}
.toastPoint {
  text-align: center;
}
.pointItem {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.8;
  background: #b7b7b7;
  margin-right: 5px;
  animation: shake linear 1.5s infinite;
}
.pointItem:nth-child(1) {
  animation-delay: 0s;
}
.pointItem:nth-child(2) {
  animation-delay: 0.5s;
}
.pointItem:nth-child(3) {
  animation-delay: 1s;
}
@keyframes shake {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
