.fe-cell {
  position: relative;
  display: -webkit-flex;
  display: flex;
  padding: 0 16px;
  background: #fff;
  justify-content: space-between;
  user-select: none;
  align-items: center;
  color: #333333;
}
.fe-cell:not(:last-child)::after {
  content: " ";
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  right: 16px;
  bottom: 0;
  left: 16px;
  border-bottom: 1px solid #eeeeee;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.fe-cell-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 16px;
  margin: auto 0;
}
.fe-cell-left-icon {
  margin-right: 5px;
}
.fe-cell-content {
  box-sizing: border-box;
  padding: 11px 0 12px;
  flex-grow: 1;
}
.fe-cell-content .fe-cell-title {
  font-size: 14px;
}
.fe-cell-content .fe-cell-subtitle {
  font-size: 14px;
  color: #999999;
  margin: 4px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.fe-cell-right {
  display: flex;
}
.fe-cell-right .fe-cell-desc {
  font-size: 14px;
  color: #999999;
  white-space: nowrap;
}
.fe-cell-right .fe-cell-icon {
  margin: 0 0 0 12px;
}
.fe-cell.small .fe-cell-image,
.fe-cell.small img {
  width: 24px;
  height: 24px;
}
.fe-cell.small .fe-cell-content {
  margin-left: 32px;
  padding: 12px 16px 11px 0;
}
.fe-cell.middle .fe-cell-image,
.fe-cell.middle img {
  width: 32px;
  height: 32px;
}
.fe-cell.middle .fe-cell-content {
  margin-left: 42px;
  padding: 14px 16px 13px 0;
}
.fe-cell.large .fe-cell-image,
.fe-cell.large img {
  width: 48px;
  height: 48px;
}
.fe-cell.large .fe-cell-content {
  margin-left: 60px;
  padding: 15px 16px 15px 0;
  min-height: 94px;
}
