/* 筛选条件 */
.list_filter {
    position: sticky;
    top: 80px;
    z-index: 999;
    padding-top: 18px;
    padding-bottom: 17px;
    background: #ffffff;
}

.list_filter-container {
    position: relative;
    overflow: visible;
    padding-top: 2px;
    font-size: 0;
}

.list_filter-clean {
    position: absolute;
    right: 10px;
    bottom: 17px;
    height: 16px;
    padding-left: 26px;
    background: url(/vietnam-city/imgs/trash_can.svg) left center no-repeat;
    color: #999999;
    font-size: 12px;
}

.list_filter-more {
    display: block;
    width: auto;
    margin: auto auto 10px;
    text-align: center;
}

.list_filter-more-content {
    position: relative;
    display: inline-block;
    padding: 0 98px;

    &::before, &::after {
        content: '';
        width: 90px;
        border-bottom: 1px #E9E9E9 solid;
    }

    &::before {
        left: 0;
    }

    &::after {
        right: 0;
    }
}

.list_filter-more-btn {
    position: relative;
    padding-right: 20px;
    border: none;
    background: url(/vietnam-city/imgs/filter_down_arrow.png) right center no-repeat;
    color: #999999;
    font-size: 12px;

    &.active {
        background-image: url(/vietnam-city/imgs/filter_up_arrow.png);
    }
}

.filter-target-btn {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 125px;
    height: 32px;
    padding: 6px 28px 6px 10px;
    border: 1px solid rgba(0,0,0,0.20);
    border-radius: 2px;
    background: #FFFFFF;
    color: #333333;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;

    &::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        transition: transform 0.2s linear;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(/vietnam-city/imgs/list_pull_down.svg);
    }

    &.no-arrow::after {
        display: none;
    }

    &.active {
        border: 1px solid rgba(0,0,0,0.70);
        color: #333333;
        font-weight: bold;
    }

    .show &::after {
        transform: translateY(-50%) rotateZ(180deg);
    }

    &.all-show {
        max-width: none;
    }
}

.list-filter-target-count {
    box-sizing: border-box;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border-radius: 50%;
    border: 1px solid #E60012;
    color: #E60012;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
}

.filter-target-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 6px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    &.icon-filter {
        background-image: url(/vietnam-city/imgs/list_filter.svg);
    }

    &.icon-reset {
        background-image: url(/vietnam-city/imgs/list_reset.svg);
    }
}

.filter-popover {
    position: relative;
    display: inline-block;
    margin-left: 10px;

    &:last-of-type {
        margin-right: 10px;
    }
}

.filter-popover-content {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    min-width: 300px;
    margin-top: 5px;
    box-shadow: -12px 0 48px 16px rgba(0,0,0,0.03), -9px 0 28px 0 rgba(0,0,0,0.05), -6px 0 16px -8px rgba(0,0,0,0.08);
    border-radius: 2px;
    background: #FFFFFF;

    &.wide {
        min-width: 410px;
    }

    .show & {
        display: block;
    }
}

.filter-dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.filter-dialog-header {
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.09);
}

.filter-dialog-return {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    z-index: 99;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: url(/vietnam-city/imgs/return_left.svg) center center/16px no-repeat;
}

.filter-dialog-title {
    padding: 16px 24px;
    color: #333333;
    font-size: 16px;
    line-height: 24px;

    .have-return & {
        margin: 0 48px;
        text-align: center;
    }
}

.filter-dialog-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 99;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: url(/vietnam-city/imgs/close_icon.svg) center center/16px no-repeat;
}

.filter-dialog-body {
    overflow: auto;
    flex: 1;
    padding: 24px;
}

.filter-dialog-footer {
    border-top: 1px solid rgba(0,0,0,0.09);
    padding: 10px 24px;
    font-size: 0;
}

.filter-dialog-footer-btn {
    padding: 5px 16px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    color: #333333;
    font-size: 14px;
    text-align: left;
    line-height: 22px;

    &.primary {
        border-color: #E60012;
        background: #E60012;
        color: #ffffff;
    }

    &:not(:last-of-type) {
        margin-right: 8px;
    }
}

.list_filter-row {
    /* display: flex; */
    /* width: 1000px; */
    /* margin: 14px 0; */
    padding: 0;

    &.hide-default.hide {
        display: none;
    }

    &:not(:last-of-type) {
        margin-bottom: 20px;
    }
}

