.zbx-folder-popup {
  .top {
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-sizing: border-box;
    margin: 0 15px;
    border-bottom: 1px solid var(--adm-border-color);
    display: flex;
    justify-content: space-between;

    .label {
      font-size: 16px;
      color: #333;
      font-weight: 500;
      margin: 0;
    }
  }

  .folder-content {
    overflow-y: auto;
    padding: 8px 15px 0 15px;
    height: 400px;
    flex: 1;
    .folder {
      height: 64px;
      display: flex;
      //align-items: center;
      justify-content: space-between;
      .left {
        display: flex;
        align-items: center;
        .icon {
          font-size: 24px;
          filter: drop-shadow(0 4px 8px rgba(255, 196, 31, 0.3));
          margin-right: 12px;
        }
      }
    }
  }

  .bottom {
    width: 375px;
    height: 82px;
    background: #fff;
    box-sizing: border-box;
    border-top: 1px solid var(--adm-border-color);
    padding: 0 15px;
    display: flex;
    align-items: center;
    .add-box {
      width: 24px;
      height: 24px;
      border-radius: 4px;
      background: #e6e7ed;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      .icon {
        color: #fff;
      }
    }
  }
}
