/* 
f:flex
r:row
l:column
c:center
s:start
b:space-between
p:padding

*/
/* 
9个位置
1.上左  上中 上右
2.中左  中中 中右
3.下左  下中 下右

3个位置
1.上b  中b  下b

3个位置
1.上a  中a  下a 
*/
.fr-c {
	display: flex;
	justify-content: center;
	align-items: center;
}

.fr-c-s {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.fr-c-e {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.fr-s-s {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.fr-s-c {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.fr-s-e {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

.fr-e-s {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.fr-e-c {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.fr-e-e {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.fr-b-s {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.fr-b-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fr-b-e {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.fr-a-s {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.fr-a-c {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.fr-a-e {
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
}

.fl-c-s {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.fl-c-e {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

.fl-s-s {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.fl-s-c {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.fl-s-e {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
}

.fl-e-s {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.fl-e-c {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.fl-e-e {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
}

.fl-b-s {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.fl-b-c {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.fl-b-e {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}

.fl-a-s {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
}

.fl-a-c {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.fl-a-e {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-end;
}

.fl-c {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}




.wrap {
	flex-wrap: wrap;
}

.w-1 {
	width: 100%;
}

.w-5 {
	width: 50%;
}

.h-1 {
	height: 100%;
}

.h-5 {
	height: 50%;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.text-line-1 {
	display: -webkit-box;
	word-break: break-all;
	/*超出文字用省略号代替*/
	text-overflow: ellipsis;
	/*竖直方向的超出和隐藏*/
	-webkit-box-orient: vertical;
	/*设定行数为2*/
	-webkit-line-clamp: 1;
	/*多出部分隐藏*/
	overflow: hidden;
}

.text-line-2 {
	display: -webkit-box;
	word-break: break-all;
	/*超出文字用省略号代替*/
	text-overflow: ellipsis;
	/*竖直方向的超出和隐藏*/
	-webkit-box-orient: vertical;
	/*设定行数为2*/
	-webkit-line-clamp: 2;
	/*多出部分隐藏*/
	overflow: hidden;
}

.text-line-3 {
	display: -webkit-box;
	word-break: break-all;
	/*超出文字用省略号代替*/
	text-overflow: ellipsis;
	/*竖直方向的超出和隐藏*/
	-webkit-box-orient: vertical;
	/*设定行数为2*/
	-webkit-line-clamp: 3;
	/*多出部分隐藏*/
	overflow: hidden;
}

.flex-1 {
	flex: 1;
}

.fl-b-b {
	display: flex;
	align-content: space-between;
	flex-direction: column;
	justify-content: space-between;
}