#container{
    background: #f0e2c8;
}
.top{
    position: fixed;
    border-bottom: 2px solid white;
    width: 97%;
    padding: 8px 1.5%;
    left: 0;
    white-space: nowrap;
    overflow: scroll;
}

.top a{
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #333333;
    padding: 2px 10px;
    border-radius: 30px;
    color: black;
    margin-right: 5px;
}
.top .active{
    color: #F83333;
    border-color: #F83333;
}

.left{
    position: fixed;
    border-right: 2px solid white;
    padding: 5px;
    width: 75px;
    left: 0;
    top: 44px;
    overflow-y: auto;
    bottom: 50px;
}
.left a{
    display: block;
    width: 100%;
    text-align: center;
    padding: 7px 0;
    font-size: 15px;
    color: black;
}
.left .active{
    color: #F83333;
    font-weight: bold;
}


.goods{
    position: fixed;
    top: 44px;
    left: 90px;
    right: 5px;
    bottom: 50px;
    padding-top: 5px;
    overflow-y: auto;
}
.goods .item{
    display: inline-block;
    vertical-align: middle;
    border: 2px solid white;
    border-radius: 10px;
    /*box-shadow: 8px 8px 4px #e6e6e6;*/
    width: calc(50% - 18px);
    margin: 5px 7px;
}
.goods .item img{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.goods .item div{
    font-size: 14px;
    color: black;
    width: 95%;
    padding: 3px 2.5%;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}