/* 产品列表 */
.pics {
    padding: 5px;
}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 5px;
}

.pics ul a {
    display: block;
    position: relative;
}

.pics ul i {
    display: block;
}

.pics ul i img {
    width: 100%;
}

.pic-li-name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 5px;
    font-size: 14px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    transition: 0.3s;
}

.pic-li-layer {
    display: none;
}

@media (min-width: 1200px) {
    .pics ul {
        display: flex;
        flex-wrap: wrap;
        padding: 2vw;
    }

    .pics ul li {
        width: 25%;
        padding: 0.6vw;
    }

    .pics ul a {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .pics ul i {
        display: block;
    }

    .pics ul i img {
        width: 100%;
    }

    .pic-li-name {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        font-size: 0.9vw;
        line-height: 3.6vw;
        color: #fff;
        text-align: center;
        background: rgba(0, 0, 0, 0.7);
        transition: 0.3s;
    }

    .pic-li-layer {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(198, 55, 49, 0.8);
        opacity: 0;
        transform: translate3d(0, 50%, 0);
        transition: 0.3s;
    }

    .pic-li-logo {
        padding: 3.5vw 0 1.5vw;
        text-align: center;
    }

    .pic-li-logo img {
        width: 6.8vw;
    }

    .pic-li-name2 {
        font-size: 1vw;
        line-height: 1.2;
        text-align: center;
        color: #fed900;
    }

    .pic-li-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2vw;
        height: 2vw;
        margin: 1.2vw auto 0;
        background: #c63731;
        border: 1px solid #fff;
        border-radius: 50%;
    }

    .pics ul a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .pics ul a:hover .pic-li-name {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    .pages {
        padding: 0 2.6vw 2vw;
    }

}


/* 产品详情 */
.pic-er {}

.pic-er-line {
    display: flex;
    justify-content: space-between;
}

.pic-er-left {
    width: 3rem;
}

.pic-er-left i {
    display: block;
    border: 1px solid #c83e38;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    width: 5.2rem;
    background: url(../images/pic_er_logo.png) no-repeat center bottom/4rem;
}

.pic-er-name {
    font-size: 16px;
    line-height: 1.2;
    color: #c83e38;
    text-align: left;
}

.pic-er-weight {
    padding-top: 6px;
    font-size: 14px;
    color: #000;
}

.pic-er-attr {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

.pic-er-p {
    min-height: 100px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 4.5vw 8vw;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 15.2vw;
    }

    .pic-er-left i {
        display: block;
        border: 2px solid #c83e38;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 30vw;
        background: url(../images/pic_er_logo.png) no-repeat center bottom/22.5vw;
    }

    .pic-er-name {
        padding: 0.6vw 0 1.8vw;
        font-size: 1.5vw;
        line-height: 1.2;
        color: #c83e38;
        text-align: left;
    }

    .pic-er-weight {
        font-size: 16px;
        color: #000;
    }

    .pic-er-attr {
        font-size: 16px;
        line-height: 1.2;
        color: #000;
    }

    .pic-er-p {
        min-height: 120px;
        margin-top: 2.5vw;
        font-size: 16px;
        line-height: 30px;
        color: #000;
    }

}