
  /* menu mobile web */
  
  .mobile-bottom-menu {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:60px;
    background:#ffffff;
    box-shadow:0 -2px 5px rgba(0,0,0,0.1);
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-top:1px solid #ddd;
    z-index:9999;
  }
  
  .mobile-bottom-menu .menu-item {
    flex:1;
    text-align:center;
    font-size:12px;
    color:#6c757d;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  
  .mobile-bottom-menu .menu-item i {
    font-size:20px;
    margin-bottom:2px;
    color:#596882;
  }
  
  .mobile-bottom-menu .menu-item:hover {
    color:#3366ff;
  }
  
  .mobile-bottom-menu .menu-item:hover i {
    color:#3366ff;
  }

  