/* 产品列表 */
.pics {}

.pics ul {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.pics ul li {
    width: 50%;
    padding: 4px;
}

.pics ul a {
    display: block;
    padding: 5px;
    background: #fff;
    border: 1px solid #333;
}

.pics ul a i {
    display: block;
    overflow: hidden;
}

.pics ul a i img {
    width: 100%;
}

.pics ul a p {
    padding: 5px 0;
    font: 400 16px/30px '微软雅黑';
    color: #000;
    text-align: center;
    background: #eaeaea;
}

@media (min-width: 1200px) {
    .common-nav {
        background-color: #f3f3f3;
    }


    .pics ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .pics ul li {
        width: 33.3%;
        padding: 15px;
    }

    .pics ul a {
        display: block;
        padding: 30px;
        background: #fff;
        border: 2px solid #333;
    }

    .pics ul a i {
        display: block;
        overflow: hidden;
    }

    .pics ul a i img {
        width: 100%;
        transition: 0.3s;
    }

    .pics ul a p {
        padding: 15px 0;
        font: 400 18px/30px '微软雅黑';
        color: #000;
        text-align: center;
        background: #eaeaea;
    }

    .pics ul a:hover {
        border-color: #a3000c;
    }

    .pics ul a:hover i img {
        transform: scale(1.1);
    }

    .pics ul a:hover p {
        color: #fff;
        background: #a3000c;
    }
}


/* 产品详情 */
.pic-er {}

.pic-er {
    padding: 10px;
}

.pic-er-left i {
    display: block;
    background: #fff;
    border: 2px solid #a3000c;
}

.pic-er-left i img {
    width: 100%;
}

.pic-er-logo {
    padding: 20px 0;
    text-align: center;
}

.pic-er-logo img {
    width: 240px;
}

.pic-er-name {
    font: 400 16px/42px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #a3000c;
}

.pic-er-detail {
    margin: 10px 0;
    font: 400 20px/24px '微软雅黑';
    color: #000;
    text-align: center;
}

.pic-er-weight {
    display: flex;
    justify-content: center;
}

.pic-er-weight span {
    display: block;
    padding: 0 5px;
    font: 400 14px/24px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #000;
    border-radius: 15px;
}

.pic-er-p {
    min-height: 200px;
    padding: 20px 0;
    font: 400 16px/30px '微软雅黑';
    color: #000;
}
.pic-er-p img {
    width: 100%;
}
@media (min-width: 1200px) {
    .pic-er {
        padding: 0 160px 0 110px;
    }

    .pic-er-line {
        display: flex;
        justify-content: space-between;
    }

    .pic-er-left {
        width: 520px;
    }

    .pic-er-left i {
        display: block;
        background: #fff;
        border: 2px solid #a3000c;
    }

    .pic-er-left i img {
        width: 100%;
    }

    .pic-er-right {
        width: 300px;
    }

    .pic-er-logo {
        padding: 60px 0 40px;
        text-align: center;
    }

    .pic-er-logo img {
        width: auto;
    }

    .pic-er-name {
        font: 400 18px/60px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #a3000c;
    }

    .pic-er-detail {
        margin: 20px 0 30px;
        font: 400 30px/36px '微软雅黑';
        color: #000;
        text-align: center;
    }

    .pic-er-weight {
        display: flex;
        justify-content: center;
    }

    .pic-er-weight span {
        display: block;
        padding: 0 10px;
        font: 400 14px/30px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #000;
        border-radius: 15px;
    }

    .pic-er-p {
        min-height: 300px;
        padding: 60px 0;
        font: 400 18px/30px '微软雅黑';
        color: #000;
    }

}