/* 产品列表 */
.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: 60px 60px 0;
    }

    .pics ul li {
        width: 33.33%;
        padding: 15px;
    }

    .pics ul a {
        position: relative;
        padding: 0 0 56px;
        overflow: hidden;
    }

    .pics ul i {
        position: relative;
        z-index: 1;
        height: 319px;
        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 {}

.pic-er-left {
    border: 3px solid #b91a19;
}

.pic-er-left i {
    display: block;
    padding: 5px;
    background: #f8f2cd;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-right {
    position: relative;
    margin: 10px 0 0;
    background: url(../images/pic_er_logo.png) no-repeat center 5%;
}

.go {
    position: absolute;
    right: 0;
    top: 0;
}

.go img {
    height: 30px;
}

.pic-er-name {
    margin: 0 0 10px;
    padding: 2px 0 0;
    font: 400 24px/30px 'SimSun';
    color: #000;
}

.pic-er-p {
    border-left: 1px dashed #000;
    padding: 0 0 0 10px;
}

.pic-er-attr {
    padding: 0 0 3px;
    font: 400 14px/20px 'SimSun';
    color: #000;
}

.pic-er-tel {
    margin: 15px 0 0;
    font: 400 20px/24px 'SimSun';
    color: #b91a19;
}

@media (min-width: 1200px) {
    .pic-er {
        display: flex;
        padding: 60px 0 80px 120px;
    }

    .pic-er-left {
        width: 410px;
        height: 410px;
        border: 6px solid #b91a19;
    }

    .pic-er-left i {
        display: block;
        padding: 14px;
        background: #f8f2cd;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 580px;
        margin: 0 0 0 60px;
        background: url(../images/pic_er_logo.png) no-repeat center 5%;
    }

    .go {
        cursor: pointer;
    }

    .go img {
        height: auto;
    }

    .pic-er-name {
        margin: 0 0 30px;
        padding: 2px 0 0;
        font: 400 30px/36px 'SimSun';
        color: #000;
    }

    .pic-er-p {
        border-left: 1px dashed #000;
        padding: 0 0 0 25px;
    }

    .pic-er-attr {
        padding: 0 0 12px;
        font: 400 14px/20px 'SimSun';
        color: #000;
    }

    .pic-er-tel {
        margin: 20px 0 0;
        font: 400 30px/36px 'SimSun';
        color: #b91a19;
    }
}