/* 自定义样式 - 解决详情页图片尺寸问题 */

/* 资源详情页面图片样式覆盖 */
.page-resource-show .block .not-found img {
    width: auto;
    max-width: 100%;
    margin-bottom: 15px;
    height: auto;
}

/* 在移动设备上的样式适配 */
@media (max-width: 768px) {
    .page-resource-show .block .not-found img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
} 