/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 100%;
    padding: 3px 0;
}

.pics ul a {
    display: block;
    position: relative;

}

.pic-layer img {
    display: none;
}

.pic-layer p {
    font: 400 16px/36px "微软雅黑";
    color: #fff;
    text-align: center;
    background: #000;
}

.pics li i {
    display: block;
}

.pics i img {
    width: 100%;
}


@media (min-width: 1200px) {
    .pics ul {
        padding: 0 0 27px;
    }

    .pics ul li {
        width: 33.3%;
        padding: 3px;
    }

    .pics ul a {
        overflow: hidden;
        border: 3px solid #fff;
    }

    .pic-layer {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
        transform: translate3d(0, 100%, 0);
        transition: 0.5s;
    }

    .pic-layer img {
        display: block;
        margin: 0 auto;
        padding: 30px 0;
    }

    .pic-layer p {
        font: 400 24px/30px '微软雅黑';
        color: #fff;
        background: none;
    }

    .pics ul a:hover .pic-layer {
        transform: translate3d(0, 0, 0);
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-left {
    background: #fff;
}

.pic-er-left img {
    width: 100%;
}

.pic-er-attr {
    display: flex;
    font: 400 16px/30px '微软雅黑';
    color: #925007;
}

.pic-er-attr pre {
    padding: 0 5px 0 0;
    font: 400 16px/30px '微软雅黑';
}

.magnifyingShow {
    display: none;
}

@media (min-width: 1200px) {
    .pic-er {
        padding-bottom: 100px;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 480px;
        border: 2px solid #fff;
    }

    .pic-er-left img {
        width: 100%;
    }

    .pic-er-right {
        width: 450px;
        padding: 60px 30px;
        background: #fff;
    }

    .pic-er-attr {
        display: flex;
        font: 400 18px/30px '微软雅黑';
        color: #925007;
    }

    .pic-er-attr pre {
        padding: 0 15px 0 0;
        font: 400 18px/30px '微软雅黑';
    }

    /* 单片放大图 */
    .con-FangDa {
        width: 100%;
    }

    .con-fangDaIMg {
        position: relative;
        background-color: #454545;
        border: 1px solid #eee;
    }

    .magnifyingBegin,
    .magnifyingShow {
        position: absolute;
        display: none;
        top: -2px;
    }

    .con-fangDaIMg>img {
        width: 100%;
        height: 100%
    }

    .magnifyingBegin {
        width: 105px;
        height: 105px;
        left: 0;
        background: rgba(70, 70, 70, 0.4);
        cursor: move
    }

    .magnifyingShow {
        overflow: hidden;
        left: 500px;
        top: 0;
        width: 480px;
        height: 438px;
        border: 2px solid #fff;
        background: #fff;
    }

    .magnifyingShow>img {
        width: 750px;
        height: 600px;
        margin-left: 0;
        margin-top: 0;
    }
}