body {
    overflow: hidden;
    width: 100%;
}
.header-top {
    z-index: 999;
}
/* 搜索框 */
.main-content .search-input {
    background-color: white;
    width: 100%;
    height: 44px;
    position: fixed;
    top: 44px;
    z-index: 999;
    padding: 6px 10px;
}
.main-content .search-input input {
    background: #F0F0F0;
    border-radius: 15px;
    width: 80%;
    height: 32px;
    border: none;
    text-align: center;
}

/* 筛选条件 */
.main-content .filter {
    width: 100%;
    height: 44px;
    padding-top: 44px;
}

/* 主体内容 */
.main-content .category-content {
    margin-top: 44px;
    width: 100%;
}

/* 左侧导航栏 */
.category-content .mask {
    width: 100%;
    position: absolute;
    background-color: black;
    opacity: 0.4;
    display: none;
}
.category-content .content-left {
    width: 24%;
    float: left;
}
.content-left ul {
    height: 100%;
    overflow-y: auto;
}
.content-left ul li {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 10px;
    overflow: hidden;
}
.content-left ul .cur {
    background-color: white;
    color: #52acc7;
}

/* 右侧内容 */
.category-content .content-right {
    height: 100%;
    width: 76%;
    float: left;
}

/* 二级分类 */
.content-right .sub-nav {
    height: 58px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sub-nav .expand-btn {
    position: absolute;
    right: 0;
    width: 43px;
    height: 58px;
    background-color: white;
    box-shadow: 0 1px 6px 1px rgba(207,207,207,0.5);
    text-align: center;
    padding-top: 15px;
}
.sub-nav .expand-btn span {
    writing-mode: vertical-lr;
    font-size: 10px;
    color: #868686;
    line-height: 12px;
    display: inline-block;
}
.sub-nav .expand-btn img {
    display: block;
    margin-left: 18px;
}
.sub-nav ul {
    overflow-x: auto;
    display: flex;
}
.sub-nav ul li {
    border: 1px solid rgba(225,225,225,1);
    border-radius: 1px;
    padding: 5px 6px;
    font-size: 10px;
    color: #868686;
    margin-left: 6px;
}
.sub-nav ul .cur {
    color: #52acc7;
    border: 1px solid #52acc7;
}
.sub-nav ul li a:first-child {
    margin-left: 0;
}

/* 商品列表 */
.content-right .product-list {

}
.content-right .sub-category {
    position: absolute;
    width: 280px;
    background-color: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 99;
    transition: all .3s ease-in-out;
    padding: 10px;
    right: -300px;
    overflow-y: auto;
    display: none;
}
.sub-category ul {
    display: flex;
    flex-wrap: wrap;
}
.sub-category ul li {
    border: 1px solid rgba(225,225,225,1);
    border-radius: 1px;
    padding: 5px 6px;
    font-size: 10px;
    color: #868686;
    margin-left: 6px;
    margin-top: 6px;
}
.sub-category ul .cur {
    color: #52acc7;
    border: 1px solid #52acc7;
}
.product-list .product-content {
    overflow-y: auto;
}
.product-list .category-title {
    background: #F0F0F0;
    font-size: 10px;
    color: #A2A2A2;
    height: 24px;
    line-height: 24px;
    padding-left: 10px;
}
.product-list .product-item {
    padding: 10px;
    display: flex;
    background-color: white;
}
.product-item .product-cover {
    width: 80px;
    height: 80px;
    padding-top: 10px;
}
.product-item .product-cover img {
    width: 80px;
    height: 80px;
    border-radius: 2px;
}
.product-item .product-detail {
    padding: 9px;
    width: 100%;
}
.product-item .product-detail .title {
    white-space: nowrap;
    width: 127px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-item .product-detail .description {
    font-size: 10px;
    color: #7A7A7A;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 5px;
    line-height: 22px;
}
.product-item .product-detail .price a{
    color: #FF6D00;
}
.product-item .product-detail .price img {
    width: 20px;
    height: 20px;
    margin-top: -2px;
}