
        /* 自定义图片样式，保证比例和过渡效果 */
        .img-container img {
            transition: transform 0.3s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
    