.member-section {
  min-height: 300px;
}

.member-banner {
  position: relative;
}
.member-banner-img {
  width: 100%;
  height: auto;
  margin-top: -2px;
}

.member-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  height: 50px;
  font-size: 50px;
  font-weight: normal;
  line-height: 64px;
  letter-spacing: 1px;
}

.main-container {
  max-width: 1200px;
  margin-inline: auto;
}
.news-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-block-end: 40px;
}
.news-item {
  width: calc(50% - 10px);
  height: auto;
  min-height: 200px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  padding: 15px 20px;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  height: 40px;
}
.news-header::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -1px;
  width: calc(100% + 40px);
  height: 1px;
  background: #f1f1f1;
}
.news-title {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0;
}
.news-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 1px;
  width: 53px;
  height: 4px;
  background-color: #6fa4ff;
  z-index: 2;
}
.more-btn {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
}
.news-title-arrow {
  margin-left: 4px;
  display: flex;
  align-items: center;
}
.news-title-arrow span {
  width: 6px;
  height: 6px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
  display: inline-block;
}
.news-list {
  padding-left: 0;
}
.news-list li {
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.news-list li a {
  font-size: 14px;
  color: #666;
}
.news-list li a:hover {
  color: #409eff;
}
/* 会士名单栏 - 还原截图样式 */
.member-list-bar {
  background: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  padding-left: 20px;
  height: 80px;
  box-sizing: border-box;
  background-color: #ebf4f8;
  border-radius: 10px;
  cursor: pointer;
  overflow: auto;
}
.bar-title {
  font-size: 20px;
  font-weight: 600;
  color: #383838;
  position: relative;
  width: 80px;
  height: 10px;
}
.bar-title-line {
  position: absolute;
  width: calc(100% + 20px);
  bottom: -10px;
  left: -10px;
  height: 20px;
  background-color: rgba(209, 240, 255, 0.9);
}
.bar-title-text {
  position: absolute;
  z-index: 1;
  bottom: 0;
}
.member-list-bar .double-arrow span {
  border-color: rgb(64, 158, 255);
  width: 8px;
  height: 8px;
}
.bar-line {
  width: 839px;
  height: 1px;
  background-color: #d2e1e8;
  margin-left: 30px;
}
.outer-arrow {
  margin-left: 20px;
}
.outer-arrow .double-arrow {
  display: flex;
  gap: 2px;
}
.outer-arrow .double-arrow span {
  border-color: #409eff;
  width: 8px;
  height: 8px;
}
.bar-title-arrow {
  width: 120px;
  background-color: #e5f2fa;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bar-title-arrow span {
  width: 6px;
  height: 6px;
  border-top: 1px solid #bacff2;
  border-right: 1px solid #bacff2;
  transform: rotate(45deg);
  display: inline-block;
}
.member-list-bar:hover .bar-title-arrow span {
  border-color: #6fa4ff;
}
