@charset "utf-8";

body, div, dl, dt,
dd, ul, ol, li, h1,
h2, h3, h4, h5, h6,
pre, code, form, fieldset,
legend, textarea, p, blockquote,
th, td, input, select,
textarea, button, header {
    margin:0;padding:0
}
/* 标题样式重置 */
h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
    font-weight: normal;
}
/* 去掉前面符号 */
ul,ol,li {
    list-style: none;
}
/* 去掉下华划线 */
a,u {
    color: #000;
    text-decoration: none;
}
/* 去掉字体加粗 */
b,strong{
    font-weight: normal;
}
/* 去掉字体加粗 */
em,i{
    font-style: none;
}
/* 清除边框和清除图片下面大于3px的间距 */
img{
    border: 0;
    display: block;
}
/* 去掉输入框聚焦时出现的外边框和改变属性为block */
input{
    outline: none;
    display: block;
}
input::-ms-clear{
    display:none;
}
p{
    word-wrap:break-word
}
/* 重置默认滚动条样式 */
::-webkit-scrollbar-track-piece {
    background-color: #F8F8F8;
}
::-webkit-scrollbar {
    width: 0;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #ccc;
    background-clip: padding-box;
    min-height: 28px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #A5A5A5;
}
/* IE滚动条隐藏 */
.scroll_content{
    -ms-scroll-chaining: chained;
    -ms-overflow-style: none;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
}
:root  {
    scrollbar-width: none;
 }