/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 2px;
}

.pics ul a {
    display: block;
    position: relative;
}

.pics ul a i {
    display: block;
}

.pics ul i img {
    width: 100%;
}

.pic-li-logo {
    position: absolute;
    z-index: 1;
    left: 10px;
    top: 10px;
}

.pic-li-logo img {
    width: 30px;
}

.pic-li-layer {
    display: none;
}

.pic-li-name {
    position: absolute;
    z-index: 55;
    left: 10%;
    bottom: 10px;
    width: 80%;
    padding: 0 5px;
    overflow: hidden;
    font: 400 14px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #0f7f00;
    border: 2px solid #fff;
}


@media (min-width: 1200px) {
    .pics {
        background: none;
    }

    .pics ul {
        display: flex;
    }

    .pics ul li {
        width: 25%;
        padding: 15px;
    }

    .pics ul a {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .pics ul a i {
        display: block;
    }

    .pics ul i img {
        width: 100%;
    }

    .pic-li-logo {
        position: absolute;
        z-index: 1;
        left: 25px;
        top: 25px;
    }

    .pic-li-logo img {
        width: auto;
    }

    .pic-li-layer {
        display: block;
        position: absolute;
        z-index: 11;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 127, 0, 0.7) url(../images/honer.png) no-repeat center 0/160px;
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        transition: 0.6s;
    }

    .pic-li-name {
        position: absolute;
        z-index: 55;
        left: 10%;
        bottom: 30px;
        width: 80%;
        font: 400 16px/42px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #0f7f00;
        border: 4px solid #fff;
    }

    .pics ul a:hover .pic-li-layer {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

}

/* 产品详情 */
.pic-er {}

.pic-er-left i {
    display: block;
    background: #fff;
    border: 3px solid #fff;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    padding: 10px 0 0;
}

.pic-er-title {
    margin: 0 0 10px;
    font: bold 18px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #ed8d2d;
}

.pic-er-name {
    font: 400 16px/30px '微软雅黑';
    color: #000;
}

.pic-er-name span {
    font-weight: bold;
}

.pic-er-info {
    margin-top: 10px;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

.pic-er-detail {
    margin: 10px 0 0;
}

.detail-title {
    font: bold 16px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #ed8d2d;
}


.detail-p {
    min-height: 120px;
    padding: 10px;
    font: 400 14px/24px '微软雅黑';
    color: #000;
    text-align: justify;
    background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1200px) {
    .pic-er {
        width: 730px;
        margin: 0 auto;
        background: none;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 340px;
    }

    .pic-er-left i {
        border: 8px solid #fff;
    }

    .pic-er-right {
        width: 350px;
        padding: 0;
    }


    .pic-er-title {
        margin: 0 0 15px;
        font: bold 18px/42px '微软雅黑';
    }

    .pic-er-box {
        height: 416px;
        padding: 30px;
        background: rgba(255, 255, 255, 0.9);
    }

    .pic-er-name {
        font: 400 22px/36px '微软雅黑';
    }

    .pic-er-info {
        margin-top: 10px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }

    .pic-er-detail {
        margin: 20px 0 0;
    }

    .detail-title {
        font: bold 18px/42px '微软雅黑';
    }


    .detail-p {
        padding: 10px;
        font: 400 16px/30px '微软雅黑';
    }
}