/* 应用领域  ---  产品中心 */
.list-box-bg{
    background-image: url('../images/home-bg2.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
}
.list-box-item {
    width: 49%;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}
.list-box-item p{
    color: #4d4d4d;
    text-align: center;
    font-size: 20px;
    padding-top: 10px;
    font-weight: bold;
    margin-bottom: 0;
}
.img-father{
    height: 350px;
    overflow: hidden;
}
.img-father img{
    object-fit: cover;
    transition: all 0.8s;
}

.img-father:hover img{
    transform: scale(1.05);
}
/* 特殊区间处理  -- 高分辨率 150% */
@media screen and (min-width: 1040px) and (max-width: 1400px) {
    .img-father{
        height: 300px;
    }
}

/*移动端处理 */
@media screen and (max-width:880px) {
    .list-box-item{
        width: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .img-father{
        height: 240px !important;
    }
    .list-box-container{
        padding-left: 10px;
        padding-right: 10px;
    }
}

