


/* 案例列表 */
.cases {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.cases .item {
    display: block;
    width: 4.7rem;
    margin-top: 0.3rem;
    margin-right: 0.45rem;
    background: white;
    transition: all 0.3s;
}
.cases .item:nth-child(-n+3) {
    margin-top: 0;
}
.cases .item:nth-child(3n) {
    margin-right: 0;
}
.cases .item .pic {
    display: block;
    width: 100%;
    height: 3rem;
}
.cases .item .txt {
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
    text-align: center;
    font-size: 0.18rem;
    font-weight: bold;
    color: #333333;
}
.cases .item:hover {
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.4);
}

/* 公共分页 */


@media only screen and (max-width: 1024px){
    .cases{
        justify-content: space-between;
        padding: 0 20px;
    }
    .cases .item{
        width: 48%;
        margin-right:0;
    }
    .cases .item .txt{
        font-size: 12px;
    }
    .cases .item:nth-child(3n){
        margin-top: 0.3rem;
    }
    .footer_center{
        padding-top: 0.74rem !important;
    }
}