
.v-messageBox {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  width: 420px;
  border: 1px solid #ebeef5;
  padding: 10px;
  transform: translate(-50%, -50%);
  font-weight: normal;
  color: #606266;;
  border-radius: 5px;
  background-color: #fff;

  .v-mt5 {
    margin-top: 5px;
  }

  .v-ml10 {
    margin-left: 10px;
  }

  .v-title {

    display: flex;
    padding: 10px 0;
    font-size: 1rem;

    .v-titleContent {
      flex: 2;
      line-height: 2;
      font-size: 18px;
      color: #303133;
    }

    .v-closeIcon {
      cursor: pointer;
    }

    .v-closeIcon:hover {
      color: #79bbff;
    }
  }

  .v-content {

    display: flex;
    flex-direction: column;
    font-size: 14px;

    .v-contentText {
      padding: 5px 0;
    }
  }

  .v-footer {

    padding: 15px 0 5px 0;
    display: flex;
    justify-content: flex-end;

    .v-button{
      font-size: 14px;
    }
  }
}



