.bg000 {
	background: #000 !important;
}

.bg333 {
	background: #333 !important;
}

.bg666 {
	background: #666 !important;
}

.bg999 {
	background: #999 !important;
}

.bgfff {
	background: #fff !important;
}

.bgeee {
	background: #eee !important;
}

.bgddd {
	background: #ddd !important;
}

.bgccc {
	background: #ccc !important;
}

.bgbbb {
	background: #bbb !important;
}

.bgaaa {
	background: #aaa !important;
}

.br50p {
	border-radius: 50% !important;
}

.br6 {
	border-radius: 6rpx !important;
}

.br10 {
	border-radius: 10rpx !important;
}

.br12 {
	border-radius: 12rpx !important;
}

.br14 {
	border-radius: 14rpx !important;
}

.br20 {
	border-radius: 20rpx !important;
}

.br24 {
	border-radius: 24rpx;
}

.br28 {
	border-radius: 28rpx !important;
}

/* 文字竖行的时候变横行 */
.w-s-nowrap {
	white-space: nowrap !important;
}

/* 强制换行 */
.linefeed {
	word-wrap: break-word !important;
	word-break: normal !important;
	word-break: break-all !important;
}

.disinbk {
	display: inline-block !important;
}

.disbk {
	display: block !important;
}

.pos-rel {
	position: relative !important;
}

.pos-abs {
	position: absolute !important;
}


.flex-col {
	display: flex !important;
	flex-direction: column !important;
}

.flex-row {
	display: flex !important;
	flex-direction: row !important;
}

.justify-start {
	display: flex !important;
	justify-content: flex-start !important;
}

.justify-center {
	display: flex !important;
	justify-content: center !important;
}

.justify-end {
	display: flex !important;
	justify-content: flex-end !important;
}

.justify-evenly {
	display: flex !important;
	justify-content: space-evenly !important;
}

.justify-around {
	display: flex !important;
	justify-content: space-around !important;
}

.justify-between {
	display: flex !important;
	justify-content: space-between !important;
}

.align-start {
	display: flex !important;
	align-items: flex-start !important;
}

.align-center {
	display: flex !important;
	align-items: center !important;
}

/*移动到最后面*/
.align-end {
	display: flex !important;
	align-items: flex-end !important;
}

/*垂直居中，水平居中*/
.flex-row-center {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: center !important;
}

/*垂直居中，水平居中*/
.flex-col-center {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}

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

.flex1 {
	flex: 1 !important;
}

.color000 {
	color: #000 !important;
}

.color333 {
	color: #333 !important;
}

.color666 {
	color: #666 !important;
}

.color999 {
	color: #999 !important;
}

.colorfff {
	color: #fff !important;
}

.coloreee {
	color: #eee !important;
}

.colorddd {
	color: #ddd !important;
}

.colorccc {
	color: #ccc !important;
}

.colorbbb {
	color: #bbb !important;
}

.coloraaa {
	color: #aaa !important;
}

.color55aaff {
	color: #55aaff !important;
}

.color007 {
	color: #0078ff;
}

.fz22 {
	font-size: 22rpx !important;
}

.fz24 {
	font-size: 24rpx !important;
}

.fz26 {
	font-size: 26rpx !important;
}

.fz28 {
	font-size: 28rpx !important;
}

.fz30 {
	font-size: 30rpx !important;
}

.fz32 {
	font-size: 32rpx !important;
}

.fz34 {
	font-size: 34rpx !important;
}

.fz36 {
	font-size: 36rpx !important;
}

.fz38 {
	font-size: 38rpx !important;
}

.fz40 {
	font-size: 40rpx !important;
}

.fz45 {
	font-size: 45rpx !important;
}

.fz50 {
	font-size: 50rpx !important;
}

.fwbold {
	font-weight: bold !important;
}

.fw400 {
	font-weight: 400 !important;
}

.fw500 {
	font-weight: 500 !important;
}

.fw600 {
	font-weight: 600 !important;
}

.lh1 {
	line-height: 1 !important;
}

.lh1_4 {
	line-height: 1.4 !important;
}

.lh1_6 {
	line-height: 1.6 !important;
}

.lh1_8 {
	line-height: 1.8 !important;
}

.lineclamp1 {
	overflow: hidden !important;
	text-overflow: ellipsis !important;

	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 1 !important;
}

.lineclamp2 {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2 !important;
}

.lineclamp3 {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 3 !important;
}

.lineclamp4 {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 4 !important;
}

/*margin距离*/
.mt5 {
	margin-top: 5rpx !important;
}

.mr5 {
	margin-right: 5rpx !important;
}

.mb5 {
	margin-bottom: 5rpx !important;
}

.ml5 {
	margin-left: 5rpx !important;
}

.mt10 {
	margin-top: 10rpx !important;
}

.mr10 {
	margin-right: 10rpx !important;
}

.mb10 {
	margin-bottom: 10rpx !important;
}

.ml10 {
	margin-left: 10rpx !important;
}

.mt15 {
	margin-top: 15rpx !important;
}

