.container {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;

  .dialogue {
    width: 400px;
    background-color: #fff;
    .actions {
      height: 50px;
      border-top: 1px solid #e8e8e8;
      .cancel {
        width: 75px;
        height: 38px;
        background-color: #fff;
        border: 1px solid #6874e2;
        color: #6874e2;
        float: right;
        margin-right: 14px;
        margin-top: 6px;
      }
      .comfirm {
        width: 75px;
        height: 38px;
        background-color: #6874e2;
        color: #fff;
        float: right;
        margin-right: 14px;
        margin-top: 6px;
      }
    }

    .body {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;

      .item {
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        .field {
          height: 50px;
          width: 150px;
          line-height: 50px;
          margin-left: 28px;
        }
        .input {
          height: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .tags {
          // height: fit-content;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .area {
          height: 120px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
      }
    }
  }
}
