* {
	margin: 0;
	padding: 0;
	list-style: none;
	border: medium none;
	outline: none;
	/*去除ios手机点击时有阴影*/
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	touch-action: pan-y;
}

html,
body {
	/*为了解决rem设置的fontSize对行内元素的影响必须设置*/
	/* font: 12px "思源黑体"; */
	font-size: 12px;
	font-family: PingFangSC-Regular, PingFang SC;
	height: 100%;
	width: 100%;
	color: #1d1d1d;
	background-color: #fff;
	-webkit-text-size-adjust: none;
	/*在苹果手机内容滚动的时候不会卡顿*/
	-webkit-overflow-scrolling: touch;
}

/*旋转屏幕时，字体大小调整的问题*/
html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-text-size-adjust: 100%;
}

img {
	display: block;
	border: none;
	vertical-align: bottom;
	width: 100%;
}

input {
	outline: none;
	border: none 0;
	-webkit-appearance: none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

select,
select:focus {
	outline: none;
}

input,
textarea,
select,
button {
	background: none;
	border: none;
	outline: none;
	line-height: normal;
	-webkit-appearance: none;
	font: 12px 'Microsoft YaHei', '宋体', Heiti SC, HelveticaNeue, Helvetica;
}

input[type=button],
input[type=radio],
input[type=checkbox],
select {
	-webkit-appearance: none;
}

.clear:after {
	clear: both;
	content: '';
	display: block;
}

.lf {
	float: left;
}

.rt {
	float: right;
}

/*多行省略*/
.overflow-two {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.overflow-three {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.overflow-four {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

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

/*外边框溢出*/
.overflow:before {
	content: '';
	display: table;
}

.column-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -moz-box;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-moz-box-pack: center;
	-moz-box-align: center;
	display: -webkit-box;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}


/* flex 弹性盒子 */


/* 行 居中-居中 */

.flex-row-center-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}


/* 竖 居中-居中 */

.flex-column-center-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.flex-column-between-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.flex-column-start-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
}


/* 行-左对齐-居中 */

.flex-row-start-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
}

/* 行-左对齐 */

.flex-row {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
}
/* 行-右对齐-居中 */

.flex-row-end-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
}


/* 行-左对齐-上对齐*/

.flex-row-start-start {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}


/* 行-左对齐-下对齐*/

.flex-row-start-end {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}


/* 行-两端对齐-居中 */

.flex-row-between-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}


/* 竖-两端对齐-居中 */

.flex-column-between-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}


/* 行-两端对齐-左对齐 */

.flex-row-between-start {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}


/* 竖-两端对齐-左对齐 */

.flex-column-between-start {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}


/* 行-两端对齐-右对齐 */

.flex-row-between-end {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}


/* 竖-两端对齐-右对齐 */

.flex-column-between-end {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}


/* 行-两端分割对齐-居中对齐 */

.flex-row-around-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: center;
    -webkit-align-items: center;
}


/* 竖-两端分割对齐-居中对齐 */

.flex-column-around-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: center;
    -webkit-align-items: center;
}


/* 行-两端分割对齐-左对齐 */

.flex-row-around-start {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}


/* 竖-两端分割对齐-左对齐 */

.flex-column-around-start {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}


/* 行-两端分割对齐-右对齐 */

.flex-row-around-end {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}


/* 竖-两端分割对齐-右对齐 */

