/* 全局样式 */
html, body {height: 100%;box-sizing: border-box;}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font: inherit;vertical-align:baseline;}
body{font-size:14px;background-color:#fff;color: #515151;font-family:"微软雅黑"; line-height:1;}
h1, h2, h3, h4, h5, h6 {font-size:100%;}
section, article, aside, header, footer, nav, dialog, figure {display: block;}
a{color:rgba(56, 56, 56, 1);text-decoration:none;outline: medium none;}
a:hover {color: rgba(1, 159, 232, 1)}
img{border:0;}
ul,ol{list-style:none;}
.clear:after {clear: both; content: "";display: table;}
.w_100{
  width:100%;
  margin:0px auto;
  background: rgba(248, 248, 248, 1);

}
.w_1200{
  width:1450px;
  margin:0px auto;
}


/*超出显示省略号*/
.text-truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-truncate-2{
  display: -webkit-box; /* 弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 2; /* 限制行数 */
  overflow: hidden; /* 隐藏溢出内容 */
  max-width: 100%; /* 限制容器宽度 */
}
.text-truncate-3{
  display: -webkit-box; /* 弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 3; /* 限制行数 */
  overflow: hidden; /* 隐藏溢出内容 */
  max-width: 100%; /* 限制容器宽度 */
}
.text-truncate-4{
  display: -webkit-box; /* 弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 4; /* 限制行数 */
  overflow: hidden; /* 隐藏溢出内容 */
  max-width: 100%; /* 限制容器宽度 */
}
.containerBgBox{
  background-image: url('../images/bg.png'); 
  background-size: cover;
}
.containerColorBox{
  background: rgba(140, 0, 0, 0.05);
}

