.bottom-operation-bar-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  z-index: 1000;
}
.bottom-operation-bar-container .op-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.bottom-operation-bar-container .op-btn i {
  font-size: 18px;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}
.bottom-operation-bar-container .op-btn:hover {
  background-color: #f5f5f5;
}
.bottom-operation-bar-container .op-btn:active {
  transform: scale(0.95);
  opacity: 0.8;
}
.bottom-operation-bar-container .op-btn:active i {
  transform: scale(1.1);
}
.bottom-operation-bar-container .buy-btn {
  flex: 1.2;
  margin: 0 6px;
  padding: 6px 0;
  border-radius: 6px;
  background-color: #ff5722;
  color: #fff;
}
.bottom-operation-bar-container .buy-btn:hover {
  background-color: rgb(255, 67.6153846154, 8.5);
}
.bottom-operation-bar-container .buy-btn:active {
  background-color: rgb(238, 57.0769230769, 0);
  color: #fff;
}
.bottom-operation-bar-container .favorite-btn {
  color: #e91e63;
}
.bottom-operation-bar-container .favorite-btn:active {
  color: rgb(193.1174089069, 18.8825910931, 78.1052631579);
}
.bottom-operation-bar-container .cart-btn {
  color: #2196f3;
}
.bottom-operation-bar-container .cart-btn:active {
  color: rgb(11.5384615385, 124.0384615385, 213.4615384615);
}

body {
  padding-bottom: 60px;
}

/*# sourceMappingURL=BottomOperationBar.css.map */
