/* V232 · 竖版海报完整显示：限制图像网格项的固有尺寸，避免撑高后只看见局部。 */
#imageWorkModal .gmodal{
  grid-template-rows:minmax(0,1fr)!important;
}
#imageWorkModal .gmodal>img{
  min-width:0!important;
  min-height:0!important;
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  align-self:stretch!important;
}
@media(max-width:980px){
  #imageWorkModal .gmodal{
    grid-template-rows:minmax(0,58vh) auto!important;
  }
  #imageWorkModal .gmodal>img{
    height:58vh!important;
  }
}
