html{
    /* 标准字体大小可以，在移动端使用的rem适配的话会动态改变。 */
    font-size:14px;
    /*  使用IE盒模型（个人取舍，我一般设置width是这是盒子的真实大小，包括padding和border） */
    box-sizing: border-box;

}

html,body{
    /* 在有些手机浏览器中点击一个链接或着可点击元素的时候，会出现一个半透明的灰色背景； */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 提升移动端滚动的体验效果  */
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    /* 与浏览器窗口高度一致 */
    height: 100%;
}

body{
    /* 有些背景默认为浅灰色，所以统一设置为纯白 */
    /* 照着antd上面来的，在公司就别用微软雅黑了，不建议字体使用rem。 */
    font:14px,-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei',
    'Helvetica Neue',Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
    /* 使字体更加顺滑 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*:focus {
    outline: none;
}


/*去除iPhone中默认的input样式*/
input {
    -webkit-appearance: none;
    resize: none;
    outline: 0;
    border: 0;
    background: transparent;
}


/*图片自适应*/
img {
    max-width: 100%;
    height: auto;
    width: auto \9; /*IE8*/
    -ms-interpolation-mode: bicubic; /*为了照顾IE图片缩放失真*/
    vertical-align: top;
}
.fr{
    float: right;
}
.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1
}
img {
    border: none;
}



/*连续英文，数字换行*/
.wordwrap {
    word-break: break-all;
    word-wrap: break-word;
}

/*单行文字超出显示省略号*/
.omg {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
/* 禁止长按链接与图片弹出菜单 */
a, img {
    -webkit-touch-callout: none;
}
a{
    text-decoration: none;
    color: #333;
}
.img{
    width: 100%;
}
body {
    font-size: 14px;
    font-family: 'Microsoft YaHei', Tahoma, Arial, "Roboto", "Droid Sans", "Helvetica Neue", "Droid Sans Fallback", "STHeiti", sans-serif;
    max-width: 640px;
    margin: 0 auto;
    color: #333;
    overflow-x: hidden;
}
i{
    font-style: normal;
}