
html, body {
  background-color : #FFFFFF;
}
.header {
  position : relative;
  height : 40px;
  line-height : 40px;
  display : flex;
  color : #7B7B7B;
  justify-content : space-between;
  align-items : center;
  padding : 0 8px;
  background : #FFFFFF;
  box-shadow : 0 1px 1px 0 rgb(237 237 237);
}
.list {
  display : flex;
  flex-wrap : wrap;
}
.item {
  width : 33%;
  text-align : center;
  margin-bottom : 8px;
}
.item img {
  width : 75px;
  height : 75px;
}
.item span {
  text-align : center;
  font-size : 12px;
  margin-top : -4px;
  overflow : hidden;
  text-overflow : ellipsis;
  display : -webkit-box;
  -webkit-line-clamp : 2;
  -webkit-box-orient : vertical;
  color : #777777;
}
