/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 5px;
}

.pics ul li a {
    display: block;
    position: relative;
}

.pics ul li a i {
    display: block;
}

.pics ul li a i img {
    width: 100%;
}

.pic-li-layer {
    padding: 5px;
    text-align: center;
    background: #fff;
}

.pic-li-name {
    font: bold 16px/20px '微软雅黑';
}

.pic-li-detail {
    font: 400 12px/18px '微软雅黑';
}

.pics ul li a:hover .pic-li-layer {
    opacity: 1;
    transform: rotate(360deg);
}

@media (min-width: 1200px) {
    .pics {}

    .pics ul {
        display: flex;
        flex-wrap: wrap;
    }

    .pics ul li {
        width: 33.3%;
        padding: 12px;
    }

    .pics ul li a {
        display: block;
        position: relative;
    }

    .pics ul li a i {
        display: block;
    }

    .pics ul li a i img {
        width: 100%;
    }

    .pic-li-layer {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 212px;
        height: 212px;
        margin: -106px 0 0 -106px;
        padding: 80px 0 0;
        color: #fff;
        text-align: center;
        background: url(../images/pic_li_bg.png) no-repeat center center;
        opacity: 0;
        transition: 0.6s;
    }

    .pic-li-name {
        font: bold 30px/36px '微软雅黑';
    }

    .pic-li-detail {
        margin: 10px 0 0;
        font: 400 12px/18px '微软雅黑';
    }

    .pics ul li a:hover .pic-li-layer {
        opacity: 1;
        transform: rotate(360deg);
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-left i {
    display: block;
    border: 2px solid #0068b7;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-name {
    display: block;
    padding: 10px 0;
}

.pic-er-name span {
    display: block;
    font: 400 18px/24px '微软雅黑';
    text-align: center;
}

.pic-er-p {
    margin: 10px 0;
    min-height: 100px;
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er {
        display: flex;
        justify-content: space-between;
        padding: 40px 20px 100px;
    }

    .pic-er-left {
        width: 564px;
    }

    .pic-er-left i {
        display: block;
        border: 2px solid #0068b7;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 560px;
    }

    .pic-er-name {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 160px;
        height: 160px;
        margin: 0 auto;
        padding: 24px;
        background: url(../images/pic_li_bg.png) no-repeat center center/160px;
    }

    .pic-er-name span {
        display: block;
        font: 400 18px/24px '微软雅黑';
        color: #fff;
    }

    .pic-er-p {
        margin: 60px 0 0;
        font: 400 14px/20px '微软雅黑';
        color: #000;
    }
}