* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
em,
i {
    font-style: normal
}
/* 去掉li 的小圆点 */
li {
    list-style: none;
    cursor: pointer;
}

img {
    border: 0;
    vertical-align: middle
}

button {
    cursor: pointer
}

/*a {*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    cursor: pointer;*/
/*    transition-property: color;*/
/*}*/

/*a:hover {*/
/*    color: #40E3F4;*/
/*    transition-duration: 0.5s;*/
/*}*/

button,
input {
    /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
    font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    border: 0; 
    outline: none;
}
input::-webkit-input-placeholder {
    color: #9EA8B4;
    font-size: 12px;
}

body {
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font: 12px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    color: #111111
}
html,body,#app {
    height: 100%;
    width: 100%;
    font-family: STHeiti;
}
.hide,
.none {
    display: none
}
/* 清除浮动 */
.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0
}

.clearfix {
    *zoom: 1
}