@charset "utf-8";

.portalHeader {
	width: 100%;
	min-width: 500px;
	height: 40px;
	box-shadow: 0px 2px 9px 1px rgba(155, 176, 200, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: url(../image/header_bg.png) no-repeat right;
	background-color: #FFFFFF;
}
.listmenu {
	float: left;
	display: inline-block;
	margin-left: 30px;
}
.listmenu ul li {
	float: left;
	padding: 0 20px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 18px;
	color: #999;
	font-weight: bold;
	transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
}

.listmenu ul li:hover,
.listmenu ul li.activeOn {
	/* border-bottom: 5px solid #1D42C2; */
}
.listmenu ul li a {
	display: block;
	width: 100%;
	height: 100%;
	color: #999;
	transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
}
.listmenu ul li:hover a,
.listmenu ul li.activeOn a {
	color: #1D42C2;
}

.info {
	display: inline-block;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.info .userInfo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
} 
.info .userInfo .userInfo_name {
	max-width: 200px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.info .userInfo .userInfo_icon {
	
} 
.info .userInfo .userInfo_icon:hover {
	cursor: pointer;
	color: #1D42C2;
} 

.userIcon-tip {
	display: flex;
	align-items: center;
	position: relative;
	margin-right: 20px;
}
.userIcon-tip .tips-number {
	position: absolute;
	top: -12px;
	right: -10px;
	width: 26px;
	height: 26px;
	background: linear-gradient(-45deg, #F10505, #FD9494);
	border-radius: 50%;
	font-style: normal;
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	line-height: 26px;
	text-align: center;
}

.userInfo-img {
	cursor: pointer;
}

.userInfo-dropdown {
	
}
.userInfo-dropdown .iconfont {
	color: #1D42C2;
}
.userInfo-dropdown .userInfo-dropdown_name {
	display: inline-block;
	vertical-align: top;
	line-height: 22px;
	margin-top: 7px;
}
.userInfo-dropdown .userInfo-dropdown_name .userInfo-dropdown_mainName {
	color: #333;
	min-width: 150px;
	max-width: 200px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.userInfo-dropdown .userInfo-dropdown_name .userInfo-dropdown_detailName {
	color: #666;
	min-width: 150px;
	max-width: 200px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}