.component-menu {
  width: 100%;
  &.visible {
    height: 100%;
  }
}
.close-menu {
  position: fixed;
  width: 24px;
  height: 24px;
  font-size: 24px;
  left: 50%;
  margin-left: -12px;
  bottom: 60px;
}
.menu-title-box{
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  padding: 0 12px;
  .menu-item-box{
    display: flex;
    align-items: center;
  }
  .icon-fold{
    transform: rotate(90deg);
  }
  .menu-item-icon{
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .menu-title {
    height: 20px;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 15px;
    margin-left: 16px;
    color: #808080;
  }
  
  .menu-link-title {
    height: 44px;
    line-height: 44px;
    font-weight: 500;
    font-size: 16px;
    color: #333333;    
  }

  &.chose{
    background: #f2f2f2;
  }
}
