.desk {
  display: flex;
  flex: 1;
  flex-direction: row;

  background: #f1f3f4;
  border-top: 1px solid #cecece;

  .menu {
    overflow: auto;
    flex-shrink: 0;

    width: 210px;
    height: calc(100vh - 101px);
    margin-top: 50px;

    color: #777;
    text-overflow: ellipsis;

    .menu-group {
      margin-bottom: 15px;
    }

    .menu-item {
      display: block;
      padding: 10px 20px;
      outline: none;

      a {
        color: #777;
        text-decoration: none;
      }

      .submenu {
        cursor: pointer;
        margin-left: 20px;
      }

      .number-wrap {
        position: relative;

        .number {
          position: absolute;
          left: 3px;
        }
      }

      .clamp {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;

        -webkit-line-clamp: 2;
      }
    }
  }

  .module {
    display: flex;
    width: 100%;
  }
}

::ng-deep .item-submenu-icon svg {
  vertical-align: bottom;
}

::ng-deep .desk router-outlet + * {
  flex: 1;
}

::ng-deep .document {
  margin-top: 50px;
  margin-left: 0;
  background: var(--color-gray-fff);
  box-shadow:
    0 3px 1px -2px rgb(0 0 0 / 20%),
    0 2px 2px 0 rgb(0 0 0 / 14%),
    0 1px 5px 0 rgb(0 0 0 / 12%);
}

::ng-deep app-cmf-uwork-kanban {
  margin-top: 50px;
  margin-right: 30px;
  margin-left: 0;
  padding-top: 20px;

  background: var(--color-gray-fff);
  box-shadow:
    0 3px 1px -2px rgb(0 0 0 / 20%),
    0 2px 2px 0 rgb(0 0 0 / 14%),
    0 1px 5px 0 rgb(0 0 0 / 12%);
}

::ng-deep .simplebar-placeholder {
  width: auto !important;
}

::ng-deep {
  app-cmf-project-detail,
  app-cmf-folder-detail,
  app-cmf-uwork-list-detail {
    margin-top: 50px;
    margin-right: 50px;
  }

  app-cmf-uwork-list-detail {
    padding-top: 20px;
    background: var(--color-gray-fff);
    box-shadow:
      0 3px 1px -2px rgb(0 0 0 / 20%),
      0 2px 2px 0 rgb(0 0 0 / 14%),
      0 1px 5px 0 rgb(0 0 0 / 12%);
  }
}
