.yee-page-container {
  .close-icon-content {
    position: absolute;
    top: 0;
    padding: 10px 16px;
    left: 100px;
    right: 0;
    background: #fff;
    z-index: 99;
    height: 53px;
  }
  .bar_page-container {
    position: relative;
    .tab {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      background-color: rgba(242, 242, 242, 1);

      .tab-item {
        flex: 1;
        width: 33%;
        text-align: center;
        padding: 10px;
        cursor: pointer;
        color: #333;
      }
      .active {
        background: #fff;
        color: @yee-primary-color;
      }
    }
    .tab-pane {
      color: #333;
      background: #fff;
    }
    .tab-pane {
      .maps-wrapper {
        display: flex;
        flex-wrap: wrap;
        padding: 12px;
        justify-content: space-between;
      }

      .map-box {
        position: relative;
        height: 130px;
        width: 130px;
        cursor: pointer;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 12px;

        .pre-img {
          background: #f7f8fa;
          border-radius: 6px;
          padding: 8px;
        }
        img {
          object-fit: cover;
          width: 130px;
          height: 84px;
          border-radius: 6px;
          background-color: #fff;
          padding: 8px;
        }
        .custom-img {
          background: #ffffff;
          border-radius: 5px;
          border: 1px dashed #d8d8d8;
          display: flex;
          justify-content: center;
          align-items: center;
          padding: 7px 8px;
        }
        p {
          text-align: center;
          margin-top: 8px;
          color: #000;
        }

        .mask-wrapper {
          height: 100px;
          position: absolute;
          width: 130px;
          top: 0;
          background-color: rgba(0, 0, 0, 0.1);
          border-radius: 6px;

          & > div {
            --uno: w-full absolute bottom-4 flex gap-2 items-center justify-center;
            bottom: 8px;
            .yee-btn {
              width: 53px;
            }
          }
        }
        .custom-mask {
          height: 100px;
          position: absolute;
          width: 130px;
          top: 0;
          border-radius: 6px;
          display: flex;
          justify-content: center;
          align-items: center;
          border: 0;
          background: #ffffff;
          box-shadow:
            0px 5px 13px 0px rgba(0, 0, 0, 0.08),
            0px 2px 5px -3px rgba(0, 0, 0, 0.12);
          border-radius: 5px;
          padding: 8px;
          img {
            object-fit: cover;
            width: 130px;
            height: 84px;
            border-radius: 6px;
            padding: 8px;
          }
          svg {
            fill: @yee-primary-color;
          }
        }
      }
    }
  }

  .tree-width() {
    .yee-tree {
      width: 100%;
      li {
        .yee-tree-node-content-wrapper {
          width: calc(100% - 26px);
        }
      }
    }
  }
  /* ---------------------------------- 项目页面 ---------------------------------- */
  .project-page-container {
    .yee-tree {
      width: 100%;
      // 所有层级 li
      li {
        padding-bottom: 0;
        &.yee-tree-treenode-switcher-close {
          padding-bottom: 4px;
        }
        &:first-child,
        &:last-child {
          padding: 4px 0;
        }
        .yee-tree-node-content-wrapper {
          display: inline-flex;
          align-items: center;
          width: calc(100% - 32px);
          height: 32px;
          --uno: p-0 -mt-1px;
          padding-left: 4px !important;
        }

        & span.yee-tree-node-content-wrapper:hover {
          &::before {
            background: #f0f0f0;
          }
        }
        & span.yee-tree-node-content-wrapper {
          color: inherit;
          &.yee-tree-node-selected {
            &::before {
              background: #e3f0e5;
            }
            color: @yee-primary-color;
          }
          &::before {
            left: 6px;
            right: 6px;
            height: 32px;
            --uno: rounded;
          }
        }

        & > ul {
          background: #fafafa;
          --uno: p-0 mt-2;
        }
      }
      .yee-tree-title {
        display: inline-block;
        width: 100%;
      }
    }

    // 一层层级 li
    .yee-tree.yee-tree-directory > li {
      --uno: border-b-1 border-b-gray-200 border-b-solid;

      & > span.yee-tree-node-content-wrapper,
      & > span.yee-tree-switcher {
        --uno: text-inherit;
        padding-top: 4px;
        padding-left: 14px;
      }

      & > span.yee-tree-node-content-wrapper {
        color: inherit !important;
        &::before {
          background: transparent !important;
        }
        &:hover {
          &::before {
            background: transparent !important;
          }
        }
      }
    }

    .page_list {
      color: #333;
      .yee-tree {
        width: 100%;
        .yee-tree-treenode-selected {
          position: relative;
        }
      }
    }
  }

  /* ---------------------------------- 个人页面 ---------------------------------- */
  .personal-page-container {
    .tree-width();

    ul.yee-tree {
      --uno: bg-gray-100;

      & .yee-tree-node-content-wrapper:hover {
        background: transparent;
      }

      & > li {
        --uno: border-b-1 border-b-gray-200 border-b-solid;

        &:hover {
          background: #f0f0f0;
        }
        &.yee-tree-treenode-selected {
          color: @yee-primary-color;
          background: #e3f0e5;

          & > span.yee-tree-node-selected {
            color: @yee-primary-color;
          }
        }
      }
    }
  }
}
