/* 新闻列表 */
.news ul {
}
.news ul li {
  border-bottom: 1px dashed #423c3c;
}
.news ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.new-li-time {
  display: none;
}

.new-li-font {
  flex-grow: 1;
  padding: 0 10px 0 0;
  overflow: hidden;
}
.new-li-title {
  font-size: 16px;
  line-height: 30px;
  color: #1a6082;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-li-text {
  height: 40px;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.new-li-img {
  flex-shrink: 0;
  width: 120px;
  overflow: hidden;
  border-radius: 10px;
}
.new-li-img img {
  width: 100%;
  transition: 0.5s;
}

@media (min-width: 1200px) {
  .news ul li {
    border-bottom: 1px dashed #423c3c;
  }
  .news ul a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .new-li-time {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 10vw;
    padding: 7.2vw 3vw 7.2vw 0;
    text-align: center;
    color: #1a6082;
  }
  .new-li-time::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 3vw;
    height: 1px;
    background: #1a6082;
  }
  .new-li-day {
    font-size: 3vw;
    line-height: 1;
    transition: 0.5s 0.1s;
  }
  .new-li-year {
    font-size: 0.9vw;
    line-height: 2vw;
    transition: 0.5s 0.1s;
  }
  .new-li-font {
    flex-grow: 1;
    padding: 0 2vw;
    overflow: hidden;
  }
  .new-li-title {
    font-size: 1.2vw;
    line-height: 1.6vw;
    color: #1a6082;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .new-li-text {
    margin: 1vw 0 0;
    height: 60px;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #333;
  }
  .new-li-img {
    flex-shrink: 0;
    width: 18.2vw;
    overflow: hidden;
    border-radius: 1vw;
  }
  .new-li-img img {
    width: 100%;
    transition: 0.5s;
  }

  .news ul a:hover .new-li-time {
    color: #fff;
    background: url(../images/new_li_bg.jpg) no-repeat 0 center/7.1vw 100%;
  }
  .news ul a:hover .new-li-time::after {
    content: "";
    position: absolute;
    left: 7vw;
    top: 50%;
    border-left: 1vw solid #1a6082;
    border-top: 1vw solid transparent;
    border-bottom: 1vw solid transparent;
    transform: translate3d(0, -50%, 0);
  }
  .news ul a:hover .new-li-day {
    transform: translate3d(0, -1vw, 0);
  }
  .news ul a:hover .new-li-year {
    transform: translate3d(0, -1vw, 0);
  }

  .news ul a:hover .new-li-img img {
    transform: scale(1.1);
  }
}
