/* 基础样式 */
body {
    font-family: "Microsoft Yahei", Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* 卡片阴影优化 */
.card-shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: box-shadow 0.3s ease;
}

.card-shadow-sm:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* 推荐列表样式 */
.list-group-item a:hover {
    color: #0d6efd !important;
}

/* 自适应图片 */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* 底部样式 */
footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* 后台样式 */
.admin-sidebar {
    min-height: calc(100vh - 56px);
    background-color: #212529;
}