﻿@charset "utf-8";
/* CSS Document */

.header {
	position: fixed; 
	top: 0;
	left: 0;
	width: 100%;
	background: #000000;
	z-index: 999;
	-webkit-box-shadow: 0 0 24px rgba(125, 125, 125, .4);
	-moz-box-shadow: 0 0 24px rgba(125, 125, 125, .4);
	box-shadow: 0 0 24px rgba(125, 125, 125, .4);
}

.header .logo {
	float: left;
	padding: 12px 0;
}

.header .logo a,
.header .logo a img {
	display: block;
	height: 58px;
}

.header .nav {
	float: right;
}

.header .nav>ul>li {
	position: relative;
	float: left;
}

.header .nav>ul>li>a {
	display: block;
	height: 58px;
	line-height: 58px;
	padding: 12px 24px;
	font-size: 15px;
	color: #fff;
	transition: all .4s ease;
}

.header .nav>ul>li>a:hover,
.header .nav>ul>li>a.active {
	background: #d6241b;
}

.header .nav>ul>li .nav-list {
	position: absolute;
	top: 106px;
	left: 0;
	width: 140px;
	padding: 6px 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 6px rgba(128, 128, 128, 0.2);
	opacity: 0;
	visibility: hidden;
}
.header .nav>ul>li .double-list{
	width: 280px;
}

.header .nav>ul>li .double-list li{
	float: left;
	width: 50%;
}
.header .nav>ul>li:hover .nav-list {
	opacity: 1;
	visibility: visible;
	top: 82px;
	transition: all .4s ease;
}

.header .nav .nav-list a {
	display: block;
	padding: 0 24px;
	font-size: 14px;
	color: #333;
	height: 36px;
	line-height: 36px;
	transition: all .4s ease;
}

.header .nav .nav-list a:hover,
.header .nav .nav-list a.active {
	background: #000;
	color: #fff;
}

.footer{
	padding: 20px 0;
	background: #383838;
	color: #f0f1f3;
	line-height: 24px;
	font-size: 15px;
	text-align: center;
}

.footer a{
	color: #f0f1f3;
}

.footer a:hover{
	text-decoration: underline;
	color: #D6241B;
}

.btn {
	display: inline-block;
	vertical-align: top;
	height: 52px;
	line-height: 50px;
	padding: 0 36px;
	border-radius: 26px;
	font-size: 20px;
	color: #fff;
}

.btn.btn-red {
	background-color: #da251c;
}

.btn.btn-linear {
	background: linear-gradient(#fdaca8, #fc5c55);
}

.btn.btn-white{
	background: #fff;
	color: #D6241B;
}

.nav-btn {
	display: none;
	position: absolute;
	z-index: 9999;
	width: 38px;
	height: 26px;
	top: 14px;
	right: 16px;
	cursor: pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.nav-btn .navbar {
	position: absolute;
	left: 0;
	top: 0;
	width: 38px;
	height: 4px;
	background: #b2253f;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.nav-btn .navbar2 {
	top: 11px;
}

.nav-btn .navbar3 {
	top: 22px;
}

.nav-btn-active {
	right: 220px;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.nav-btn-active .navbar1 {
	top: 11px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-btn-active .navbar2 {
	opacity: 0;
	filter: alpha(opacity=0);

}

.nav-btn-active .navbar3 {
	top: 11px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header .nav-active {
	visibility: visible !important;
}

.header .nav .zhezhao {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	display: none;
	background: rgba(0, 0, 0, 0.5);
	transition: all .4s ease;
}

.header .nav-active .zhezhao {
	display: block;
} 

.header .nav-active .zhezhao:hover {
	cursor: url(../img/icon/close-icon.ico) 16 16, default;
}

.header .nav-active ul {
	opacity: 1 !important; 
	filter: alpha(opacity=100) !important;
	right: 0 !important;
}
