// 级联菜单
.cus-cascader {
  float: left;
}
.cus-cascader-level-2 {
  width: 50vw !important; // 2级级联
}
.cus-cascader-level-3 {
  width: 33.3vw !important; // 3级级联
}
// co-cell 组件 边线
.co-cell {
  .co-cell-wrapper {
    background: transparent;
    position: relative;
  }
  .co-cell-wrapper:after {
    position: absolute;
    .line-up-down();
  }
}

// loading
div.co-indicator {
  .co-indicator-default {
    padding: 0 !important;
    background: transparent;
    width: 50px;
    height: 50px;
    span.co-indicator-spin {
      width: 100%;
      height: 100%;
      div.co-spinner-snake {
        width: 100% !important;
        height: 100% !important;
        border: 0;
        background: url('../../assets/images/loading.png');
        background-size: 100%;
      }
    }
  }
}
div.co-indicator-mask {
  z-index: 10;
}

// picker 多选
.picker-multi {
  width: 100vw;
  height: 80vw;
  overflow: scroll;
}

// 附件组件 cus-appendix
.cus-appendix {
  background: @white-base;
  display: flex;
  div.add {
    width: 16vw;
    text-align: center;
    padding: 10px 0;
    a {
      color: @gray-line-default;
      font-size: 30px;
      border: 1px dashed @gray-line-default;
      border-radius: 5px;
    }
  }
}
.cus-appendix-btn {
  background: transparent;
  display: inline-block;
}
