@charset "utf-8"

*{
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
    overflow-x: hidden; 
    overflow-y: auto; 
}
body {
    font-size: 16px;
    font-size: 1.6rem;
    color: #232323;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

input, textarea {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}

input[type="button"], input[type="submit"], input[type="reset"], input[type="text"], button {
    border-radius: 0;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    outline: 0;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}

a, body, div, em, footer, form, h1, h2, h3, h4, h5, h6, header, html, i, iframe, label, li, menu, nav, p, section, span, strong, ul {
    margin: 0;
    padding: 0;
    border: none;
    word-wrap: break-word;
}

li, ol, ul {
    list-style: none;
}

img {
    border: none;
}
a {
    text-decoration: none;
    color: #333;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}

.fl {
    float: left;
}
.fr{
    float: right;
}

.clear {
    clear: both;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix {
    zoom: 1;
}

/*input placeholder字体颜色*/
:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
}
::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
}
input:-ms-input-placeholder {
    color: #999;
}
input::-webkit-input-placeholder {
    color: #999;
}
