/* 大图容器样式 */
.big-img-container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.big-img-container img {
  max-width: 100%;
  height: auto;
}

/* 缩略图容器样式 */
.thumbnails-container {
  width: 80%;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 缩略图样式 */
.thumbnails-container img {
  width: 80px;
  height: 80px;
  margin: 0 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.thumbnails-container img:hover {
  border-color: #007bff;
}

/* 选中状态的缩略图样式（可根据需求调整） */
.thumbnails-container img.active {
  border-color: #007bff;
}

/* 前后切换按钮样式 */
#prevBtn,
#nextBtn {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 20px;
  margin: 0 10px;
}

#prevBtn:hover,
#nextBtn:hover {
  background-color: #e0e0e0;
}