/* 教育教学模块标签切换样式 */
.education-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.education-content.active {
    display: block;
}

/* 标签按钮样式 */
.section-tabs .btn {
    transition: all 0.3s ease;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* 标签间的间距 */
.section-tabs {
    margin-bottom: 20px;
}

/* 标签内容的淡入效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-tabs .btn {
        margin-bottom: 10px;
    }
} 