.nodeWrap {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  .uploading {
    width: 100%;
    height: 60px;
    border: 1px dotted #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background-color: #f5f6f7;
  }
  .upload {
    width: 100%;
    height: 60px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    position: relative;
    .imgModal {
      display: none;
    }
    &:hover {
      .imgModal {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 100%;
        height: 60px;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.3);
      }
    }
  }
  .ant-form-item {
    margin-bottom: 10px;
  }
}