/* 图文列表卡片样式 */
.royal-list-pltr {
    overflow: hidden;
}

/* 卡片容器 */
.royal-list-pltr-card {
    position: relative;
    border-bottom: 0.1rem solid #f6f6f6;
    background: #fff;
    padding: 4rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.royal-list-pltr-card:hover {
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
    transform: translateY(-0.3rem);
}

.royal-list-pltr-img {
    position: relative;
    overflow: hidden;
}

.royal-list-pltr-img .royal-thumb-wrapper {
    padding-bottom: 75%;
    border-radius: 1rem;
}

.royal-list-pltr-img .royal-thumb-wrapper img {
    object-fit: cover;
}

.royal-list-pltr-info {
    padding-left: 4rem;
    position: relative;
    overflow: hidden;
}

.royal-list-pltr-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid #f6f6f6;
}


/* 描述 - 多行省略 */
.royal-list-pltr-desc {
    color: #999;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8em;
}

/* 元信息区域 */
.royal-list-pltr-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 0.1rem solid #f6f6f6;
}

/* 按钮 - 绝对定位备用 */
.royal-list-pltr-btn {
    margin-top: 4rem;
}

/* 数字信息组 */
.royal-list-pltr-num {
    display: flex;
    gap: 2rem;
}

/* 日期和浏览量 */
.royal-list-pltr-date,
.royal-list-pltr-views {
    color: #999;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.royal-list-pltr-date i,
.royal-list-pltr-views i {
    color: #f7b700;
    font-size: 1.4rem;
}

/* 平板及以下适配 */
@media (max-width: 992px) {

    .royal-list-pltr-card {
        padding: 2rem;
    }

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

    .royal-list-pltr-img {
        margin-bottom: 1.8rem;
    }

    /* 标题调整 */
    .royal-list-pltr-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    /* 描述行数减少 */
    .royal-list-pltr-desc {
        -webkit-line-clamp: 2;
        max-height: 6.4em;
    }

    /* 隐藏按钮 */
    .royal-list-pltr-btn {
        display: none;
    }

    /* 元信息换行 */
    .royal-list-pltr-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .royal-list-pltr-num {
        width: 100%;
        justify-content: flex-start;
    }
}