/* 全局重置 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
/* 图片容器 */
.img-box{
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px #ddd;
}
/* 图片样式：自适应、限制最大宽度 */
.show-img{
    max-width: 90vw;
    max-height: 80vh;
    display: block;
    border-radius: 6px;
}