﻿/* 热销产品新样式 - 匹配参考图排版 */
.side-pro-card {
    display: block;
    text-decoration: none;
    background: #fafafa;
    border-radius: 10px;
    padding: 12px;
    margin-bottom:5px;
    transition: all 0.3s ease;
}

    .side-pro-card:hover {
        background: #f0f7ff;
        transform: translateY(-2px);
    }

.side-pro-img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 12px;
}

.side-pro-title {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.4;
}

.side-pro-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.side-pro-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap; 
}

.side-pro-tag {
    font-size: 12px;
    color:#ffffff;
    background: #1677ff;
    padding: 4px 5px;
    border-radius: 20px;
}

.side-pro-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: inline-block;
}

.side-pro-more {
    text-align: center;
    margin-top: 10px;
}

    .side-pro-more a {
        color: var(--primary);
        font-weight: 600;
        font-size: 15px;
    }
