/*搜索栏*/
.bk-bar-search {
    padding: 1.5rem 1.2rem .5rem;
    display: flex;
    justify-content: space-between;
    background: #fff;
}

    .bk-bar-search input {
        flex: 1;
        margin-right: 1rem;
        border-radius: 3rem;
        height: 3.5rem;
        border: 1px solid #dcdee2;
        font-size: 1.2rem;
        color: #666;
        padding: 0 1rem;
    }

    .bk-bar-search button {
        border-radius: 50%;
        border: none;
        padding: 0;
        font-size: 1.6rem;
        width: 3.5rem;
        height: 3.5rem;
        line-height: 3.5rem;
        background-color: #fd4442;
        color: #fff;
    }
/* 分类导航 */
.bk-bar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 4.5rem;
    background: #fff;
    overflow-x: scroll;
    align-items: center;
}

    .bk-bar-nav li {
        font-size: 1.4rem;
        flex-shrink: 0;
        padding: 0 1rem;
        text-align: center;
        color: #999;
    }

        .bk-bar-nav li.active {
            color: #fd4442;
        }
/* 轮播图 */
.am-slider-a1 .am-control-nav li a {
    position: relative;
    overflow: hidden;
}
#imgSlider.am-slider .am-slides img {
    display: block;
    width: 100%;
    height: 100%;
}
    .am-slider-a1 .am-control-nav li a.am-active,
    .am-slider-a5 .am-control-nav li a.am-active {
        background-color: #fd4442;
    }
/* 商品列表筛选栏 */
.bk-pl-filter {
    display: flex;
    padding: 0;
    margin: 0;
    background: #fff;
}

    .bk-pl-filter li {
        list-style: none;
        display: block;
        flex: 1;
        height: 4rem;
        line-height: 4rem;
        text-align: center;
        font-size: 1.4rem;
    }
/* 列表楼层标题 */
.index-floor-title {
    font-size: 14px;
    color: #666;
    padding: 1.5rem 1.2rem 1rem;
}
/* 商品列表 */
.other-list-part {
    padding: 10px 0;
}

.bk-pl {
    display: flex;
    flex-wrap: wrap;
}

.weui-loadmore_line .weui-loadmore__tips {
    background-color: #f6f6f6;
}
/* 商品列表-商品项 */
.bk-pl-item {
    width: calc(50% - 1.8rem);
    margin: 0 0 1.2rem 1.2rem;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 1rem rgba(220, 201, 204, 0.3);
}

    .bk-pl-item .img-wrap {
        position: relative;
    }

        .bk-pl-item .img-wrap::after {
            content: "";
            display: block;
            width: 100%;
            padding-top: 100%;
        }

        .bk-pl-item .img-wrap img {
            position: absolute;
            display: block;
            width: 100%;
            height: 100%;
        }

        .bk-pl-item .img-wrap .promotion-time {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 0 0.5rem;
            display: flex;
            width: 100%;
            justify-content: space-between;
            font-size: 1.2rem;
            height: 2rem;
            line-height: 2rem;
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
        }

    .bk-pl-item .title {
        font-size: 1.4rem;
        line-height: 1.6rem;
        height: 3.2rem;
        margin: .8rem .7rem .8rem;
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .bk-pl-item .sub-wrap {
        padding: 0 0.7rem 0.7rem;
        display: flex;
        align-items: center;
        height: 2rem;
    }

        .bk-pl-item .sub-wrap .price,
        .bk-pl-item .sub-wrap .integral {
            white-space: nowrap;
        }

            .bk-pl-item .sub-wrap .price span {
                font-size: 1.2rem;
                color: #fd4442;
            }

                .bk-pl-item .sub-wrap .price span:last-child {
                    font-size: 1.6rem;
                    color: #fd4442;
                    font-weight: 600;
                }

            .bk-pl-item .sub-wrap .integral span {
                font-size: 1.2rem;
                color: #999;
            }

                .bk-pl-item .sub-wrap .integral span:last-child {
                    font-size: 1.5rem;
                    color: #fd4442;
                    font-weight: 600;
                }
