@charset "utf-8";
/* @import url("iconfont/iconfont.css"); */

/* CSS Document */
/*css reset*/
@supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
	.mui-bar-tab {
		margin-bottom: constant(safe-area-inset-bottom);
		margin-bottom: env(safe-area-inset-bottom);
	}
}

* {
	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: #979FB2;
	font-size: .65rem;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	padding-top: 1px;
	color: #979FB2;
	font-size: .65rem;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	padding-top: 1px;
	color: #979FB2;
	font-size: .65rem;
}

.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;
}

.mb0 {
	margin-bottom: 0rem;
}

.mb5 {
	margin-bottom: .5rem;
}

.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: #eaeaea;
}

/*横线 下*/
.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: rgba(64, 64, 64, .35);
}

/*竖线 左*/
.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: #eaeaea;
}

/*竖线 右*/
.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: #eaeaea;
}

.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;
	background-color: rgba(0,0,0,.7);
	border-radius: 50%;
	padding: .2rem;
	position: fixed;
	top: 3.5rem;
	left: .5rem;
	z-index: 999;
}
.back-home .home-btn .mui-icon{
	font-size: 1.3rem;
	color: #fff;
} */

.mui-content {
	width: 100%;
	background: #FFFFFF;
	overflow-y: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

/* 导航 */
.footer{
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 999;
	width: 100%;
	height: 2.3rem;
	padding: 0;
	box-shadow: 0 0 .1rem rgba(0, 0, 0, .45);
	border-radius: .25rem .25rem 0 0;
	/* overflow: hidden; */
	background: rgba(255, 255, 255, 1);
}

.footer>ul>li{
	position: relative;
}

.footer>ul>li>a {
	display: block;
	width: 100%;
	height: 2.3rem;
	padding: 0;
	margin: 0 auto;
}

.footer>ul>li>a span {
	display: block;
	width: 2.3rem;
	height: 2.3rem;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
}

.footer>ul>li>a span.nav1 {
	background-image: url(../img/foot-nav1.png);
}

.footer>ul>li>a span.nav2 {
	background-image: url(../img/foot-nav2.png);
}

.footer>ul>li>a span.nav3 {
	background-image: url(../img/foot-nav3.png);
}

.footer>ul>li>a span.nav4 {
	background-image: url(../img/foot-nav4.png);
}

.footer>ul>li>a span.nav5 {
	background-image: url(../img/foot-nav5.png);
}

.footer>ul>li.on>a span.nav1 {
	background-image: url(../img/foot-nav1-on.png);
}

.footer>ul>li.on>a span.nav2 {
	background-image: url(../img/foot-nav2-on.png);
}

.footer>ul>li.on>a span.nav3 {
	background-image: url(../img/foot-nav3-on.png);
}

.footer>ul>li.on>a span.nav4 {
	background-image: url(../img/foot-nav4-on.png);
}

.footer>ul>li.on>a span.nav5 {
	background-image: url(../img/foot-nav5-on.png);
}

/* .footer>ul>li .subnav {
	display: none;
	width: 3.55rem;
	position: fixed;
	left: 0rem;
	bottom: 2.5rem;
	z-index: 11;
}

.footer>ul>li .subnav{
	width: 7.65rem;
	height: 1.7rem;
	padding: 0;
	background: url(../img/subNav-bg.png) no-repeat center top;
	background-size: 100% 100%;
	box-shadow: 0 0 .1rem rgba(51, 51, 51, .15);
	position: fixed;
	left: 9.4rem;
	bottom: 2.35rem;
	z-index: 11;
}
.footer>ul>li .subnav.sub3{
	left: 5.55rem;
}

.footer>ul>li .subnav dd{
	width: 50%;
	height: 1.7rem;
	text-align: center;
	margin: 0;
}

.footer>ul>li .subnav dd a {
	display: block;
	width: 3.7rem;
	height: 1.7rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
}
.footer>ul>li .subnav dd #sub1{
	background-image: url(../img/sub-nav1.png);
}
.footer>ul>li .subnav dd #sub2{
	background-image: url(../img/sub-nav2.png);
	float: right;
}
.footer>ul>li .subnav dd #sub3{
	background-image: url(../img/sub-nav3.png);
}
.footer>ul>li .subnav dd #sub4{
	background-image: url(../img/sub-nav4.png);
	float: right;
}
.footer>ul>li .subnav dd.active #sub1 {
	background-image: url(../img/sub-nav1-on.png);
}
.footer>ul>li .subnav dd.active #sub2 {
	background-image: url(../img/sub-nav2-on.png);
}
.footer>ul>li .subnav dd.active #sub3 {
	background-image: url(../img/sub-nav3-on.png);
}
.footer>ul>li .subnav dd.active #sub4 {
	background-image: url(../img/sub-nav4-on.png);
} */
