/* ---------- 名医讲堂 ---------- */
.lecture-style {
    display: flex;
    flex-wrap: wrap;
}

.card-main-right-content-item {
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    width: calc(33.333% - 10px);
    height: 250px; 
    box-sizing: border-box;
    margin-right: 14px; /* 在右侧添加10px的间距 */
    margin-bottom: 12px;
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 子元素从顶部开始排列 */
    text-decoration: none;
    color: inherit;
}

.card-main-right-content-item:nth-child(3n) {
    margin-right: 0; /* 移除第三个 .industry-content 的右侧间距 */
}
.content-pic {
    padding: 10px;
}
.content-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.card-main-right-content-item .content-text {
    flex: 1; /* 使内容文本占据剩余空间 */
    padding: 6px; /* 添加内边距 */
    color:#333333 ;
    font-size: 16px;
}

.content-style {
    display: flex; 
    align-items: center;
    justify-content: space-between;
    color: #6B7280;
    padding: 0 5px 15px;
    font-size: 12px;
 }
 
 .img-time {
     width: 11px;
     margin-right: 5px;
 }
 .img-eye {
     width: 15px;
     margin-right: 5px;
 }

 /* ----------我要健康 ---------- */

 .health-right-content{
    display: flex;
    flex-wrap: wrap;
 }

 .health-right-content-item{
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    width: calc(20% - 8px);
    box-sizing: border-box;
    margin-right: 10px; /* 在右侧添加10px的间距 */
    margin-bottom: 12px;
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 子元素从顶部开始排列 */
    text-decoration: none;
    color: inherit;
 }

 .health-right-content-item:nth-child(5n) {
    margin-right: 0;
}

.health-content-pic img {
    width: 100%; /* 调整图片的宽度 */
    height: auto; /* 高度自适应 */
    object-fit: cover; /* 保持图片比例并裁剪 */
    display: block; /* 确保图片块级显示 */
    margin: 0 auto; /* 水平居中 */
}

.health-right-content-item .health-content-text {
    flex: 1; /* 使内容文本占据剩余空间 */
    padding: 6px; /* 添加内边距 */
    color:#333333 ;
    font-size: 13px;
    display: flex; 
    align-items: center;
    justify-content: flex-start;
}

.health-content-text img{
    width: 15px;
    margin-right: 5px;
}

.hidden {
    display: none;
}