.hs-position-relative{
	position: relative;
}
.width_100{
	width: 100%;
}
.height_100{
	height: 100%;
}
.hs-img{
	width: 100%;
	height: 100%;
}
// 定义字体(rpx)单位,大于或等于20的都为rpx单位字体
@for $i from 40 through 100 {
	.u-font-#{$i} {
		font-size: $i + rpx;
	}
}
// 宽度设置
@for $i from 0 through 1000 {
	.hs-width-#{$i}{
		width: $i + rpx;
	}
}
// 高度设置
@for $i from 0 through 1000 {
	.hs-height-#{$i}{
		height: $i + rpx;
	}
}
// 字体加粗设置
@for $i from 500 through 900 {
	.hs-weight-#{$i}{
		font-weight: $i;
	}
}
// 图片大小设置
@for $i from 0 through 900 {
	.hs-img-#{$i}{
		width: $i + rpx;
		height: $i + rpx;
	}
}

.color-placeholder{
	color: #c5c9cf;
}