/* 空标签页 - 热门标签推荐样式（提取自标签.css，仅标题和按钮，不含布局） */
.tag-h2 {
    position: relative;
    font-size: 1.4rem;
    color: var(--p-text-color);
    font-weight: 500;
    margin: 1.35rem 0;
    display: flex;
    align-items: center;
}
.tag-h2::before {
    content: '';
    display: none;
    margin-right: 0.5rem;
    background: var(--primary-color);
    width: 0.2rem;
    height: 1.3rem;
}
.tags-group a {
    background: rgba(50,118,255,0.05);
    padding: 0 1rem;
    font-size: 1.3rem;
    height: 2.5rem;
    line-height: 2.5rem;
    margin: 0 1rem 1rem 0;
    color: var(--primary-color);
    border: 0.05rem solid var(--primary-color);
    border-radius: 0.35rem;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
}
@media (min-width: 960px) {
    .tag-h2 {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    .tag-h2::before {
        display: block;
        margin-right: 0.5rem;
        width: 0.2rem;
        height: 1.3rem;
    }
    .tags-group a {
        height: 1.4rem;
        line-height: 1.4rem;
        font-size: 0.7rem;
        margin: 0 1rem 1rem 0;
        border-radius: 0.2rem;
    }
}
