/* 产品列表 */
.pics {
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

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

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

.pics ul li a {
    display: block;
    overflow: hidden;
    position: relative;
    border: 2px solid #fff;
}

.pics ul li a i {
    display: block;
}

.pics ul li a img {
    width: 100%;
    height: 112px;
}

.pic-li-layer-border {
    background: rgba(0, 0, 0, 0.8);
}

.pic-li-box {
    width: 100%;
    padding: 0 10px;
    text-align: center;
}

.pic-li-box p {
    overflow: hidden;
    font: 400 14px/30px '微软雅黑';
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pic-li-box span {
    display: none;
}

@media (min-width: 1200px) {
    .pics {
        padding: 10px;
    }

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

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

    .pics ul li a {
        border: 4px solid #fff;
    }

    .pics ul li a img {
        width: 100%;
        height: 245px;
    }

    .pic-li-layer {
        position: absolute;
        left: 3%;
        top: 3%;
        width: 94%;
        height: 94%;
        border: 4px solid rgba(255, 255, 255, 0.4);
        opacity: 1;
        transform: translate3d(0, 120%, 0);
        transition: 0.6s;
    }

    .pic-li-layer-border {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .pic-li-box {
        width: 100%;
        padding: 0 10px;
        text-align: center;
    }

    .pic-li-box p {
        font: 400 18px/30px '微软雅黑';
    }

    .pic-li-box span {
        display: block;
        width: 100px;
        margin: 20px auto 0;
        font: 400 16px/30px '微软雅黑';
        color: #fff;
        text-transform: uppercase;
        background: #ebb20b;
    }

    .pics ul li a:hover .pic-li-layer {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}



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

.pic-er-banner {
    position: relative;
}

.pic-btn-left {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 50%;
    margin-top: -36px;
    cursor: pointer;
}

.pic-btn-right {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 50%;
    margin-top: -36px;
    cursor: pointer;
}

.pic-er-banner i {
    display: block;
}

.pic-er-banner i img {
    width: 100%;
    height: 234px;
}

.pic-er-img p {
    padding: 10px 0 0;
    font: 400 18px/24px '微软雅黑';
    color: #000;
    text-align: center;
}

.pic-er-detail {
    display: flex;
    padding: 10px 0 0;
}

.pic-er-detail span {
    padding: 0 10px;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    background: #385e8f;
}

.pic-er-detail i {
    display: none;
}

.pic-er-info {
    min-height: 100px;
    padding: 5px;
    font: 400 14px/24px '微软雅黑';
    color: #000;
    border: 1px solid #bfbfbf;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 35px 65px;
    }

    .pic-er-banner {
        width: 740px;
        margin: 0 auto;
    }

    .pic-er-banner i img {
        width: 100%;
        height: 516px;
    }

    .pic-er-img p {
        padding: 20px 0 0;
        font: 400 24px/30px '微软雅黑';
    }

    .pic-er-detail {
        justify-content: space-between;
        align-items: center;
        padding: 10px 0 0;
    }

    .pic-er-detail span {
        padding: 0 20px;
        font: 400 18px/60px '微软雅黑';
    }

    .pic-er-info {
        padding: 20px;
        font: 400 16px/30px '微软雅黑';
    }

}