/*css初始化*/
*{
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
    outline: none;
}
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;
    margin: 0;
    padding: 0;
    outline-style: none;
}
ul,ol{
    list-style: none;
}
select,input{
    vertical-align: middle;
}
select,input,textarea{
    font-size: 12px;
    margin: 0;
}
textarea{
    resize: none;
}
img{
    border: 0;
    vertical-align: middle;
}
table{
    border-collapse: collapse;
}
.clearfix:before,.clearfix:after{
    content: "";
    display: table;
}
.clearfix:after{
    clear: both;
}
a{
    text-decoration: none;
}
a:link { /* 未访问链接 */
    color: #ffffff;
}

a:visited { /* 已访问链接 */
    color: #ffffff;
}

a:hover { /* 鼠标移动到链接上 */
    color: #ffffff;
}

a:active { /* 鼠标在链接上按下 */
    color: #ffffff;
}
/*公共类*/
.w{
    width: 1210px;
    margin: 0 auto;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
.al{
    text-align: left;
}
.ac{
    text-align: center;
}
.ar{
    text-align: right;
}
.hide{
    display: none;
}
/*公共类结束*/
body, th, td, input, select, textarea, button {
    font-family: "PingFang SC","Arial","SF Pro SC","Microsoft Yahei Lighter","Helvetica Neue","Helvetica",sans-serif;
    color: #333;
}

/* 对于水平滚动条 */
::-webkit-scrollbar {
    width: 0; /* Chrome、Safari等WebKit内核浏览器支持 */
}

/* 对于垂直滚动条 */
::-webkit-scrollbar {
    height: 0; /* Chrome、Safari等WebKit内核浏览器支持 */
}

/* Firefox浏览器支持 */
body {
    scrollbar-width: none; /* Firefox浏览器支持 */
}

/* IE浏览器支持 */
html {
    -ms-overflow-style: none; /* IE浏览器支持 */
}

