/* 弹出图片样式 */
.popup-image {
  position: absolute;   /* 相对于 .meo-picture 定位 */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;

  /* 默认宽高，可被 JS 覆盖 */
  --popup-width: 200px;
  --popup-height: 150px;
  /* 默认偏移（相对于 .meo-picture 左上角）*/
  --popup-offset-x: 0px;
  --popup-offset-y: -100px;

  width:  var(--popup-width);
  height: var(--popup-height);

  /* 放在 .meo-picture 之上 */
  z-index: 2;
}
.popup-image.show {
  opacity: 1;
}