.list_news {
  width: 100%;
  /*padding: 0 15px;*/
  box-sizing: border-box;
  margin-top: 30px;
}

.list_news_nav_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list_news_nav_li {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);*/
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.list_news_nav_li:hover {
	color: #194a92;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* 标题栏布局 */
.list_news_nav_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.list_news_nav_title h3 {
  margin: 0;
  color: #333;
}

.list_news_nav_title a {
    font-size: 16px!important;
    color: #999;
    cursor: pointer;
    text-decoration: none;
}

.list_news_nav_title a:hover {
  color: #194a92;
}

/* 新闻列表布局 */
.list_news_list_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list_news_list_li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  text-decoration: none;
  border-bottom: 1px dashed #f0f0f0;
  transition: background-color 0.2s;
}

.list_news_list_li:last-child a {
  border-bottom: none;
}

.list_news_list_li a:hover {
	color: #194a92;
	background-color: #fafafa;
}

.list_news_list_li p {
    margin: 0;
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 15px;
    font-size: 18px;
}

.list_news_list_li span {
    color: #b7b7b7;
    white-space: nowrap;
    font-size: 16px;
}
.list_news_list_li a:hover p{
	color: #194a92!important;
}
.list_news_list_li a:hover span{
	color: #194a92!important;
}
/* ================= 💻 电脑端字号（默认） ================= */
.list_news_nav_title h3 {
  font-size: 22px;
}

.list_news_nav_title a {
  font-size: 20px;
}


/* ================= 📱 手机端字号 ================= */
@media (max-width: 768px) {
  /* 布局切换为单列 */
  .list_news_nav_li {
	flex: 0 0 100%;
	max-width: 100%;
  }

  .list_news {
	padding: 0 10px;
  }

  /* 所有文字统一为 16px */
  .list_news_nav_title h3{
      font-size: 16px;
  }
  .list_news_nav_title a{
      font-size: 16px;
  }
  .list_news_list_li p{
      font-size: 16px;
  }
  .list_news_list_li span {
	font-size: 16px;
  }
}