/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 2px;
}

.pics ul a {
    display: block;
}

.pics ul i {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #fff;
    border: 2px solid #000;
}

.pics ul i img {
    width: 100%;
}

.pic-li-line {
    padding: 5px;
    color: #fff;
    text-align: center;
    background: #000;
}

.pic-li-icon {
    display: none;
}

.pic-li-name {
    font: 400 16px/20px 'SimSun';
}

.pic-li-weight {
    font: 400 12px/18px 'SimSun';
}

.pic-li-more {
    display: none;
}

@media (min-width: 1200px) {
    .pics {
        padding: 30px;
    }

    .pics ul li {
        width: 33.33%;
        padding: 10px;
    }

    .pics ul a {
        position: relative;
        padding: 0 0 56px;
        overflow: hidden;
    }

    .pics ul i {
        position: relative;
        z-index: 1;
        padding: 0 15px;
        overflow: hidden;
        background: #fff;
        border: 4px solid #000;
    }

    .pic-li-line {
        display: flex;
        justify-content: space-between;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 10;
        width: 100%;
        height: 56px;
        padding: 16px 25px;
        transition: 0.6s;
    }

    .pic-li-icon {
        padding: 100px 0 18px;
        transition: 0.6s;
    }

    .pic-li-name {
        font: 400 18px/24px 'SimSun';
    }

    .pic-li-weight {
        font: 400 14px/24px 'SimSun';
    }

    .pic-li-more {
        padding: 80px 0 0;
        font: 400 12px/18px 'SimSun';
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: 0.6s;
    }

    .pics ul a:hover .pic-li-line {
        display: block;
        height: 100%;
        text-align: center;
        background: #ab0102;
    }

    .pics ul a:hover .pic-li-icon {
        display: block;
    }

    .pics ul a:hover .pic-li-more {
        display: block;
    }
}


/* 产品详情 */
.pic-er {
    padding-bottom: 50px;
}

.pic-er-left i {
    display: block;
    border: 2px solid #000000;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-name {
    margin: 10px 0 0;
    font: 400 18px/30px '微软雅黑';
    color: #000;
}

.pic-er-kind {
    display: inline-block;
    margin: 5px 0 10px;
    padding: 2px 3px;
    font: 400 14px/18px '微软雅黑';
    color: #fff;
    background: #c20011;
    border-radius: 3px;
}

.pic-er-p {
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

.pic-er-info {
    margin: 20px 0 0;
    font: 400 18px/24px '微软雅黑';
    color: #000;
}

.pic-er-detail {
    margin: 20px 0 0;
    padding: 10px 0 0;
    font: 400 14px/24px '微软雅黑';
    color: #000;
    border-top: 1px solid #999;
}

@media (min-width: 1200px) {
    .pic-er {
        padding: 90px 100px 90px 150px;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 456px;
        height: 456px;
    }

    .pic-er-left i {
        padding: 0 15px;
        background: #fff;
        border: 3px solid #000000;
    }

    .pic-er-right {
        width: 450px;
    }

    .pic-er-name {
        margin: 30px 0 0;
        font: 400 30px/36px 'SimSun';
    }

    .pic-er-kind {
        margin: 10px 0 30px;
        font: 400 16px/20px '微软雅黑';
        border-radius: 5px;
    }

    .pic-er-p {
        font: 400 16px/36px '微软雅黑';
    }

    .pic-er-info {
        margin: 60px 0 0;
        font: 400 24px/30px '微软雅黑';
    }

    .pic-er-detail {
        margin: 60px 0 0;
        min-height: 300px;
        font: 400 18px/30px '微软雅黑';
        border: 0;
    }
}