.lz-width-full {
  width: 100%;
}

.lz-relative,
.lz-rela {
	position: relative;
}

.lz-absolute,
.lz-abso {
	position: absolute;
}

.lz-font-xs {
	font-size: 10px;
}

.lz-font-sm {
	font-size: 12px;
}

.lz-font-md {
	font-size: 14px;
}

.lz-font-lg {
	font-size: 16px;
}

.lz-font-xl {
	font-size: 18px;
}

.lz-flex {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.lz-flex-wrap {
	flex-wrap: wrap;
}

.lz-flex-nowrap {
	flex-wrap: nowrap;
}

.lz-align-center {
	align-items: center;
}

.lz-align-top {
	align-items: flex-start;
}

.lz-align-bottom {
	align-items: flex-end;
}

.lz-justify-center {
	justify-content: center;
}

.lz-justify-left {
	justify-content: flex-start;
}

.lz-justify-right {
	justify-content: flex-end;
}

.lz-justify-between {
	justify-content: space-between;
}

.lz-justify-around {
	justify-content: space-around;
}

.lz-text-left {
	text-align: left;
}

.lz-text-center {
	text-align: center;
}

.lz-text-right {
	text-align: right;
}

/*//垂直显示*/
.lz-flex-col {
	display: flex;
	flex-direction: column;
}

.lz-flex-1 {
	flex: 1;
}

.lz-flex-2 {
	flex: 2;
}

.lz-flex-3 {
	flex: 3;
}

.lz-flex-4 {
	flex: 4;
}


.text-ellipsis{
	overflow:hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow:ellipsis;
}

