.TRS_Editor P{font-family:"MicrosoftYaHei"!important; }

  html,body{
	 font-family:"MicrosoftYaHei" !important;
  margin: 0;
   font-size: 18px;
}

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 缁?????绱? */
dl, dt, dd, ul, ol, li, /* list elements ??琛ㄥ??绱? */
pre, /* text formatting elements ?????煎???绱? */
form, fieldset, legend, button, input, textarea, /* form elements 琛ㄥ????绱? */
th, td /* table elements 琛ㄦ?煎??绱? */ {
    margin: 0;
    padding: 0;
	
}

h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal;}
address, cite, dfn, em, var { font-style: normal; } /* 灏???浣??舵? */
small { font-size: 12px; } /* 灏?浜? 12px ??涓???寰??鹃??璇? 璁 small 姝ｅ父?? */
/** ??缃???琛ㄥ??绱? **/
ul, ol { list-style: none; }
 div{ box-sizing: border-box;}
/** ??缃??????煎???绱? **/
a { text-decoration: none;  color: #333; outline: none;}
img{ max-width: 100%; line-height: 1; display: block;}
a:hover {text-decoration: none; }
sup { vertical-align: text-top; } /* ??缃? ??灏?瀵硅?楂???褰卞?? */
sub { vertical-align: text-bottom; }
/** ??缃?〃????绱? **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img ??溅锛?璁╅?炬?ラ???? img ??杈规? */
button, input, select, textarea { font-size: 100%;  outline: none;} /* 浣垮?琛ㄥ????绱?? ie 涓??界户?垮?浣?澶у? */
/* 娉??optgroup ??娉??舵? */
/** ??缃?〃?煎??绱? **/
table { border-collapse: collapse; border-spacing: 0; }
/* ??缃 HTML5 ??绱? */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    display: block;
    margin: 0;
    padding: 0;
}
mark { background: #ff0; }
/* 璁剧疆placeholder??榛?璁ゆ?峰? */
:-moz-placeholder {
    color: #ddd;
    opacity: 1;
}
::-moz-placeholder {
    color: #ddd;
    opacity: 1;
}
input:-ms-input-placeholder {
    color: #ddd;
    opacity: 1;
}
input::-webkit-input-placeholder {
    color: #ddd;
    opacity: 1;
}


/*display*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.display_flex>* {
	display: block;
}

/*浼哥缉娴??瑰??*/
.flex-direction_column {
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

/*涓昏酱瀵归?*/
.justify-content_flex-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.justify-content_flex-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.justify-content_flex-justify {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/*渚ц酱瀵归?*/
.align-items_flex-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.align-items_flex-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.align-items_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.flex_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.align-items_baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
}

/*浼哥缉??/
.flex_auto {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	-webkit-flex: auto;
	flex: auto;
}

.flex_1 {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}
.flex_wrap{
	flex-wrap: wrap;
	 -webkit-flex-wrap: wrap;
	  -moz-flex-wrap: wrap;
	  -ms-flex-wrap: wrap;
}

.container {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

.hidden_1{
		overflow:hidden;
		text-overflow:ellipsis;
		white-space:nowrap;
}
.hidden_2{ overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;}
  
  .hidden_3{ overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;}
	
	.hidden_4{
		overflow: hidden;
		  text-overflow: ellipsis;
		  display: -webkit-box;
		  -webkit-line-clamp: 4;
		  -webkit-box-orient: vertical;
	}