/**
 * 两行显示，超过显示省略号
 */
.two-row-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 显示两行 */
    -webkit-box-orient: vertical;
}

.student {
    color: white;
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 0 8px;
    border-radius: 8px;
    background-color: rgb(0 0 0 / 0.5);
}
.old-price {
    text-decoration: line-through;
    color: var(--tp-text-3);
    font-weight: 500;
    font-size: 14px;
    padding-left: 10px;
    height: 26px;
}
.new-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--tp-theme-1);
}
