@charset "UTF-8";
// * {
//   touch-action: pan-x;
// }
/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img {
  margin:0;
  padding:0;
}
fieldset, img,input,button {
  border:none;
  padding:0;
  margin:0;
  outline-style:none;
}   /*去掉input等聚焦时的蓝色边框*/
ul, ol {
  list-style:none;
}
textarea {
  resize:none;
}
img {
  border:0;
  vertical-align:middle;
}  /*  去掉图片低测默认的3像素空白缝隙，或者用display：block也可以*/
table {
  border-collapse:collapse;
}
body {
  font-size:28px;
  font-family: "PingFang SC",Roboto,Noto,Arial,"Hiragino Sans GB","Microsoft YaHei",sans-serif !important;
  color:#666;
  background:#FFFFFF;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
.clearfix:before,.clearfix:after {  /*清楚浮动*/
    content:"";
    display:table;
}
.clearfix:after{clear:both;}
.clearfix{
    *zoom:1;/*IE/7/6*/
}
/*修改滚动条样式*/
::-webkit-scrollbar{
  width : 4px;
  height : 2px;
}
::-webkit-scrollbar-track{
  background: rgb(239, 239, 239);
  border-radius:2px;
}
::-webkit-scrollbar-thumb{
  background: #bfbfbf;
  border-radius:10px;
}
::-webkit-scrollbar-thumb:hover{
  background: #333;
}
::-webkit-scrollbar-corner{
  background: #179a16;
}
