.detail-container {
    padding: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ff9800, #ff5722); /* 可替换为背景图 */
    border-radius: 8px;
    font-size: 14px;
    position: relative;
}

.sale-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sale-price .left {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.sale-price .score {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.sale-price .final-price {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.sale-price .old-price {
    font-size: 14px;
    color: #ddd;
    text-decoration: line-through;
    margin-left: 6px;
}

.limit-text {
    font-size: 18px;
    font-style: italic;
    color: #fdd835;
    white-space: nowrap;
}

.detail-bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #fff;
}

.detail-bottom .fake-num span {
    color: #ffeb3b;
    font-weight: bold;
}

