body{
    width: 100%;
    font-size: 16px;
    line-height: 42px !important;
    overflow-y: scroll;
}
input,.btn{
    height: 42px !important;
    line-height: 42px !important;
}
.fc-kleinblue{
    color: #30318D;
}
.fc-gray{
    color: #666;
}
.btn-kleinblue-active {
    color: #fff;
    background-color: #30318D;
    border-color: #30318D;
}
.btn-kleinblue {
    color: #30318D;
    background-color: #fff;
    border-color: #30318D;
}

.btn-kleinblue-active:active{
    color: #fff;
    background-color: #30318D;
    border-color: #30318D;
}
.btn-kleinblue:active {
    color: #30318D;
    background-color: #fff;
    border-color: #30318D;
}

.pl-0{
    padding-left: 0 !important;
}
.pr-0{
    padding-right: 0 !important;
}
.pt-0{
    padding-top: 0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
.mt-45{
    margin-top: 45px;
}
.w-150{
    width: 150px;
}
.w-200{
    width: 200px;
}
.lh-32{
    line-height: 32px !important;
}
.lh-42{
    line-height: 42px !important;
}

.hr{
    background-color: #ddd;
    color: #ddd;
    border:0;
    height:1px;
}

/* 自定义单选按钮 */
input[type="radio"] + label::before {
    content: "\a0"; /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    border-radius: 50%;
    border: 1px solid #30318D;
    text-indent: .15em;
    line-height: 16px; 
}
input[type="radio"]:checked + label::before {
    background-color: #30318D;
    background-clip: content-box;
}
input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}