/* 标签云整体样式 - 液态玻璃效果 */
.tag-cloud {
    margin: 2rem;
    padding: 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.17);
    position: relative;
    overflow: hidden;
}



/* 标签云标题样式 */
.tag-cloud h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #333;
    position: relative;
    z-index: 1;
}

/* 标签列表样式 */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 单个标签项样式 */
.tag-item {
    display: inline-block;
}

/* 标签链接样式 */
.tag-link:link,
.tag-link:visited {
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1000px;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 标签链接悬停样式 */
.tag-link:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}



/* 激活状态的标签链接样式 */
.tag-link.active {
    background: rgba(26, 115, 232, 0.7);
    color: white;
    border-color: rgba(26, 115, 232, 0.5);
}

/* 激活状态悬停效果 */
.tag-link.active:hover {
    background: rgba(26, 115, 232, 0.9);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

/* 不同字体大小的标签链接样式 */
.tag-link.text-1xl {
    font-size: 1rem;
}

.tag-link.text-2xl {
    font-size: 1.25rem;
}

.tag-link.text-3xl {
    font-size: 1.5rem;
}

/* 加载中状态样式 */
.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top: 2px solid #1a73e8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

/* 隐藏类样式 */
.hidden {
    display: none;
}



