.pointer{
    cursor: pointer;
}
.noPointer{
    cursor: default;
}
/*图片弹框新增样式*/
.defaultBorder{
    box-shadow: 0 0 4px 2px rgb(120, 180, 252);
}
.imgPanel_popover {
    display:none;
    z-index:9999;
    position:fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width:80%;
    height: auto;
    padding: 2rem;
    border-radius: 10px;
    background-color:#fff;
}
.imgBoxClose{
    position: absolute;
    right: 10px;
    top: 10px;
}
.imgBox{
    padding: 10px;
    max-height: 80vh;
    overflow: auto;
    display: flex;                /* 使用flex布局 */
    justify-content: center;      /* 水平居中 */
    align-items: center;          /* 垂直居中 */
}
/*暂无信息s*/
.noMsg{
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    width: 100%;
    height: 100%;
    min-height: 300px;
}
.noMsgbox{
    text-align: center;
}
.noMsgFont{
    margin-top: 1rem;
}
.noMsgFont p{
    color: #999;
}
.noMsgPic img{
    width: 30%;
    margin: 0 auto;
}
.el-inputSty{
    width: 100%;
    height: 100%;
    border-radius: 3px;
    color: #666;
}
.highlight {
    color: #ff6565;
}