@charset "utf-8";

.drop-menu {
	display: none;
	background-color: #fff;
	border: 0;
	width: 100%;
	min-width: 120px;
	padding-top: 0.10rem;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 30;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.drop-menu dl dd {
	border-top: 1px solid #ebebeb;
	line-height: 1.8;
	text-align: center;
}
.drop-menu dl dd:first-child {
	border-top: 2px solid #3d4d7e;
}
.drop-menu a {
	display: block;
	background-color: #fff;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
	padding: 8px 10px;
}
.drop-menu a:hover {
	background-color: #3d4d7e;
	color: #fff;
}

.pc-nav li:hover .drop-menu {
	display: block;
	animation: showMenu .4s;
}

/* 菜单显示效果 */
@-webkit-keyframes showMenu {
	0% {
		opacity: 0;
		margin-top: -20px;
	}
	100% {
		opacity: 1;
		margin-top: 0;
	}
}
@-moz-keyframes showMenu {
	0% {
		opacity: 0;
		margin-top: -20px;
	}
	100% {
		opacity: 1;
		margin-top: 0;
	}
}
@-o-keyframes showMenu {
	0% {
		opacity: 0;
		margin-top: -20px;
	}
	100% {
		opacity: 1;
		margin-top: 0;
	}
}
@keyframes showMenu {
	0% {
		opacity: 0;
		margin-top: -20px;
	}
	100% {
		opacity: 1;
		margin-top: 0;
	}
}

/* 移动端导航 */
.mobile-nav {
	border: 1px solid #ccc;
	cursor: pointer;
	height: 32px;
	width: 34px;
	overflow: hidden;
	padding: 5px;
	margin-top: -15px;
	top: 50%;
	right: 85px;
	z-index: 4;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}
.mobile-nav:before, .mobile-nav:after {
	display: block;
	content: '';
	background-color: #ce2029;
	height: 3px;
	width: 22px;
	position: absolute;
	left: 5px;
	transition: all 0.2s;
}
.mobile-nav:before {
	top: 5px;
}
.mobile-nav:after {
	bottom: 5px;
}
.mobile-nav span {
	display: block;
	background-color: #ce2029;
	height: 3px;
	width: 100%;
	margin-top: 9px;
}
.closeBtn:before {
	top: 14px;
	transform: rotate(45deg);
}
.closeBtn:after {
	top: 14px;
	transform: rotate(-45deg);
}
.closeBtn span {
	display: none;
}

.mobile-nav-list {
	display: none;
	width: 100%;
	padding-top: 0.30rem;
	top: 100%;
	left: 0;
	z-index: 10;
}
.mobile-nav-list .content {
	background-color: #fff\9;
	background-color: rgba(0, 0, 0, .5);
	padding: 5px;
}
.mobile-nav-list ul li {
	padding: 5px;
}
.mobile-nav-list a {
	display: block;
	background-color: rgba(255, 255, 255, .9);
	font-size: 14px;
	line-height: 2.5;
	text-align: center;
}
.mobile-nav-list a:hover {
	background-color: #3d4d7e;
	color: #fff;
	text-decoration: none;
}

