
/*菜单*/
.scrollx{
    height: 80px;
    overflow: hidden;
    background: #fff;
}
.scrollx.mescroll-touch-x {
    padding-top: 20px;
}

.scrollx-content{
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}
.nav {
    padding: 0 16px 0 10px;
}
.nav li{
    display: inline-block;
    padding: 16px 10px 17px 10px;
    margin-bottom: 30px;/*把水平滚动条撑到外面,达到隐藏的目的*/
    vertical-align: middle;
    position: relative;
}
.nav .active{
    /* color: #FF6990; */
}
.nav .active:after{
    content: " ";
    width: 50%;
    position: absolute;
    bottom: 0px;
    left: 25%;
    height: 3px;
    border-radius: 2px;
    background: #FF6990;
    
}



/*列表*/
.all{
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #EFEFEF;
}
/*展示上拉加载的数据列表*/
.data-list li{
    position: relative;
    padding: 20px 8px 20px 30px;
    border-bottom: 1px solid #eee;
    background: #fff;
    margin-top: 7px;
}
.data-list .pd-img{
    position: absolute;
    left: 18px;
    top: 20px;
    width: 120px;
    height: 80px;
}
.data-list .pd-name{
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    margin-top: 0px;
}
.data-list .pd-price{
    margin-top: 8px;
    color: red;
}
.data-list .pd-sold{
    font-size: 12px;
    margin-top: 20px;
    color: gray;
}
/*隐藏*/
.hide{display: none;}
