.ee-my-leqee-systems{
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 99999
}
.ee-my-leqee-systems-div{
  border-radius: 12px;
  border: 1px solid rgba(110, 109, 156, 0.16);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0px 10px 10px -5px rgba(18, 18, 23, 0.04), 0px 20px 30px -5px rgba(18, 18, 23, 0.05);
  backdrop-filter: blur(100px);
  display: flex;
  width: 362px;
  height: calc(100vh - 24px);
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  right: 12px;
  top: 12px;
}
.ee-my-leqee-systems-header{
  display: flex;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E1E3F0;
  box-sizing: border-box;
  width: 100%;
}
.ee-my-leqee-systems-header-title{
  color: #43434E;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}
.ee-my-leqee-systems-content{
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  overflow: auto;
  display: grid;
  gap: 20px;
}
.ee-my-leqee-systems-content::-webkit-scrollbar {
  width: 5px; /* 设置滚动条的宽度 */
}
.ee-my-leqee-systems-content::-webkit-scrollbar-thumb {
  background-color: rgba(185, 184, 210, 0.1); /* 设置滑块的背景颜色 */
  border-radius: 36px; /* 设置滑块的圆角 */
}
.ee-my-leqee-systems-content-category{
  display: grid;
  gap: 10px;
}
.ee-my-leqee-systems-content-category-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ee-my-leqee-systems-content-category-item{
  display: flex;
  min-width: 108px;
  padding: 14px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease-in-out;
  background: rgba(21, 28, 88, 0.02);
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
.ee-my-leqee-systems-content-category-item:hover{
  border: 1.5px solid #4496F7;
  background: rgba(68, 150, 247, 0.08);
  animation: eeMyLeqeeSystemsContentCategoryFadeInBorder 0.3s ease-in-out;
}
@keyframes eeMyLeqeeSystemsContentCategoryFadeInBorder {
  0% {
    border-color: transparent;
  }
  100% {
    border-color: #4496F7;
  }
}
.ee-my-leqee-systems-content-category-item:hover .ee-my-leqee-systems-content-category-tooltip {
  visibility: visible;
}
.ee-my-leqee-systems-content-category-tooltip{
  visibility: hidden;
  /* max-width: 120px; */
  width: max-content;
  background-color: rgba(55, 64, 80, 0.90);
  color: #fff;
  min-height: 20px;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  /* 定位 */
  position: absolute;
  z-index: 1000000;
  top: -42px;
}
.ee-my-leqee-systems-content-category-item .ee-my-leqee-systems-content-category-tooltip::after {
  content: " ";
  position: absolute;
  top: 100%; /* 提示工具底部 */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(55, 64, 80, 0.90) transparent transparent transparent;
}
.ee-my-leqee-systems-content-category-image{
  width: 50px;
  height: 50px;
  border-radius: 12px;
}
.ee-my-leqee-systems-content-category-header{
  display: flex;
  align-items: center;
}
.ee-my-leqee-systems-content-category-title{
  color: #43434E;
  font-family: PingFang SC !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  margin: 0;
  margin-top: 2px;
  margin-left: 2px;
}

.ee-my-leqee-systems-content-category-image-default{
  position: absolute;
  top: 14px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
}
.ee-my-leqee-systems-header-close{
  display: flex;
  width: 24px;
  height: 24px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
}
.ee-my-leqee-systems-header-close:hover{
  background: rgba(21, 28, 88, 0.04)
}
@keyframes myLeqeeSystemsContentCloseSlideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes myLeqeeSystemsContentSlideInLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.myLeqeeSystemsContentClosesFadeOut {
  opacity: 0;
  transition: opacity 0.5s;
}
.myLeqeeSystemsContentFadeIn{
  opacity: 1;
  transition: opacity 0.5s;
}
.ee-my-leqee-systems-content-category-item-icon{
  position: absolute;
  right: 10px;
  top: 10px;
  visibility: hidden;
}
.ee-my-leqee-systems-content-category-item:hover .ee-my-leqee-systems-content-category-item-icon{
  visibility: visible;
  animation: myLeqeeSystemsContentCategoryItemIconfadeIn 0.15s ease-in-out;
}
@keyframes myLeqeeSystemsContentCategoryItemIconfadeIn {
  0% {
    opacity: 0;
    transform: translate(-10px, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(0 , 0)
  }
}