* {
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none;
}

html,
body {
	width: 100%;
	background-color: #fff;
	/* font-size: 0; */
	overflow-x: hidden;
}

img {
	border: none;
	width: 100%;
}

a {
	text-decoration: none;
	text-shadow: none;
	font-weight: normal;
	color: #000000;
}

.color-f {
	color: #fff;
}

.color-0 {
	color: #000;
}

.color-1b {
	color: #1B1B1B;
}

.color-origin {
	color: #EC6B1A;
}

.margin-top-20 {
	margin-top: 0.2rem;
}

.margin-top-25 {
	margin-top: 0.25rem;
}

.margin-top-30 {
	margin-top: 0.3rem;
}

.margin-top-48 {
	margin-top: 0.48rem;
}

.margin-bottom-18 {
	margin-bottom: 0.18rem;
}

.margin-bottom-20 {
	margin-bottom: 0.2rem;
}

.margin-bottom-27 {
	margin-bottom: 0.27rem;
}

.margin-bottom-30 {
	margin-bottom: 0.3rem;
}

.margin-bottom-60 {
	margin-bottom: 0.6rem;
}

.padding-top-48 {
	padding-top: 0.48rem;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.flex-centers {
	align-content: center;
	align-items: center;
}

.flex-centerss {
	justify-content: center;
	-webkit-justify-content: center;
}

.flex-centersss {
	-webkit-align-items: center;
	align-items: center;
}

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

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

.flex-column {
	flex-direction: column;
	-webkit-flex-direction: column;
}

.flex-around {
	justify-content: space-around;
}

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


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

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

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


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

.flex-img {
	flex: none;
}

.text-wrap {
	word-wrap: break-word;
	word-break: break-all;
}

.text-hiddle {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/*超出1行隐藏  */
.flex-hidden {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

/*超出两行隐藏  */

.flex-hiddens {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/*超出3行隐藏  */
.flex-hiddenss {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.text-center {
	text-align: center;
}

.flex-box {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-moz-box-flex: 1.0;
	/* Firefox */
	-webkit-box-flex: 1.0;
	/* Safari 和 Chrome */
	box-flex: 1.0;
}

.flex-strech {
	align-items: stretch;
}

.positionR {
	position: relative;
}

.positionA {
	position: absolute;
}

.bottom-container {
	position: fixed;
	bottom: 0;
	left: 0;
}

.width-max {
	width: 100%;
}