.list_filter-position {
    font-size: 0;
}

.list_filter-position-item {
    display: inline-block;
    font-size: 0;

    &:not(:last-of-type) {
        margin-right: 24px;
    }
}

.list_filter-position-item-link {
    display: block;
    padding: 10px 12px;
    background: #FFFFFF;
    border: 1px solid #666666;
    border-radius: 2px;
    color: #2E2E3A;
    font-size: 12px;

    .active & {
        border-color: #E60012;
        background: #E60012;
        color: #ffffff!important;
    }
}

.list_filter-label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-size: 14px;
    line-height: 1.57;
}

.list_filter-content {
    /* flex: 1; */
    /* margin-left: 20px; */
}

.list_filter-list {
    /* padding-left: 1px; */
    font-size: 0;
}

.list_filter-list-item {
    display: block;
    background-position: center right;
    background-size: 16px;
    background-repeat: no-repeat;
    color: #333333;
    font-size: 14px;
    line-height: 1.57;
    cursor: pointer;

    &:not(:last-of-type) {
        margin-bottom: 12px;
    }

    .radio-list & {
        background-image: url(/vietnam-city/imgs/default_circle.svg);

        &.active {
            background-image: url(/vietnam-city/imgs/selected_circle.svg);
        }
    }

    .checkbox-list & {
        background-image: url(/vietnam-city/imgs/default_square.svg);

        &.active {
            background-image: url(/vietnam-city/imgs/selected_square.svg);
        }
    }
}

.list_filter-list-item-link {
    display: block;
    color: #666666;
    line-height: 16px;

    .active & {
        color: #E60012!important;
    }
}

.list_filter-list-ckeckbox {
    display: inline-block;
    padding-left: 22px;
    background: url(/vietnam-city/imgs/filter_default.png) left center no-repeat;
    color: #333333;
    cursor: pointer;

    &.active {
        color: #E60012;
        background-image: url(/vietnam-city/imgs/filter_selected.png);
    }
}

.filter-range {

}

.filter-range-value {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-bottom: 8px;

}

.filter-range-value-label {
    flex: 1;
    color: #333333;
    font-size: 14px;
    line-height: 1.57;
}

.filter-range-input {
    display: flex;
    align-items: center;
}

.filter-range-input-control {
    box-sizing: border-box;
    flex: 1;
    width: 100%;
    height: 32px;
    padding: 4px 12px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    background: #FFFFFF;
    color: #333333;
    font-size: 14px;
}

.filter-range-input-connector {
    display: inline-block;
    width: 42px;
    color: #333333;
    font-size: 14px;
    text-align: center;
    line-height: 32px;
}

.filter-range-placeholder {
    margin: 32px auto 17px;
}

.filter-range-track {
    position: relative;
    margin: 40px auto 17px;
    width: 100%;
    height: 5px;
    background: rgba(0,0,0,0.15);
}

.filter-range-indicator {
    position: absolute;
    top: 0;
    left: 30%;
    right: 30%;
    z-index: 19;
    height: 100%;
    background: #E60012;
}

.filter-range-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.30);


    &.start {
        left: 0;
    }

    &.end {
        right: 0;
    }
}

.filter-range-label {
    display: flex;
    justify-content: space-between;
}

.filter-range-label-text {
    color: #151515;
    font-size: 14px;
    line-height: 1.57;
}

.dialog {
    display: none;
    width: 100%;
    height: 100%;
}

.filter-dialog-select-placeholder {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 32px;
    padding: 5px 12px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;

    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 12px;
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 6px;
        transition: transform 0.2s linear;
        transform: translateY(-50%);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(/vietnam-city/imgs/list_pull_down.svg);
    }
}
/* 筛选条件end */

/* 主体内容 */
.list_content {
    margin-bottom: 50px;
}

.list-container {
    display: flex;
    gap: 20px;
}

.list_mian {
    flex: 1;
    /* float: left;
    width: 910px; */

    &.full {
        width: 100%;
    }
}

.list_side {
    /* float: right; */
    width: 266px;
}


