/*测试颜色*/
.c1{
	background: #ff5500;
}



/*共用自定义样式*/
.L{
	float: left;
}

.R{
	float: right;
}

.cover{
	width: 100%;
	position: absolute;
	background-color: rgba(0,0,0,.6);
}

.fc-content{
	width: 1180px;
	position: relative;
}


footer{
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	background-color: #1B1D26;
}

footer p{
	font-size: 11px;
	color: #F0F0F0;
}

/*动画*/
.movie{
	animation:roate 0.8s;
	animation-fill-mode:forwards;
	animation-direction:alternate;
}

.m-line{
	animation: linem 0.6s;
	animation-delay: 0.3s;
	animation-fill-mode:forwards;
	animation-direction:alternate;
}

@keyframes linem{
	from{
		transform: translateX(60px);		
		opacity: 0;
	}
	to{
		transform: translateX(0px);
		opacity: 1;
	}
}


@keyframes roate{
    from { 
    	transform:translateY(80px);
    opacity:0;
   }
    to{
    	transform:translateY(0px);
    opacity: 1;
    }}
    
#m-1,#m-2,#m-3,#m-4,#m-5,#m-6,#m-7,#m-8{
	opacity: 0;
}
