/* style.css */

.course-card .card-img-top-container {
    height: 200px; /* 定义缩略图容器的高度 */
    background-color: #f8f9fa; /* 图片加载前的占位背景色 */
    
    /* 新增的背景图样式 */
    background-size: cover; /* 覆盖整个容器 */
    background-position: top center; /* 从顶部中心开始显示 */
    background-repeat: no-repeat;
}

#couponCode {
    cursor: text;
    background-color: #e9ecef;
}