/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

.pics ul li {
    width: 50%;
    padding: 2px;
}

.pics ul a {
    perspective: 1000px;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #000;
}

.pics ul a i {
    display: block;
    transition: 0.6s;
}

.pics ul i img {
    width: 100%;
}

.pics ul a p {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    background: #049c16;
}

.pic-li-layer {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(29, 0, 83, 0.7);
    opacity: 0;
    transform: translate3d(0, 50%, 0);
    transition: 0.6s;
}

.pic-li-logo {
    padding: 80px 0 50px;
}

.pic-li-name {
    font: 400 18px/20px '微软雅黑';
    color: #fff;
}

.pic-li-plus {
    padding: 30px 0 0;
    text-align: center;
}

@media (min-width: 1200px) {
    .pics {}

    .pics ul {
        display: flex;
        flex-wrap: wrap;
        padding: 40px 120px;
    }

    .pics ul li {
        width: 33.3%;
        padding: 10px;
    }

    .pics ul a {
        perspective: 1000px;
        display: block;
        position: relative;
        overflow: hidden;
        border: 1px solid #000;
    }

    .pics ul a i {
        display: block;
        transition: 0.6s;
    }

    .pics ul i img {
        width: 100%;
    }

    .pics ul a p {
        width: 224px;
        margin: 0 auto;
        font: 400 18px/36px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #049c16;
    }

    .pic-li-layer {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        background: rgba(29, 0, 83, 0.7);
        opacity: 0;
        transform: translate3d(0, 50%, 0);
        transition: 0.6s;
    }

    .pic-li-logo {
        padding: 80px 0 50px;
    }

    .pic-li-name {
        font: 400 18px/20px '微软雅黑';
        color: #fff;
    }

    .pic-li-plus {
        padding: 30px 0 0;
        text-align: center;
    }

    .pics li a:hover i {
        transform: scale(0.8)
    }

    .pics li a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

}

/* 产品详情 */

.pic-er-left {
    border: 1px solid #000;
}

.pic-er-left img {
    width: 100%;
}

.pic-er-right {
    position: relative;
    margin-top: 10px;
    padding-bottom: 30px;
    background: url(../images/pic_er_logo.png) no-repeat right bottom/90px;
}

.pic-er-all {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 10px;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    background: #132a88;
}

.pic-er-name {
    font: 400 16px/30px '微软雅黑';
    color: #000;
}

.pic-er-attr {
    display: flex;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

.pic-er-ele {
    padding: 15px 0;
    font: 400 16px/1 '微软雅黑';
}

.pic-er-detail {
    margin-top: 10px;
    min-height: 80px;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 110px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.85);
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 420px;
    }

    .pic-er-right {
        position: relative;
        width: 505px;
        background: url(../images/pic_er_logo.png) no-repeat right bottom;
    }

    .pic-er-all {
        position: absolute;
        right: 0;
        top: 0;
        padding: 0 10px;
        font: 400 18px/36px '微软雅黑';
        color: #fff;
        background: #132a88;
    }

    .pic-er-name {
        font: 400 30px/48px '微软雅黑';
        text-align: left;
    }

    .pic-er-ele {
        padding: 20px 0;
        font: 400 18px/1 '微软雅黑';
    }

    .pic-er-attr {
        font: 400 18px/30px '微软雅黑';
    }

    .pic-er-detail {
        min-height: 120px;
        margin-top: 50px;
        font: 400 16px/30px '微软雅黑';
    }
}