/* 字体相关 */
body {
  font-family: "微软雅黑", "等线", "黑体";
}
.text-sm-14 {
  color: rgba(112, 112, 112, 1);
  font-size: 14px;
  /* line-height: 26px; */
}
.text-sm-16 {
  font-size: 16px;
}
/* flex布局相关 */
.flex-wrapper {
  -js-display: flex;
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrapper-v-center {
  align-items: center;
}
.flex-wrapper-h-center {
  justify-content: center;
}
.flex-v-h-center {
  align-items: center;
  justify-content: center;
}
.flex-wrapper-sb {
  justify-content: space-between;
}
.flex-wrapper-dc {
  flex-direction: column;
}
/* 居中 */
.wrap-center {
  margin: 0 auto;
}
/* 溢出显示省略号 */
.overflow-elipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
/* 行内块元素 */
.line-block-box {
  display: inline-block;
}
/* 清除浮动，父级div 定义伪类 */
.clearfix::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
}
.clearfix {
  zoom: 1;
}
/* img 图片自适应 */
.img-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
/* 列表盒子阴影 */
.list-box-shadow {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(216, 228, 232, 1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}