/* ===== 列表卡片样式 ===== */
.list-regular {
    overflow: hidden;
}

/* 卡片容器 */
.list-regular-card { 
    position: relative; 
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); 
    transition: all 0.3s ease;
}

.list-regular-card:hover { 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); 
    transform: translateY(-3px);
}
  
/* 标题 */
.list-regular-title {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #f6f6f6;
    color: #333;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.list-regular-card:hover .list-regular-title {
    color: #999;
}

/* 描述 - 多行文本省略 */
.list-regular-desc {
    color: #999;
    margin: 0;
    line-height: 1.6;
    /* 多行省略 - 兼容webkit */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    /* fallback */
    max-height: 4.8em;
    /* 1.6 * 3 = 4.8 */
}

/* 元信息区域 */
.list-regular-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px; 
}
 

/* 数字信息组 */
.list-regular-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

/* 日期和浏览量 */
.list-regular-date,
.list-regular-views {
    color: #999;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.list-regular-date i,
.list-regular-views i {
    color: #999;
    font-size: 14px;
}

/* ===== 平板及以下适配 (992px) ===== */
@media (max-width: 992px) {
    .list-regular{
        padding: 15px;
    }
    .list-regular-card {
        padding: 15px;
        margin: 15px 0;
    }

    /* 改为上下布局 */
    .list-regular-img,
    .list-regular-info {
        width: 100%;
        padding-left: 0;
    }

    .list-regular-img {
        margin-bottom: 18px;
    }

    /* 标题调整 */
    .list-regular-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    /* 描述行数增加 */
    .list-regular-desc {
        -webkit-line-clamp: 2;
        max-height: 6.4em;
    }

    /* 按钮位置调整 */
    .list-regular-btn {
        display: none;
    }

    /* 元信息区域调整 */
    .list-regular-meta {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px;
    }

    .list-regular-num {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}