#nav {
	width: 100%;
	height: 100%;
	padding-top: 40px;
}

.nav {
	display: flex;
	justify-content: space-between;
}

.nav-left {
	width: 220px;
	height: 100%;
	background-color: #f1f1f1;
}

.nav-tltle {
	width: 100%;
	height: 75px;
	text-align: center;
	line-height: 75px;
	background: url(../images/titlebg.png) no-repeat;
	color: #fff;
}

.nav-list {
	width: 100%;
	height: 100%;
}

.nav-list-li {
	width: 100%;
	height: 60px;
	line-height: 60px;
	border-bottom: 1px dashed #d8d8a8;
	font-size: 16px;
	position: relative;
}

.nav-list-a{
	display: inline-block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.nav-list-li::before {
	position: absolute;
	content: "";
	left: 20px;
	border-left: 5px solid #51c9fd;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	top: 50%;
	transform: translateY(-50%);
}
.nav-list-a:hover{
	color: #fff;
	background-color: #4e8cc5;
}
.nav-right{
	width: 730px;
	height: 100%;
}
.nav-right-title{
	width: 100%;
	height: 38px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #d8dfe7;
}
.nav-header-title{
	min-width: 100px;
	color: #254f8b;
	border-bottom: 2px solid #254f8b;
	padding-bottom: 2px;
	box-sizing: border-box;
}
.nav-right-list{
	width: 100%;
	height: 100%;
}
.nav-right-li{
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	padding: 0 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #e8eff7;
}
.nav-list-title::before{
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 1px solid #90a8ca;
	border-right: 1px solid #90a8ca;
	transform: rotate(45deg) translateY(-50%);
}
.nav-list-title{
	width: 100%;
	position: relative;
	padding:0 20px;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.nav-list-time{
	flex-shrink: 0;
}