﻿/* 清除所有标签自带的间距 */

* {
    padding: 0;
    margin: 0;
}
body {
    padding: 0;
    margin: 0;
    font-family: 微软雅黑;
    font-size: 14px;
    color: #222;
}

/* 清除标签自带的下划线 */

a, u {
    text-decoration: none;
}

/* 让加粗标签不加粗  回归到正常 */

b, strong {
    font-weight: 400;
}

/* 让倾斜标签回归正常 */

i, em {
    font-style: normal;
}

/* 取消列表自带的列表符号 */

ul, ol,li {
    list-style: none;
}

/* 让标题标签回归正常 */

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

input {
    /*轮廓线   清除鼠标点击的高亮效果 */
    outline: none;
    /* 清除边框线 */
    border: none;
}

/* 万能清除法 */

.clearfix::after {
    content: "";
    display: block;
    clear: both;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.pageIndex {
    width: 45px;
    height: 35px;
    border: 1px solid #B6B6B6;
    border-radius: 4px;
    text-align: center;
}
input[type=checkbox] {
    color: #4B7FFF;
    background-color: #4B7FFF!important;
}
    input[type=checkbox]:hover {
        color: #4B7FFF;
        background-color: #4B7FFF !important;
    }