.list_result-total {
    /* margin-top: 25px; */
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px #E9E9E9 solid;
    color: #333333;
    font-size: 18px;
    line-height: 24px;

    strong {
        display: inline-block;
        margin: auto 5px;
        color: #E60012;
    }
}

.list_no-result {
    margin: 60px auto;
    padding-top: 120px;
    background: url(/vietnam-city/imgs/no-data-tip.svg) center top/120px 120px no-repeat;
    color: #999999;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.list_result {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list_result-item {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 30px;
    padding: 30px 0;
    background-color: #FFFFFF;
    transition: box-shadow .2s, transform 0.2s;

    &:not(.no-interaction):hover {
        z-index: 99;
        background: #F8F8F8;
        box-shadow: 0 0 16px 0 rgba(0,0,0,0.20);
    }

    &:first-of-type {
        padding-top: 18px;
    }

    &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 897px;
        height: 0;
        border-bottom: 1px #EAEAEA solid;
    }
}

.list_result-img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 240px;
    height: 170px;
    border-radius: 4px;
}

.list_result-img-href {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;

    &.is-vr::before,
    &.is-video::after {
        content: "";
        position: absolute;
        left: 10px;
        bottom: 10px;
        z-index: 199;
        width: 24px;
        height: 24px;
        background: url(/vietnam-city/imgs/vr.svg) center center/cover no-repeat;
        pointer-events: none;
    }

    &.is-video::after {
        background-image: url(/vietnam-city/imgs/video.svg);
    }

    &.is-vr.is-video::after {
        left: 42px;
    }
}

.list_result-img-count {
    box-sizing: border-box;
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 99;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
    color: #ffffff;
    font-size: 12px;
    line-height: 24px;
    pointer-events: none;

    &::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 5px;
        margin-top: -2px;
        background: url(/vietnam-city/imgs/pic_icon.svg) center center/cover no-repeat;
        vertical-align: middle;
    }

    .is-video &, .is-vr & {
        left: 42px;
    }

    .is-vr.is-video & {
        left: 74px;
    }
}

.list_result-img {
    float: left;
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}

.list_result-container {
    flex: 1;
    margin-right: 16px;

    .full & {
        width: 930px;
    }
}

.list_result-title {
    display: block;
    width: 540px;
    margin: 0 0 11px;
    color: #2A2A2A;
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    text-decoration: none;

    .full & {
        width: 888px;
    }

    /* &:hover {
        color: #E60012;
    } */

    h2 {
        margin: 0;
        font-size: inherit;
        font-weight: bold;

        span {
            color: #E60012;
        }
    }
}

.list_result-content {
    color: #666666;
    font-size: 14px;

    &::after {
        content: "";
        display: block;
        clear: both;
    }
}

.list_result-desc {
    width: 100%;

    /* &:lang(vi) {
        width: 75%;
    } */
}

.list_result-desc-row {
    font-size: 0;

    &:not(:last-of-type) {
        margin-bottom: 12px;
    }

    &.has-icon {
        padding-left: 20px;
        background-position: left center;
        background-repeat: no-repeat;
    }

    &.has-icon.addr {
        background-image: url(/vietnam-city/imgs/fj_location.svg);
    }

    &.has-icon.type {
        background-image: url(/vietnam-city/imgs/house.svg);
    }

    &.has-icon.time {
        background-image: url(/vietnam-city/imgs/time_update.svg);

        strong {
            display: inline-block;
            color: #E60012;
            font-weight: normal;
        }
    }

    &.has-split {
        span {
            position: relative;

            &:not(:last-child) {
                padding-right: 5px;

                &::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    left: 100%;
                    transform: translateY(-50%);
                    height: 100%;
                    margin-left: -1px;
                    border-right: 1px #cccccc solid;
                }
            }
        }
    }

    &.narrow {
        max-width: 70%;
    }

    span {
        display: inline-block;
        font-size: 14px;
        line-height: 20px;

        &:not(:last-child) {
            margin-right: 5px;
        }

        .large-margin &:not(:last-child) {
            margin-right: 30px;
        }
    }

    strong {
        color: #E60012;
        font-weight: normal;
    }
}

.list_result-desc-price {
    color: #E60012;

    strong {
        font-size: 20px;
    }

    &.is-negotiable {
        font-size: 16px;
    }
}

.list_result-desc-area {
    color: #0200FF;
    font-size: 16px!important;
}

