/*top menu*/


.top-menu {
	display: flex;
	flex-flow: row ;
	align-items: center;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 56px;
	color: #42403b;
	background: #ffd846;
	padding: 0px 10px;
}

.top-menu .menu-info-top{
	font-size: 11px;
	color:#6b613c;
}
.top-menu .menu-info-bottom{
	font-size: 11px;
	color:#6b613c;
}

.top-menu .menu-center {
	display: flex ;
	flex: 1;
	font-size: 20px;
	font-weight: 700;
	padding: 0px 10px;
	overflow:hidden;
	white-space: nowrap;
}

.top-menu .menu-left {
	width: 40px;
	height: 40px;
	padding: 6px 10px;
	cursor: pointer;
	font-size: 22px;
}

.top-menu .sub-menu-left{
	width: 40px;
	height: 40px;
	padding: 6px 11px;
	cursor: pointer;
	font-size: 22px;
}

.top-menu .menu-right {
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-end;
	padding-right:10px;
}

.top-menu .menu-left:hover {
	background: #daba42;
}

.top-menu .notice-info {
	display: flex;
	height: 32px;
	width: 32px;
	padding: 4px;
	font-size: 20px;
	border-radius: 30px;
	cursor: pointer;
	color: #fefffe;
	margin: 5px;
}

.top-menu .sms {
	display: flex;
	height: 32px;
	width: 32px;
	padding: 6px;
	padding-top: 5px;
	padding-left: 7px;
	font-size: 18px;
	border-radius: 30px;
	cursor: pointer;
	color: #fefffe;
	margin: 5px;
}

.top-menu .sms:hover {
	background: #4a616d;
}

.top-menu .notice-info:hover {
	background: #4a616d;
}

.top-menu .user-info {
	display: flex;
	height: 48px;
	width: 48px;
	padding: 6px;
	font-size: 24px;
	border-radius: 60px;
	cursor: pointer;
	color: #7e7f7e;
	margin: 5px;
	outline: none;
}

.top-menu .user-info:hover {
	background: #4a616d;
}

.top-menu .outer-circle {
	cursor: pointer;
	height: 100%;
	width: 100%;
	border-radius: 60px;
	background: #fefffe;
	overflow: hidden;
}