
/* 触发弹窗图片的样式 */
.win-myImg {
    margin: 10px;
    border-radius: 20px;
    cursor: pointer;
    float: left;
    max-height: 130px;
}

/* 弹窗的位置和背景颜色 */
.win-modal {
    display: none;
    position: fixed; /* 绝对定位 */
    z-index: 1; /* 元素置前 */
    padding-top: 50px;
    width: 100%;
    height: 100%;
    overflow: auto; /* 溢出出现滚动条 */
}

/* 弹窗图片的大小 */
.win-content {
    margin: auto;
    display: block;
    min-height:500px;
    max-height:600px;
}
