/**
    自定义css
 */

.safe-area-inset-height {
    height: calc(100upx + env(safe-area-inset-bottom));
}

.safe-area-inset-height-sm {
    height: calc (calc(100upx + env(safe-area-inset-bottom)) / 2);
}

.fixed-bottom{
    position: fixed;
    width: 100%;
    /*bottom: 20px;*/
    bottom: calc((100upx + env(safe-area-inset-bottom))/2);
}

.cu-form-group .title {
    min-width: calc(4em + 15px);
}

.text-align-right {
    text-align: right;
}

.baseline{
    align-items: baseline
}


.form-rule-active{
    border-bottom: 1px dashed red
}
