    .imageww-box {
        display: inline-block; 
        padding: 12px;
        background: #f8f9fa;
        border: 2px solid #dee2e6;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        overflow: hidden; 
    }

    .imageww-box img {
        display: block; 
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        transition: transform 0.3s ease;
    }

    .imageww-box:hover img {
        transform: scale(1.004);
    }

    /* 平板适配 */
    @media (max-width: 1024px) {
        .imageww-box {
            padding: 10px;
            border-radius: 9px;
        }
        .imageww-box img {
            border-radius: 5px;
        }
    }

    /* 手机适配 */
    @media (max-width: 768px) {
        .imageww-box {
            display: block;      /* 块级元素占满父容器宽度 */
            width: 100%;
            padding: 8px;
            border-radius: 8px;
            box-sizing: border-box; /* 保证宽度包含内边距和边框 */
        }
        .imageww-box img {
            border-radius: 4px;
        }
        .imageww-box:hover img {
            transform: scale(1.002);  /* 触摸屏上弱化缩放效果 */
        }
    }