/* 批发价插件 - 前台样式 */
.goods-wholesale-price {
    margin-top: 10px;
}
.goods-wholesale-price dt {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}
.wholesale-tiers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.wholesale-tier {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 8px 16px;
    text-align: center;
    min-width: 100px;
    cursor: default;
    transition: all 0.2s;
    background: #fff;
}
.wholesale-tier .tier-num {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}
.wholesale-tier .tier-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.wholesale-tier .tier-price:before {
    content: '\a5';
    font-size: 12px;
    margin-right: 2px;
}
.wholesale-tier.active {
    border-color: #ff5722;
    background: #fff5f2;
}
.wholesale-tier.active .tier-num {
    color: #ff5722;
}
.wholesale-tier.active .tier-price {
    color: #ff5722;
}
