/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
}

.pics ul li {
    width: 50%;
    padding: 5px;
}

.pics ul a {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #000;
}

.pics ul a i {
    display: block;
    padding: 10px 20px;
    text-align: center;
}

.pics ul i img {
    width: 100%;
}

.pic-li-font {
    text-align: center;
}

.pic-li-font p {
    font: 400 14px/20px '微软雅黑';
    color: #000;
    text-align: center;
}

.pic-li-more {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    bottom: 30px;
    width: 30px;
    height: 30px;
    /* margin: 0.2rem auto; */
    font: 400 12px/1 '微软雅黑';
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    transition: 0.3s;
}

@media (min-width: 1200px) {
    .pics {}

    .pics ul {
        display: flex;
        padding: 30px;
    }

    .pics ul li {
        width: 25%;
        padding: 20px;
    }

    .pics ul a {
        position: relative;
        display: block;
        height: 400px;
        background: rgba(255, 255, 255, 0.7);
        border: 2px solid #000;
    }

    .pics ul a i {
        display: block;
        padding: 15px;
        text-align: center;
    }

    .pics ul i img {
        width: 130px;
        transition: 0.3s;
    }

    .pic-li-font {
        position: absolute;
        left: 0;
        bottom: 70px;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .pic-li-font p {
        font: 400 16px/30px '微软雅黑';
        color: #000;
        text-align: center;
    }

    .pic-li-more {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        bottom: 30px;
        width: 30px;
        height: 30px;
        margin: 0 0 0 -15px;
        font: 400 12px/1 '微软雅黑';
        color: #000;
        border: 1px solid #000;
        border-radius: 50%;
        transition: 0.3s;
    }

    .pics ul a:hover {
        border-color: #c41820;
    }

    .pics ul a:hover img {
        width: 180px;
    }

    .pics ul a:hover .pic-li-font {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }

    .pics ul a:hover .pic-li-more {
        bottom: -25px;
        width: 50px;
        height: 50px;
        margin-left: -25px;
        font-size: 24px;
        color: #fff;
        background: #c4181f;
        border-color: #c4181f;
    }

    .pages {
        padding: 0 50px 30px;
    }

}


/* 产品详情 */
.pic-er {}

.pic-er-line {
    position: relative;
     padding-left: 45px;
}
.pic-er-slide {
    position: absolute;
    left: 0;
    top: 0;
   
}
.pic-er-slide img{
    width: 30px;
}

.pic-er-img {
    padding: 30px;
    background: #fff;
    border: 2px solid #c4181f;
}

.pic-er-img img {
    width: 100%;
}

.pic-er-font {
    padding: 10px 0 0;
}

.pic-er-name {
    font: bold 20px/24px '微软雅黑';
    color: #c4181f;
}

.pic-er-weight {
    width: 100px;
    margin: 5px 0 0;
    font: 400 14px/20px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #c4181f;
    border-radius: 12px;
}

.pic-er-attr {
    padding: 20px 0 0;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

.pic-er-p {
    min-height: 120px;
    margin: 10px 0 0;
    padding-left: 45px;
    font: 400 16px/30px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .pic-er{
        padding-bottom: 50px;
        background: rgba(255, 255, 255, 0.5) url(../images/pic_er_logo.png) no-repeat right bottom;
    }
    .pic-er-line {
        position: relative;
        display: flex;
        justify-content: space-around;
        padding: 100px 150px 30px;
    }

    .pic-er-slide {
        position: relative;
        left: 0;
        top: 0;
        width: 60px;
    }
    .pic-er-slide img {
        width: 30px;
    }


    .pic-er-img {
        width: 300px;
        padding: 30px;
        background: #fff;
        border: 3px solid #c4181f;
    }

    .pic-er-img img {
        width: 100%;
    }

    .pic-er-font {
        width: 410px;
        padding: 25px 0 0;
    }

    .pic-er-name {
        font: bold 30px/36px '微软雅黑';
        color: #c4181f;
    }

    .pic-er-weight {
        width: 115px;
        margin: 10px 0 0;
        font: 400 16px/24px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #c4181f;
        border-radius: 12px;
    }

    .pic-er-attr {
        padding: 60px 0 0;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }

    .pic-er-attr p {
        padding: 0 0 20px;
    }

    .pic-er-p {
        min-height: 120px;
        padding: 0 250px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }

}