[v-cloak] {
    display: none !important;
}
/*flex布局模型 begin*/
.ub {
	position: relative;
	display: -webkit-flex !important;
	display: flex !important;
	flex-direction: row;
}

.ub-wrap {
	flex-wrap: wrap !important;
}

.ub-ver {
	flex-direction: column;
}

.ub-as {
	justify-content: flex-start;
}

.ub-ac {
	justify-content: center;
}

.ub-ae {
	justify-content: flex-end;
}

.ub-aa {
	justify-content: space-around;
}

.ub-ps {
	align-items: flex-start;
}

.ub-pc {
	align-items: center;
}

.ub-pe {
	align-items: flex-end;
}

.ub-con {
	width: 100%;
	height: 100%;
}

.ub-fh {
	width: 100%;
}

.ub-fv {
	height: 100%;
}


.ub-f1 {
	flex: 1;
}

.ub-f2 {
	flex: 2;
}

.ub-f3 {
	flex: 3;
}

.ub-f4 {
	flex: 4;
}

/*flex布局模型 end*/

/** B 文本超出部分隐藏 **/

.ut-hide1,
.ut-hide2,
.ut-hide3,
.ut-hide4,
.ut-hide5 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  white-space: normal !important;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  outline: 0;
}

.ut-hide1 {
  display: block;
  white-space: nowrap !important;
}

.ut-hide2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.ut-hide3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.ut-hide4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.ut-hide5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

/** E 文本超出部分隐藏  **/