.top-navgator-container {
  position: relative;
  box-sizing: border-box;
  border-bottom: 1px solid #f2f4f8;
  height: 64px;
  width: 100%;
  background-color: #ffffff;
  z-index: 1;
  &.fixed {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .top-navgator-custom-style {
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 1300px;
    height: 64px;
    align-items: center;
    .logo-svg-box {
      min-width: 84px;
      height: 28px;
      cursor: pointer;
    }
    .app-list-box {
      display: flex;
      width: 448px;
      height: 32px;
      margin-left: 32px;
      .app-item {
        width: 112px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        font-size: 16px;
        color: #242e42;
        cursor: pointer;
        .active {
          color: #096dd9;
        }
        .apps-box {
          position: relative;
          .name-icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            > span {
              display: flex;
            }
            > .icon {
              margin-left: 4px;
            }
            > .hover-icon {
              margin-left: 4px;
              display: none;
            }
            > .expand {
              transform: rotate(180deg);
            }
          }
          .expand-box {
            position: absolute;
            top: 20px;
          }
        }
        &:hover {
          color: #2e8de6;
          .active {
            color: #2e8de6;
          }
          .name-icon-box > .icon {
            display: none;
          }
          .name-icon-box > .hover-icon {
            display: flex;
          }
        }
        a {
          text-decoration: none;
          color: inherit;
        }
      }
    }
    .head-avatar {
      display: flex;
      position: absolute;
      right: 0;
      top: 0;
      height: 64px;
      align-items: center;
      z-index: 10;

      .name-container {
        display: flex;
        align-items: center;
        height: 36px;
        width: 68px;
        border-radius: 4px;
        justify-content: center;
        .imgStyle {
          height: 30px;
          width: 30px;
          margin-right: 8px;
          border-radius: 15px;
          cursor: pointer;
        }
        .nameStyle {
          height: 30px;
          width: 30px;
          line-height: 30px;
          background-color: #096dd9;
          border-radius: 15px;
          color: #ffffff;
          text-align: center;
          margin-right: 8px;
          cursor: pointer;
        }
      }
      &:hover .name-container {
        background-color: #f5f7fa;
      }
      &:hover .headAvatarIcon {
        transform: rotate(180deg);
      }
      &:hover .user-info-container.four-show {
        height: 240px;
      }
      &:hover .user-info-container.three-show {
        height: 204px;
      }
      &:hover .user-info-container.two-show {
        height: 168px;
      }
      .user-info-container {
        display: flex;
        flex-direction: column;
        position: absolute;
        padding: 0px;
        top: 64px;
        right: 0;
        width: 204px;
        height: 0;
        transition: height 0.3s;
        background-color: #ffffff;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        cursor: default;
        overflow: hidden;
        .user-img-box {
          display: flex;
          padding: 16px;
          box-sizing: border-box;
          height: 80px;
          border-bottom: 1px solid #f2f4f8;
          cursor: default;
          .user-img-style {
            width: 48px;
            height: 48px;
            margin-right: 16px;
            border-radius: 24px;
            cursor: pointer;
          }
          .name-style {
            height: 48px;
            width: 48px;
            line-height: 48px;
            background-color: #096dd9;
            border-radius: 24px;
            color: #ffffff;
            text-align: center;
            font-size: 24px;
            margin-right: 16px;
            cursor: pointer;
          }
          .info-box {
            height: 44px;
            font-size: 14px;
            .user-name {
              height: 22px;
              line-height: 22px;
              font-weight: 500;
              color: #242e42;
              max-width: 108px;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap;
            }
            .user-ref {
              height: 22px;
              line-height: 22px;
              color: #79879c;
              max-width: 108px;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap;
            }
          }
        }
        .other-page {
          padding: 8px;
          width: 100%;
          box-sizing: border-box;
          cursor: pointer;
          .page {
            padding: 8px;
            width: 100%;
            box-sizing: border-box;
            font-size: 14px;
            line-height: 20px;
            color: #36435c;
            &:hover {
              background-color: #f5f7fa;
            }
          }
          .logout {
            color: #ec4d4d;
          }
        }
      }
    }
    .unLogin {
      position: absolute;
      right: 0;
      top: 14px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      width: 112px;
      height: 36px;
      background-color: #096dd9;
      color: #ffffff;
      font-size: 14px;
      border-radius: 20px;
      cursor: pointer;
    }
  }

  .expand-container {
    position: absolute;
    top: 64px;
    left: 0;
    height: 132px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.04);
    .expand-box {
      display: flex;
      width: 1300px;
      margin: 0 auto;
      height: 132px;
      align-items: center;
      .app-item {
        display: flex;
        height: 56px;
        line-height: 72px;
        padding: 8px 0;
        text-align: center;
        min-width: 250px;
        border-radius: 4px;
        margin-right: 24px;
        cursor: pointer;
        a {
          display: flex;
          text-decoration: none;
          color: inherit;
        }
        .svgStlye {
          // display: inline-block;
          width: 56px;
          height: 56px;
          margin: 0 16px;
        }
        .appInfo {
          margin: 0 16px;
          .name {
            position: relative;
            display: flex;
            height: 24px;
            line-height: 24px;
            color: #242e42;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 12px;
            .verbox {
              position: absolute;
              left: 50px;
              top: 0px;
              width: 35px;
              height: 14px;
            }
          }
          .desc {
            height: 20px;
            line-height: 20px;
            color: #5f708a;
            font-size: 14px;
          }
        }
        &.active {
          background-color: #f5f7fa;
        }
        &:hover {
          background-color: #f5f7fa;
        }
      }
    }
  }
}
