/* 文本一行显示 */
.text-line-1-show {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* 文本两行显示 */
.text-line-2-show {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dangPage.honor .list .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.dangPage.honor .list .col {
    width: 50%;
    padding: 0 15px;
    margin-top: 30px;
}
.dangPage.honor .lis {
    display: block;
    padding: unset;
    padding-bottom: 15px;
}
.dangPage.honor .lis.zhuanjia .imgbox {
    width: auto;
    height: 300px;
    margin-bottom: 15px;
    border-radius: 6px;
}
.dangPage.honor .lis.zhuanjia .desc {
    width: auto;
    padding: 0;
}
.dangPage .lis .desc h3 {
    margin-bottom: 10px;
    text-align: center;
}
.dangPage.honor .lis .desc p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 45px;
    line-height: 1.6;
}








