@charset "utf-8";
html {
    color: #333;
    /*规定主色调,依据业务场景(非必须)*/
    background: #F6F6F6;
    /*规定主背景,依据业务场景(非必须)*/
    overflow-y: auto;
    /*如果有溢出自动形成滚动条*/
    -webkit-text-size-adjust: 100%;
    /*不想让iPhone横坚屏切换的时候调节文字*/
    -ms-text-size-adjust: 100%;
}

html * { /*所有元素*/
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*去除移动端开发点击事件灰色背景如a标签*/
}

body,html{
    height: 100%;
font-family: PingFangSC-Regular, PingFang SC;
color:#222;
}
article,
aside,
blockquote,
body,
button,
code,
dd,
details,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
input,
legend,
li,
menu,
nav,
ol,
p,
pre,
section,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
}

input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500;
}

ol,
ul {
    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
}

q:after,
q:before {  /*在<q></q>标签之间的文字两头加上引号*/
    content: '';
}

a{
    text-decoration: none;
}

/*input*/
button {
    border: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    -webkit-appearance: button;  /*渲染成button的风格*/
    text-transform: none;
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;  /*输入框提示语的字体样式*/
}

input::-webkit-inner-spin-button {/*解决input的type="number"在部分手机端会出现一个小按钮*/
    -webkit-appearance: none;/*去除系统默认appearance的样式,常用于IOS下移除原生样式*/
}

input::-webkit-outer-spin-button {/*解决input的type="number"在部分手机端会出现一个小按钮*/
    -webkit-appearance: none;
}

textarea {
    vertical-align: top;
}

button,
input {
    line-height: normal;
}

select {
    margin: 0;
    outline: 0;
}

input.fixAKeyboard:focus,
textarea.fixAndroidKeyboard:focus {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-modify: read-write-plaintext-only;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

button,
input[type=button],
input[type=checkbox],
input[type=reset],
input[type=submit],
label {
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

input[type=submit] {
    -webkit-user-modify: read-plaintext-only;
    -moz-user-modify: read-plaintext-only;
    -ms-user-modify: read-plaintext-only;
    -o-user-modify: read-plaintext-only;
    user-modify: read-plaintext-only;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type='search'] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield;
}


/*flex box*/
.flex {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

*,
*:before,
*:after {
    box-sizing: border-box; /*所有元素以border开始计算盒子大小*/
}

.clearfix:after,
.clearfix:before {   /*清除浮动*/
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


.a-flex-rcc {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.a-flex-rcs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}

.a-flex-rfsc {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.a-flex-rfsb {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
}

.a-flex-rfsfs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}

.a-flex-rfsfe {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
}

.a-flex-rfec {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

.a-flex-rfefe {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
}

.a-flex-rsbc {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center
}

.a-flex-rsac {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center
}


.a-flex-rsbfs {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start
}

.a-flex-rsbfb {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: baseline;
}

.a-flex-rsbfe {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end
}

.a-flex-ccc {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

.a-flex-cfsc {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center
}

.a-flex-cfec {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center
}

.a-flex-cfes {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.a-flex-cfefe {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
}


.a-flex-ccfe {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end
}

.a-flex-csbfs {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start
}

.a-flex-csbc {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center
}

.a-flex-csac {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center
}

.a-flex-csas {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
}

.a-flex-ccfs {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start
}

.a-flex-cfsfs {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start
}

.a-flex-cfsfe {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end
}

header.mui-bar-nav{
padding:0 0.4rem;
height:0.97rem;
background-color: #fff;
}

a{
	display: inline-block;
	color:#222;
}

/*顶部弹出菜单*/


.mui-table-view-cell>a:not(.mui-btn){
	font-size:0.34rem;
	line-height: 0.48rem;
	display: flex;
	
}


.mui-table-view-cell>a:not(.mui-btn) div text{
font-size:0.34rem;
line-height: 0.48rem;
color:#222;

}
.mui-table-view-cell>a:not(.mui-btn) div span{
color:#666;
line-height: 0.4rem;
font-size:0.28rem;
}
.mui-table-view-inverted:before{
background-color: #eee;
}

.mui-table-view-cell>a:not(.mui-btn)>span{
font-size:0.54rem;
color:#1575E8;
}
.mui-table-view-cell{
padding:0.57rem 0.4rem 0.35rem 0.4rem;
}
.mui-table-view-inverted:after{
height:0;
}


/*页面页脚*/
.bottombox{
	height: 7.49rem;
	padding-top:0.81rem;
	background:url(../img/bg_bottom.jpg) no-repeat center/cover;
text-align: center;
color:#fff;
}


.bottombox .bottom{
	width:100%;
	text-align: center;

}
.bottombox .bottom img{
	width:1.21rem;
	height:0.62rem;
	margin-bottom: 0.24rem;
}
.bottombox .bottom span{
	font-size:0.18rem;
	color:#979FA9;
	line-height: 0.3rem;
	width: 5.31rem;
	
}
.bottombox .bottom span a{
	color:#979FA9;
}
.bottombox p{
	color:#fff;
	font-size: 0.28rem;
	line-height: 0.4rem;
}
.bottombox .top{
height: 0.48rem;
font-size:0.34rem;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #FFFFFF;
line-height: 0.48rem;
margin-bottom: 0.72rem;
}
.bottombox .center{
	margin-bottom: 0.72rem;
}
.bottombox .center span{
	font-size:0.24rem;
	line-height: 0.33rem;
}
.bottombox .center span a{
	font-size: 0.28rem;
	line-height: 0.3rem;
	font-weight: bold;
	color:#fff;
	margin-left:0.17rem;
}

h6.htitle{
	font-size:0.34rem;
	font-weight: bold;
	line-height: 0.48rem;
	text-align: center;
	width: 100%;
	color:#222;
	
}
h6.htitle span{
	color:#1575E8;
}

.logo{
	width:3.11rem;
}
.mui-icon-bars{
	font-weight: bold;
}
.iconfontbox{
	display: inline-block !important;
}
a{
	outline:none；
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	}
a:active{
	color:#222;
}	