/* 修改侧边栏文字提示样式 */
.el-tooltip__popper.is-dark {
    background-color: #fff !important;
    color: #333 !important;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.el-tooltip__popper[x-placement^=right] .popper__arrow::after {
    border-right-color: #fff !important;
}

.y-scrollbar {
    overflow-y: auto;
    overflow-y: scroll;
}
.y-scrollbar::-webkit-scrollbar {
    display: none;
}

/* 修改默认input圆角半径 */
.el-input__inner {
    border-radius: 5px !important;
}

.queryBtn {
    border-radius: 5px !important;
    margin-left: 10px !important;
}

/* 修改表格中的弹出框 */
.el-popover {
    min-width: 80px !important;
}


/* vue过渡效果-垂直过渡*/
/* #region */
/* 进入的起点 */
.dialog-enter {
    transform: translateY(-20px);
    opacity: 0;
}

/* 过渡-进入 */
.dialog-enter-active {
    transition: all 0.2s;
}

/* 离开的终点 */
.dialog-leave-to {
    transform: translateY(-20px); 
    opacity: 0;
}

/* 过渡-离开 */
.dialog-leave-active {
    transition: all 0.2s;
}
/* #endregion */

.mask-b {
    position: absolute; 
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
    opacity: 0.5;
}
.popup {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* #region */
/* 进入的起点 */
.mask-enter {
    opacity: 0;
}

/* 过渡-进入 */
.mask-enter-active {
    transition: all 0.2s;
}

/* 离开的终点 */
.mask-leave-to {
    opacity: 0;
}

/* 过渡-离开 */
.mask-leave-active {
    transition: all 0.2s;
}




/* 为兼容其它浏览器-废掉原生滚动条 */
/* html::-webkit-scrollbar { */
    /* overflow: hidden;  */
    /* 废掉 */
    /* display: none;  */
    /* 隐藏 */
/* } */
