.news-230418-wrapper {
  width: 100%;
  display: block;
  height: auto;
}
.news-230418-wrapper,
.news-230418-wrapper * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.news-230418-wrapper .news-section-title {
  width: 100%;
  display: flex;
  position: relative;
  padding: 20px 0 20px 12px;
  line-height: 18px;
  font-size: 18px;
  align-items: center;
  border-bottom: 1px solid #ced4da;
  /* 新增：确保flex容器不挤压子元素 */
  flex-wrap: nowrap;
}
.news-230418-wrapper .news-section-title:before {
  position: absolute;
  height: 18px;
  top: 20px;
  left: 0;
  width: 4px;
  background: #208c38;
  display: block;
  content: ' ';
}
/* 重点修改：标题span的样式（核心） */
.news-230418-wrapper .news-section-title span {
  font-weight: bold;
  /* 关键：固定宽度+强制单行+溢出省略 */
  width: 100%;          /* 占满父容器可用宽度 */
  max-width: 540px;     /* 18px字体下，30字≈18*30=540px（可根据实际调整） */
  white-space: nowrap;  /* 强制单行 */
  overflow: hidden;     /* 隐藏溢出 */
  text-overflow: ellipsis; /* 省略号 */
  display: inline-block;/* 确保宽度生效 */
  flex: none;           /* 取消flex拉伸，避免宽度失效 */
}
.news-230418-wrapper .news-section-title a {
  font-size: 14px;
  color: #212529;
  text-decoration: none;
  /* 新增：确保链接不挤压标题 */
  flex: none;
  margin-left: 10px;

}
.news-230418-wrapper .news-section-title a:hover {
  color: #208c38;
}
.news-230418-wrapper .news-section-body {
  width: 100%;
  font-size: 16px;
}
.news-230418-wrapper .news-section-body ul li {
  margin-top: 24px;
  list-style: none;
}
.news-230418-wrapper .news-section-body ul li a {
  display: flex;
  color: #343a40;
  align-items: center;
  text-decoration: none;
  padding-left: 16px;
  position: relative;
}
.news-230418-wrapper .news-section-body ul li a:hover {
  color:#208c38;
}
.news-230418-wrapper .news-section-body ul li a:hover::before {
  border-radius: 6px;
}
.news-230418-wrapper .news-section-body ul li a:hover::after {
  max-width: 100%;
}
.news-230418-wrapper .news-section-body ul li a::before {
  display: block;
  content: ' ';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #208c38;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 300ms;
}
.news-230418-wrapper .news-section-body ul li a::after {
  display: block;
  content: ' ';
  position: absolute;
  bottom: -6px;
  width: 100%;
  height: 2px;
  left: 0;
  background: #208c38;
  max-width: 0;
  transition: max-width 300ms ease-in;
}
.news-230418-wrapper .news-section-body ul li a p {
  flex: 1;
}
.news-230418-with-thumbnail-wrapper {
  display: flex;
  width: 100%;
  padding: 4px !important;
  overflow: hidden;
  border: 1px solid #e3e3e3;
}
.news-230418-with-thumbnail-wrapper,
.news-230418-with-thumbnail-wrapper * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.news-230418-with-thumbnail-wrapper .poster-wrapper {
  flex: 1;
  overflow: hidden;
  margin-right: 12px;
}
.news-230418-with-thumbnail-wrapper .poster-wrapper img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover ;
}
.news-230418-with-thumbnail-wrapper .news-230418-wrapper {
  flex: 1;
  margin-left: 12px;
  padding-right: 20px;
}
/*# sourceMappingURL=news-230418.css.map */