.ml15 {
	margin-left: 15rpx !important;
}

.mr15 {
	margin-right: 15rpx !important;
}

.mb15 {
	margin-bottom: 15rpx !important;
}

.mt20 {
	margin-top: 20rpx !important;
}

.ml20 {
	margin-left: 20rpx !important;
}

.mr20 {
	margin-right: 20rpx !important;
}

.mb20 {
	margin-bottom: 20rpx !important;
}

.mt25 {
	margin-top: 25rpx !important;
}

.ml25 {
	margin-left: 25rpx !important;
}

.mr25 {
	margin-right: 25rpx !important;
}

.mb25 {
	margin-bottom: 25rpx !important;
}

.mt30 {
	margin-top: 30rpx !important;
}

.ml30 {
	margin-left: 30rpx !important;
}

.mr30 {
	margin-right: 30rpx !important;
}

.mb30 {
	margin-bottom: 30rpx !important;
}

.mt40 {
	margin-top: 40rpx !important;
}

.ml40 {
	margin-left: 40rpx !important;
}

.mr40 {
	margin-right: 40rpx !important;
}

.mb40 {
	margin-bottom: 40rpx !important;
}

.mt50 {
	margin-top: 50rpx !important;
}

.ml50 {
	margin-left: 50rpx !important;
}

.mr50 {
	margin-right: 50rpx !important;
}

.mb50 {
	margin-bottom: 50rpx !important;
}

.mt60 {
	margin-top: 60rpx !important;
}

.ml60 {
	margin-left: 60rpx !important;
}

.mr60 {
	margin-right: 60rpx !important;
}

.mb60 {
	margin-bottom: 60rpx !important;
}

/*overflow*/
.ofhide {
	overflow: hidden !important;
}

.ofx {
	overflow-x: scroll !important;
}

.ofy {
	overflow-y: scroll !important;
}

.ofxw {
	overflow-x: scroll !important;
}

.ofyw {
	overflow-y: scroll !important;
}

.ofxw::-webkit-scrollbar {
	display: none !important;
}

.ofyw::-webkit-scrollbar {
	display: none !important;
}

/*padding距离*/
.pt10 {
	padding-top: 10rpx !important;
}

.pr10 {
	padding-right: 10rpx !important;
}

.pb10 {
	padding-bottom: 10rpx !important;
}

.pl10 {
	padding-left: 10rpx !important;
}

.pt15 {
	padding-top: 15rpx !important;
}

.pl15 {
	padding-left: 15rpx !important;
}

.pr15 {
	padding-right: 15rpx !important;
}

.pb15 {
	padding-bottom: 15rpx !important;
}

.pt20 {
	padding-top: 20rpx !important;
}

.pl20 {
	padding-left: 20rpx !important;
}

.pr20 {
	padding-right: 20rpx !important;
}

.pb20 {
	padding-bottom: 20rpx !important;
}

.pt25 {
	padding-top: 25rpx !important;
}

.pl25 {
	padding-left: 25rpx !important;
}

.pr25 {
	padding-right: 25rpx !important;
}

.pb25 {
	padding-bottom: 25rpx !important;
}

.pt30 {
	padding-top: 30rpx !important;
}

.pl30 {
	padding-left: 30rpx !important;
}

.pr30 {
	padding-right: 30rpx !important;
}

.pb30 {
	padding-bottom: 30rpx !important;
}

.pt35 {
	padding-top: 35rpx !important;
}

.pl35 {
	padding-left: 35rpx !important;
}

.pr35 {
	padding-right: 35rpx !important;
}

.pb35 {
	padding-bottom: 35rpx !important;
}

.pt40 {
	padding-top: 40rpx !important;
}

.pl40 {
	padding-left: 40rpx !important;
}

.pr40 {
	padding-right: 40rpx !important;
}

.pb40 {
	padding-bottom: 40rpx !important;
}

.pt45 {
	padding-top: 45rpx !important;
}

.pl45 {
	padding-left: 45rpx !important;
}

.pr45 {
	padding-right: 45rpx !important;
}

.pb45 {
	padding-bottom: 45rpx !important;
}

.pt50 {
	padding-top: 50rpx !important;
}

.pl50 {
	padding-left: 50rpx !important;
}

.pr50 {
	padding-right: 50rpx !important;
}

.pb50 {
	padding-bottom: 50rpx !important;
}

.tal {
	text-align: left !important;
}

.tac {
	text-align: center !important;
}

.tar {
	text-align: right !important;
}

.zx1 {
	z-index: 1 !important;
}

.zx2 {
	z-index: 2 !important;
}

.zx3 {
	z-index: 3 !important;
}

.zx5 {
	z-index: 5 !important;
}

.zx10 {
	z-index: 10 !important;
}

.zx20 {
	z-index: 20 !important;
}

.zx30 {
	z-index: 30 !important;
}

/*横排*/
.whsnowrap {
	white-space: nowrap !important;
}

/* 英文换行 */
.wordbw {
	word-wrap: break-word !important;
	word-break: break-all !important;
}