.news-list,
.news-list * {
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;}

.news-list {
  list-style: none;
  padding: 10px 0px;
  margin: 0;}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;}

.news-item:hover {
  background-color: #f5f5f5;}

.news-content {
  flex: 1;
  min-width: 0;}

.news-content h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;}

.news-content h3 a {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  color: #333;
  font-weight: 500;}

.news-content h3 a:hover {
  color: #1a73e8;}


.news-date {
  flex-shrink: 0;
  color: #999;
  white-space: nowrap;}


.news-list li + li {
  border-top: 1px dashed #ccc;}

@media screen and (min-width: 128px) and (max-width: 767px) {
  .news-item {
    padding: 10px 12px;}

  .news-content h3 a {
    font-size: 13px;}

  .news-date {
    font-size: 12px;}
}


@media screen and (min-width: 768px) and (max-width: 2048px) {
  .news-item {
    padding: 14px 20px;}

  .news-content h3 a {
    font-size: 20px;
    padding: 20px 0px;}

  .news-date {
    font-size: 14px;}
}

