
.breadcrumb {
    background-color: var(--background-color);
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}


.blog-list-box{
    height: 200px;
    border: 1px solid #f4f4f4 !important;
}

.blog-badge {
    color: var(--primary-color) !important;
}
.blog-list .card-text {
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    max-height: 4.5em;
}

.card {
    border-color: #fff;
}

.card-title {
    color: var(--secondary-color);
}


.blog-list .hover-bg:hover {
    background-color: #f8f9fa;
}

.blog-list .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-list .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.blog-list .btn-cart {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.blog-list .card-badge {
    border-radius: 0 0 5px 0;
}

.blog-list .bi-heart {
    color: var(--primary-color);
}


.blog-list .card-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}


.blog-list .screen-title::before {
    content: "";
    width: 32px;
    border-top: 1px solid #333;
    position: absolute;
    display: inline-block;
    left: 0;
    top: 20px;
}

.blog-list .screen-title {
    font-size: 18px;
    font-family: 'Roboto';
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 25px;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 0.1em;
    z-index: 1;
    padding-left: 40px;
    padding-top: 10px;
}

.blog-list .screen-title::after {
    content: "";
    width: 18px;
    border-top: 1px solid #333;
    position: absolute;
    display: inline-block;
    margin-right: 10px;
    left: 0;
    top: 25px;
}
.blog-list .bg-light{
    background-color: #fff!important;
}


.pagination .active>.page-link, .page-link.active{
    color: white!important;
    background-color: var(--primary-color)!important;
}

.pagination .page-link{
    border-color: var(--primary-color)!important;
    color: var(--primary-color)!important;
}


/* 价格筛选器样式 */
.blog-list .price-filter {
    padding: 0 10px;
}

.blog-list .custom-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

.blog-list .custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color)!important;
    border-radius: 50%;
    cursor: pointer;
}