/* 弹框组件的媒体查询 */
@media screen and (max-width: 500px) {
    .el-message {
        min-width: 300px !important;
    }

    .el-message-box {
        width: 300px !important;
    }

    .el-dialog__wrapper .el-dialog {
        width: 380px !important;

        .el-dialog__body {
            padding: 10px 20px !important;
            overflow-x: auto !important;

            .el-form-item__label {
                width: 68px !important;
            }
            .el-row div {
                width: 90% !important;
                margin-bottom: 5px;
            }
            .el-select,
            .el-input {
                width: 180px !important;
            }
        }
    }
}