* {
	padding: 0;
	margin: 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

html {
	-webkit-text-size-adjust: none;
	/*禁止文字自动调整大小，解决chrome浏览器下字体不能小于12px*/
	-webkit-touch-callout: none;
	/*去除长按a链接弹框*/
	font-family: PingFangSC-Regular, sans-serif;
}

.main {
	padding: 0 0.24rem;
}

/* 导航头 */
.navigation {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 50;
	width: 100%;
	height: .9rem;
	line-height: .9rem;
	font-size: .3rem;
	color: #333;
	background: #fff;
	text-align: center;
	font-weight: bold;
	border-bottom: 1px solid #eff3f6;
}

.navigation .main {
	position: relative;
}

.navigation .main .pull-left {
	position: absolute;
	left: .24rem;
	top: 0;
}

.navigation .main .pull-right {
	position: absolute;
	right: .24rem;
	top: 0;
}

/*字体颜色*/

.fontColor {
	color: #D83C39 !important;
}


/*按钮颜色*/

.buttonBg {
	background: #D83C39 !important;
	color: #fff !important;
}

a {
	color: #333;
	text-decoration: none;
}

a:link {
	text-decoration: none;
	/* 指正常的未被访问过的链接*/
}

a:visited {
	text-decoration: none;
	/*指已经访问过的链接*/
}

a:hover {
	text-decoration: none;
	/*指鼠标在链接*/
}

a:active {
	text-decoration: none;
	/* 指正在点的链接*/
}

body {
	font-size: 0.2rem;
	padding-top: .92rem;
}


/*清除number的默认样式,就是那个上下加减的箭头*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

button {
	border: none;
	outline: none;
}


/*禁止textarea拉伸*/

textarea[type="textarea"] {
	resize: none;
}

ul li,
ol li {
	list-style: none;
}

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

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}


/*清除浮动*/

.clearfix {
	*zoom: 1;
}


/* 表格边框和元素间距清空 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.hide {
	display: none;
}

.show {
	display: block;
}


/*单行文字超出省略*/

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


/*多行文字超出省略*/

.moreEllipsis {
	display: box;
	display: -webkit-box;
	display: -moz-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-moz-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	box-orient: vertical;
}

i {
	font-style: normal
}




@font-face {
	font-family: 'iconfont';
	src: url('../font/iconfont.eot');
	src: url('../font/iconfont.eot?#iefix') format('embedded-opentype'),
		url('../font/../font/iconfont.woff2') format('woff2'),
		url('../font/iconfont.woff') format('woff'),
		url('../font/iconfont.ttf') format('truetype'),
		url('../font/iconfont.svg#iconfont') format('svg');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*置灰*/

.grey {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}


/*蒙版*/

.mask {
	width: 100vw;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 500;
	display: none;
}
