a{
  outline: none;
}
.drawingItem{
  float:left;
  width: 291px;
  height: 245px;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  margin-right: 12px;
  margin-bottom: 25px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.drawingItem:hover{
  box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
  transform: translate3d(0,-2px,0);
}
.drawingItem-img{
  width: 100%;
  height: 165px;
}
.drawingItem-down{
  position: relative;
  height: 80px;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  padding-left: 12px;
  padding-top: 26px;
}
.drawingItem-star{
  position: absolute;
  right: 27px;
  bottom:20px;
}
.drawingItem-star-hover{
    position: absolute;
    width: 59px;
    height: 51px;
    background: #d6010e;
    color:#fff;
    box-sizing: border-box;
    padding: 9px 15px;
    right: 27px;
    bottom: 16px;
    font-size: 14px;
    display: none;
}
.drawingItem-star img{
  width: 18px;
  height: 18px;
  float: left;
}
.drawingItem-star span{
  color: #d6000f;
  font-size: 12px;
  float: left;
  margin-left: 2px;
  margin-top: 3px;
}
.drawingItem-down p{
  display: inline-block;
  width: 220px;
  font-size: 12px;
  color:#333;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  position: relative;

}
