/* 时间标签容器基础样式 */
.rebate-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* 时间标签基础样式 */
.rebate-tab {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.9em;
    cursor: pointer;
    background: #f0f4ff;
    color: #2c3e75;
    transition: all 0.2s;
}

/* 激活状态 */
.rebate-tab.active {
    font-weight: 600;
    background: #4062a9;
    color: #fff;
}

/* 悬停状态 */
.rebate-tab:hover {
    background: #dbe5ff;
}
