<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 水平标签导航 */
.horizontal-tabs {
    display: flex;
    width: 100%;
    justify-content: space-around;
    background-color: var(--card-bg-color, #292929);
    margin-bottom: 15px;
    /* height: 4.75rem;  */
}

/* 标签样式 */
.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.tab.active {
    color: var(--horizontal-tab-active-color, --button-active);
}

/* 激活标签中的span元素颜色 */
.tab.active span {
    color: var(--text-color);
}

/* 标签图标样式 */
.tab-icon {
    font-size: 50px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* 修改为50px，与font-size一致 */
    width: 50px; /* 添加宽度确保图标居中 */
    margin-left: auto; /* 水平居中 */
    margin-right: auto;
}

.tab-icon i {
    font-size: 50px; /* 修改为50px，与父元素一致 */
    color: var(--text-color, #ffffff);
}

.tab.active .tab-icon i {
    color: var(--secondary-color, --text-color);
}

/* 标签文字样式 */
.tab span:not(.tab-icon) {
    font-size: 12px;
    font-weight: 500;
    display: block; /* 确保文字独占一行 */
    text-align: center; /* 文字居中 */
    margin-top: 5px; /* 增加与图标的间距 */
    color: inherit; /* 继承父元素颜色 */
}
</pre></body></html>