.message-box-btn {
  width: 50px;
  height: 30px;
  background: blue;
  color: white;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
}

.message-box-dailog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
}

.content {
  width: 100%;
  height: max-content;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -100%;
  transition-duration: 1s;
}

.content .message-box {
  max-width: 1140px;
  padding: 40px 24px;
  margin: 0 auto;
  display: flex;
}

.message-box-img {
  height: 140px;
  width: 140px;
}

.message-box-textBox {
  display: flex;
  flex: 2;
  flex-grow: 1;
  padding: 0 30px;
  max-width: 415px;
}

.message-box-textBox.one-btn-box {
  max-width: initial;
}

.message-box-textBox .message-box-title {
  display: flex;
  width: 100%;
  height: 26px;
}

.message-box-textBox .message-box-content {
  width: 100%;
  font-size: 19px;
  grid-area: description;
  line-height: 24px;
  padding: 0;
  color: #777;
}

.message-box-btn-group {
  display: flex;
  flex: 1;
  flex-grow: 1;
  justify-content: flex-start;
  padding: 40px 0;
  align-items: center;
}

.message-box-btn-group .btn-info {
  background: transparent;
  margin-right: 12px;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #777;
}

.message-box-btn-group.one-btn-box {
  max-width: 260px;
}

.message-box-btn-group .btn {
  flex: 1;
  font-size: 20px;
  height: 50px;
  margin-top: 0;
  min-width: 160px;
  max-width: 260px;
}
