/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 4px;
}

.pics ul a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.pics ul a i {
    display: block;
    border-bottom: 1px solid #e5e5e5;
}
.pics ul a i img{
    width: 100%;
}

.pic-li-name {
    padding: 0 2px;
    font: 400 16px/36px '微软雅黑';
    text-align: center;
    color: #000;
}

.pic-li-layer {
    display: none;
}

@media (min-width: 1200px) {
    .pics {
        padding: 20px 8px 240px;
    }

    .pics ul li {
        width: 25%;
        padding: 8px;
    }

    .pics ul a {
        position: relative;
        display: block;
        overflow: hidden;
        background: #fff;
        border: 1px solid #e5e5e5;
    }

    .pics ul a i {
        display: block;
        border-bottom: 1px solid #e5e5e5;
    }

    .pic-li-name {
        padding: 15px 5px;
        font: 400 16px/30px '微软雅黑';
        text-align: center;
        color: #000;
        transition: 0.4s;
    }

    .pic-li-layer {
        display: block;
        position: absolute;
        z-index: 10;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 148px 0 0;
        text-align: center;
        color: #fff;
        background: rgba(191, 135, 1, 0.85);
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        transition: 0.4s;
    }

    .pic-li-logo {
        padding: 0 0 20px;
    }

    .pic-li-detail {
        font: 400 30px/36px '微软雅黑';
    }

    .pic-li-name2 {
        font: 400 16px/30px '微软雅黑';
    }

    .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, 50%, 0);
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-img i {
    display: block;
    border: 1px solid #e5e5e5;
}

.pic-er-img i img {
    width: 100%;
}

.pic-er-font {
    padding: 10px 0 0;
    background: url(../images/pic_er_logo.png) no-repeat right 10px/42px;
}

.pic-er-name {
    margin: 0 0 10px;
    font: 400 24px/30px '微软雅黑';
    color: #000;
}

.pic-er-line {
    display: flex;
    font: 400 16px/30px '微软雅黑';
    color: #000;
}

.pic-er-attr {
    flex-shrink: 0;
}

.pic-er-val {
    flex-grow: 1;
}

.pic-er-weight {
    width: 140px;
    margin: 10px 0 0;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #9c2c2d;
    border-radius: 30px;
}

.pic-er-p {
    min-height: 90px;
    margin: 10px 0;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}
@media (min-width: 1200px) {
    .pic-er {
        padding: 90px 160px 240px;
    }

    .pic-er-box {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-img {
        width: 450px;
    }

    .pic-er-img i {
        display: block;
        border: 1px solid #e5e5e5;
    }

    .pic-er-img i img {
        width: 100%;
    }

    .pic-er-font {
        width: 385px;
        padding: 30px 0 0;
        background: url(../images/pic_er_logo.png) no-repeat right 24px;
    }

    .pic-er-name {
        margin: 0 0 40px;
        font: 400 30px/36px '微软雅黑';
        color: #000;
    }

    .pic-er-line {
        display: flex;
        font: 400 18px/48px '微软雅黑';
        color: #000;
    }

    .pic-er-attr {
        flex-shrink: 0;
    }

    .pic-er-val {
        flex-grow: 1;
    }

    .pic-er-weight {
        width: 150px;
        margin: 80px 0 0;
        font: 400 18px/30px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #9c2c2d;
        border-radius: 30px;
    }

    .pic-er-p {
        min-height: 90px;
        margin: 30px 0 10px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }

}