/*
	爱妻常用样式 v1
	创建人：Luo Qiang
	创建时间：2018-09-17
*/
@charset "utf-8";

/*图片垂直居中显示*/
.aichen-img-middle{
	overflow: hidden;
	position: relative
}
.aichen-img-middle > img{
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto
}
/*flex定位*/
.aichen-center {
	display: flex;
	align-items: center;
	justify-content: center
}
.aichen-start-between {
	display: flex;
	align-items: flex-start;
	justify-content: between
}

/*显示隐藏*/
.aichen-flow-hide{
	overflow: hidden
}
.aichen-none{
	display: none
}
.aichen-block{
	display: block
}
.aichen-visible{
	visibility: visible
}
.aichen-hidden{
	visibility: hidden
}

/*浮动相关操作*/
.aichen-fl{
	float: left
}
.aichen-fr{
	float: right
}
.aichen-cl:after{
	display: block;
	content: '';
	clear: both
}
.aichen-cl{
	*zoom: 1
}

/*单行超出字体省略号显示*/
.aichen-text-flow-hide{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

