/* 标签云小工具样式 */
.widget_tag_cloud .widget-content {
    padding-top: 0;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px 20px 0px;
    margin-left: -10px;
}

.tagcloud a {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    font-size: 13px !important;
}

.tagcloud a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f8fafc;
}