/* TAG标签样式 */
.tag-wrap {
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.tag-wrap .tag-label {
    color: #666;
    font-weight: 500;
    margin-right: 10px;
}
.tag-wrap .tag-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-wrap .tag-list a {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.2s ease;
}
.tag-wrap .tag-list a:hover {
    background-color: #ff0000;
    color: #ffffff;
}

