@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	user-select:text;
}
a{
	text-decoration: none;
	color: #666;
	outline: none;
}
.w1200{
	width: 1200px;
	margin: 0 auto;
}
.w1000{
	width: 1000px;
	margin: 0 auto;
}
.w800{
	width: 800px;
	margin: 0 auto;
}
.w500{
	width: 500px;
	margin: 0 auto;
}

.flex-acenter{
	align-items: center;
}
.flex-stretch{
	align-items: stretch;
}
.marR5{
	margin-right: 5px;
}
.marR10{
	margin-right: 10px;
}
.marL5{
	margin-left: 5px;
}
.marT15{
	margin-top: 15px;
}
.mr0{
	margin-right: 0 !important;
}
.floatL{float:left;}
.floatR{ float:right;}
.ellip{
	display: block;
    -webkit-text-overflow:ellipsis;
    -moz-text-overflow:ellipsis;
    -o-text-overflow:ellipsis;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
}
.ellip2{
	display: block;
	-webkit-text-overflow:ellipsis;
	-moz-text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.ellip3{
	display: block;
	-webkit-text-overflow:ellipsis;
	-moz-text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.flex{
	display: flex;
}
.flex-jbetween{
	justify-content: space-between;
}
.flex-jaround{
	justify-content: space-around;
}
.flex-jcenter{
	justify-content:center;
}
body .gray{
	color: #888;
}
body .black{
	color: #666;
}
body .mr10{
	margin-right: 10px;
}
body .mr15{
	margin-right: 15px;
}
body .mr20{
	margin-right: 20px;
}
body .ml10{
	margin-left: 10px;
}
body .mt10{
	margin-top: 10px;
}
body .mt20{
	margin-top: 20px;
}
.relative{
	position: relative;
}
img{
	max-width: 100%;
	height: auto;
}

/*------------------------------------------------------------
        clearfix
------------------------------------------------------------*/
.clear{
    clear:both;
}
.clearfix:after {
    height: 0;
    visibility: hidden;
    content: "";
    display: block;
    clear: both;
}
html,body{
     /*font-family:'SimSun', '宋体', 'sans-serif',"Microsoft YaHei","微软雅黑"; */
	font-family:"Microsoft YaHei","微软雅黑";
    color:#333;
    width: 100%;
	height: 100%;
    font-size: 14px;
	background-color: #ffffff;
	scroll-behavior: smooth;
}
body .inline-block{
	display: inline-block;
}
body .border-b{
	border-bottom: 1px solid #ddd;
}
body .text-left{
	text-align: left;
}
body .text-right{
	text-align: right;
}
body .pl20{
	padding-left: 20px;
}
body .bg-white{
	background: #ffffff;
}
body .bold{
	font-weight: bold;
}
body .h50{
	height: 50px;
}
em{
	font-style: normal;
}
body .blue{
	color: #4369a8;
}
body .red{
	color:#fc0000;
}