/* 价格显示类 */
.price-display {
  font-size: 24px; /* 设置字体大小 */
  font-weight: bold; /* 字体加粗 */
  color: #ff5733; /* 设置字体颜色（例如橙色） */
  background-color: #f9f9f9; /* 设置背景颜色（例如浅灰色） */
  padding: 10px 20px; /* 设置内边距 */
  border-radius: 5px; /* 设置圆角 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加盒子阴影 */
  display: inline-block; /* 使其成为一个内联块元素，可以和其他内容在同一行显示 */
  text-align: center; /* 文本居中对齐 */
  margin-bottom: 10px; /* 设置底部外边距 */
}

/* 可选：鼠标悬停效果 */
.price-display:hover {
  color: #ff8c00; /* 鼠标悬停时改变字体颜色（例如更亮的橙色） */
  background-color: #f0f0f0; /* 鼠标悬停时改变背景颜色（例如更浅的灰色） */
  transform: scale(1.05); /* 鼠标悬停时稍微放大 */
  transition: all 0.3s ease; /* 添加过渡效果 */
}
