* {
    margin: 0;
    padding: 0;
}


/*将所有HTML元素的默认边距清0*/

html,
body {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Segoe UI', 'SF UI Display', 'PingFang SC', 'Noto Sans', 'Noto Sans CJK SC', 'Microsoft YaHei', '微软雅黑', sans-serif;
    color: #212121;
    user-select: none;
}


/*对HTML元素中的字体、颜色、背景色进行初始设置*/

ul li,
ol li,
li {
    list-style: none;
}

a,
li,
img,
div,
p,
span,
ul {
    -webkit-tap-highlight-color: transparent;
}


/*将列表标签的默认样式清除*/

a {
    text-decoration: none;
    outline: none;
}


/*将超链接的下划线去掉以及在ie6中点击出现的虚线框去掉*/

img {
    border: none;
}


/*图片的默认边框去掉 */

label {
    margin-bottom: 0;
}

h1,
h2,
h3 {
    margin: 0;
}

.input[type="radio"],
input[type="checkbox"] {
    margin: 0;
    vertical-align: middle;
}


/*清除浮动*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}


/*解决ie6的兼容性问*/

.boxsizing {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.fl {
    float: left;
}

.right,
.fr {
    float: right;
}

a:focus,
a:hover {
    outline: medium none;
    text-decoration: none;
}

.equal li {
    float: left;
}

.equal::after {
    content: '';
    display: block;
    clear: both;
}

em,
i {
    font-style: initial;
}

[v-cloak] {
    display: none;
}




pre {
    white-space: pre-wrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Segoe UI', 'SF UI Display', 'PingFang SC', 'Noto Sans', 'Noto Sans CJK SC', 'Microsoft YaHei', '微软雅黑', sans-serif;
    font-size: 18px;
    color: #1E1E1E;
}