/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
/* table, caption, tbody, tfoot, thead, tr, th, td, */
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /*font-weight: normal;*/
    vertical-align: baseline;
}



/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* custom */
a {
    /*color: #7e8c8d;*/
    text-decoration: none;
    -webkit-backface-visibility: hidden;
}

li {
    list-style: none;
}

::-webkit-scrollbar {/*滚动条整体部分*/
    width: 8px;
    height: 8px;
}
/*::-webkit-scrollbar-button{滚动条两端的按钮，可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果}*/
/*::-webkit-scrollbar-track {/*外层轨道，滚动条中间部分*/
::-webkit-scrollbar-track-piece {/*内层轨道，滚动条中间部分*/
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 16px;
}

::-webkit-scrollbar-thumb:vertical {/*滚动条里面可以拖动的那部分（垂直）*/
    height: 8px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 16px;
}

::-webkit-scrollbar-thumb:horizontal {
    width: 8px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 16px;
}

#scroll::-webkit-scrollbar-corner {/*边角（位置6）*/
    background:#82AFFF; 
}
#scroll::-webkit-scrollbar-resizer  {/*定义右下角拖动块的样式（位置7）*/
    background:#FF0BEE;
}
#scroll{
    scrollbar-arrow-color: #f4ae21; /**//*三角箭头的颜色*/ 
    scrollbar-face-color: #333; /**//*立体滚动条的颜色*/ 
    scrollbar-3dlight-color: #666; /**//*立体滚动条亮边的颜色*/ 
    scrollbar-highlight-color: #666; /**//*滚动条空白部分的颜色*/ 
    scrollbar-shadow-color: #999; /**//*立体滚动条阴影的颜色*/ 
    scrollbar-darkshadow-color: #666; /**//*立体滚动条强阴影的颜色*/ 
    scrollbar-track-color: #666; /**//*立体滚动条背景颜色*/ 
    scrollbar-base-color:#f8f8f8; /**//*滚动条的基本颜色*/ 
}

html, body {
    width: 100%;
}

body {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {margin: 0; padding: 0; box-sizing: border-box; color: inherit; font: inherit; 
  /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; */
  -webkit-overflow-scrolling: touch;
}
