/* skin/css/list.css */

.category-tabs {
    display: flex;
    overflow-x: auto;
    padding: 15px 0;
    gap: 12px;
}
.category-tabs::-webkit-scrollbar { display: none; }

.category-tabs a {
    background: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-sub);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    border: none;
    flex-shrink: 0;
    white-space: nowrap;
}
.category-tabs a.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-card); /* DNA: 阴影替代边框 */
    border: none;
}

.lc-left img {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    margin-right: 15px;
}

.lc-mid { flex: 1; min-width: 0; }
.lc-mid h4 { font-size: 16px; margin-bottom: 5px; font-weight: bold; }
.lc-mid p { font-size: 12px; color: var(--text-sub); margin-bottom: 5px; }
.lc-mid .desc { font-size: 13px; color: #636e72; }

.lc-right a {
    display: block;
    width: 70px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 17px;
    font-size: 13px;
    font-weight: bold;
}

/* Pagination (强制样式适配) */
.tspage {
    background: none !important;
    text-align: center !important;
    margin: 30px 0 !important;
    box-shadow: none !important;
}
.tspage a {
    background: #fff !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    border-radius: 8px !important;
    border: none !important;
    margin: 0 5px !important;
    color: #636e72 !important;
}
.tspage b {
    background: var(--primary-color) !important;
    box-shadow: var(--shadow-btn) !important;
    border-radius: 8px !important;
    color: #fff !important;
}