.chatitem {
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;

  &.from-AI {
    flex-direction: row;

    &.type-MsgPrompt {
      justify-content: center;
      img {
        display: none;
      }
    }
  }

  &.from-ME {
    flex-direction: row-reverse;
  }
}

.showdetailimg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #333;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.notload {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}