/* 此文件为 elementUI 样式重写 */
/*弹窗样式修改----------------------------------------------------------------------------------------------*/
.body-reset{
    .el-dialog{
      &__body{
        padding:0 !important;
      }
    }
  }
.el-dialog{
    min-width: 640px;
}
.el-dialog {
    min-width: 640px;
    &__body {
        max-height: 90%;
        overflow: hidden;
        overflow-y: auto;
        padding: 8px 12px !important;
    }

    &__header {
        border-radius: 2px 2px 0 0;
        // background-color: #edf0f7;
        border-bottom: 1px solid #dfe2ed;
        text-align: left;
        padding: 8px 12px;
        font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        &:hover{
            background-color: #edf0f7;
        }
    }

    //标题
    &__title{
        font-size:16px;
        line-height: 20px;
        height: 20px;
        font-weight: bold;
    }
    //右上角关闭按钮
    &__headerbtn {
        right:12px;
        top: 9px;
        height: 20px;
        overflow: hidden;
        line-height: 20px;
    }

    &__body {
        box-sizing: border-box;

        .el-select,
        .el-date-editor.el-input {
            width: 100%;
        }

    }

    &__footer {
        padding: 8px 12px;
    }
}


/*表单样式  ----------------------------------------------------------------------------------------------*/
//label样式（顶部）
.el-form--label-top .el-form-item__label {
    padding: 0 !important;
    line-height: 21px;
}