/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 4px;
}

.pics ul li a {
    position: relative;
    display: block;
    overflow: hidden;
}

.pics ul li i {
    display: block;
}

.pics ul li i img {
    width: 100%;
}

.pic-li-layer {
    display: none;
}

@media (min-width: 1200px) {
    .pics {
        padding: 5px;
    }

    .pics ul {
        display: flex;
        flex-wrap: wrap;
    }

    .pics ul li {
        width: 33.3%;
        padding: 0.75vw;
    }

    .pics ul li a {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .pics ul li i {
        display: block;
    }

    .pics ul li i img {
        width: 100%;
    }

    .pic-li-layer {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 0;
        transform: translate3d(0, 50%, 0);
        transition: 0.3s;
    }

    .pic-li-layer img {
        width: 10vw;
    }

    .pics li a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-left i {
    display: block;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    padding: 0.4rem 0 0;
}

.pic-er-name {
    font-size: 24px;
    line-height: 1.4;
}

.pic-er-weight {
    width: 100px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    background: #95020b;
    border-radius: 18px;
}

.pic-er-attr {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.2;
}

.pic-er-attr p {
    margin-bottom: 5px;
}

.pic-er-p {
    min-height: 200px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 30px;
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 1.5vw;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 24vw;
    }

    .pic-er-left i {
        display: block;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 32vw;
        padding: 3vw 0 0;
        background: url(../images/pic_er_logo.png) no-repeat right 4vw;
    }

    .pic-er-name {
        font-size: 1.5vw;
        line-height: 1.2;
    }

    .pic-er-weight {
        width: 140px;
        margin-top: 0.4vw;
        font-size: 14px;
        line-height: 36px;
        color: #fff;
        text-align: center;
        background: #95020b;
        border-radius: 18px;
    }

    .pic-er-attr {
        margin-top: 2vw;
        font-size: 0.9vw;
        line-height: 1.2;
    }

    .pic-er-attr p {
        margin-bottom: 1.2vw;
    }

    .pic-er-p {
        min-height: 240px;
        margin-top: 2vw;
        font-size: 14px;
        line-height: 30px;
        color: #000;
    }

}