.mobile_header {
	width: 100%;
	height: 60px;
	position: fixed;
	padding: 15px;
	background-color: #ffffff;
	left:0;
	top:0;
	z-index: 100;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow:0 0 10px rgba(0, 0, 0, 0.1);
}

.mobile_header .logo {
	float: left;
	height: 30px;
	max-width: 50%;
}

.mobile_header .logo img {
	height: 30px;
	max-width: 100%;
}

.mobile_header .menu_icon {
	float: right;
	display: block;
	width: 36px;
	height: 31px;
}

.menu_icon img {
	width: 100%;
}

.mobile_header .menu {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: auto;
	padding: 15px;
	z-index: 99;
	background-color: #333333;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.mobile_header .menu li {
	width: 100%;
	padding: 10px 15px;
	border-bottom: 1px solid #222;
}

.mobile_header .menu li a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 14px;
	color: #ffffff;
}



.header-cont {
	position: relative;
	width: 100%;
	height:90px;
	left: 0;
	top: 0;
	z-index:999;
}
.header-first{
	width: 100%;
	height: 100%;
	border-bottom: solid 1px #ededed;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: absolute;
	z-index: 5;
	background: #fff;
}

.header {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header .logo {
	width: 25%;
}

.header .logo img {
	width: 100%;
}

.header .nav-bar {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	margin-left: 6%;
}

.header .nav-bar li {
	padding: 20px;
}

.header .nav-bar li a {
	font-size: 16px;
	color: #515151;
	line-height: 48px;
	display: block;
	border-bottom: 2px solid transparent;
}

.header .nav-bar li.on {
	background: #03296e;
	
}

.header .nav-bar li:not(.on):hover a{
	border-color: #cf000d;
	-webkit-animation: secondColorAnimate 0.1s ease-in-out forwards;
	animation: secondColorAnimate 0.1s ease-in-out forwards;
}
.header .nav-bar li.on a {
	border-color: #03296e;
	color: #ffffff;
}

.header-second {
	background: #fafafa;
	height: 0;
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	z-index: 2;
	overflow: hidden;
}

.header-second ul {
	position: absolute;
	top: 0;
	display: none;
}

.header-second ul li {
	margin-left: 20px;
	padding: 15px 10px;
	float: left;
}

.header-second ul li a {
	font-size: 16px;
	color: #525252;
	line-height: 40px;
	display: inline-block;
	border-bottom: 2px solid transparent;
}

@-webkit-keyframes secondColorAnimate {
	0% {
		color: #525252;
	}
	100% {
		color: #cf000d;
	}
}
@keyframes secondColorAnimate {
	0% {
		color: #525252;
	}
	100% {
		color: #cf000d;
	}
}

.header-second ul li a:hover {
	border-bottom: 2px solid #cf000d;
	-webkit-animation: secondColorAnimate 0.1s ease-in-out forwards;
	animation: secondColorAnimate 0.1s ease-in-out forwards;
}

.footer {
	background-color: #1e4074;
	padding: 100px 0 50px 0;
}

.footer .bottom_info {
	width: 100%;
}

.footer .share {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer-menu-title {
	font-size: 18px;
	font-weight: bold;
	color: #9D816A;
}

.footer ul {
	margin: 20px 0;
}

.footer ul li,
.footer ul li a {
	font-size: 14px;
	color: #aeb0b3;
	line-height: 34px;
}
.footer ul li a:hover{
	color: #9D816A;
}

.footer ul li.wechat {
	text-align: center;
	width: 125px;
	margin-top: 20px;
}

.footer ul li.wechat img {
	width: 100%;
}

.footer ul li.wechat span {
	font-size: 14px;
	color: #aeb0b3;
	line-height: 30px;
}

.footer-logo {
	margin-bottom: 20px;
	max-width: 100%;
}

@-webkit-keyframes textColorFooter {
	0% {
		color: #8199bc;
	}
	100% {
		color: #9D816A;
	}
}
@keyframes textColorFooter {
	0% {
		color: #8199bc;
	}
	100% {
		color: #9D816A;
	}
}

@-webkit-keyframes textColorFooterGray {
	0% {
		color: #9c9c9c;
	}
	100% {
		color: #9D816A;
	}
}
@keyframes textColorFooterGray {
	0% {
		color: #9c9c9c;
	}
	100% {
		color: #9D816A;
	}
}

.footer .copy-text {
	font-size: 14px;
	color: #8199bc;
	line-height: 34px;
	text-align: center;
}

.footer .copy-text a {
	margin-left: 30px;
	color: #8199bc;
}

.footer .copy-text a:hover {
	-webkit-animation: textColorFooter 0.1s ease-in-out forwards;
	animation: textColorFooter 0.1s ease-in-out forwards;
}

.clip2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.footer.gray {
	background: #F9F9F9;
}

.gray .footer-menu-title {
	color: #555 !important;
	font-size: 18px;
    font-weight: bold;
}

.footer.gray ul li,
.footer.gray ul li a {
	color: #676767;
}

.footer.gray ul li a:hover {
	color: #cf000d;
}

.footer.gray .copy-text,
.footer.gray .copy-text a {
	color: #9c9c9c;
}

.footer.gray .copy-text a:hover {
	-webkit-animation: textColorFooterGray 0.1s ease-in-out forwards;
	animation: textColorFooterGray 0.1s ease-in-out forwards;
	color:#03296e;
}

@media (max-width: 767px) {
	.footer .links {
		margin-bottom: 10px;
	}
	.footer .footer_nav {
		margin-top: 10px;
	}
	
	.copy-text{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
	}
}
