/* 产品列表 */
.pics {}

.pic-ul ul {
    display: flex;
    flex-wrap: wrap;
}

.pic-ul ul li {
    width: 50%;
    padding: 2px;
}

.pic-ul li a {
    display: block;
}

.pic-li-img {
    position: relative;
    overflow: hidden;
    background: #c5141c;
}

.pic-li-img i {
    display: block;
}

.pic-li-img i img {
    width: 100%;
}

.pic-li-layer {
    display: none;
}

.pic-li-name {
    font: 400 16px/36px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #c5141c;
}

@media (min-width: 1200px) {
    .pics {
        padding: 30px 20px;
    }

    .common-nav {
        padding: 0 10px 10px;
    }

    .pic-ul ul {
        display: flex;
        flex-wrap: wrap;
    }

    .pic-ul ul li {
        width: 33.3%;
        padding: 10px;
    }

    .pic-ul li a {
        display: block;
    }

    .pic-li-img {
        position: relative;
        overflow: hidden;
        background: #c5141c;
    }

    .pic-li-img i {
        display: block;
    }

    .pic-li-img i img {
        width: 100%;
    }

    .pic-li-layer {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        opacity: 0;
        transform: translate3d(0, 100%, 0);
        transition: 0.6s;
    }

    .pic-li-logo {
        padding: 100px 0 30px;
    }

    .pic-li-more {
        font: 400 18px/30px '微软雅黑';
        color: #fff;
    }

    .pic-li-name {
        padding: 15px 0;
        font: 400 18px/30px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #c5141c;
    }


    .pic-ul li a:hover .pic-li-img i {
        opacity: 0.2;
    }

    .pic-ul li a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }


}


/* 产品详情 */
.pic-er {}

.pic-line {
    display: block;
    margin: 0 4px;
}

.pic-er-left i {
    display: block;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    padding: 10px 0;
}

.pic-er-name {
    font: 400 16px/36px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #c5141c;
}

.pic-er-weight {
    padding: 5px 0 0;
    font: 400 14px/24px '微软雅黑';
    color: #000;
    text-align: center;
}

.pic-er-p {
    margin: 10px 0;
    font: 400 14px/24px '微软雅黑';
}

.pic-er-detail img{
    max-width: 100%;
}

@media (min-width: 1200px) {
    .pic-er {}

    .pic-line {
        display: flex;
        justify-content: space-between;
        margin: 0;
        padding: 0 100px 0 10px;
    }

    .pic-er-left {
        width: 600px;
    }

    .pic-er-left i {
        display: block;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 360px;
        padding: 50px 0 0;
    }

    .pic-er-name {
        font: 400 18px/60px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #c5141c;
    }

    .pic-er-weight {
        padding: 5px 0 0;
        font: 400 14px/24px '微软雅黑';
        color: #000;
        text-align: center;
    }

    .pic-er-p {
        height: 390px;
        margin: 35px 0 0;
        font: 400 16px/30px '微软雅黑';
    }
}