*{
	padding: 0;
	margin: 0;font-family: "微软雅黑";
}

.fix-title p {
	margin-top: 30px;
	font-size: 28px;
	font-family: "微软雅黑";
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
}

.fix-title p span {
	font-size: 15px;
}

.fix-title p span a {
	color: #999;
	text-decoration: none;
}

.fix-title p span a:hover {
	color: #293977;
}

.fix-content {
	margin-top: 15px;
}

.fix-left {
	float: left;
	width: 20%;
	background: #f9f9f9;
}

.fix-left ul {}

.fix-left ul li {
	font-family: "微软雅黑";
	list-style: none;
	line-height: 3;
	border-bottom: 1px solid #ccc;
	padding-left: 15px;
	font-size: 13px;
	color: #293977;
	cursor: pointer;
}

.fix-left ul li:hover {
	background: #23326A;
	color: #fff;
}

.fix-right {
	float: right;
	width: 78%;
	margin-left: 2%;
}
.box{
	padding-bottom: 150px;
}
.box ul li{
	list-style-type: none;
	line-height: 40px;
	height: 40px;
	font-size: 13px;
}
.box img{
	vertical-align: middle;
	margin-right: 5px;
}

@-webkit-keyframes bounce-up {
	25% {
		-webkit-transform: translateY(5px);
	}
	50%,
	100% {
		-webkit-transform: translateY(0);
	}
	75% {
		-webkit-transform: translateY(-5px);
	}
}

@keyframes bounce-up {
	25% {
		transform: translateY(5px);
	}
	50%,
	100% {
		transform: translateY(0);
	}
	75% {
		transform: translateY(-5px);
	}
}

.animation {
	-webkit-animation: bounce-up 1.4s linear infinite;
	animation: bounce-up 1.4s linear infinite;
}