.wf-click {
	cursor: pointer;
}

.wf-no-data {
	padding: 10px;
	background: #ffffff;
}


.wf-between {
	display: flex;
	flex-direction: row !important;
	justify-content: space-between !important;
	align-items: center !important;
}

.wf-around {
	display: flex;
	flex-direction: row !important;
	justify-content: space-around !important;
	align-items: center !important;
}

.wf-between-bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}

.wf-right-bottom {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
}



.wf-top {
	display: flex;
	flex-direction: row !important;
	justify-content: space-between;
	align-items: flex-start;
}

.wf-bottom {
	display: flex;
	flex-direction: row !important;
	justify-content: space-between;
	align-items: flex-end;
}

.wf-left {
	display: flex;
	flex-direction: row !important;
	justify-content: flex-start;
	align-items: center;
}

.wf-right {
	display: flex;
	flex-direction: row !important;
	justify-content: flex-end;
	align-items: center;
}

.wf-center {
	display: flex;
	flex-direction: row !important;
	justify-content: center;
	align-items: center;
}

/* 分页 */
.wf-page {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
}

.wf-page-list2 {
	width: 48%;
	margin-right: 4%;
}

.wf-page-list3 {
	width: 31%;
	margin-top: 10rpx;
}

.wf-page-list4 {
	width: 23%;
	margin-bottom: 20rpx;
}

.wf-page-list5 {
	width: 18%;
	margin-bottom: 10rpx;
}

.wf-page-list6 {
	width: calc( 100% / 6 );
}


/* 溢出省略号 */
.wf-overflow1 {
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
	
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	word-break: break-all; 
}

.wf-overflow2 {
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
	
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all; 
}

.wf-overflow3 {
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
	
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-all; 
}

.wf-overflow4 {
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
	
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	word-break: break-all; 
}

.wf-overflow5 {
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
	
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	word-break: break-all; 
}