/* 标签页样式 */
.tabs {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #ebedf0;
}

.tab-header .tab-item {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    color: #969799;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-header .tab-item.active {
    color: #1989fa;
    border-bottom-color: #1989fa;
}

.tab-content {
    display: none;
    padding: 10px;
}

.tab-content.active {
    display: block;
}
