@charset "utf-8";
 /* 禁用iPhone中字号调整 */ 
html {
    font-size: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
/* 解决IOS默认滑动很卡的情况  */ 
    -webkit-overflow-scrolling : touch;      
}
 
/* 禁止缩放表单 */
input[type="submit"], input[type="reset"], input[type="button"], input {
    resize: none;
    border: none;
}
 
/* 取消链接高亮  */
body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 移动端点击a链接出现蓝色背景问题解决 */
a:link,a:active,a:visited,a:hover {
    background: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

/* 设置HTML5元素为块 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
 
/* 图片自适应 */
img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;  /* 在安卓手机点击禁止图片预览 */
}
 
/* 初始化 */
body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
}
body {
    font: 12px/1.5 'Microsoft YaHei','宋体', Tahoma, Arial, sans-serif;
    color: #555;
    background-color: #FFF;
}
em, i {
    font-style: normal;
}
ul,ol,li {
    list-style: none;
}
strong {
    font-weight: normal;
}
a {
    text-decoration: none;
    color: #969696;
    font-family: 'Microsoft YaHei', Tahoma, Arial, sans-serif;
}
a:hover {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-family: 'Microsoft YaHei';
}
img {
    border: none;
}
input {
    font-family: 'Microsoft YaHei';
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix {
    zoom: 1;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(90deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    75% {
        -webkit-transform: rotate(270deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.run {
    animation: rotate 1s linear infinite;
}
/* 设置浏览器滚动条长宽 */
::-webkit-scrollbar {
    width: 0px;
    /* //6px刚好让浏览器默认的滚动条挤出右边，看不见（除了最大的那条滚动条） */
    height: 6px;
}

/* //设置浏览器滚动条的背景颜色 */
::-webkit-scrollbar-thumb {
    background-color: #eee;
    border-radius: 3px;
}

@media (pointer: fine) {
    /* 在这里编写 PC 端的样式 */
    body {
        max-width: 375px;
    }
}