/*
========================
	popover菜单弹窗 
=========================
*/
.aui-popover{
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
}
.aui-popover-main{
	width: auto;
	min-width: 150px;
	max-width: -webkit-calc(100vw - 40px);
	max-width: calc(100vw - 40px);
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(150,150,150,.5);
	-moz-animation: aui-fade-in .2s ease-out forwards;
	-ms-animation: aui-fade-in .2s ease-out forwards;
	-webkit-animation: aui-fade-in .2s ease-out forwards;
	animation: aui-fade-in .2s ease-out forwards;
	position: absolute;
	background: #FFFFFF;
	z-index: 999;
}
.aui-popover-items{
	width: 100%;
	position: relative;
	z-index: 999;
}
.aui-popover-item{
	width: 100%;
	padding: 13px 15px;
	max-height: 55px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: normal;
	box-sizing: border-box;
}
.aui-popover-item:first-child{
	border-radius: 5px 5px 0 0;
}
.aui-popover-item:last-child{
	border-radius: 0 0 5px 5px;
}
.aui-popover-item:last-child:after{
	display: none;
}
.aui-popover-item:after{
	width: -webkit-calc(100% - 15px);
	width: calc(100% - 15px);
	left: 15px;
}
.aui-popover-item span{
	height: 100%;
	line-height: 30px;
	display: inline-block;
	font-size: 16px;
	color: #333333;
	vertical-align: middle;
}
.aui-popover-item img{
	height: 25px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 0 0;
}
.aui-popover-item i{
	font-size: 25px;
	display: inline-block;
	margin: 0 10px 0 0;
	vertical-align: middle;
}
.aui-popover-triangle{
	width: 15px;
	height: 15px;
	background: #FFF;
	border-radius: 2px;
	transform: rotate(45deg);
	position: absolute;
	bottom: -6px;
	left: 46%;
	z-index: 998;
}
