.menu {
	width: 20px;
	height: 24px;
	position: fixed;
	right: 36px;
	top: 39px;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	z-index: 1000;
	cursor: pointer;
	transition: all 0.6s ease-in-out 0s;
	-webkit-transition: all 0.6s ease-in-out 0s;
}

.menubg {
	width: 0;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99;
	transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
}

.menu.open .menubg {
	width: 100%;
}

.menubox {
	width: 0;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	transition: all 0.2s ease-in-out 0.2s;
	-webkit-transition: all 0.2s ease-in-out 0.2s;
	background-size: 200% 100%;
	background-position: right top;
	background-repeat: no-repeat;
}

.menu.open .menubox {
	width: 50%;
	background-color: #000;
	opacity: 0.85;
}

.menu .chnlist {
	padding: 80px 40px 0;
	width: 50%;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	transition: all 0.2s ease-in-out 0.2s;
	-webkit-transition: all 0.2s ease-in-out 0.2s;
	z-index: 1000;
	box-sizing: border-box;
}

.menu.open .chnlist {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
}

.menu .chnlist h2 {
	width: 50%;
	text-align: center;
}

.menu .chnlist div {
	width: 50%;
	height: 240px;
	float: left;
	text-align: center;
}
.menu .chnlist div:first-child{
	margin-right: 50%;
	height: 50px;
}
.menu .chnlist div:first-child h3 a{
	font-size: 22px;
}
.menu .chnlist h3 a,
.menu .chnlist h2 a {
	font-size: 18px;
	color: #ffe400;
	line-height: 40px;
}

.menu .chnlist li a {
	font-size: 16px;
	color: #fff;
	line-height: 28px;
}

.menu .menubtn {
	position: relative;
	z-index: 1000;
}

.menubtn.blacktext .burger {
	background: #FFFFFF;
}

.menu.open .blacktext {
	color: #fff;
}

.menu.open .blacktext .burger {
	background: #fff;
}

.menu .menu-handler {
	width: 20px;
	height: 24px;
	cursor: pointer;
	position: relative;
	float: right;
	transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
	-webkit-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
	-moz-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
}

.menu-handler .burger {
	width: 20px;
	height: 3px;
	background: #fff;
	display: block;
	position: absolute;
	z-index: 5;
	top: 4px;
	left: 50%;
	margin: 0px 0px 0px -10px;
	transform-origin: center;
	-webkit-transform-origin: center;
	-moz-transform-origin: center;
	-o-transform-origin: center;
	-ms-transform-origin: center;
	transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
	-webkit-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
	-moz-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
}

.menu-handler .burger2 {
	top: 11px;
}

.menu-handler .burger3 {
	top: 18px;
}

.menu-handler.active .burger1 {
	top: 11px;
	-moz-transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}

.menu-handler.active .burger2 {
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	filter: alpha(opacity=0);
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

.menu-handler .burger3 {
	top: 18px;
}

.menu-handler.active .burger3 {
	top: 11px;
	-moz-transform: rotate(-225deg);
	-webkit-transform: rotate(-225deg);
	-o-transform: rotate(-225deg);
	-ms-transform: rotate(-225deg);
	transform: rotate(-225deg);
}

.morebtn {
	margin-top: 50px;
	display: block;
	float: right;
	width: 120px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	border: 1px solid #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
	transform: translate(0, 100%);
	-webkit-transform: translate(0, 100%);
	transition: 300ms ease 1100ms;
	-webkit-transition: 300ms ease 1100ms;
	opacity: 0;
}

.menu.active .morebtn {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	opacity: 1;
}

.morebtn {
	margin-top: 50px;
	display: block;
	float: right;
	width: 120px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	border: 1px solid #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
	transform: translate(0, 100%);
	-webkit-transform: translate(0, 100%);
	transition: 300ms ease 1100ms;
	-webkit-transition: 300ms ease 1100ms;
	opacity: 0;
}

.active .morebtn {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	opacity: 1;
}

.morebtn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #c4151b;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.morebtn:hover {
	text-decoration: none;
}

.morebtn:hover:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.warp {
	max-width: 1400px;
	padding-top: 45px;
	margin: 0 auto;
	height: 233px;
}

.warp a {
	color: #FFFFFF;
}

