*{
	margin: 0;
	padding: 0;
}
body,html{
	width: 100%;
	height: 100%;
}
body::-webkit-scrollbar {/*滚动条整体样式*/
    width: 5px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
body::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}
body::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 5px;
    background: #EDEDED;
}


/*跳动动画效果*/
#canvas{
	position: fixed;
    opacity: 0.5;
    z-index: 0;
}


/*头部 logo&tab部分*/
.header{
	width: 100%;
	height: 160px;
	position: relative;
	max-width: 1433px;
    z-index: 99;
    margin: 0 auto;
}
.header-logo{
	width: auto;
	position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 60px;
}
.header-logo img{
	width: 131px;
	object-fit: cover;
}
.header-tab{
	position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 42px;
    right: 60px;
}
.header-tab ul{
	list-style: none;
}
.header-tab li{
	float: left;
	width: 148px;
    border: 1px solid #e8e8e8;
    border-right: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 8px 28px 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 28px 0 rgba(0, 0, 0,0.04);
}
.header-tab a{
	position: relative;
    display: block;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #868686;
    line-height: 40px;
    text-decoration: none;
}
.header-tab ul li:last-child{
	border-right: 1px solid #e8e8e8;
}
.header-tab li .active{
	background-color: #3A3A3A;
	color: #ffffff;
}


@media screen and (max-width: 1100px) and (min-width: 640px) {
	.header-tab li{
		width: 118px;
	}
}
/*底部版权 备案号部分*/
.footer{
	position: fixed;
	bottom: 0;
	z-index: 90;
	width: 100%;
	height: auto;
	line-height: 46px;
	border-top: 1px solid #DEDBE8;
	text-align: center;
	font-size: 14px;
	color: #8e8e8e;
	background-color: #ffffff;
}


.container{
	position:relative;
	z-index: 2;;
}
