/*完美解决click的300ms延迟问题*/
html{
    touch-action: manipulation;
}
body {
    line-height: 1.4;
    color: #333;
    font-family: arial;
    font-size: 14px;
    background: white;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
form {
    margin: 0;
}

h4,
h5,
h6 {
    font-size: 1em;
}

ul,
ol {
    padding-left: 0;
    list-style-type: none;
}


/*image with no-border*/

a img {
    border: 0;
}

img {
    border: 0;
}

/*表单*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #BFBFBF;
    font-size: 14px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #BFBFBF;
    font-size: 14px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #BFBFBF;
    font-size: 14px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #BFBFBF;
    font-size: 14px;
}

