@charset "utf-8";
body,p,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,form,fieldset,legend,input,select,textarea,button,th,td,menu{margin:0;padding:0;}
*{box-sizing:border-box;}
ul,dl,ol{list-style:none;}
img,fieldset,input[type="submit"]{border:0 none;}
em{font-style:normal;}
strong{font-weight:normal;}
table{border-collapse:collapse;border-spacing:0;}
button,input[type="button"]{cursor:pointer;border:0 none;}
a,button,input,img{-webkit-touch-callout:none;}
img{}
img[src=""],img:not([src]){opacity:0;}
input,select,textarea{outline:none;}
a{text-decoration:none;color:#000000;}
.fl{ float: left;}
.fr{ float: right;}
.clear{clear:both;} 
.clearfix::after{
    content: "";
    display: block;
    clear: both;
}
@mixin clear{
    &::after{
        content: "";
        display: block;
        clear: both;
    }
}


@mixin auto{
    width: 1200px;
    margin: 0 auto;
}
//单行溢出隐藏
@mixin nowrap{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
//多行溢出处理
@mixin lag_nowrap{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

//图片处理
.imgw{
    overflow: hidden;
    img{
        width: 100%;
        vertical-align: middle;
    }
}
.imgh{
    overflow: hidden;
    text-align: center;
    img{
        height: 100%;
    }
}

html,body{

//-moz-user-select:none;
// -webkit-user-select: none;
//-ms-user-select: none;
// -khtml-user-select:none; 
 -webkit-tap-highlight-color:rgba(0, 0, 0, 0); }
html {height: 100%;width: 100%;font-family: 'Heiti SC', 'Microsoft YaHei';outline: 0;-webkit-text-size-adjust:none;}
body {height: 100%;margin: 0;position: relative;}