@charset "utf-8";
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,form,input,button,textarea{
	margin:0;
	padding:0;
	border:0; 
	list-style: none;
}
a{
	text-decoration: none;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.clearfix:after {
   content:""; 
   display: block; 
   clear:both; 
}

.btn{
	padding: 5px 16px;
	height: 30px;
	box-sizing: border-box;
	border-radius: 3px;
}

.btn-red{
	background: #C44533;
	color: white;
}

.btn-wh{
	background: white;
	color: #C44533;
	border-color: #C44533;
}

/* header */
/* navbar */
.navbar{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 65px;
	width: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 100;
}
.navList .logo{
	width: 160px;
	padding-top: 8px;
	padding-left: 60px;
	margin-right: 20px;
}
.navbar .navList li{
	display: inline-block;
	float: left;
}
.navbar .navList li a{
	display: inline-block;
	line-height: 65px;
	padding: 0 20px;
	color: white;
}
.navbar .navList li a.active{
	color:#D21513;
}
.navbar .navList li a:hover{
	color:#D21513;
	transition: all .2s;
}
.navBtn{
	padding-right: 65px;
	padding-top: 17px;
}
.navBtn .btn{
	margin-left: 7px;
}
.header{
	height: 600px;
	width: 100%;
	background: #000;
	background-size:100% 100%;
}
.headerDesc{
	position: relative;
	top: 200px;
	width: 100%;
	color: #FFFFFF;
	text-align: center;
}
.headerDesc h2{
	font-size: 45px;
	font-weight: 400;
}
.headerDesc p{
	line-height: 40px;
	font-size: 25px;
}
.headerDesc p.second{
	font-size: 16px;
}
.second{
	-webkit-animation: fadeDown 0.8s ease-in-out 0.3s backwards;
	-moz-animation: fadeDown 0.8s ease-in-out 0.3s backwards;
	-o-animation: fadeDown 0.8s ease-in-out 0.3s backwards;
	-ms-animation: fadeDown 0.8s ease-in-out 0.3s backwards;
	animation: fadeDown 0.8s ease-in-out 0.3s backwards;
}
.main-content{
	padding: 60px;
}
/* footer */
/* footer */
.footer{
	padding: 40px 60px;
	background: #1E252C;
}
.footer p{
	color: #ccc;
	font-size: .8em;
	line-height: 1.7em;
}

.footer p a{
	color: #D21513;
}
.footer .footerLogo{
	margin-right: 20px;
	width: 150px;
	margin-top: 20px;
}
.shu {
    font-size: 1rem;
    display: inline-block;
    width: 2px;
    margin: 0 7px;
    height: 0.8rem;
    background: #aaa;
    vertical-align: middle;
}
@keyframes  fadeDown{
	0% {
	    transform: translateY(40px);
	    opacity: 0;
	}
	100% {
	    transform: translateY(0px);
	    opacity: 1;
	}
}
.mobile{
	display: none;
}