/* 标签页头部 */
.tag-page-header {
    background: linear-gradient(135deg, #222228 0%, #2c2c38 100%);
    padding: 40px 0;
    margin-bottom: 20px;
}
.tag-page-header .container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.tag-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d8cf0, #1e6fd0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(45, 140, 240, 0.3);
}
.tag-page-info h1 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}
.tag-page-info p {
    font-size: 14px;
    color: #999;
}
.tag-page-info p em {
    color: #2d8cf0;
    font-style: normal;
    font-weight: 600;
}

/* 分类筛选栏 */
.filter-bar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    padding: 18px 20px;
    margin-bottom: 20px;
}
.filter-row {
    display: flex;
    align-items: flex-start;
}
.filter-label {
    font-size: 13px;
    color: #999;
    width: 70px;
    flex-shrink: 0;
    line-height: 30px;
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-options a {
    display: inline-block;
    padding: 4px 14px;
    font-size: 13px;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s;
}
.filter-options a:hover,
.filter-options a.active {
    background: #2d8cf0;
    color: #fff;
}

/* 标签页响应式 */
@media (max-width: 768px) {
    .tag-page-header {
        padding: 25px 0;
    }
    .tag-page-header .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .tag-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-radius: 12px;
    }
    .tag-page-info h1 {
        font-size: 20px;
    }
    .tag-page-info p {
        font-size: 13px;
    }
    .filter-bar {
        padding: 12px 15px;
    }
    .filter-row {
        flex-direction: column;
        gap: 8px;
    }
    .filter-label {
        width: auto;
        line-height: 1.4;
    }
    .filter-options {
        gap: 6px;
    }
    .filter-options a {
        padding: 3px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tag-page-header {
        padding: 20px 0;
    }
    .tag-page-info h1 {
        font-size: 18px;
    }
    .tag-page-info p {
        font-size: 12px;
    }
    .filter-options a {
        padding: 2px 8px;
        font-size: 11px;
    }
}