article {
    background: url(../images/pic_bg.jpg) no-repeat center bottom/cover;
}

/* 产品列表 */
.pics {
    padding: 0;
    background: none;
}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 2px;
}

.pics ul li a {
    position: relative;
    display: block;
    color: #000;
    border: 1px solid #bfbfbf;
    background: #fff;
}

.pics ul li i {
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
}

.pics ul li i img {
    width: 100%;
}

.pics ul li p {
    display: block;
    overflow: hidden;
    font: bold 14px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(63, 127, 85, 0.8);
}

@media (min-width: 1200px) {

    .pics {
        padding: 20px 50px;
        background: rgba(255, 255, 255, 0.8);
    }

    .pics ul {
        display: flex;
        padding: 0 80px;
    }

    .pics ul li {
        width: 33.33%;
        padding: 20px;
    }

    .pics ul li a {
        overflow: hidden;
    }

    .pics ul li p {
        position: absolute;
        left: 0;
        bottom: -64px;
        width: 100%;
        line-height: 64px;
        opacity: 0;
        transition: 1s;
    }

    .pics ul li a:hover p {
        opacity: 1;
        bottom: 0;
    }

    .pics ul li a:hover {
        border-color: #59b156;
    }

}



/* 产品详情 */
.pic-er-left {
    padding: 0 0 10px;
}

.pic-er-left img {
    width: 100%;
    border: 1px solid #bfbfbf;
}

.pic-er-title {
    font: 400 18px/24px '微软雅黑';
    color: #000;
}

.pic-er-title span {
    font-weight: bold;
}

.pic-er-p {
    min-height: 150px;
    padding: 5px;
    font: 400 14px/24px '微软雅黑';
    color: #000;
    text-align: justify;
}

@media (min-width: 1200px) {
    .pic-er {
        display: flex;
        justify-content: space-between;
        padding: 50px 100px;
        background: rgba(255, 255, 255, 0.8) url(../images/pic_er_layer.png) no-repeat right bottom;
    }

    .pic-er-left {
        width: 475px;
    }

    .pic-er-left img {
        width: 100%;
    }

    .pic-er-right {
        width: 485px;
    }

    .pic-er-title {
        font: 400 24px/30px '微软雅黑';
        color: #000;
    }

    .pic-er-p {
        min-height: 150px;
        margin: 10px 0 0;
        padding: 5px;
        font: 400 16px/30px '微软雅黑';
    }

}