body {
    background-color: white;
}
.main-banner {
    padding-top: 44px;
}
.main-content {
    padding-bottom: 0;
    padding-top: 0;
}
.main-content .return-icon {
    position: fixed;
    left: 10px;
    top: 15px;
    z-index: 999;
}

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

/* 左侧导航栏 */
.category-content .content-left {
    width: 32%;
    float: left;
}
.content-left ul {
    height: 100%;
    overflow-y: auto;
}
.content-left ul li {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 15px;
    overflow: hidden;
}
.content-left ul .cur {
    background-color: white;
    color: #129243;
}

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

/* 商品列表 */
.product-list .product-content {
    /*overflow-y: auto;*/
    /*height: 720px;*/
}
.product-content .product-item {
    padding: 10px;
    display: flex;
    background-color: white;
}
.product-item .product-cover {
    width: 100px;
    height: 100px;
}
.product-item .product-cover img {
    width: 100px;
    height: 100px;
    border-radius: 2px;
}
.product-item .product-detail {
    padding: 9px;
}
.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 span a{
    color: #FF6D00;
}