/* ====== 头条新闻卡片 ====== */
.list-news003 .featured-item {
  margin-bottom: 0.3rem;
  margin-top: 0.4rem;
}

.list-news003 .featured-item .featured-inner {
  display: flex;
  gap: 0.4rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s;
}

.list-news003 .featured-item .featured-inner:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.list-news003 .featured-item .featured-img {
  flex: 0 0 44%;
  overflow: hidden;
}

.list-news003 .featured-item .featured-img .r_img {
  width: 100%;
  height: 100%;
}

.list-news003 .featured-item .featured-img .r_img .inner-img {
  width: 100%;
  height: 100%;
  padding-bottom: 52%;
}

.list-news003 .featured-item .featured-img .r_img .inner-img img {
  transition: transform 0.5s;
}

.list-news003 .featured-item .featured-inner:hover .featured-img .r_img .inner-img img {
  transform: scale(1.05);
}

.list-news003 .featured-item .featured-info {
  flex: 1;
  padding: 0.4rem 0.4rem 0.4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-news003 .featured-item .featured-info .featured-tit {
  font-size: 0.32rem;
  font-weight: bold;
  color: #444;
  line-height: 0.45rem;
  max-height: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  transition: color 0.3s;
  /* font-family: 'sy'; */
  margin-bottom: 0.2rem;
}

.list-news003 .featured-item .featured-info .featured-tit .icon-w {
  font-size: 0.2rem;
  color: var(--ruifox-color-primary-1);
  margin-right: 0.05rem;
  font-weight: normal;
}

.list-news003 .featured-item .featured-info .featured-desc {
  margin: 0;
}

.list-news003 .featured-item .featured-info .featured-desc p {
  font-size: 0.18rem;
  color: #666;
  line-height: 0.36rem;
  /* max-height: 1.32rem; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.list-news003 .featured-item .featured-info .featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 0.2rem;
}

.list-news003 .featured-item .featured-info .featured-bottom .time {
  font-size: 0.19rem;
  color: #999;
}

/* ====== 常规新闻列表（基于001增强） ====== */
.list-news003 ul li a {
  display: flex;
  padding: 0.4rem 0.3rem;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s;
}

.list-news003 ul li a .r_img {
  width: 17.6%;
  padding: 0.05rem;
  border: 1px solid #e8e8e8;
  margin-right: 0.4rem;
  flex-shrink: 0;
  display: none;
}

.list-news003 ul li a .r_img .inner-img {
  padding-bottom: 56%;
}

.list-news003 ul li a .right-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.05rem 0;
}

.list-news003 ul li a .right-info .tit {
  font-size: 0.24rem;
  /* font-weight: bold; */
  color: #555;
  line-height: 0.27rem;
  max-height: 0.54rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  transition: all 0.3s;
}

.list-news003 ul li a .right-info .tit .icon-w {
  font-size: 0.2rem;
  color: var(--ruifox-color-primary-1);
  margin-right: 0.05rem;
  font-weight: normal;
}

.list-news003 ul li a .right-info .content {
  margin: 0.1rem 0 !important;
}

.list-news003 ul li a .right-info .content p {
  font-size: 0.18rem;
  color: #666;
  line-height: 0.27rem;
  /* max-height: 0.6rem; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.list-news003 ul li a .right-info .bottom {
  font-size: 0;
  line-height: 1;
  overflow: hidden;
}

.list-news003 ul li a .right-info .bottom span {
  font-size: 0.18rem;
  color: #999;
  display: inline-block;
}

.list-news003 ul li a .right-info .bottom span.time {
  color: var(--ruifox-color-primary-1);
}

.list-news003 ul li a .right-info .bottom span+span:before {
  content: "";
  height: 100%;
  border-left: 1px solid #c7c5c5;
  margin: 0 0.2rem;
}

.list-news003 ul li a:hover {
  border-bottom-color: transparent;
  box-shadow: 0.05rem 0.05rem 0.25rem 0.05rem rgba(0, 0, 0, 0.15);
}

.list-news003 ul li a:hover .r_img .inner-img img {
  transform: scale(1.1);
}

/* ====== 响应式 ====== */
@media (max-width: 960px) {
  .list-news003 .featured-item {
    margin-top: 0;
    margin-bottom: 0;
  }

  .list-news003 .featured-item .featured-inner {
    flex-direction: row;
    gap: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .list-news003 .featured-item .featured-inner:hover {
    box-shadow: none;
    transform: none;
  }

  .list-news003 .featured-item .featured-img {
    flex: none;
    width: 110px;
    margin-right: 10px;
  }

  .list-news003 .featured-item .featured-img .r_img .inner-img {
    padding-bottom: 56%;
  }

  .list-news003 .featured-item .featured-info {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .list-news003 .featured-item .featured-info .featured-tit {
    font-size: 0.18rem;
    line-height: 0.26rem;
    font-weight: normal;
    margin-bottom: 10px;
    max-height: 0.52rem;
  }

  .list-news003 .featured-item .featured-info .featured-desc {
    display: none;
  }

  .list-news003 .featured-item .featured-info .featured-bottom {
    margin-top: 0;
    display: block;
  }

  .list-news003 .featured-item .featured-info .featured-bottom .children-component {
    display: none;
  }

  .list-news003 .featured-item .featured-info .featured-bottom .time {
    font-size: 0.14rem;
    color: #666 !important;
  }

  .list-news003 ul li a {
    padding: 15px 0 !important;
  }

  .list-news003 ul li a .r_img {
    width: 110px !important;
    margin-right: 10px !important;
    display: block;
  }

  .list-news003 ul li a .r_img .inner-img {
    height: 100%;
  }

  .list-news003 ul li a .right-info .content {
    display: none;
  }

  .list-news003 ul li a .right-info .tit {
    font-size: 0.18rem;
    line-height: 0.26rem;
    font-weight: normal;
    margin-bottom: 10px;
  }

  .list-news003 ul li a .right-info .bottom span {
    display: none;
  }

  .list-news003 ul li a .right-info .bottom span.time {
    display: block;
    font-size: 0.14rem;
    color: #666 !important;
  }

  .list-news003 ul li a:hover {
    box-shadow: unset;
  }
}