/* .expect { margin: 50px; } */
.center{
  width: 100%;
  height: 51px;
  /* border: 1px solid red; */
  position: relative;
  margin-top: 30px;
}
.center .lid{
  width: 100%;
  height: 51px;
  background-color: #FFF;
  position: absolute;
  left: 10px;
  top: 10px;
}
.center .lid .text{
  width: 70%;
  height: 51px;
  line-height: 28px;
  box-sizing: border-box;
  padding-left: 3%;
  letter-spacing: 1px;
  float: left;
  color: #666666;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
  display: -webkit-box; 
  overflow:hidden;
  text-overflow: elipsis;
  word-break: break-all;
  -webkit-box-orient:vertical; 
  -webkit-line-clamp: 2
}
.center .lid .date{
  width: 25%;
  height: 51px;
  /* line-height: 51px; */
  text-align: right;
  float: right;
  padding-right: 5%;
  color: #666666;
}
.center .lid .date a{
  color: black;
}
.center .lid:hover .date a{
  color: red;
}
@media all and (max-width:415px) {
  .center .lid .text{
    width: 65%;
    height: 51px;
    line-height: 51px;
    box-sizing: border-box;
    padding-left: 3%;
    letter-spacing: 1px;
    float: left;
    color: red;
  /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; */
    display: -webkit-box; 
    overflow:hidden;
    text-overflow: elipsis;
    word-break: break-all;
    -webkit-box-orient:vertical; 
    -webkit-line-clamp: 2
  }
  .center .lid .date{
    width: 25%;
    height: 51px;
    line-height: 51px;
    text-align: center;
    float: right;
    padding-right: 5%;
  }
}
