/* 导航栏容器基础样式：需保证为flex布局（大部分网站导航栏已做） */
.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; /* 替换为你网站导航栏的高度 */
  background: #fff; /* 替换为你网站导航栏的背景色 */
  padding: 0 20px;
  box-sizing: border-box;
}
/* 导航栏原有内容：居中占主体 */
.nav-content {
  flex: 1;
  text-align: center;
}
/* 新年挂饰基础样式：左右对称、垂直居中 */
.nav-newyear-decoration {
  width: 60px; /* 挂饰宽度，可自定义 */
  height: 80px; /* 挂饰高度，可自定义 */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  /* 轻量晃动动效 */
  transition: transform 0.3s ease;
}
/* 左侧挂饰：居左 */
.nav-decoration-left {
  margin-right: 10px;
}
/* 右侧挂饰：居右，与左侧完全对称 */
.nav-decoration-right {
  margin-left: 10px;
}
/* hover晃动：模拟挂饰随风轻摆 */
.nav-newyear-decoration:hover {
  transform: rotate(8deg);
}
