/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}


.pics ul li {
    width: 50%;
    padding: 2px;
}

.pics li a {
    position: relative;
    display: block;
    border: 1px solid #fff;
    overflow: hidden;
}

.pic-li-img img {
    width: 100%;
}

.pic-li-bottom {
    padding: 10px;
    color: #000;
    background: #fff;
}

.pic-li-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font: 400 16px/24px '微软雅黑';
}

.pic-li-weight {
    font: 400 12px/18px '微软雅黑';
}

.pic-li-layer {
    display: none;
}

@media (min-width: 1200px) {
    .pics {
        background: rgba(255, 255, 255, 0.8);
    }

    .pics ul {
        display: flex;
        flex-wrap: wrap;
    }

    .pics ul li {
        width: 33.3%;
        padding: 5px;
    }

    .pics li a {
        perspective: 1000px;
        position: relative;
        display: block;
        border: 3px solid #fff;
        overflow: hidden;
    }

    .pic-li-img {
        transform-origin: center bottom;
        transition: 0.6s;
    }

    .pic-li-img img {
        width: 100%;
    }

    .pic-li-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        color: #000;
        background: #fff;
        transition: 0.6s;
    }

    .pic-li-name {
        width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font: 400 18px/36px '微软雅黑';
    }

    .pic-li-weight {
        font: 400 14px/36px '微软雅黑';
    }

    .pic-li-layer {
        display: block;
        position: absolute;
        z-index: 10;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 0 0 0 30px;
        color: #fff;
        background: url(../images/pic_li_layer.png) no-repeat center 0/100% 100%;
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        transition: 0.6s;
    }

    .pic-layer-logo {
        padding: 30px 0;
    }

    .pic-layer-name {
        font: 400 18px/30px '微软雅黑';
    }

    .pic-layer-weight {
        font: 400 14px/20px '微软雅黑';
    }

    .pic-layer-more {
        display: flex;
        margin-top: 50px;
    }

    .pic-layer-more span {
        width: 120px;
        font: 400 14px/24px '微软雅黑';
        color: #fff;
        text-align: center;
        border: 3px solid #fff;
        border-right: 0;
    }

    .pic-layer-more i {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: #f6ab00;
    }

    .pic-layer-more i img {
        width: 16px;
    }

    .pics li a:hover .pic-li-img {
        opacity: 0;
        transform: rotateX(120deg);
    }

    .pics li a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .pics li a:hover .pic-li-bottom {
        opacity: 0;
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-left i {
    display: block;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    padding: 20px  0;
    color: #000;
    background: url(../images/pic_er_icon.png) no-repeat right 20px/80px;
}

.pic-er-name {
    font: 400 16px/24px '微软雅黑';
}

.pic-er-weight {
    padding: 0 0 10px;
    font: 400 14px/24px '微软雅黑';
}

.pic-er-attr {
    font: 400 16px/30px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 75px 90px 100px;
        background: rgba(255, 255, 255, 0.8) url(../images/pic_er_bg.png) no-repeat right bottom;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 490px;
    }

    .pic-er-left i {
        display: block;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 490px;
        padding: 20px 0 0;
        color: #000;
        background: url(../images/pic_er_icon.png) no-repeat right 0;
    }

    .pic-er-name {
        font: 400 18px/30px '微软雅黑';
    }

    .pic-er-weight {
        padding: 0 0 30px;
        font: 400 14px/24px '微软雅黑';
    }

    .pic-er-attr {
        padding: 0 0 18px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }
}