.big_warning {
  position: fixed;
  left: 40px;
  bottom: 180px;
  cursor: pointer;
  z-index: 99;
}

.warning_title {
  font-size: 36px;
}
.dark_bg {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  height: 300%;
  width: 100%;
}
.warning_body {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 80%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.body_content {
  scrollbar-width: none; /* firefox */
  -ms-overflow-style: none; /* IE 10+ */
  width: 100%;
  height: 87%;
  overflow-y: auto;
}
.body_content::-webkit-scrollbar {
  display: none; /* Chrome Safari */
}
.warning_body .close_btn {
  position: absolute;
  left: 45%;
  bottom: 10px;
  margin-left: -50px;
  cursor: pointer;
  font-size: 16px;
  padding: 0.5em 4em;
  border: 0;
  border-radius: 4px;
  background-color: #2ba8fb;
  color: #ffffff;
  font-weight: normal;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.close_btn:hover {
  background-color: #6fc5ff;
  box-shadow: 0 0 20px #6fc5ff50;
  transform: scale(1.1);
}

.close_btn:active {
  background-color: #3d94cf;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  box-shadow: none;
  transform: scale(0.98);
}
.warning_body .body_name {
  text-align: center;
  font-size: 24px;
  margin: 0;
}
.body_content p {
  color: rgb(191, 47, 36);
  font-size: 16px;
}
.body_content .p2 {
  text-indent: 20px;
}
.body_content .p3 {
  font-weight: bold;
}
.body_content .s1 {
  color: rgb(191, 47, 36);
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
.body_content .img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.body_content .img > img {
  width: 400px;
}
.big_warning {
  animation: scale 3s infinite; /* 1.8s 事件完成时间周期 infinite无限循环 */
}

@keyframes jumpBoxHandler {
  /* css事件 */
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, 30px); /* 可配置跳动方向 */
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes scale {
  /* css事件 */
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shake {
  0% {
    rotate: 0deg;
  }

  33% {
    rotate: 10deg;
  }

  66% {
    rotate: -10deg;
  }

  100% {
    rotate: 10deg;
  }
}
