/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 3px;
}

.pics ul a {
    display: block;
    position: relative;
    background: url(../images/pic_li_bg.jpg) no-repeat center bottom/100% 100%;
}

.pics ul a i {
    display: block;
    border: 2px solid #fff;
}

.pics ul a i img {
    width: 100%;
}

/*.pic-li-layer {*/
/*    position: absolute;*/
/*    z-index: 5;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*.pic-li-border {*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url(../images/pic_li_border.png) no-repeat center 0;*/
/*    opacity: 0;*/
/*    transition: 0.3s;*/
/*}*/

.pic-li-logo {
    display: none;
    /*position: relative;*/
    /*z-index: 10;*/
    /*padding: 90px 0 0;*/
    /*text-align: center;*/
    /*opacity: 0;*/
    /*transition: 0.6s;*/
}

.pic-li-name {
    /*position: absolute;*/
    /*left: 5px;*/
    /*bottom: 0;*/
    padding: 0 5px;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*transition: 0.5s;*/
}

.pic-li-more {
    display: none;
    /*position: absolute;*/
    /*right: 5px;*/
    /*bottom: 0;*/
    /*font: 400 12px/30px '微软雅黑';*/
    /*color: #fff;*/
    /*transition: 0.5s;*/
}


@media (min-width: 1200px) {
    .pics {
        padding: 45px 15px;
    }

    .pics ul {
        display: flex;
    }

    .pics ul li {
        width: 33.3%;
        padding: 15px;
    }

    .pics ul a {
        display: block;
        position: relative;
        padding-bottom: 80px;
        background: url(../images/pic_li_bg.jpg) no-repeat center bottom/100% 0;
        transition: 0.6s;
    }

    .pics ul a i {
        display: block;
        border: 5px solid #fff;
    }

    .pics ul a i img {
        width: 100%;
    }

    .pic-li-layer {
        position: absolute;
        z-index: 5;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .pic-li-border {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(../images/pic_li_border.png) no-repeat center 0;
        opacity: 0;
        transition: 0.3s;
    }

    .pic-li-logo {
        display: block;
        position: relative;
        z-index: 10;
        padding: 90px 0 0;
        text-align: center;
        opacity: 0;
        transition: 0.6s;
    }

    .pic-li-name {
        position: absolute;
        left: 10px;
        bottom: 30px;
        padding: 0 10px;
        text-align: center;

        font: 400 18px/30px '微软雅黑';
        color: #000;
        transition: 0.5s;
    }

    .pic-li-more {
        display: block;
        position: absolute;
        right: 10px;
        bottom: 30px;
        font: 400 12px/30px '微软雅黑';
        color: #000;
        transition: 0.5s;
    }

    .pics ul a:hover {
        background-size: 100% 100%;
    }

    .pics ul a:hover i {
        border-color: #059ce5;
        opacity: 0.3;
    }

    .pics ul a:hover .pic-li-logo {
        opacity: 1;
        transform: translate3d(0, 30px, 0);
    }

    .pics ul a:hover .pic-li-name {
        width: 100%;
        padding: 0 5px;
        left: 50%;
        bottom: 40px;
        color: #fff;
        transform: translate3d(-50%, 0, 0);
    }

    .pics ul a:hover .pic-li-more {
        right: 50%;
        bottom: 10px;
        padding-right: 20px;
        color: #fff;
        background: url(../images/arrrow_w.png) no-repeat right center;
        transform: translate3d(50%, 0, 0);
    }

}


/* 产品详情 */
.pic-er {}

.pic-er-left i {
    display: block;
    border: 5px solid #059ce5;
}

.pic-er-left img {
    width: 100%;
}

.pic-er-right {
    padding: 5px 0;
}

.pic-er-name {
    font: 400 18px/30px '微软雅黑';
    color: #000;
}

.pic-er-p {
    min-height: 120px;
    margin-top: 10px;
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 85px 100px;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 600px;
    }

    .pic-er-left i {
        display: block;
        border: 5px solid #059ce5;
    }

    .pic-er-left img {
        width: 100%;
    }

    .pic-er-right {
        width: 340px;
    }

    .pic-er-name {
        font: 400 24px/30px '微软雅黑';
        color: #000;
    }

    .pic-er-p {
        margin-top: 10px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }
}