.product-selection-class-warp li {
    list-style: none;
    padding: 0 0.5rem 0;
    margin-bottom: 1rem;
}

.product-selection-class-warp li>div {
    height: 5rem;
    background-color: #fff;
    /* padding: 1.25rem; */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.product-selection-class-warp li>div.active {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}


/* 产品筛选条件 */
.selection-product-warp .product-param-warp {
    padding: 1.25rem;
    border-right: 0.5rem solid #f5f5f5;
}

/* 区间滑条组件样式 */
.range-slider-container {
    padding: 0 0.5rem;
}

.range-slider-label,
.range-slider-values {
    width: 105%;
    font-size: 1rem;
    color: #666;
    transform: translateX(-2%);
}

.range-slider-track {
    height: 0.375rem;
    background-color: #ddd;
    border-radius: 0.1875rem;
    cursor: pointer;
    position: relative;
}

.range-slider-fill {
    height: 100%;
    background-color: var(--theme-color);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
}

.range-slider-thumb-min,
.range-slider-thumb-max {
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--theme-color);
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 2;
}

.range-slider-thumb-min:hover,
.range-slider-thumb-max:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.range-slider-values {
    font-size: 1rem;
    color: var(--theme-color);
}

/* 按钮切换 */
.btn-range-warp {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.btn-range-warp span {
    padding: 0.25rem 1rem;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-range-warp span.active {
    background-color: var(--theme-color);
    color: #fff;
}


/* 产品列表 */
.selection-product-warp .product-list-warp {
    padding: 1.25rem;
}

.selection-product-warp .product-series-item {
    padding: 0 0.5rem;
}

.selection-product-warp .product-card-warp {
    padding: 1rem 0 1.25rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.selection-product-warp .product-card {
    padding: 0;
    cursor: pointer;
    transition: all 0.3s linear;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    /* margin-right: 1.25rem; */
}



.selection-product-warp .product-card .img-warp img {
    transition: all 0.3s linear;
    object-fit: cover;
}

.selection-product-warp .product-card .img-warp {
    height: 11.5rem;
    overflow: hidden;
}


.selection-product-warp .product-card .product-detail {
    padding: 0 1.25rem 1.25rem;
}

.selection-product-warp .product-card .product-detail p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.125rem;
}

.selection-product-warp .product-card .btn-warp {
    width: 100%;
    padding: 0.5rem 0;
    background-color: var(--theme-color);
    color: #fff;
    position: absolute;
    bottom: 0;
    transform: translateY(calc(100% + 1px));
    transition: all 0.3s linear;
}

.selection-product-warp .product-card .btn-warp a:hover {
    color: #fff;
}


.selection-product-warp .product-card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}


.selection-product-warp .product-card:hover .img-warp img {
    transform: scale(1.1);
}

.selection-product-warp .product-card:hover .btn-warp {
    transform: translateY(0);
}