.hydt-index {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.hydt-title {
    color: #004993;
    border-bottom: 1px solid #ddd;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 16px;
}

.hydt-title a {
    color: #004993;
    text-decoration: none; /* 去掉下划线，可选 */
}

/* 内容区域样式 */
.content-container {
    width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
}

/* 会员动态列表样式 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 50px;
}

.news-item {
    display: flex;
    justify-content: space-between;
    /* 水平分布 */
    gap: 15px;
    transition: all 0.3s ease;
}

/* 设置图片宽度固定 */
.news-image {
    width: 140px;
    height: 100px;
    object-fit: cover;
}

/* 内容区域 */
.news-content {
    display: flex;
    flex-direction: column;
   	gap: 10px;
    flex: 1;
}

/* 元信息区域 */
.news-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 垂直居中 */
    align-items: center;
    width: 150px;
    /* 设置固定宽度 */
}

/* 悬浮时 - 让标题、副标题、日期一同变色 */
.news-item:hover .news-title,
.news-item:hover .news-subtitle,
.news-item:hover .news-date {
    color: #004993;
    /* 一同变色 */
}

/* 主标题样式 */
.news-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    transition: color 0.3s;
}

/* 副标题样式 */
.news-subtitle {
    font-size: 16px;
    color: #999;
    transition: color 0.3s;
}

.news-subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* 显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em;            /* 可选，防止高度异常 */
}


/* 元信息区域 - 日期样式 */
.news-date {
    font-size: 16px;
    color: #999;
    /* 添加过渡效果 */
    transition: color 0.3s;
}