.avue-flow{
  position: relative;
  .avue-draggable {
    padding: 0;
  }
  &__node {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 80px;
    border-radius: 5px;
    box-shadow: '#66a6e0 0px 0px 12px 0px';
    border:1px solid #eee;
    box-sizing: border-box;
    overflow: hidden;
    &--active{
      border-width: 2px;
      border-color:#f56c6c;
    }
    &-drag{
      margin: 0 5px;
      display: inline-block;
      cursor:pointer;
    }
    &-header{
      flex:1;
      background-color: #409eff;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      .delete{
        width: 15px;
        margin-right: 10px;
        cursor:pointer;
      }
    }
    &-body{
      display: flex;
      align-items: center;
      justify-content: center;
      flex:1.5;
      text-align: center;
      background: #fff;
    }
  }
}
