a:visited, a:link, a:active{
	text-decoration: none;
}

.active{
	color: #FF0000!important;
}
.active>a{
	color: #FF0000!important;
}

/* 头部 */
.header-wai{
	height: 97px;
	background: rgba(0,0,0,.9);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: 0 1px 2px #444;
}
.zhanwei{
	height: 97px;
}
.header{
	/* width: 100%; */
	height: 100%;
	display: flex;
	/* margin-top: 33px; */
	align-items: center;
	position: relative;
}
.header-logo a{
	display: block;
	text-align: center;
}
.header-logo a img{
	width: 90%;
}
.header-nav{
	flex: 1;
}
.header-nav-ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.header-nav-ul li a{
	display: block;
	text-align: center;
	padding: 10px 15px;
	color: #fff;
	transition: .3s color ease;
	font-family: 'Buda-Light';
}
.header-nav-ul li a:hover{
	/* color: #dca44b; */
	color: #FF0000;
}

.mobile-btn{
	padding: 9px 10px;
	cursor: pointer;
	position: absolute;
	right: 5%;
}
.mobile-btn span{
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px;
	background: #fff;
	margin-bottom: 5px;
}
@media screen and (max-width: 991px) {
	.header-nav-ul li a{
		padding: 15px 5px;
	}
}
@media screen and (min-width: 769px) {
	.mobile-btn{
		display: none;
	}
}
@media screen and (max-width: 768px){
	.header-nav{
		position: absolute;
		top: 100%;
		left: 0px;
		width: 100%;
	}
	.header-nav-ul{
		display: none;
		flex-direction: column;
		background: rgba(0,0,0,.7);
		box-shadow: 0 1px 2px #444;
	}
	.header-nav-ul li{
		width: 100%;
		border-bottom: 2px solid #fff;
	}
	.header-nav-ul li:last-child{
		border-bottom: none;
	}
}


/* 底部 */
.footer-wai{
	background: #373737;
	padding-top: 60px;
	padding-bottom: 60px;
	color: #fff;
}
.footer-ewm{
	margin-top: 30px;
}
.footer-ewm1{
	display: inline-block;
	text-align: center;
}
.footer-ewm1:first-child{
	/* margin-right: 30px; */
}
.footer-ewm img{
	display: block;
	margin: auto auto 6px;
}
.footer-category-tit{
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 400;
	text-transform: uppercase;
}
.footer-category-list{
	position: relative;
	margin-bottom: 6px;
}
.footer-category-list a{
	display: inline-block;
	color: #fff;
	padding-left: 15px;
}
.footer-category-list a:before{
	content: '';
	display: block;
	width: 0px;
	border: 6px solid transparent;
	border-left-color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -6px;
}
.footer-contact-list{
	margin-bottom: 8px;
}
.footer-contact-list .iconfont{
	margin-right: 5px;
}


.footer-bottom{
	background: #333333;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #fff;
	text-align: center;
	font-size: 12px;
}
.footer-bottom a{
	color: #fff;
}

@media screen and (max-width: 768px) {
	.container{
		padding-left: 0;
		padding-right: 0;
	}
	
	.footer-left{
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 30px;
	}
	.footer-center{
		padding-left: 0;
		padding-right: 0;
	}
	.footer-right{
		padding-left: 0;
		padding-right: 0;
	}
}
@media screen and (max-width: 320px) {
	.footer-category-tit{
		font-size: 22px;
	}
}



/* 分页海报 */
.poster-wai{
	padding-left: 0;
	padding-right: 0;
}
.poster{
	position: relative;
}
.poster img{
	width: 100%;
}
.crumbs-wai{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: rgba(0,0,0,.5);
	padding: 10px 30px;
}
.crumbs-wai a{
	color: #fff;
	font-size: 14px;
}
.crumbs ul{
	display: flex;
	justify-content: left;
	align-content: center;
	color: #fff;
	font-size: 14px;
}
.crumbs ul span{
	color: #fff;
	/* margin-right: 3px; */
	vertical-align: middle;
	font-size: 14px;
}
.crumbs ul a{
	margin-right: 5px;
	margin-left: 8px;
}



/* 顶部大标题 */
.tit-big{
	padding: 67px 0 37px;
	border-bottom: 1px solid #dadada;
}
.tit-big h2{
	color: #121212;
	font-size: 24px;
	white-space: nowrap;
	text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
}
.tit-big h2 span{
	display: inline-block;
	color: #6f6f6f;
	font-size: 18px;
	margin-left: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

@media screen and (max-width: 375px) {
	.tit-big h2{
		font-size: 22px;
	}
	.tit-big h2 span{
		font-size: 14px;
	}
}



/* 返回顶部 */
.scroll-top{
	display: block;
	width: 50px;
	height: 50px;
	background: url(../images/top-arrow.png) no-repeat center;
	position: fixed;
	bottom: 100px;
	right: 80px;
	z-index: 9000;
	overflow: hidden;
	cursor: pointer;
	display: none;
}
@media screen and (max-width: 1024px) {
	.scroll-top{
		right: 10px;
	}
}
@media screen and (max-width: 768px) {
	.scroll-top{
		right: 0px;
	}
}

