.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .multi-line-ellipsis {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
  }

  .wrap {
    box-sizing: border-box;
    padding: 32px 16px 32px 10px;
    display: flex;
    width: 842px;
    border-radius: 6px;
    background: #fff;
  }

  .wrap>.imgs-wrap {
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    margin-right: 12px;
    width: 330px;
    background-color: #FFFFFF;
  }

  .banner-top {
    display: flex;
    align-self: flex-start;
    flex-wrap: wrap;
    width: calc(50% - 8px);
    margin-right: 16px;

    img {
      width: 100%;
      height: 108px;
      border-radius: 4px;
      margin-bottom: 10px;
    }
  }

  .banner-top:nth-child(1) {
    width: auto;
    margin-right: 0;
    margin-bottom: 20px;

    img {
      height: 356px;
      margin-bottom: 22px;
    }
  }

  .banner-top:last-child {
    margin-right: 0;
  }

  .bannerText {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    text-align: left;
    font-style: normal;
  }

  .wrap a {
    text-decoration: none;
  }

  .wrap>.imgs-wrap>img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
  }

  .wrap>.news-list {
    width: calc(100% - 330px - 12px);
  }

  .wrap>.news-list .channelHeader {
    margin-bottom: 10px;
  }

  .wrap>.news-list .channelHeader,
  .channelHeaderShow {
    height: auto !important;
  }

  .wrap>.news-list .channelHeader,
  .channelHeaderTitleView {
    justify-content: normal !important;
  }

  .wrap>.news-list>.news-item {
    cursor: pointer;
  }

  .wrap>.news-list>.news-item>.title {
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
  }

  .wrap>.news-list>.news-item>.desc {
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #959595;
    line-height: 20px;
    opacity: 1;
    transition: opacity 2s ease;
  }

  .wrap>.news-list>.news-item>.bottom-line {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 1px;
    border: 1px solid #ededed;
    opacity: 1;
    background: #ededed;
    transition: opacity 2s ease, display 2s ease;
  }

  .wrap>.news-list>.news-item>.bottom-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 80px;
    height: 3px;
    background: #96B32B;
    border-radius: 2px;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 2s ease-in-out;
  }

  .wrap>.news-list>.news-item.short-item>.desc {
    opacity: 0;
    height: 0;
    margin: 0;
  }

  .wrap>.news-list>.news-item.short-item>.bottom-line {
    opacity: 0;
    height: 0;
    margin: 0;
  }

  .wrap>.news-list>.news-item.short-item>.bottom-line::after {
    opacity: 0;
    height: 0;
  }

  .wrap>.news-list>.short-item {
    margin-bottom: 10px;
  }

  .wrap>.news-list>.short-item>.title {
    position: relative;
    padding-left: 14px;
    width: calc(100% - 14px);
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
  }

  .wrap>.news-list>.short-item>.title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #e4e4e4;
    transform: translateY(-50%);
  }