/* more详情页 */
.more-page {
    width: 100%;
    margin: 0;
    padding: 20px 24px;
}
.more-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.more-back {
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}
.more-back:hover {
    color: #ff7800;
}
.more-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
/* 主分类标签 */
.more-nav {
    margin-bottom: 24px;
}
.more-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.more-cat-item {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}
.more-cat-item:hover {
    color: #ff7800;
    background: #fff5f0;
}
.more-cat-item.active {
    color: #ff7800;
    font-weight: bold;
    background: #fff5f0;
}
/* 子分类标签 */
.more-sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.more-sub-item {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    padding: 4px 10px;
    border-radius: 4px;
    background: #f5f5f5;
    cursor: pointer;
}
.more-sub-item:hover {
    color: #ff7800;
    background: #fff5f0;
}
.more-sub-item.active {
    color: #ff7800;
    font-weight: bold;
    background: #fff5f0;
}
/* 排序 */
.more-sort {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #999;
}
.sort-label {
    font-weight: 600;
    color: #666;
}
.sort-sep {
    color: #ddd;
    margin: 0 4px;
}
.sort-item {
    color: #999;
    cursor: pointer;
}
.sort-item:hover {
    color: #ff7800;
}
.sort-item.active {
    color: #ff7800;
    font-weight: bold;
}
.sort-dot {
    color: #ddd;
}
/* 卡片网格 */
.more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.more-card {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    background: #fff;
    gap: 12px;
    text-decoration: none;
    color: #333;
    transition: 0.15s;
    min-width: 0;
    overflow: hidden;
}
.more-card:hover {
    border-color: #c0d4f0;
    background: #fafcff;
}
.more-card.pinned {
    border-color: #ff7800;
    background: #fff8f0;
    position: relative;
}
.more-card .pin-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff7800;
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 0 8px 0 6px;
    font-weight: 600;
    line-height: 1.5;
}
.more-card.hot {
    border-color: #f5b041;
    background: linear-gradient(135deg, #fffbe6, #fff5e6);
    position: relative;
    box-shadow: 0 2px 8px rgba(245,176,65,0.18);
}
.more-card.hot:hover {
    background: linear-gradient(135deg, #fff5d6, #ffefcc);
    border-color: #e89a1c;
}
.more-card .hot-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #f5b041, #e89a1c);
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 0 8px 0 6px;
    font-weight: 600;
    line-height: 1.5;
}
.more-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.more-favicon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    transition: filter 0.4s ease;
}
.more-favicon[data-loaded] {
    filter: none;
}
.more-favicon:not([data-loaded]) {
    filter: blur(6px);
}
.more-icon-fallback {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
}
.more-card-body {
    flex: 1;
    min-width: 0;
}
.more-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.more-card-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    min-width: 0;
    max-width: 100%;
}
.more-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 24px;
    overflow: hidden;
}
.more-tag {
    font-size: 11px;
    color: #999;
    background: #f5f5f5;
    padding: 1px 6px;
    border-radius: 3px;
    white-space: nowrap;
}
.more-card-arrow {
    font-size: 20px;
    color: #ccc;
    flex-shrink: 0;
    align-self: center;
}
@media (max-width: 900px) {
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .more-grid {
        grid-template-columns: 1fr;
    }
}
/* 分页 */
.more-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    padding: 16px 0;
}
.page-btn {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    background: #fff;
}
.page-btn:hover {
    border-color: #ff7800;
    color: #ff7800;
}
.page-num {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    background: #fff;
}
.page-num:hover {
    border-color: #ff7800;
    color: #ff7800;
}
.page-num.active {
    background: #ff7800;
    color: #fff;
    border-color: #ff7800;
}
.page-info {
    font-size: 12px;
    color: #999;
    margin-left: 8px;
}