.full-width-message {
    width: 100% !important;
    height: 32px;
    margin: 0 !important;
    /*left: 0 !important;*/
    right: 0 !important;
    padding: 0 !important;
    position: fixed !important;
    bottom: 16px !important;
    /*
    Element Plus 的 Message 组件默认样式是：
    - 使用 top 属性将消息定位在顶部 - 通过 transform 做位置调整
    所以才会写这个top： auto的样式，目的就是覆盖掉elmessage本来的样式
    */
    top: auto !important;
    z-index: 1999 !important;
    border: none !important;
    background: none !important;
}
.top-full-width-message {
    z-index: 9999999 !important;
}
.el-select-dropdown__item.is-disabled {
    /*width: 100% !important;*/
    background-color: transparent !important;
    /*height: 32px !important;*/
    /*flex: 1;*/
}
.el-select-dropdown__item.is-disabled .is-disabled {
    background-color: transparent !important;

}
    /* 确保消息内容也是100%宽度 */
.full-width-message .el-message__content {
    width: 100%;
}
