@charset "UTF-8";

.text-ellipsis {
	width: 95%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: justify;
	overflow: hidden;
	word-wrap: break-word;
}

/* Simple Pro 简
 * Author 芥末
 * 2018-09-27
 */

/* 含有阴影 */
.has-shadow {
	box-shadow: 3px 5px 7px 3px rgba(29, 29, 31, 0.09);
}

/* 含有边框 */
.has-border {
	border: 1px solid #dcdee2;
}

.has-radius {
	border-radius: 4px;
}

.has-break {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 混合颜色 */
/*  */
.is-100vh {
	height: 100vh;
}

.is-flex {
	display: flex;
}

/*  从左到右的水平方向为主轴*/
.is-row {
	flex-direction: row;
}

/*  从右到左的水平方向为主轴*/
.is-row-reverse {
	flex-direction: row-reverse;
}

/*  从下到上的垂直方向为主轴*/
.is-column-reverse {
	flex-direction: column-reverse;
}

/*  从上到下的垂直方向为主轴*/
.is-column {
	flex-direction: column;
}

/*  从右到左*/
.is-justify-end {
	justify-content: flex-end;
}

.is-justify-center {
	justify-content: center;
}

/*  从左到右*/
.is-justify-start {
	justify-content: flex-start;
}

/*  两端对齐*/
.is-justify-between {
	justify-content: space-between;
}

.is-justify-around {
	justify-content: space-around;
}

.is-align-start {
	align-items: flex-start;
}

.is-align-center {
	align-items: center;
}

.is-align-end {
	align-items: flex-end;
}

.is-align-stretch {
	align-items: stretch;
}

.is-response {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

/*垂直左右居中 */
.is-justify-align-center {
	display: flex;
	justify-content: center;
	align-items: Center;
}

/*左右居中 */
.is-justify-content-center {
	display: flex;
	justify-content: center;
}

/*上下居中 */
.is-align-items-center {
	display: flex;
	align-items: Center;
}


/*自适应换行 */
.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}



/*列表加载 */
.flex-startList {
	align-content: flex-start;
	flex-flow: row wrap;
}


/*颜色 */
/*背景颜色 */
.is-background-white {
	background-color: #FFFFFF;
}

.is-border-bottom {
	border-bottom: 1px solid rgb(239, 239, 239);


}

.is-border-top {
	border-top: 1px solid rgb(239, 239, 239);


}

/*固定底部 */
.is-position-fixed-bottom {

	position: fixed;
	bottom: 25px;
	left: 0;
	right: 0;
	z-index: 600;
}

/*固定顶部 */
.is-position-fixed-top {

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
