/*重置样式*/

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}


/** 清除内外边距 **/

html,
body {
    width: 100%;
    height: 100%
}

body,
button,
input,
select,
textarea {
    font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
}


/** 设置默认字体 **/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

ul,
ol {
    list-style: none;
}


/** 重置列表元素 **/

a {
    text-decoration: none;
}


/**  去掉下划线 **/

a:hover {
    text-decoration: none;
}

a,
input,
button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* 清除点击阴影 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/** 重置表格元素 **/

img {
    border: 0;
    outline: 0;
    vertical-align: middle;
}


/*个性化样式*/

.clearfix::after,
.clear:after {
    content: '\20';
    display: block;
    height: 0;
    clear: both;
}

.clearfix::after,
.clear {
    *zoom: 1;
}

.placeholder {
    color: #999;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

[v-cloak] {
    display: none;
}