
    .mui-table-view-cell > a {
      position: relative;
      display: block;
    }

    .mui-media-object {
      display: block;
      width: 100%;
      height: auto;
    }
 
    /* 不同状态颜色 */
    .badge-ended {
      background-color: #888; /* 灰色 */
    }

    .badge-ongoing {
      background-color: #ff4500; /* 红橙色 */
    }

    .badge-upcoming {
      background-color: #007aff; /* 苹果蓝 */
    }


    /* 半透明悬浮按钮样式 */
    .floating-btn {
      position: fixed;
      top: 120px;  /* 按钮离页面底部的距离 */
      right: 20px;   /* 按钮离页面右侧的距离 */
      width: 40px;
      height: 40px;
      border-radius: 50%;  /* 使按钮变圆形 */
      background-color: rgba(0, 123, 255, 0.5);  /* 半透明蓝色 */
      color: white;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* 给按钮添加阴影 */
      cursor: pointer;
      transition: background-color 0.3s ease;  /* 添加过渡效果 */
    }
    .floating-btn-mall {
      top: 180px;  /* 按钮离页面底部的距离 */
    }
    /* 按钮悬浮状态样式 */
    .floating-btn:hover {
      background-color: rgba(0, 123, 255, 0.8);  /* 鼠标悬停时增加透明度 */
    }
