/* 协会动态 更多栏目 */
.content {
  display: none;
}

.content.active {
  display: block;
}
.xiehui {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 0.625rem 0.9375rem;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.title {
  font-size: 1.125rem;
  color: #1a73e8;
  font-weight: bold;
}
.right-section {
  position: relative; /* 确保下拉菜单相对于这个元素定位 */
}
.btn-more {
  display: flex;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  color: #666;
  border: 0.0625rem solid #ddd;
  border-radius: 0.3125rem;
}

.btn-more:hover {
  background-color: #eee;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0; /* 修改为0，不再偏移 */
  width: 6.875rem; /* 固定宽度 */
  background-color: #d4e4f4;
  border: 0.0625rem solid #7cb3ea;
  border-radius: 0.25rem;
  z-index: 1000;
  padding: 0.3125rem 0; /* 添加内边距 */
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: .5rem 0.9375rem;
  color: #333;
}
.title-active {
  background-color: #1a6fc4; /* 蓝色背景 */
  color: white; /* 白色文字 */
}

/* 仅针对特定区域的 <li> */
.news li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news ul {
  margin-left: 0; /* 去除外边距 */
  padding-left: 0; /* 去除内边距 */
}
.content-style {
  display: flex;
  padding-top: 0.9375rem;
}

.img-text {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}
.img-time {
  width: 1rem;
  height: 0.9375rem;
  margin-right: 0.3125rem;
}
.img-eye {
  width: 1.25rem;
  height: 0.9375rem;
  margin: 0 0.3125rem;
}
.content-new {
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-style-content {
  border-bottom: 0.0625rem solid #f0f0f0;
  display: flex;
  padding: 0.625rem 0;
}

.news-style-img > img {
  width: 9.125rem;
  border-radius: 0.3125rem;
  margin-left: 0.3125rem;
}
.news-style-list li {
  margin-top: 1.25rem;
}
.news-style-list  a:last-child li div {
  border-bottom: none;
}
