#customerForm {
    display: none;
}
#customerForm .dialog-content {
    width: 420px;
    padding: 75px 40px 84px;
    background-color: #fff;
    border-radius: 8px;
}
#customerForm .content-header {
    position: relative;
    text-align: center;
}
#customerForm .content-header>span {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
    color: #3D4042;
    line-height: 37px;
}
#customerForm .content-header .icon {
    position: absolute;
    right: -20px;
    top: -55px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}
#customerForm .content-form .btn {
    display: block;
    height: 42px;
    background: #0f93ff;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    margin-top: 48px;
}
#customerForm .form-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 23px;
}
#customerForm .form-item .is-required {
    position: absolute;
    left: 12px;
    top: 10px;
    color: #F56C6C;
}
#customerForm .form-item .el-input {
    display: inline-block;
    width: 100%;
    height: 32px;
    line-height: 32px;
    padding: 0 20px 0 24px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #DCDFE6;
    color: #606266;
    outline: 0;
}
#customerForm .form-item .error-tips {
    position: absolute;
    top: 35px;
    left: 2px;
    color: #f56c6c;
    display: none;
}
#customerForm .form-item.form-radio .error-tips {
    top: 20px;
}
#customerForm .form-item.require .error-tips {
    display: inline-block;
}
#customerForm .form-radio {
    display: flex;
    align-items: center;
    margin-top: 24px;
    color: #606266;
}
#customerForm .form-radio .radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}
#customerForm .form-radio .radio-item>input {
    margin-right: 5px;
    cursor: pointer;
}
#customerForm .form-radio .radio-item>label {
    line-height: 1;
    cursor: pointer;
}
#customerForm .form-radio .radio-item>input:checked ~label {
    color: #0f93ff;
}