@charset "utf-8";
#imgDiv {
    position: absolute;
    z-index: 9999;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    /* 固定宽高 + 最小宽高双重锁定，防止高度塌陷 */
    width: 200px;
    min-width: 200px;
    height: 140px;
    min-height: 140px;
    /* 定位约束，阻止浏览器自动收缩高度 */
    top: 50px;
    left: 50px;
    /* 弹性布局均分三行文字，杜绝重叠 */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

#imgDiv p {
    display: block;
    width: 100%;
    margin: 0;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 关闭按钮样式 */
#imgDiv .imgDivreset {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 2px;
    right: 2px;
    z-index: 10;
    cursor: pointer;
    /* 清除原来的图片背景 */
    background: transparent;
}
/* 两条斜线拼成X */
#imgDiv .imgDivreset::before,
#imgDiv .imgDivreset::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #333;
    top: 9px;
    left: 2px;
}
#imgDiv .imgDivreset::before {
    transform: rotate(45deg);
}
#imgDiv .imgDivreset::after {
    transform: rotate(-45deg);
}