/* 砍价功能样式 */
.mj-bargain-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.bargain-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bargain-title {
    font-size: 18px;
    font-weight: bold;
}

.bargain-title i {
    margin-right: 8px;
}

.bargain-price {
    text-align: right;
}

.original-price {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.8;
}

.floor-price {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
}

.bargain-description {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.bargain-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.info-item i {
    font-size: 16px;
}

.bargain-progress {
    margin-bottom: 15px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-bar {
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    transition: width 0.3s ease;
}

.bargain-success {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 4px;
}

.bargain-success i {
    font-size: 24px;
    margin-right: 8px;
    color: #4caf50;
}

.bargain-helped {
    text-align: center;
    padding: 20px;
}

.bargain-helped i {
    font-size: 48px;
    opacity: 0.6;
}

.mj-bargain-box button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.mj-bargain-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-start-bargain {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.btn-share-bargain {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
}

.btn-buy-now {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

/* 响应式 */
@media (max-width: 768px) {
    .bargain-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .bargain-price {
        text-align: center;
    }
    
    .bargain-info {
        justify-content: center;
    }
}
