
.Modal_modal {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: .5s;
  transition: .5s;
}
.Modal_modal:not(.show) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.Modal_modal:not(.show) .Modal_body {
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
}
.Modal_body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  min-width: 100px;
  min-height: 50px;
  max-height: 90%;
  overflow: auto;
  top: 50%;
  left: 50%;
  background: #fff;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #333;
  -webkit-transition: .5s;
  transition: .5s;
}
.Modal_closeBtn {
  position: absolute;
  height: 32px;
  width: 32px;
  top: 0;
  right: 4px;
  background: none;
  color: #999;
  border: none;
  font-size: 24px;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  -webkit-transition: .25s;
  transition: .25s;
}
.Modal_closeBtn:hover {
  color: #09924b;
}

.progress[data-v-0bfa8f56] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.2s;
  transition: opacity 0.4s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.4s;
  transition: transform 0.2s, opacity 0.4s, -webkit-transform 0.2s;
  opacity: 1;
  background-color: #09924b;
  z-index: 999999;
}

.MessageBox_body {
  min-width: 380px;
  padding-top: 45px;
  line-height: 1.5;
  font-size: 16px;
}
.MessageBox_title {
  padding: 0 20px 15px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  font-weight: bold;
}
.MessageBox_message {
  margin: 5px 20px 47px;
}
.MessageBox_messageCenter {
  text-align: center;
}
.MessageBox_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  text-align: center;
  overflow: hidden;
}
.MessageBox_btn {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  line-height: 58px;
  border: none;
  background: #09924b;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: .25s;
  transition: .25s;
}
.MessageBox_btn:last-child {
  border-right: none;
}
.MessageBox_btn:hover {
  background-color: #088444;
}
.MessageBox_cancel {
  background-color: #f7f7f7;
  color: #333;
}
.MessageBox_cancel:hover {
  background-color: #efefef;
}
