﻿.list-txt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  padding: 20px 0;
  line-height: 1;
}
.list-txt .list-item {
  height: 200px;
  display: flex;
  padding: 6px;
  border: 1px solid #e1e1e1;
  background-color: #fdfdfd;
}
.list-txt .list-item .left-cover {
  width: 30%;
  flex-shrink: 0;
  margin-right: 10px;
}
.list-txt .list-item .left-cover img {
  width: 100%;
  height: 100%;
}
.list-txt .list-item .right-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.list-txt .list-item .right-info .info-title {
  padding-bottom: 8px;
  border-bottom: 1px dashed #ccc;
  flex-shrink: 0;
}
.list-txt .list-item .right-info .info-title .text {
  font-size: 24px;
}
.list-txt .list-item .right-info .info-title .text_sub {
  font-size: 20px;
  color: #9f9f9f;
}
.list-txt .list-item .right-info .info-desc {
  flex: 1;
  font-size: 14px;
  line-height: 1.8;
  padding: 2px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  display: box;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}