.modal_box {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.modal_box .modal_content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}

@media (max-width: 830px) {
  .modal_box .modal_content {
    width: 50%;
  }
}

@media (max-width: 430px) {
  .modal_box .modal_content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
}

.modal_box .closeModal {
  color: #cd0000;
  text-align: right;
  font-size: 28px;
  font-weight: bold;
}

.closeModal:hover,
.closeModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal_box .modal_line {
  width: 90%;
  margin: auto;
  height: 1px;
  background: #bebebe;
}

.modal_box .madal_title {
  height: 62px;
  line-height: 62px;
  font-size: 18px;
  font-weight: bold;
  color: #cd0000;
}

.modal_box .modal_bt {
  outline: none;
  border: none;
  background: #cd0000;

  text-align: center;
  width: 147px;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  border-radius: 7px;
  cursor: pointer;
}

.modal_box .modal_nr {
  height: 112px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_box .modal_bt a {
  color: #fff;
}
