@charset "UTF-8";
.white-box .box-title {
    text-transform: inherit !important;
}

.tenant-select label {
    text-transform: none !important;
}

/* 禁止输入的input框样式 指针默认状态*/
input[readonly] {
    background: #fff !important;
    border: none;
    border-bottom: 1px solid #cacfd9;
    cursor: default;
    border-radius: 0 !important;
    padding-left: 0px;
    padding-right: 0px;
}
/* 禁止输入的input框 去掉焦点边框 */
input[readonly]:focus {
    box-shadow: none !important;
}
/* 禁止输入的input框 填充默认背景色去除 */
input[readonly]:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
}
