.grids .grid > .vip-tag {
    background: linear-gradient(to right, #f7b733, #fc4a1a) !important;
    left: auto;
    right: 10px;
    top: 10px;
    border-radius: unset;
}

.mobile {
  display: none;
}

/* 屏幕宽度小于等于640px时，显示手机端元素 */
@media (max-width: 640px) {
  .mobile {
    display: block; /* 或 inline/block/flex，按需设置 */
  }
}