.list_result-hot {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
    margin-bottom: -10px;
    font-size: 0;
}

.list_result-telphone {
    position: relative;
    transform: translateY(-10px);
}

.list_result-telphone-tip {
    position: absolute;
    left: 50%;
    bottom: 100%;
    z-index: 99;
    transform: translate(-50%, -8px);
    color: #333333;
    font-size: 12px;
    line-height: 17px;
    white-space: nowrap;
}

.list_result-telphone-value {
    width: 180px;
    height: 38px;
    border-radius: 19px;
    background: rgba(2,0,255,0.70);
    color: #ffffff;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;

    &::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        margin-top: -5px;
        margin-right: 7px;
        background: url(/vietnam-city/imgs/detail_page_call.svg) center center/cover no-repeat;
        vertical-align: middle;
    }

    &:hover {
        background: rgba(2,0,255,0.90);
    }
}

.list_result-icons {
    display: inline-block;
    vertical-align: middle;

    &::before, &::after {
        content: "";
        display: block;
        clear: both;
    }
}

.list_result-icon {
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 20px;

    &:not(:last-child) {
        margin-right: 8px;
    }
}

.list_result-desc-tags {
    flex: 1;
    font-size: 0;
    vertical-align: middle;

    span {
        display: inline-block;
        margin-right: 12px;
        margin-bottom: 10px;
        padding: 0 10px;
        border: 1px solid rgba(0,0,0,0.15);
        border-radius: 4px;
        color: #666666;
        font-size: 12px;
        line-height: 26px;
    }
}


.list_result-right {
    position: absolute;
    z-index: 199;
    bottom: 30px;
    right: 30px;
    /* transform: translateY(-50%); */
    margin-top: 10px;
    font-size: 0;
    text-align: right;
}

.list_result-price {
    margin: 0;
    color: #666666;
    font-size: 14px;

    strong {
        display: inline-block;
        margin-right: 5px;
        color: #0200FF;
        font-size: 30px;
        font-weight: normal;

        &.is-none {
            font-size: 20px;

            &:lang(vi) {
                font-size: 16px;
            }
        }
    }
}

.list_result-consult {
    box-sizing: border-box;
    display: inline-block;
    width: 82px;
    height: 30px;
    margin-top: 14px;
    padding-left: 27px;
    border: 1px solid #E60012;
    border-radius: 4px;
    background-color: transparent;
    background-position: 7px center;
    background-repeat: no-repeat;
    color: #666666;
    font-size: 12px;
    text-align: left;

    &:first-of-type {
        margin-top: 14px;
    }

    &:hover {
        color: #E60012;
    }

    &.online {
        background-image: url(/vietnam-city/imgs/consult_default.svg);
    }

    &.telphone {
        background-image: url(/vietnam-city/imgs/miniphone_default.svg);
    }
}

.list_page {
    margin-top: 30px;
    text-align: center;
}

/* 分页 */
.pagination {
    display: inline-block;
    color: #666666;
    font-size: 0;
}

.pagination-container {
    margin-top: 50px;
    text-align: center;
}

.pagination-more {
    display: inline-block;
    width: 231px;
    height: 60px;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    color: #666666;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    line-height: 60px;

    &:hover {
        border-color: #E60012;
        background-color: #E60012;
        color: #ffffff;
    }
}

