@charset "utf-8";
/* @import url("iconfont/iconfont.css"); */

/* CSS Document */
/*css reset*/
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* Firefox */
	-webkit-box-sizing: border-box;
	/* Safari */
	outline: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	/* For some Androids */
	-webkit-appearance: none;
}

html {
	-webkit-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	/* For some Androids */
	-webkit-appearance: none;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
th,
td,
ul,
li {
	margin: 0;
	padding: 0;
}

body {
	color: #666;
	background-color: #fff;
	outline: none;
	line-height: normal;
	-webkit-appearance: none;
	max-width: 640px;
	margin: 0 auto;
	font-family: -apple-system, "PingFang SC", BlinkMacSystemFont, "Helvetica Neue", STHeiti, "Microsoft Yahei", Tahoma, Simsun, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea,
option,
button {
	font-size: 100%;
	font-weight: normal;
	-webkit-appearance: none;
	font-family: -apple-system, "PingFang SC", BlinkMacSystemFont, "Helvetica Neue", STHeiti, "Microsoft Yahei", Tahoma, Simsun, sans-serif;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
	max-width: 100%;
}

/* img {
	pointer-events: none;
} */

em,
i {
	font-style: normal;
}

ul,
ol,
li {
	list-style: none;
	zoom: 1;
}

a {
	text-decoration: none;
	outline: none;
}

a:active,
a:hover {
	outline: none;
	text-decoration: none;
}

a,
button,
input,
textarea,
select {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background: none;
	border: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

/* 1.去除android a/button/input标签被点击时产生的边框 2.去除ios a标签被点击时产生的半透明灰色背景 */
.clear {
	clear: both;
	height: 0;
}

textarea {
	resize: none;
}

/*禁止改变大小*/
/*解决firefox按钮文字难以垂直居中问题*/
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
	border: none;
	padding: 0;
	-webkit-appearance: none;
}

input,
textarea,
select,
option,
button,
form,
fieldset {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	padding-top: 1px;
	color: #979FB2;
	font-size: .65rem;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	padding-top: 1px;
	color: #999;
	font-size: .6rem;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	padding-top: 1px;
	color: #999;
	font-size: .6rem;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	padding-top: 1px;
	color: #999;
	font-size: .6rem;
}

.fl {
	float: left;
	display: inline;
}

/*浮动bug*/
.fr {
	float: right;
	display: inline;
}

.clearfix:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	clear: both;
}

/*IE6>*/
*html .clearfix {
	*zoom: 1
}

/*IE7>*/
*:first-child+html .clearfix {
	zoom: 1
}

.zoom {
	*zoom: 1
}

.mt10 {
	margin-top: .5rem !important;
}

.mb3 {
	margin-bottom: .3rem !important;
}
.mb10 {
	margin-bottom: .5rem !important;
}

.bc-w {
	background-color: #fff;
}

.f0 {
	font-size: 0;
}

.img-wh {
	display: block;
	width: 100%;
	height: 100%;
}

.circle {
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}

.ellipsis {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ellips_line2,
.ellips_line3,
.ellips_line4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ellips_line2 {
	-webkit-line-clamp: 2;
}

.ellips_line3 {
	-webkit-line-clamp: 3;
}

.ellips_line4 {
	-webkit-line-clamp: 4;
}

.line-top, .line-bot, .line-left, .line-right, .line-circle {
	position:relative;
}
/*横线 上*/
.line-top:before {
	width:200%;
	height:1px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	z-index:9;
	content:"";
	-webkit-transform:scale(0.5);
	-webkit-transform-origin:0 0;
	transform:scale(0.5);
	transform-origin:left top;
	background-color:#ededed;
}
/*横线 下*/
.line-bot:after {
	width:200%;
	height:1px;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	z-index:9;
	content:"";
	-webkit-transform:scale(0.5);
	-webkit-transform-origin:0 0;
	transform:scale(0.5);
	transform-origin:left bottom;
	background-color:#ededed;
}
/*竖线 左*/
.line-left:before {
	width:1px;
	height:200%;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	z-index:9;
	content:"";
	-webkit-transform:scale(0.5);
	-webkit-transform-origin:0 0;
	transform:scale(0.5);
	transform-origin:left top;
	background-color:#ededed;
}
/*竖线 右*/
.line-right:after {
	width:1px;
	height:200%;
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	z-index:9;
	content:"";
	-webkit-transform:scale(0.5);
	-webkit-transform-origin:0 0;
	transform:scale(0.5);
	transform-origin:right top;
	background-color:#ededed;
}

.display-box {
	display: -moz-box;
	/* Firefox */
	display: -webkit-box;
	/* Safari and Chrome */
	display: box;
}

.centerflex {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.display-box-middle {
	display: -moz-box;
	/* Firefox */
	display: -webkit-box;
	/* Safari and Chrome */
	display: box;
	-moz-box-align: center;
	-webkit-box-align: center;
	box-align: center;
}

.display-box-middle-center {
	display: -moz-box;
	/* Firefox */
	display: -webkit-box;
	/* Safari and Chrome */
	display: box;
	-moz-box-pack: center;
	-moz-box-align: center;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	box-pack: center;
	box-align: center;
}

.box-flex-1 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

.box-flex-2 {
	display: block;
	-webkit-box-flex: 2;
	-webkit-flex: 2;
	flex: 2;
}

.box-flex-3 {
	display: block;
	-webkit-box-flex: 3;
	-webkit-flex: 3;
	flex: 3;
}

.box-flex-4 {
	display: block;
	-webkit-box-flex: 4;
	-webkit-flex: 4;
	flex: 4;
}

.text-l {
	text-align: left !important;
}

.text-c {
	text-align: center !important;
}

.text-r {
	text-align: right !important;
}


/******  header  ******/
/* .back-home .home-btn{
	display: inline-block;
	padding: .2rem;
	position: fixed;
	top: .2rem;
	left: .5rem;
	z-index: 99;
}
.back-home .home-btn .mui-icon{
	font-size: 1.4rem;
	color: #131313;
} */

.mui-content {
	max-width: 640px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	background-color: #fff;
	overflow-y: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

/* 技术支持 */
.page-foot{
	width: 100%;
	height: 1.15rem;
	position: relative;
	overflow: hidden;
}
.page-foot ul{
	width: 100%;
	height: 1.15rem;
	padding: 0 .3rem;
	position: absolute;
	left: 0;
	top: 0;
}
.page-foot ul li:first-child{
	width: 11.4rem;
	margin-right: .5rem;
}
.page-foot ul li:last-child{
	width: 5rem;
}
.page-foot ul li a{
	display: block;
	width: 100%;
	height: 1.15rem;
	font-size: 0;
}
