/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 2px;
}

.pics li a {
    display: block;
    position: relative;
    overflow: hidden;
}

.pics li i {
    display: block;
    padding: 15px;
    background: #fff url(../images/pic_li_bg.png) no-repeat center 92%/100%;
    border: 1px solid #000;
}

.pics li i img {
    width: 100%;
}

.pic-li-layer {
    background: #c4091f;
}

.pic-li-logo {
    display: none;
}

.pic-li-name {
    font: 400 16px/30px "微软雅黑";
    color: #fff;
    text-align: center;
}

@media (min-width: 1200px) {
    .pics {}

    .pics ul {
        display: flex;
        flex-wrap: wrap;
    }

    .pics ul li {
        width: 25%;
        padding: 15px;
    }

    .pics li a {
        perspective: 1000px;
        display: block;
        position: relative;
        overflow: hidden;
    }

    .pics li i {
        padding: 30px 30px;
        transform-origin: center bottom;
        transition: 0.5s;
    }

    .pic-li-layer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 30px 0 60px;
        background: #c4091f;
        opacity: 0;
        transform: rotateX(-60deg);
        transform-origin: center 0;
        transition: 0.5s;
    }

    .pic-li-logo {
        display: block;
        height: 166px;
    }

    .pic-li-name {
        height: 24px;
        font: 400 18px/24px "微软雅黑";
    }

    .pics li a:hover i {
        opacity: 0;
        transform: rotateX(120deg);
    }

    .pics li a:hover .pic-li-layer {
        opacity: 1;
        transform: rotateX(0);
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-left {
    background: #fff;
}

.pic-er-left i {
    display: block;
    padding: 30px;
    border: 1px solid #000;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    background: #fff;
    border: 1px solid #000;
}

.pic-er-layer {
    background: #c4091f;
}

.pic-er-logo {
    display: none;
}

.pic-er-name {
    font: 400 16px/36px "微软雅黑";
    color: #fff;
    text-align: center;
}

.pic-er-p {
    padding: 10px;
}

.pic-er-p p {
    font: 400 14px/24px '微软雅黑';
    color: #333333;
    letter-spacing: 2px;
}

.pic-er-detail {
    padding: 10px;
    background: #fff;
    border: 1px solid #000;
}

.pic-er-detail p {
    font: 400 14px/24px "微软雅黑";
    color: #333;
}

@media (min-width: 1200px) {
    .pic-er-line {
        display: flex;
        justify-content: space-between;
        padding: 15px 125px;
    }

    .pic-er-left {
        width: 410px;
    }

    .pic-er-left i {
        padding: 50px;
    }

    .pic-er-right {
        width: 500px;
    }

    .pic-er-layer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 270px;
        height: 400px;
        margin: 0 auto;
        padding: 30px 0 60px;
    }

    .pic-er-logo {
        display: block;
        height: 166px;
    }

    .pic-er-name {
        height: 24px;
        font: 400 18px/24px "微软雅黑";
    }

    .pic-er-p {
        padding: 20px 0 0 80px;
    }

    .pic-er-p p {
        font: 400 16px/30px '微软雅黑';
        letter-spacing: 10px;
    }

    .pic-er-detail {
        width: 950px;
        margin: 0 auto;
        padding: 60px 40px;
    }

    .pic-er-detail p {
        font: 400 16px/36px "微软雅黑";
    }
}