@import url("list-store-box.css");

html {
    font-size: 16px; /* 默认基础字体大小 */
}

.deals-single-page {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1500px !important;
        overflow: hidden;
    }

    background: #f4f6f9;

    .filiter-box {
        background: #fff;
        min-height: 200px;
        @media screen and (max-width: 992px) {
            height: auto !important;
            min-height: initial;
        }
    }

    .category-store-list {
        margin-left: 1.25rem;
        /*background: #fff;*/
        @media screen and (max-width: 992px) {
            margin-left: initial;
        }
    }

    .filiter-title {
        display: flex;
        align-items: center;
        font-size: calc(0.75rem + 0.5vw);
        color: #ffffff;
        opacity: 0.749;
        width: 100%;
        /*height: 4.8125rem;*/
        background-color: #650ff1;
        padding: 0.8rem 1.45rem;
        @media screen and (max-width: 750px) {
            height: 2.8125rem;
        }
    }

    .filiter-content {
        padding: 1.25rem;
    }

    .filter-item-title {
        font-size: calc(0.75rem + 0.45vw);
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #000000;
        cursor: pointer;
    }

    .form-check {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding-left: 0;
        margin: 5px 0;
    }
    .checkbox-link .form-check-label {
        color: #000000;
    }

    .form-check-label {
        font-size: calc(0.75rem + 0.35vw);
        width: 100%;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    /* 隐藏默认的单选按钮 */

    .form-check-input {
        display: none;
    }

    /* 设置未选中状态的样式 */

    .form-check-label::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url('../../img/discheck-icon.png');
        background-size: cover;
        margin-right: 8px;
    }

    /* 设置选中状态的样式 */

    .form-check-input:checked + .form-check-label::before {
        background-image: url('../../img/checked-icon.png');
    }

    .toggleIcon {
        transition: transform 0.3s ease;
        color: #d8d6d3;
    }

    .category-list-store {
        margin-bottom: 1.25rem;
    }
}

.two-line-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}