/* 全局卡片样式 */
.main-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem; /* 模块之间的间距 */
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

/* 鼠标悬停时卡片上浮效果 */
.main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 卡片内部填充 */
.card-body {
    padding: 2rem;
}

/* 模块标题样式 */
.section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    color: #0d6efd; /* 主题色：蓝色 */
}

/* 导航栏激活状态 */
.navbar-dark .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #fff !important;
    background-color: #0d6efd;
    border-radius: 4px;
}