.aos-widget-box{
  width: 100%;
  height: 100%;
  min-width: 300px;
  min-height: 200px;
  box-sizing: border-box;
  box-shadow: 0px 0px 2px 2px #F4F6F8;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 16px;
  font-size: 14px;
  font-family: PingFangSC-Semibold, PingFang SC;
  .aos-widget-title-container{
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    .header{
      color: #222222;
      font-size: 16px;
      font-weight: 600;
      // border-left: 3px solid #0092FF;
      // padding-left: 8px;
      &-icon {
        margin-right: 3px;
      }
    }
    .header-right {
      display: flex;
      .header-right-left {
        display: flex;
        align-items: center;
        .delete {
          cursor: pointer;
          margin-left: 8px
        }
      }
      .operation{
        color: #999999;
        font-size: 12px;
        cursor: pointer;
      }
    }
  }
  .headerBorder {
    border-bottom: 1px solid #eee;
  }
  .aos-widget-body {
    height: calc(100% - 50px);
    box-sizing: border-box;
    padding: 0 16px;
    padding-top: 16px;
    overflow: auto;
  }
  .aos-widget-body-only-body{
    height: 100%;
  }
}