html {
    overflow-y: scroll;
}
:root {
    overflow-y: auto;
    overflow-x: hidden;
}
body {
    /*width: 100vw;
    overflow: hidden;*/
}
/*分页统一*/
.pagination>li.active>span{
    background-color: #007bff;
}
.pagination>li>a{
    color: #007bff;
}

input[type=radio]{
    margin-right: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 0px;
    height: 0px;
    position: relative;
}
input[type=radio]:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    content: " ";
    background-color: #fff;
    border: 1px solid #666;
    color: #fff;
    display: inline-block;
    visibility: visible;
    padding: 0px 3px;
    border-radius: 50%;
    cursor: pointer;
}
input[type=radio]:checked:after {
    width: 100%;
    height: 100%;
    border: 5px solid #007bff;
    background-color: #fff;
    display: block;
    position: relative;
    z-index: 1;
}
input[type=checkbox] {
    margin-right: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 0px;
    height: 0px;
    position: relative;
}
input[type=checkbox]:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    content: " ";
    background-color: #fff;
    border: 1px solid #666;
    color: #fff;
    display: inline-block;
    visibility: visible;
    padding: 0px 3px;
    border-radius: 2px;
    cursor: pointer;
}
input[type=checkbox]:checked:after {
    width: 100%;
    height: 100%;
    border: 1px solid #007bff;
    background-color: #007bff;
    content: "\2713";
    font-size: 18px;
    color:#fff;
    line-height: 100%;
}

@media (min-width: 992px) {
    body {
        width: 100vw;
        overflow: hidden;
    }
    :root body {
        position: inherit;
    }
}
