/*全局原子类开始*/
input {
    -webkit-appearance: none;
    border-radius: 0;
    border: 0px
}
ol, ul, li {
    list-style: none;
}
img{max-width: 100%;max-height: 100%;}
a{color:#555555;}
/*全局原子类结束*/

/*自定义全局类*/
.img-middle{
    display: inline-block;
    line-height: 72px;
}
.text-clr-99{
  color:#999;
}
.bor_bot {
  border-bottom: 1px dashed #ededed;
}
.bg-clr-f5{
  background: #f5f5f5;

}
.bg-clr-f4{
  background:#f4527b;
    color: #fff;
    border-color: #f4527b
}
.bg-clr-fc{
  background: #fcfcfc;
}
.bg-clr-ff{
  background: #fff;
}
.bor-rad-4{
  border-radius: 4px
}
.ft-wid{font-weight: 400}
.ft-wid-sm{font-weight: 300}
.line-clamp {
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; // 这里修改为要显示的行数
  -webkit-box-orient: vertical;
}