
/* 基础样式 */
.magnifier-container { position: relative; }
.images-cover img { width: 100%; }

/* 缩略图样式 */
.magnifier-line ul {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.static-img {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  cursor: pointer;
}
.static-img.active {
  border-color: #bbb;
}
.static-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 按钮样式 */
.magnifier-btn {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.magnifier-btn span {
  pointer-events: auto;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
