.news-list {
  padding: 0.2rem 0.3rem 0.6rem;
}
.news-list li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.news-list li a {
  display: flex;
  padding: 0.3rem 0;
}
.news-list li a .banner {
  display: none;
  width: 2.5rem;
  height: 1.4rem;
  border-radius: 0.12rem;
  margin-right: 0.32rem;
}
.news-list li a .info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.news-list li a .info .tit {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #C1C0C1;
  font-size: 0.28rem;
}
.news-list li a .info .time {
  margin-left: 0.4rem;
  width: 1.34rem;
  font-size: 0.24rem;
  color: rgba(172, 172, 172, 0.38);
}
.news-list li:nth-child(1) .banner,
.news-list li:nth-child(2) .banner,
.news-list li:nth-child(3) .banner,
.news-list li:nth-child(4) .banner {
  display: block;
}
.news-list li:nth-child(1) .info,
.news-list li:nth-child(2) .info,
.news-list li:nth-child(3) .info,
.news-list li:nth-child(4) .info {
  flex-direction: column;
  align-items: flex-start;
  padding: 0.08rem 0.16rem 0.08rem 0;
}
.news-list li:nth-child(1) .info .tit,
.news-list li:nth-child(2) .info .tit,
.news-list li:nth-child(3) .info .tit,
.news-list li:nth-child(4) .info .tit {
  flex: unset;
  line-height: 0.4rem;
  -webkit-line-clamp: 2;
}
.news-list li:nth-child(1) .info .time,
.news-list li:nth-child(2) .info .time,
.news-list li:nth-child(3) .info .time,
.news-list li:nth-child(4) .info .time {
  margin-left: 0;
}
.news-list li:active .info .tit {
  color: var(--theme-color);
}
.news-list li:active .info .time {
  color: rgba(255, 213, 0, 0.33);
}
.load-more {
  width: 4rem;
  height: 0.8rem;
  line-height: 0.75rem;
  text-align: center;
  font-size: 0.28rem;
  margin: 0 auto 1rem;
  border: 1px solid #C1C0C1;
  color: #C1C0C1;
  border-radius: 2rem;
}
.load-more:active {
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.news-detail {
  padding: 0.4rem 0.3rem 0.6rem;
}
.news-detail .nd-tit {
  font-size: 0.36rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-align: center;
}
.news-detail .nd-time {
  font-size: 0.28rem;
  color: #acacac;
  text-align: center;
  margin-bottom: 0.8rem;
}
.news-detail .nd-cont {
  font-size: 0.28rem;
  line-height: 0.56rem;
  color: rgba(255, 255, 255, 0.79);
}
.news-detail .nd-cont img,
.news-detail .nd-cont .img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
