﻿/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/

/**::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: transparent;
    position: absolute;
}*/


/*定义滚动条的轨道，内阴影及圆角*/

/**::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: rgba(0,0,0,0.3);
}*/

/*定义滑块，内阴影及圆角*/

/**::-webkit-scrollbar-thumb {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(216, 216, 216, 0.5);
    background-color: rgba(216, 216, 216, 0.5);
}*/
*{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin:0;
    padding:0;
}
body,ul,li,h1,h2,h3,h4,h5,h6,p,ol,li,dt,dd,dl{
    border:none;
    list-style: none;
    font-weight: normal;
    
}
body{
    margin: 0;
    padding: 0;
    font-family: "微软雅黑","Microsoft YaHei";
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
img{
	vertical-align:bottom; 
	display:block;
}
a{
    text-decoration: none;
}

a img{
	border: none;
}

.clear:after{
	content: "";
	display: block;
	clear:both;
}

.clear1:after {
    content: "";
    display: block;
    clear: both;
}
.cbefore:before {
  content: "";
  display: table;
}