.flex-column-around-end {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}
.flex-column{
     /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.flex-wrap-start {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.flex-wrap-start-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.flex-column-end-center {
    /*旧弹性盒*/
    /*Internet Explorer 10*/
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    /*Firefox*/
    display: -moz-flex;
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
}

.flex-direction-row {
	-webkit-box-direction: normal;
	-webkit-box-orient: horizontal;
	-moz-box-direction: normal;
	-moz-box-orient: horizontal;
	flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
}

/*居中*/

.flex-center {
	/*旧弹性盒*/
	/*Internet Explorer 10*/
	display: -ms-flexbox;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	/*Firefox*/
	display: -moz-flex;
	display: -moz-box;
	-moz-box-pack: center;
	-moz-box-align: center;
	display: -webkit-box;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}

.flex-around {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -moz-box;
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	align-items: center;
	-webkit-align-items: center;
}

.flex-row-end {
	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;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	/* 09版 */
	-webkit-box-orient: horizontal;
	/* 12版 */
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.flex-row-center {
	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;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	/* 09版 */
	-webkit-box-orient: horizontal;
	/* 12版 */
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	/* 09版 */
	-webkit-box-align: center;
	/* 12版 */
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.flex-col-center {
	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;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	/* 09版 */
	-webkit-box-orient: vertical;
	/* 12版 */
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	/* 09版 */
	-webkit-box-align: center;
	/* 12版 */
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.flex-col-between {
	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;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	/* 09版 */
	-webkit-box-orient: vertical;
	/* 12版 */
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/* flex兼容性 */
/* 父元素-横向排列（主轴） */
.flex-h {
	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;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	/* 09版 */
	-webkit-box-orient: horizontal;
	/* 12版 */
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

/* 父元素-纵向排列（主轴） */
.flex-v {
	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;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	/* 09版 */
	-webkit-box-orient: vertical;
	/* 12版 */
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.flex-hr {
	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;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	/* 09版 */
	-webkit-box-orient: horizontal;
	/* 12版 */
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.flex-hc {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.flex-hb {
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.flex-ha {
	-webkit-box-pack: space-around;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
}

.flex-he {
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.flex-vc {
	/* 09版 */
	-webkit-box-align: center;
	/* 12版 */
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.flex-vs {
	/* 09版 */
	-webkit-box-align: flex-start;
	/* 12版 */
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

.flex-ve {
	/* 09版 */
	-webkit-box-align: flex-end;
	/* 12版 */
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

/* 父元素-横向换行 */
.flex-hw {
	/* 09版 */
	/*-webkit-box-lines: multiple;*/
	/* 12版 */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.head .hotline,
.head .right-map,
.mailiImg {
	width: 0.56rem;
	height: 0.56rem;
}

.head .right-map {
	right: 1rem;
}

.flex1 {
	flex: 1;
	-webkit-flex: 1;
}

/* 公共头部样式 */
.wrap {
	width: 100%;
	height: 100vh;
	background: #F8F8F8;
}

.top_head {
	height: .88rem;
	background: #fff;
	padding: 0 .32rem;
	font-size: .34rem;
	color: #333333;
	line-height: .88rem;
	text-align: center;
	overflow: hidden;
	z-index: 100;
}

.top_head_left {
	float: left;
}

.top_head_right {
	float: right;
	width: .4rem;
	height: .4rem;
}

.main {
	overflow-y: auto;
}

.head {
	background: #FFFFFF;
	width: 100%;
	height: .88rem;
	position: relative;
	z-index: 103;
}

.left-icon,
.right-icon {
	width: .4rem;
	height: .4rem;
	position: absolute;
	z-index: 10;

}

.head-left {
	position: absolute;
	width: 1.58rem;
	height: 0.56rem;
	border-radius: 0.3rem;
	border: 2px solid #ECECEC;
	top: 0.16rem;
	left: 0.24rem;
	padding: 0.14rem 0;
}

.right-icon {
	top: .16rem;
	right: .24rem;
}
.v2_searchIcon{
	width: .44rem;
	height: .44rem;
	right:1.24rem;
	top: .24rem;
}
.left-icon {
	top: .24rem;
	left: .2rem;
}

.page-title ,.page-white-title{
	font-size: .34rem;
	color: #333333;
	line-height: .88rem;
	text-align: center;
}
.page-white-title{
	color: #ffffff;
}
.waitImg {
	width: 0.34rem;
	height: 0.34rem;
	margin-right: 0.12rem;
}

#mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

.rule_con {
	width: 100%;
	background-color: #ffffff;
	border-radius: 0.2rem 0.2rem 0 0;
	padding: 0.3rem;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 104;
	display: none;
	max-height: 90vh;
	overflow-y: scroll;
}

.rule_icon {
	width: 0.64rem;
	height: 0.12rem;
	background: #DDDDDD;
	border-radius: 0.06rem;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
}

.showBox {
	display: block !important;
}

.backImg {
	width: 0.3rem;

}

.homeImg {
	width: 0.45rem;

}

.head-left a:first-child {
	border-right: 2px solid #ECECEC;
}

/* 弹框外层样式 */
.modal_notice {
	padding: 0.3rem;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 0.08rem;
	z-index: 104;
	width: 90%;
	display: none;
}

.modal_notice h4 {
	font-size: 0.34rem;
	color: #333333;
	text-align: center;
	padding-bottom: 0.34rem;
	word-break: break-all;
}

.modal_notice p {
	text-align: center;
	font-size: 0.3rem;
	max-height: 3rem;
	overflow-y: scroll;
	margin-bottom: 0.52rem;
	word-break: break-all;
}

.modal_notice button {
	width: 100%;
	height: 0.84rem;
	border-radius: 0.5rem;
	background-color: #FF7D0D;
	font-size: 0.3rem;
	text-align: center;
	color: #ffffff;
}

.modal_notice>div>.modal_notice_btn_left {
	background-color: #FFFFFF;
	border: 1px solid #333333;
	color: #333333;
	margin-right: 0.14rem;
}

.borderTopno {
	border-top: 0 !important;
}

.modal_tip {
	width: 3rem;
	height: 3rem;
	border-radius: 0.08rem;
	background-color: #111111;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 104;
	font-size: 0.34rem;
	color: #ffffff;
	display: none;
}

.modal_tip div {
	height: 100%;
}

.modal_tip img {
	width: 0.96rem;
	height: 0.96rem;
	margin-bottom: 0.36rem;
}

.service_hotline {
	width: 90%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 0.08rem;
	height: 4.4rem;

}

.service_hotline_title {
	padding: 0.5rem 0 0.32rem;
	font-size: 0.34rem;
	color: #333333;
	text-align: center;
}

.service_hotline_btn_left,
.service_hotline_btn_right {
	width: 100%;
	height: 0.84rem;
	font-size: 0.32rem;
	border-radius: .5rem
}

.service_hotline_btn_left {
	background: #FFFFFF;
	border: 1px solid #333333;
	color: #333333;
	margin-right: 0.14rem;
}

.service_hotline_btn_right {
	background-color: #FF7D0D;
	color: #ffffff;
}

.service_hotline_phone {
	color: #333333;
	font-size: 0.34rem;
	text-align: center;
	padding: 0.18rem 0 0.84rem;
}

.service_hotline_btn_right a {
	color: #ffffff;
}

/* 两端对齐 */
.flex-between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -moz-box;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-moz-box-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-moz-box-align: center;
	align-items: center;
	-webkit-align-items: center;
}

.orange_color {
	color: #FF8345;
}

/* 无数据 */
.noData {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #ffffff;
	z-index: 101;
	left: 0;
	top: 0;
}

.noData img {
	width: 4.8rem;
	height: 3.2rem;
}

.noData p {
	font-size: 0.34rem;
	font-weight: 400;
	color: #999999;
	line-height: 0.48rem;
	margin-top: 0.78rem;
}

.bg_white {
	background-color: #ffffff;
}

.noShow {
	display: none;
}

/*20221110*/
.menu_sign {
	background: url("../images/icon1.png") no-repeat center center;
	background-size: 0.48rem 0.12rem;
	position: absolute;
	top: 0;
	right: 0;
	width: 0.88rem;
	height: 0.88rem;
}
.menu_box {
	position: absolute;
	right: 0.2rem;
	top: 0.88rem;
	background-color: #fff;
	border-radius: 0.20rem;
	border: 1px solid #E3E3E3;
	padding: 0 0.3rem;
	font-size: 0.30rem;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #333333;
	line-height: 0.44rem;
	z-index: 500;
	display: none;
}
.menu_box .menu_line {
	padding: 0.28rem 0.24rem;
	border-bottom: 1px solid #E2E2E2;
	display: flex;
	width: 1.7rem;
	text-align: justify;
}
.menu_box .menu_line:last-child {
	border-bottom: medium none;
}
.menu_box .menu_line img {
	width: 0.44rem;
	height: 0.44rem;
	margin-right: 0.1rem;
}
.login_after {
	background: url("../images/icon5.png") no-repeat;
	background-size: 100% 100%;
	padding: 0.16rem 0.3rem 0.26rem;
	margin-bottom: 0.3rem;
}
.login_after .maili_num {
	font-size: 0.24rem;
	color: #FF732C;
	line-height: 0.34rem
}
.login_after .maili_num span {
	font-weight: bold;
	font-size: 0.64rem;
	line-height: 0.9rem;
	padding-right: 0.1rem;
}
.login_after .user_box {
	display: flex;
	align-items: center;
}
.login_after .user_box .pic {
	width: 0.44rem;
	height: 0.44rem;
	border-radius: 0.1rem;
	margin-right: 0.1rem;
}
.login_after .user_box .name {
	font-size: 0.24rem;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #333333;
	line-height: 0.34rem;
}
.login_after .mtop {
	margin-top: -0.2rem;
}
.login_after .btn_record {
	background: url("../images/icon6.png") no-repeat right center;
	background-size: 0.24rem 0.28rem;
	padding-right: 0.3rem;
	font-size: 0.24rem;
	color: #FF9059;
	line-height: 0.34rem;
}
.login_after .btn_more,.login_after .btn_more_check {
	border-radius: 0.08rem;
	border: 1px solid #FF732C;
	font-size: 0.24rem;
	color: #FF732C;
	line-height: 0.44rem;
	padding: 0 0.15rem;
}
.login_after .btn_more_check {
	border: 1px solid #F44142;
	color: #F44142;
}
.marR16{
	margin-right: .16rem;
}
.set_box {
	padding: 0 0.3rem;
}
.set_line {
	border-bottom: 1px solid #ECECEC;
	font-size: 0.30rem;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #333333;
	line-height: 0.52rem;
	padding: 0.36rem 0;
}
.set_icon {
	width: 0.28rem;
	margin-left: 0.1rem;
}
.testswitch {
    position: relative;
    width: 1rem;
    margin: 0;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select: none;
}

.testswitch {
    position: relative;
    float: left;
    width: 1rem;
    margin: 0;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select: none;
}

.testswitch .testswitch-checkbox {
    display: none;
	-webkit-appearance: checkbox;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.testswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #F3F3F3;
    border-radius: 20px;
}

.testswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.testswitch-inner::before, .testswitch-inner::after {
    display: block;
    float: right;
    width: 50%;
    height: 0.5rem;
    padding: 0;
    line-height: 0.5rem;
    font-size: 0.24rem;
    color: white;
    font-family:
    Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.testswitch-inner::after {
    content: attr(data-on);
    /* padding-left: 10px; */
    background-color: #FF8345;
    color: #FFFFFF;
}

.testswitch-inner::before {
    content: attr(data-off);
    /* padding-right: 10px; */
    background-color: #F3F3F3;
    color: #999999;
    text-align: right;
}

.testswitch-switch {
    position: absolute;
    display: block;
    width: 0.42rem;
    height: 0.42rem;
    margin: 0;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 0px rgba(204,204,204,0.5);
    top: 0.06rem;
    bottom: 0;
    right: 0.52rem;
    /* border: 2px solid #999999; */
    border-radius: 0.48rem;
    transition: all 0.3s ease-in 0s;
}

.testswitch-checkbox:checked + .testswitch-label .testswitch-inner {
    margin-left: 0;
}

.testswitch-checkbox:checked + .testswitch-label .testswitch-switch {
    right: 0.06rem;
}
.testswitch-click {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.set_psd_box {
	padding: 0.36rem 0.3rem;
}
.set_psd_prompt {
	font-size: 0.30rem;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #333333;
	line-height: 0.42rem;
	padding-bottom: 0.2rem;
}
.set_psd_line {
	background-color: #F8F8F8;
	padding: 0.2rem;
	border-radius: 0.10rem;
	margin-bottom: 0.2rem;
}
.set_psd_box .set_psd_fill {
	flex: 1;
	width: 100%;
	font-size: 0.28rem;
	color: #333333;
	line-height: 0.6rem;
}
.set_psd_box .btn_psd_code {
	font-size: 0.28rem;
	color: #333333;
	line-height: 0.6rem;
	border-left: 1px solid #ECECEC;
	width: 2.5rem;
	text-align: center;
}
.set_psd_box .set_psd_tit {
	font-size: 0.30rem;
	color: #333333;
	line-height: 0.42rem;
	margin-bottom: 0.2rem;
	font-weight: bold;
}
.set_psd_box .set_psd_txt {
	font-size: 0.24rem;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #999999;
	line-height: 0.34rem;
	margin-bottom: 0.2rem;
}
.fixed_btm_box {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0.3rem;
}
.btn_confirm {
	width: 100%;
	height: 0.84rem;
	background: #FF7D0D;
	border-radius: 0.50rem;
	font-size: 0.32rem;
	color: #FFFFFF;
	line-height: 0.84rem;
	text-align: center;
}
.prompt_sign {
	padding-bottom: 0.3rem;
	text-align: center;
}
.prompt_sign span {
	display: flex;
	align-items: center;
	/* width: 3.36rem; */
	height: 0.52rem;
	background: #F8F8F8;
	border-radius: 0.10rem;
	font-size: 0.24rem;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #999999;
	line-height: 0.52rem;
	text-align: center;
	margin: 0 auto;
	padding: 0 0.3rem;
	width: 4rem;
	box-sizing: border-box;
}
.prompt_sign span img {
	width: 0.3rem;
	margin: 0 0.1rem 0 0;
	transform: rotate(180deg);
}
.search_box {
	padding:  0 0 0 0.84rem;
	width: 100%;
	box-sizing: border-box;
	height: .88rem;
	padding: 0.08rem 0 0.08rem 0.9rem;
	display: flex;

}
.search_box .search_fill {
	flex: 1;
	width: 100%;
	background: #F8F8F8;
	border-radius: 0.10rem;
	box-sizing: border-box;
	padding:0 0.2rem;
	font-size: 0.30rem;
	color: #333333;
	line-height: 0.72rem;

}
.search_box .search_btn {
	font-size: 0.30rem;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #999999;
	line-height: 0.72rem;
	padding: 0 0.3rem;
}
.fuzzy_search_results {
	padding: 0 0.3rem;
}
.fuzzy_search_line {
	border-bottom: 1px solid #F1F1F1;
	padding: 0.3rem 0;
	font-size: 0.30rem;
	color: #333333;
	line-height: 0.42rem;
}
.fuzzy_search_line:last-child {
	border-bottom: medium none;
}
.page_box {
	width: 100%;
	height: 100%;
}
.modal_notice .modal_notice_tit {
	min-height: 1rem;
	font-size: 0.34rem;
}
.new_sign {
	background: url("../images/menu.png") no-repeat center center;
	background-size: 0.44rem 0.44rem;
}
.cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1000;
}
.pop_guide_box {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: none;
	z-index: 1010;
}
.guide_txt {
	font-size: 0.36rem;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 0.50rem;
	letter-spacing: 1px;
	position: absolute;
	left: 2.28rem;
	top: 2.22rem;
}
.weui-picker-modal .picker-items{
	-webkit-mask-box-image:initial;
}
.msg_sign {
	background: url("../images/msg.png") no-repeat center 0.15rem;
	background-size: 0.54rem 0.54rem;
	width: 0.88rem;
	height: 0.88rem;
	position: absolute;
	top: 0;
	right: 0.88rem;
}
.msg_new {
	width: 0.1rem;
	height: 0.1rem;
	border-radius: 50%;
	background: #FF7D0D;
	position: absolute;
	right: 0.24rem;
	top: 0.20rem;
}
.gray_bg {
	background: #F8F8F8;
}
.activity_list_box {
	padding: 0.2rem 0.3rem;
}
.activity_list_line {
	border-radius: 0.2rem;
	background: #FFF;
	padding: 0.16rem;
	margin-bottom: 0.2rem;
}
.activity_top {
	position: relative;
}
.activity_pic {
	width: 100%;
	border-radius: 0.2rem;
}
.activity_underway {
	border-radius: 0.4rem;
	border: 0.5px solid #FFF;
	background: rgba(255, 125, 13, 0.90);
	position: absolute;
	top: 0.08rem;
	right: 0.08rem;
	font-size: 0.24rem;
	line-height: 0.4rem;
	padding: 0 0.2rem;
	color: #fff;
}
.activity_ended {
	border-radius: 0.4rem;
	border: 0.5px solid transparent;
	background: rgba(0, 0, 0, 0.50);
	position: absolute;
	top: 0.08rem;
	right: 0.08rem;
	font-size: 0.24rem;
	line-height: 0.4rem;
	padding: 0 0.2rem;
	color: #fff;
}
.activity_txt {
	color: #000;
	font-family: PingFang SC;
	font-size: 0.28rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	line-height: 0.4rem;
	padding-top: 0.24rem;
}
.top_right {
	position: absolute;
	right: 0.1rem;
	top: 0;
}
.top_menu, .top_msg  {
	display: inline-block;
	width: 0.8rem;
	height: 0.88rem;
	text-align: center;
	position: relative;
}
.top_menu img {
	width: 0.36rem;
	vertical-align: middle;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%,-50%,0);
}
.top_msg img {
	width: 0.4rem;
	vertical-align: middle;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%,-50%,0);
}
.msg_red {
	background-color: #CA3239;
	width: 0.12rem;
	height: 0.12rem;
	border-radius: 50%;
	position: absolute;
	top: 0.22rem;
	right: 0.16rem;
}

/*2024-11-06 重要通知*/
.notice_box {
	border: 0.02rem solid #FF732C;
	padding: 0.1rem;
	border-radius: 0.28rem;
	display: flex;
	display: -webkit-box;
	margin: 0.14rem 0 0.2rem;
}
.notice_box .notice_icon {
	background: url("../images/Group 112.png") no-repeat center center #FF732C;
	background-size: 0.19rem 0.21rem;
	width: 0.36rem;
	height: 0.36rem;
	border-radius: 50%;
	margin-right: 0.08rem;
}
.notice_box .notice_txt {
	font-size: 0.24rem;
	line-height: 0.36rem;
	color: #FF732C;
	flex: 1;
	-webkit-box-flex: 1;
	width: 100%;
}
.notice_box .notice_look {
	background-color: #FF732C;
	width: 0.96rem;
	height: 0.36rem;
	border-radius: 0.36rem;
	font-size: 0.24rem;
	line-height: 0.36rem;
	color: #fff;
	margin-left: 0.1rem;
	text-align: center;
}
