.case {
    overflow: hidden;
}

.case_box {
    width: 12rem;
    margin: 0 auto;
}

.case_bottom{
    margin: .57rem auto .4rem;
    display: flex;
    flex-wrap: wrap;
}
.case_item{
    width: 3.82rem;
    height: 3.5rem;
    margin-right: .27rem;
    margin-bottom: .6rem;
}
.case_item:nth-child(3n){
    margin-right: .0rem;
}

.case_item_img{
    width: 100%;
    height: 2.84rem;
    border-radius: 0.1rem 0.1rem 0rem 0rem;
    overflow: hidden;
}

.case_item_img img{
    height: 100%;
    object-fit: contain;
    transition: all .5s;
}

.case_item:hover .case_item_img img{
    transform: scale(1.2);
}

.case_item_tit{
    width: 3.82rem;
    height: 0.66rem;
    background: #F8F8F8;
    border-radius: 0rem 0rem 0.1rem 0.1rem;
    font-size: 0.2rem;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: normal;
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: .15rem;
    box-sizing: border-box;
}
.case_item:hover .case_item_tit{
    background: #004AAE;
    color: #FFFFFF;
}

.page{
    margin-bottom: 1.13rem;
}

.case_xq{
    overflow: hidden;
}
.case_xq_box{
    width: 12rem;
    margin: .53rem auto 1rem;
}
.case_xq_tit{
    font-size: 0.28rem;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei-Bold;
    font-weight: normal;
    color: #222222;
    padding-bottom: .16rem;
    margin-bottom: .5rem;
    position: relative;
    text-align: center;
}
.case_xq_tit::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.47rem;
    height: 0.04rem;
    background: #004AAE;
    border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
}
.case_xq_txt{
    font-size: 0.16rem;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: normal;
    color: #222222;
    line-height: 0.28rem;
    margin-bottom: .3rem;
}



@media only screen and (max-width: 1024px) {
    .case_box,.case_xq_box{
        width: 94%;
    }
    .case_bottom{
        justify-content: space-between;
    }
    .case_item{
        width: 47%;
        height: auto;
        margin: 0;
    }
    .case_item_tit{
        width: 100%;
        font-size: 12px;
    }
    .case_xq_txt p{
        font-size: 12px !important;
        /*text-indent: 2em;*/
    }
}