.page-item {
    box-sizing: border-box;
    display: inline-block;
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    border: none;
    border-radius: 2px;
    background-color: #F0F0F0;
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    cursor: pointer;

    &:not(:last-child) {
        margin-right: 8px;
    }

    &.prev, &.next {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 16px 16px;
        background-color: transparent;
    }

    &.prev {
        background-image: url(/vietnam-city/imgs/arrow_left.svg);

        &:not(.disable):hover {
            background-image: url(/vietnam-city//imgs/arrow_left_red.svg);
        }
    }

    &.next {
        background-image: url(/vietnam-city/imgs/arrow_right.svg);

        &:not(.disable):hover {
            background-image: url(/vietnam-city//imgs/arrow_right_red.svg);
        }
    }

    &.disable {
        opacity: 0.5;
        cursor: not-allowed;
    }

    &:not(.disable):not(.active):hover {
        color: #E60012;
        font-weight: bold;
    }

    &.active {
        background-color: #E60012;
        color: #ffffff;
    }
}

.page-item-arrow {
    display: block;
    width: 100%;
    height: 100%;

    &.arrow-left {
        background: url(/vietnam-city/imgs/left_arrow.png) center center no-repeat;
    }

    &.arrow-right {
        background: url(/vietnam-city/imgs/right_arrow.png) center center no-repeat;
    }
}

.page-count {
    display: inline-block;
    margin-left: 12px;
    color: #2E2E3A;
    font-size: 14px;
    vertical-align: middle;
}
/* 分页end */

/* 侧边表单 */
.global-side-form-container {
    padding: 15px 20px 27px;
    border: 1px solid #E9E9E9;
}

.global-side-form-title {
    margin: 0 auto;
    color: #2E2E3A;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
}

.global-side-form-subtitle {
    margin: 0;
    color: #666666;
    font-size: 12px;
    text-align: center;
    line-height: 16px;

    strong {
        display: inline-block;
        margin: 2px 5px auto;
        color: #E60012;
        font-weight: normal;
    }
}

.global-side-form {
    margin-top: 13px;
}

.global-side-form-row {
    position: relative;
    margin-bottom: 18.6px;

    &::before, &::after {
        content: "";
        display: block;
        clear: both;
    }
}

.global-side-form-area {
    width: 100%;
    height: 32px;
    border: none;
    border-radius: 4px;
    border: 1px solid #999999;
    background: #F8F8F8;
    font-size: 13px;
    line-height: 1;
    text-indent: 4px;

    &:first-of-type {
        margin-right: 8px;
    }

    &.hide {
        display: none;
    }
}

.global-side-form-area option {
    padding: 0;
}

.global-side-form-input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0 8px;
    border-radius: 4px;
    border: 1px solid #999999;
    font-size: 13px;

    &::placeholder {
        color: #999999;
    }
}

input.global-side-form-input {
    height: 32px;
    line-height: 32px;
}

textarea.global-side-form-input {
    padding: 5px 15px;
    line-height: 1.42;
}

label.global-side-form-err-tip {
    /* position: absolute;
    top: 100%;
    left: 0; */
    color: #F56C6C;
    font-size: 12px;
    line-height: 1;
    padding-top: 2px;
}

.global-side-form-agreement {
    white-space: wrap;
    margin-bottom: 15px;
    color: #666666;
    font-size: 14px;
    line-height: 19px;
    text-align: left;


    .el-checkbox__input.is-checked + .el-checkbox__label {
        color: #666666;
    }
}

.global-side-form-agreement-checkbox {
    display: inline-block;
    margin-top: -3px;
    margin-right: 5px;
    vertical-align: middle;
}

.global-side-form-agreement-text {
    color: #108EEA;
}

.global-side-form-submit {
    display: block;
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 4px;
    background: #E60012;
    color: #ffffff;

    /* &:hover, &:focus {
        background: #D55540;
    } */

    &[disabled] {
        background: #E18786;
        cursor: not-allowed;
    }
}

.global-side-form-telephone {
    margin-top: 13.5px;
    color: #CA1D13;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;

    &::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 10px;
        margin-top: -3px;
        background: url(/assets/imgs/icon/form_phone.svg) center center/cover no-repeat;
        vertical-align: middle;
    }
}
/* 侧边表单end */

/* 侧边筛选栏 */
.side-filter-section {
    padding: 17px 16px 5px;
    border: 1px solid #E9E9E9;
    border-radius: 2px;
    background: #FFFFFF;

    &:not(:last-child) {
        margin-bottom: 24px;
    }
}

.side-filter-section-header {
    color: #2E2E3A;
    font-size: 18px;
    line-height: 1.388;
}

.side-filter-section-content {
    margin-top: 8px;
}

.side-filter-section-list  {
    display: flex;
    flex-wrap: wrap;
}

.side-filter-section-list-item {
    flex: 1 1 100%;
    margin-bottom: 8px;
    color: #333333;
    font-size: 14px;
    line-height: 1.428;

    .double-column & {
        flex-basis: 50%;
    }

    &.active {
        color: #E60012;
    }
}
/* 侧边筛选栏end */

.laypage-layout {
    text-align: center;
}

/* 主体内容end */