/* 落地页共享样式（/ 与 /harmony/ 等）— 侧边栏、通用动画 */

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.le-sidebar {
  width: 68px;
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
  box-sizing: border-box;
}

.le-sidebar .icon {
  font-size: 18px;
  font-weight: bolder;
  color: red;
  margin-bottom: 1px;
  line-height: 1;
}

.le-sidebar .sidebar-item,
.le-sidebar a.sidebar-item {
  width: 56px;
  height: 52px;
  margin: 2px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.le-sidebar hr.divider {
  border: none;
  height: 1px;
  background: #ccc;
  width: 48px;
  margin: 0;
}

.le-sidebar .text {
  font-size: 13px;
  line-height: 1.2;
}

.le-sidebar .sidebar-item:hover {
  background-color: red;
  color: white;
  border-radius: 4px;
}

.le-sidebar .sidebar-item:hover .icon {
  color: white;
}
