﻿.banner {
  position: relative;
  width: 100%;
  height: 300px;
}

.notes .notes-item {
  cursor: pointer;
}
.notes .notes-item .left {
  padding: 0;
}
.notes .notes-item .left img {
  width: 100%;
}
.notes .notes-item .right {
  text-align: left;
  display: flex;
  flex-direction: column;
  background: #eceff7;
  padding: 20px;
}
.notes .notes-item .right p {
  color: #818181;
  
  overflow: hidden;
  
  text-overflow: ellipsis;
  
  display: -webkit-box;
  
  -webkit-line-clamp: 5;
  
  -webkit-box-orient: vertical;
}
.notes .notes-item .right .info {
  margin-top: auto;
  color: #a9a9a9;
}
.notes .notes-item .right .info .info-left {
  display: flex;
  padding: 0;
}
.notes .notes-item .right .info .info-left .item {
  display: flex;
  align-items: center;
}
.notes .notes-item .right .info .info-left .item img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.notes .notes-item .right .info .info-left .item img.look {
  width: 28px;
}
.notes .notes-item .right .info .info-left .item:first-child {
  margin-right: 20px;
}
.notes .notes-item .right .info .info-left .item:last-child {
  margin-left: auto;
}
.notes .notes-item:not(:last-child) {
  margin-bottom: 40px;
}