/* 区间排版 */
.wos-align-center {
	text-align: center;
}
.wos-align-left {
	text-align: left;
	justify-content: flex-start;
}
.wos-align-right {
	text-align: right;
	justify-content: flex-end;
}
.wos-align-start{
	align-items: flex-start
}
.wos-align-end{
	align-items: flex-end
}
.wos-align-baseline{
	align-items: baseline
}
.wos-align-middle {
	align-items: center;
}

/* 版式 */

.wos-flex {
	display: flex;
}

.wos-flex-row {
	flex-direction: row;
}
.wos-flex-row-reverse {
	flex-direction: row-reverse;
}

.wos-flex-column {
	flex-direction: column
}

.wos-flex-column-reverse {
	flex-direction: column-reverse
}

.wos-flex-center {
	justify-content: center;
	align-items: center
}

.wos-flex-between {
	justify-content: space-between;
}

.wos-flex-warp {
	flex-wrap: wrap
}

.wos-flex-nowrap {
	flex-wrap: nowrap;
}

.wos-flex-auto {
	/* flex: auto; */
	flex:1;
	
}

.wos-flex-right {
	justify-content: flex-end
}
.wos-font-bold{
	font-weight: bold;
}
/* 字体 */

.wos-font-title{
	font-size: 24px;
}
.wos-font-bg{
	font-size: 18px;
}
.wos-font-md{
	font-size: 16px;
}
.wos-font-sm{
	font-size: 12px;
}


.wos-opacity-5 {
	opacity: 0.5;
}

.wos-page {
	padding: 0 48px 48px 48px;
}


.wos-zindex-1 {
	z-index: 1;
}

.wos-zindex-2 {
	z-index: 100;
}

.wos-zindex-3 {
	z-index: 200;
}

.wos-zindex-4 {
	z-index: 300;
}

.wos-zindex-5 {
	z-index: 400;
}

.wos-zindex-6 {
	z-index: 500;
}

.wos-text-del-line {
	text-decoration: line-through;
}

.wos-width-100 {
	width: 100%;
}
.wos-width-50 {
	width: 50%;
}
.wos-width-48 {
	width: 48%;
}
.wos-zoom-80 {
	transform-origin: 0% 0%;
	transform: scale(0.8, 0.8)
}

.wos-zoom-60 {
	transform-origin: 0% 0%;
	transform: scale(0.6, 0.6)
}


.wos-title-ellipsis-1 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.wos-title-ellipsis-2 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.wos-title-ellipsis-3 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.wos-border-radius {
	border-radius: 12px;
}

.wos-icon{
	width: 36px;
	height: 36px;
}

.wos-color-grey{
	color:#C5C7D3
}
.wos-color-blue{
	color:#5D7DF3;
}
.wos-default-btn{
	width: 100%;
	color:#FFFFFF;
	background-color: #5D7DF3;
	border-radius: 4px;
	padding:10px 0;
	text-align: center;
}

.wos-hand{
	cursor: pointer;
}