.bm-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: #fff;
  display: flex;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  z-index: 999;
}

.bm-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.bm-item .bm-icon {
  font-size: 20px;
  margin-bottom: 3px;
}

.bm-item.active {
  color: #f64417;
  font-weight: bold;
}