.warp .footList>li {
	float: left;
	font-size: 16px;
	margin-right: 10%;
	line-height: 28px;
}

.warp .footList>li h3 {
	font-size: 28px;
	font-weight: 400;
	text-align: center;
	margin: 10px 0;
}

.warp .footl {
	overflow: hidden;
	float: left;
	width: 70%;
	text-align: center;
}

.warp .footR {
	float: right;
	height: 190px;
	width: 20%;
	padding-left: 9%;
	border-left: 1px solid #FFFFFF;
}

.warp .footR div {
	width: 146px;
	border: 1px solid #FFFFFF;
	height: 40px;
	line-height: 40px;
	color: #FFFFFF;
	font-size: 18px;
	text-align: center;
}

.footBottom {
	width: 90%;
	padding: 0 5%;
	height: 54px;
	border-top: 2px solid #5d5d5d;
	font-size: 14px;
	line-height: 54px;
	text-align: center;
}

.footBottom p {
	display: inline-block;
	margin-right: 20px;
	color: #FFFFFF;
}
.footBottom p a{
	color: #FFFFFF;
}
#foot {
	min-width: 1400px;
	height: 333px;
	background: black;
}

#nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	padding: 20px;
	height: 62px;
	background: rgba(0, 0, 0, .4);
}

#nav .logo {
	display: inline-block;
}

#nav ul {
	/*display: none;*/
}


.boxTitle {
	margin: 100px 0;
	text-align: center;
	color: #999999;
}

.boxTitle span {
	display: inline-block;
	width: 100px;
	border-bottom: 1px solid #999999;
	position: relative;
	top: -8px;
}

.boxTitle h3 {
	display: inline-block;
	color: #3c3c3c;
	margin: 0 15px;
	font-size: 28px;
	font-weight: 400;
	line-height: 36px;
}

.boxTitle p {
	margin: 10px 0;
	font-size: 22px;
}

.boxTitle p+p {
	font-size: 18px;
	line-height: 50px;
}

.topImg {
	min-width: 1400px;
	position: relative;
	margin-bottom: 50px;
}

.topImg>img {
	width: 100%;
}

.topImg div {
	width: 30%;
	height: 35%;
	position: absolute;
	top: 40%;
	right: 10%;
	box-sizing: border-box;
	color: #FFFFFF;
}

.boxOne,
.boxTwo,
.boxThree,
.boxFour {
	width: 1400px;
	margin: 0 auto;
}

.topImg div {
	background: rgba(255, 255, 255, .2);
	border: 2px solid #797271;
	padding: 3%;
}

.topImg div h3 {
	font-size: 38px;
	padding: 5% 0;
}

.topImg div p {
	margin-top: 10%;
	font-size: 20px;
}

.topImg ul.topList {
	width: 90%;
	height: 50px;
	position: absolute;
	padding: 0 5%;
	left: 0;
	bottom: 0;
	color: #FFFFFF;
	background: rgba(0, 0, 0, .5);
}

.topImg ul.topList>li {
	float: left;
	padding: 0 20px;
	position: relative;
}

.topImg ul.topList>li.curr>h3 {
	border-color: #be2b22;
}

.topImg ul.topList>li:hover {
	cursor: pointer;
}

.topImg ul.topList>li>h3 {
	height: 46px;
	line-height: 46px;
	font-size: 18px;
	border-bottom: 2px solid transparent;
}

.topImg ul.topList>li:hover>h3 {
	border-color: #be2b22;
}

.topImg ul.topList>li ul.topList-2 {
	opacity: 0;
	position: absolute;
	bottom: 50px;
	left: 0;
	color: #FFFFFF;
	width: 100%;
	background: rgba(255, 255, 255, .4);
	transition: all 1s;
}

.topImg ul.topList>li ul.topList-2 li {
	width: 80%;
	box-sizing: border-box;
	font-size: 16px;
	padding: 10px 0;
	margin: 0 10%;
	border-bottom: 1px solid #FFFFFF;
}

.topImg ul.topList>li ul.topList-2 li:last-child {
	border: 0;
}

.topImg ul.topList>li ul.topList-2 li:hover {
	cursor: pointer;
}

.topImg ul.topList>li:hover ul.topList-2 {
	opacity: 1;
}

.mainList>li.curr {
    display: block;
}
.mainList>li {
    display: none;
}