/*通用样式-初始化*/
*{ margin:0; padding:0; box-sizing: border-box; font-family: "微软雅黑";}

/*webkit内核浏览  滚动条样式 优化*/
::-webkit-scrollbar{ width:16px; height:10px;}
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner{ background-color:#f6f6f6;}
::-webkit-scrollbar-thumb{ -webkit-border-radius:8px; border-radius:8px; background-color:#ccc;}
::-webkit-scrollbar-thumb:window-inactive{ background-color:#ccc;}

a{ color: #fff; text-decoration:none; transition: all .2s ease-out 0s; cursor: pointer;}
a:hover{ color: #f29b76;}
img{ border:none;}

ul,
ol,
li{ list-style: none;}
