/* 让可放大的图片显示“可点击”的鼠标形状 */
.zoomable { cursor: zoom-in; }

/* 灯箱遮罩层：改为纵向布局，让 caption 在图片下方 */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  flex-direction: column;        /* 关键：纵向 */
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity .2s ease;
}
.lb-overlay[hidden] { display: none; }
.lb-overlay.open { opacity: 1; }

/* 大图与说明 */
.lb-overlay img {
  max-width: 95vw;
  max-height: 80vh;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  margin: 0 0 .75rem;           /* 与下面的说明拉开距离 */
}
.lb-overlay p {
  color: #e5e7eb;               /* 灰色小字 */
  text-align: center;
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  max-width: 95vw;              /* 不要比视口宽 */
}


/* 你已有的灰色说明样式继续生效 */
