/* 标签盒子组件样式 */
.tab-box {
    width: 100%;
}

.tab-box .phone-tabs {
    width: unset;
    margin-left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tab-box .phone-tabs .tab {
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
}
  .phone-tabs .tab.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 0 auto;
    position: absolute;
    top: -8px;
    left: -2%;
  }



.tab-box .phone-tabs .tab:not(.active) {
    cursor: pointer;
}

.tab-box .tags-box .tab {
    cursor: pointer;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .tab-box .phone-tabs {
        margin-left: 0;
        padding: 0;
    }
    
    .tab-box .phone-tabs .tab {
        font-size: 13px;
        padding: 6px 12px;
    }
}