/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 3px;
}

.pics ul a {
    display: block;
    position: relative;
}

.pics ul i {
    display: block;
    border: 1px solid #000;
}

.pics ul i img {
    width: 100%;
}

.pic-li-logo {
    display: none;
}

.pic-li-name {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    text-align: center;
    border: 1px solid #000;
    border-top: 0;
}

.pic-li-weight {
    display: none;

}

.pic-li-rice {
    display: none;
}


@media (min-width: 1200px) {
    .pics {
        padding: 2vw 2vw 0;
    }

    .pics ul li {
        width: 33.3%;
        padding: 0 0.5vw 3vw;
        overflow: hidden;
    }

    .pics ul a {
        display: block;
        position: relative;
    }

    .pics ul i {
        display: block;
        border: 2px solid #000;
    }

    .pics ul i img {
        width: 100%;
    }

    .pic-li-layer {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 3vw 0 0 3vw;
        background: url(../images/pic_li_bg.png) no-repeat center 0/cover;
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        transition: 0.6s;
    }

    .pic-li-logo {
        display: block;
    }

    .pic-li-logo img {
        width: 5vw;
    }

    .pic-li-name {
        padding: 1.5vw 0 0;
        font-size: 1.2vw;
        line-height: 1.5vw;
        color: #fff;
        text-align: left;
        border: 0;
    }

    .pic-li-weight {
        font-size: 0.9vw;
        line-height: 1.2vw;
        color: #fff;
    }

    .pic-li-rice {
        display: block;
        position: absolute;
        z-index: 50;
        right: 0;
        bottom: -2.5vw;
        opacity: 0;
        transform: translate3d(0, 100%, 0);
        transition: 0.6s;
    }

    .pic-li-rice img {
        width: 5.78vw;
    }

    .pics ul a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .pics ul a:hover .pic-li-rice {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .pages {
        padding: 0 1vw 2vw;
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-line {
    display: block;
}

.pic-er-left i {
    display: block;
    border: 2px solid #8e090a;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    padding: 0.2rem 0 0;
}

.pic-er-name {
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

.pic-er-weight {
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

.pic-er-attr {
    margin: 0.2rem 0 0;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.pic-er-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.2rem 0;
    background: #b40d0f;
}

.pic-er-info span {
    display: block;
    width: 1.8rem;
    padding-right: 0.2rem;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    background: url(../images/pic_er_shape.png) no-repeat 0 center/100%;
}

.pic-er-info p {
    padding-right: 0.1rem;
    font-size: 12px;
    line-height: 24px;
    color: #df5757;
}

.pic-er-p {
    text-align: center;
}

.pic-er-p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 2vw;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 26.4vw;
    }

    .pic-er-left i {
        display: block;
        border: 2px solid #8e090a;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 28vw;
        padding: 1vw 0 0;
    }

    .pic-er-name {
        font-size: 1.5vw;
        line-height: 1.8vw;
        color: #000;
    }

    .pic-er-weight {
        font-size: 0.9vw;
        line-height: 1.6vw;
        color: #000;
    }

    .pic-er-attr {
        margin: 2vw 0 0;
        font-size: 0.9vw;
        line-height: 2vw;
        color: #000;
    }

    .pic-er-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 2vw 0;
        background: #b40d0f;
    }

    .pic-er-info span {
        display: block;
        width: 8vw;
        padding-right: 1.8vw;
        font-size: 0.9vw;
        line-height: 2.4vw;
        color: #fff;
        text-align: center;
        background: url(../images/pic_er_shape.png) no-repeat 0 center/8vw;
    }

    .pic-er-info p {
        padding: 0 1vw;
        font-size: 0.9vw;
        line-height: 2.4vw;
        color: #df5757;
    }

    .pic-er-p {
        text-align: center;
    }

    .pic-er-p img {
        max-width: 100%;
    }
}