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;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
a {
  color: #333;
  text-decoration: none;
}
body {
  line-height: 1;
  font-family: "Microsoft YaHei","微软雅黑";
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*清除浮动样式*/
.clear {
  clear: both;
}

.left_float {
  float: left;
}

.right_float {
  float: right;
}

.clearfix:after{
  display: block;
  clear: both;
  content: "";
  visibility: hidden; 
  height: 0;
}

.clearfix{
  zoom:1
}

.over_hide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.over_hide_2 {
  word-break: break-all;
  display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
  -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
  -webkit-line-clamp: 2; /** 显示的行数 **/
  overflow: hidden;  /** 隐藏超出的内容 **/
  text-overflow: ellipsis;
}

.nodata_tips {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  color: #5d5d5d;
  font-size: 16px;
}