/* layout.css */
.loadingWrap {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    display: none;
    z-index: 300;
}

.blind-layer {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    display: none;
    z-index: 10;
}

/* header */
header{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
	z-index:10;
}

header.sub{
    position: static;
    background: #fff;	
}

header.show{
    position: static;
    background: #fff;	
    height: 400px;
}




.wrap{
	width:100%;
	margin:0 auto;
}

.wrap.main{
	background: #141414;
}


.wrap.black{
	background: #131313;
}

/* footer */
footer {
    position: static;
    bottom: 0;
    left: 0;
    padding: 56px 0 80px;
    background: #141414;
    width: 100%;
}

footer.sticky{
    position: fixed;
}