/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 2px;
}

.pics ul a {
    display: block;
    position: relative;
}

.pics ul a i {
    display: block;
}

.pics ul a img {
    width: 100%;
}

.pic-li-font {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    margin-left: -50%;
    background: #00bbf4;
}

.pic-li-font p {
    padding: 0 10px;
    overflow: hidden;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #00bbf4;
}

@media (min-width: 1200px) {

    .pics ul li {
        width: 33.3%;
        padding: 30px 8px;
    }

    .pic-li-font {
        width: 300px;
        margin-left: -150px;
    }

    .pic-li-font p {
        padding: 0 30px;
        font: 400 18px/48px '微软雅黑';
        background: #00bbf4 url(../images/pic_arrow.png) no-repeat 120% center;
        transition: 0.3s;
    }

    .pics a:hover p {
        text-align: left;
        background-position: right center;
    }

}


/* 产品详情 */
.pic-er {}

.pic-er-left i {
    display: block;
}

.pic-er-left img {
    width: 100%;
}

.pic-er-right {
    margin-top: 10px;
    border-left: 1px solid #d0d0d0;
}

.pic-er-name {
    padding-left: 15px;
    font: 400 16px/36px '微软雅黑';
    color: #fff;
    background: #00bbf4;
}

.pic-er-box {
    margin: 15px 0 0 15px;
}

.pic-er-attr {
    display: flex;
    font: 400 16px/30px '微软雅黑';
    color: #000;
}

.pic-er-attr pre {
    flex-grow: 0;
    font: 400 16px/30px '微软雅黑';
    color: #000;
}

.pic-er-attr p {
    flex-grow: 1;
}

.pic-er-detail {
    min-height: 200px;
    margin: 20px 0 0;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er {
        width: 1040px;
        margin: 0 auto;
        padding: 90px 0 60px;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 500px;
    }

    .pic-er-left i {
        display: block;
    }

    .pic-er-right {
        width: 490px;
        margin-top: 50px;
        border-left: 1px solid #d0d0d0;
    }

    .pic-er-name {
        padding-left: 30px;
        font: 400 18px/48px '微软雅黑';
    }

    .pic-er-box {
        margin: 60px 0 0 30px;
    }

    .pic-er-attr {
        font: 400 16px/36px '微软雅黑';
    }

    .pic-er-attr pre {
        font: 400 16px/36px '微软雅黑';
    }

    .pic-er-detail {
        min-height: 200px;
        margin: 50px 0 0;
        font: 400 16px/30px '微软雅黑';
    }
}