/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */

html, body {
    width: 100%;
    min-width: 320px;
    height: 100%;
    border: 0;
    font-family: PingFangSC-Light,'helvetica neue',arial,'hiragino sans gb','microsoft yahei ui','microsoft yahei',simsun,sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

div, span, object, iframe, img, table, caption, thead, tbody,
tfoot, tr, tr, td, article, aside, canvas, details, figure, hgroup, menu,
nav, footer, header, section, summary, mark, audio, video {
    border: 0;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cit, code,
del, dfn, em, ins, q, samp, small, strong, sub, sup, b, i, hr, dl, dt, dd,
ol, ul, li, fieldset, legend, label {
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
    display: block;
}

table {
    outline:none;
    border-collapse: separate;
    border-spacing: 0;
}
table  caption, th, td {
    text-align: left;
    vertical-align: middle;
}
li{
    list-style: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
a{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
    text-decoration: none;
    outline:none;
}
a:hover{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    text-decoration: none !important;
    outline:none;
}
a img {
    border: 0;
}
i{
    font-style: normal;
}
:focus {
    outline: 0;
}
*{
    line-height: 1.2;
    border: 0;
    -webkit-box-sizing:border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    /*text-align:left;*/
}
textarea{
    font-family: PingFangSC-Light,'helvetica neue',arial,'hiragino sans gb','microsoft yahei ui','microsoft yahei',simsun,sans-serif;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
    outline:none;
    -webkit-user-select:auto;
    padding: 0;
    margin: 0;
}
input{
    font-family: PingFangSC-Light,'helvetica neue',arial,'hiragino sans gb','microsoft yahei ui','microsoft yahei',simsun,sans-serif;
    outline:none;
    -webkit-user-select:auto;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
select {
    font-family: PingFangSC-Light,'helvetica neue',arial,'hiragino sans gb','microsoft yahei ui','microsoft yahei',simsun,sans-serif;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    outline:none;
    -webkit-user-select:auto;
}
body{
    font-size:.16rem;
    color:#333;
    /* -webkit-text-size-adjust:none;
    -webkit-touch-callout:default;
    -webkit-user-select:none;
    user-select:none; */
}

input,textarea{
    font-size:.16rem;
}