﻿/*=============礼品兑换================*/
/*分享按钮*/
.oct-header-right .header-icon-my {
    width: 22px;
    height: 22px;
}

/*子导航*/
.oct-header-sub {
    clear: both;
    display: block;
    height: 75px;
}

.goods-type-nav {
    clear: both;
    display: flex;
    align-content:space-evenly;
    align-items:center;
    width: 100%;
    background: white;
    padding: 6px;
    position: fixed;
    top: 75px;
    left: 0;
    z-index: 100;
    padding-bottom: 0px;
    padding-top: 0;
    height: 40px;
    background: white;
    border-top: 1px dashed #f1f1f1;
    overflow:hidden;
}
    .goods-type-nav div {
        display: flex;
        align-items: center;
        font-size: 14px;
        justify-content:center;
        cursor:pointer;
        text-align:center;
        width: 100px;
    }
    .goods-type-nav .nav-item {
        width: 150px;
    }

.goods-type-nav img {
    width: 6px;
    height: 6px;
    margin-left: 5px;
}
.search-where-1{
    color:red;
}
.search-current {
    color: red;
}
/*弹出条件层*/
body .all-where-show {
    clear: both;
    display: block;
    width: 100%;
    background: white;
    padding: 6px;
    padding-bottom: 0;
    position: fixed;
    top: 110px;
    left: 0;
    z-index: 199;
    padding-bottom: 10px;
    padding-top: 0;
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.all-where-type {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    clear: both;
    padding-left: 10px;
    padding-right: 10px;
}

    .all-where-type span {
        float: left;
        padding: 2px 6px;
        font-size: 12px;
        margin: 0 auto;
        background: #ededed;
        border-radius: 5px;
        display: block;
        margin-right: 16px;
        margin-bottom: 8px;
    }

    .all-where-type .goods-type-current {
        color: white;
        background: #ff6a00;
    }





body .oct-content {
    padding-top: 68px;
}

/*积分信息*/
.integral-msg {
    padding: 5px;
    text-align: center;
    font-size: 12px;
}

    .integral-msg b {
        font-weight: normal;
        color: red;
        padding-left: 5px;
    }


/*-------------商品列表--------------*/
/*-------------商品列表--------------*/
.goods-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 5px;
    background: none;
}

.goods-item {
    width: 47%;
    background: white;
    margin-top: 6px;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.goods-img {
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 180px;
}

    .goods-img img {
        height: 180px;
        width: 100%;
        overflow: hidden
    }

.goods-name {
    font-size: 12px;
    padding: 4px;
    text-align: left;
    height: 45px;
    overflow: hidden;
    display: block;
}

.goods-price {
    padding: 4px;
    padding-right: 0;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .goods-price b {
        color: #fc5c16;
        font-size: 14px;
    }

    .goods-price span {
        background: #fc5c16;
        font-size: 12px;
        color: white;
        padding: 0 5px;
        border-radius: 20px;
    }

    .goods-price .goods-price-no {
        color: gray;
        text-decoration: line-through;
        background: none;
    }

    .goods-price .goods-stock-residue {
        color: gray;
        background: none;
    }


    .goods-price div {
        font-size: 11px;
        color: #b5b5b5;
        padding-right: 5px;
    }

    .goods-price img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

.goods-item {
    position: relative;
    overflow: visible;
}

    .goods-item .goods-item-badge {
        background: #ff6a00;
        color: white;
        font-size: 12px;
        border-radius: 20px;
        position: absolute;
        top: -5px;
        left: -5px;
        padding-left: 5px;
        padding-right: 5px;
    }


/*列表承载Div,必须这样定义样式*/
.mescroll {
    position: fixed;
    top: 115px; /*这个值可以控制滚动区离顶部的距离*/
    bottom: 0;
    height: auto;
    padding-bottom: 80px;
    background: #f5f5f5;
}



