/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 100%;
    padding: 2px 0;
}

.pics ul a {
    display: block;
    color: #fff;
}

.pics a i {
    display: block;
}

.pics i img {
    width: 100%;
}

.pic-li-layer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background: rgba(99, 180, 173, 0.8);
    border: 2px solid #373a98;
    border-top: 0;
}

.pic-li-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pic-li-more {
    font: 400 14px/24px '微软雅黑';
}

.pic-li-name {
    font: 400 16px/30px '微软雅黑';
    text-align: right;
}

@media (min-width: 1200px) {
    .com-top {
        margin-bottom: 30px;
    }

    .pics ul {
        padding: 0 20px;
    }

    .pics ul li {
        width: 33.3%;
        padding: 10px;
    }

    .pics ul a {
        perspective: 1000px;
        position: relative;
        overflow: hidden;
        color: #fff;
    }

    .pics a i {
        transition: 0.6s;
    }

    .pics i img {
        height: 238px;
    }

    .pic-li-layer {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 25px;
        border: 5px solid #373a98;
        opacity: 0;
        transform: rotateX(60deg);
        transform-origin: center 0;
        transition: 0.6s;
    }

    .pic-li-name {
        font: 400 16px/30px '微软雅黑';
        text-align: right;
    }

    .pics ul a:hover .pic-li-layer {
        opacity: 1;
        transform: rotateX(0);
    }

    .pics ul a:hover i {
        transform: translate3d(0, -2%, 0) scale(1.05);
    }

    .pages {
        margin: 0 30px;
    }
}


/* 产品详情 */
.pic-er {}

.pic-er-line {
    padding: 0 1px;
}

.pic-er-left {
    position: relative;
}

.pic-er-banner img {
    width: 100%;
}

.btn-prev {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
}

.btn-next {
    position: absolute;
    z-index: 5;
    right: 0;
    top: 50%;
    margin-top: -25px;
}

.btn-prev img,
.btn-next img {
    width: 20px;
}


.pic-er-right {
    background: url(../images/pic_er_logo.png) no-repeat right 0.2rem/1.2rem;
}

.pic-er-name {
    padding: 10px 0;
    font: 400 18px/24px '微软雅黑';
    color: #000;
}

.pic-er-attr {
    display: flex;
    padding: 0 0 0 18px;
    font: 400 14px/24px '微软雅黑';
    color: #000;
    background: url(../images/circle.png) no-repeat 0 14px;
}

.pic-er-attr pre {
    flex-grow: 0;
}

.pic-er-attr span {
    flex-grow: 1;
}

@media (min-width: 1200px) {
    .pic-er {}

    .pic-er-line {
        display: flex;
        justify-content: space-between;
        padding: 0 60px;
    }

    .pic-er-left {
        position: relative;
        width: 584px;
        padding: 15px 0 0;
    }

    .pic-er-banner img {
        width: 100%;
    }

    .btn-prev {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 50%;
        margin-top: -22px;
        cursor: pointer;
        transition: 0.6s;
    }

    .btn-prev:hover {
        transform: translate3d(-15px, 0, 0);
    }

    .btn-next {
        position: absolute;
        z-index: 5;
        right: 0;
        top: 50%;
        margin-top: -22px;
        cursor: pointer;
        transition: 0.6s;
    }

    .btn-next:hover {
        transform: translate3d(15px, 0, 0);
    }


    .pic-er-right {
        width: 450px;
        background: url(../images/pic_er_logo.png) no-repeat right 0;

    }

    .pic-er-name {
        padding: 20px 0 30px;
        font: 400 24px/30px '微软雅黑';
        color: #000;
    }

    .pic-er-attr {
        display: flex;
        padding: 0 0 0 18px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
        background: url(../images/circle.png) no-repeat 0 14px;
    }

    .pic-er-attr pre {
        flex-grow: 0;
    }

    .pic-er-attr span {
        width: 240px;
    }
}